diff --git a/package.json b/package.json index ac9eb35..465b61f 100644 --- a/package.json +++ b/package.json @@ -23,8 +23,6 @@ "build": "tsc", "dev": "tsc --watch", "prefetch": "bun scripts/prefetch", - "native:build": "node-gyp build", - "native:rebuild": "node-gyp rebuild", "vanilla:defs": "bun scripts/vanilladefs", "gen:enums": "bun scripts/enum", "gen:items": "bun scripts/items", diff --git a/scripts/autocomplete-build.ts b/scripts/autocomplete-build.ts index b18ed9d..e464766 100644 --- a/scripts/autocomplete-build.ts +++ b/scripts/autocomplete-build.ts @@ -9,7 +9,7 @@ function toCamelCase(str: string) { const intelliSense: string[] = [ 'import { Type as T } from "../enums/Type.js"\n', "export type Namespace = keyof IntelliSense;", - "export type Element = IntelliSense[T]", + "export type Element = Extract", "export type VanillaType> = IntelliSense[T][K]\n", "export type IntelliSense = {", ] diff --git a/scripts/enum.ts b/scripts/enum.ts index 8047dce..2669a23 100644 --- a/scripts/enum.ts +++ b/scripts/enum.ts @@ -11,7 +11,6 @@ for (const key in schema) { const data = schema[key] if (data.enum) { const enumName = key.match(/\w+$/)?.[0].toCamelCase(true)! - console.log(enumName) index.push(`export { ${enumName} } from "./${enumName}.js"`) const count = new Map() diff --git a/src/compilers/Memory.ts b/src/compilers/Memory.ts index fcfc5c2..7160a09 100644 --- a/src/compilers/Memory.ts +++ b/src/compilers/Memory.ts @@ -1,3 +1,49 @@ import { Class } from "../components/Class.js" +import { UI } from "../components/UI.js" +import { Renderer } from "../types/enums/Renderer.js" +import { Type } from "../types/enums/Type.js" -export class Memory extends Class {} +type Element = UI +interface FileInterface { + namespace: string + elements: Element[] +} +type Files = Map + +export class Memory extends Class { + protected static files: Files = new Map() + + public static add(element: UI) { + let file = Memory.files.get(element.path) + + if (!file) { + file = { namespace: element.namespace, elements: [] } + Memory.files.set(element.path, file) + } + + if (file.namespace === element.namespace) file.elements.push(element) + else { + console.error(`Namespace mismatch on ${element.name} (${element.namespace} !== ${file.namespace})`) + process.exit(1) + } + } + + public static build() { + const data: Map = new Map() + + Memory.files.entries().forEach(([path, { elements, namespace }]) => { + const record: Record = {} + + elements.forEach(element => { + record[element.name] = element + }) + + data.set(path, { + namespace, + ...record, + }) + }) + + return data + } +} diff --git a/src/compilers/RunEnd.ts b/src/compilers/RunEnd.ts index 69ca4fd..d21c86c 100644 --- a/src/compilers/RunEnd.ts +++ b/src/compilers/RunEnd.ts @@ -1,3 +1,5 @@ import { Memory } from "./Memory.js" -process.on("beforeExit", () => {}) +process.on("beforeExit", () => { + // console.log(Memory.build()) +}) diff --git a/src/compilers/bindings/Lexer.ts b/src/compilers/bindings/Lexer.ts index c56127a..29be94f 100644 --- a/src/compilers/bindings/Lexer.ts +++ b/src/compilers/bindings/Lexer.ts @@ -42,93 +42,6 @@ export function Lexer(input: string, start: number = 0, end?: number) { break } - case "`": { - const tsTokens: TSToken[] = [] - const start = index - - const tokenization = (start: number) => { - while (index < input.length) { - const char = input[index] - if (char === "`") { - index++ - eatString() - } else if (char === "}") { - tsTokens.push({ - kind: TSTokenKind.EXPRESSION, - tokens: Lexer(input, start + 1, index), - }) - break - } - index++ - } - } - - const stringification = (start: number) => { - while (index < input.length) { - const char = input[index] - if (char === "`") { - if (start + 1 !== index) - tsTokens.push({ - kind: TSTokenKind.STRING, - tokens: { - kind: TokenKind.STRING, - start: start + 1, - length: index - start + 1, - value: `'${input.slice(start + 1, index)}'`, - }, - }) - - break - } else if (char === "$" && input[index + 1] === "{") { - tsTokens.push({ - kind: TSTokenKind.STRING, - tokens: { - value: `'${input.slice(start + 1, index)}'`, - kind: TokenKind.STRING, - length: index - start + 1, - start, - }, - }) - tokenization(++index) - start = index - } - index++ - } - } - - const eatString = () => { - while (index < input.length) { - const char = input[index] - - if (char === "`") { - break - } else if (char === "$" && input[index + 1] === "{") { - index++ - eatTemplate() - } - - index++ - } - } - - const eatTemplate = () => { - while (index < input.length) { - const char = input[index] - if (char === "`") { - eatString() - } else if (char === "}") { - break - } - index++ - } - } - - stringification(index++) - tokens.push(makeToken(tsTokens, TokenKind.TEMPLATE_STRING, start, index - start + 1)) - - break - } - case ",": tokens.push(makeToken(input, TokenKind.COMMA, index)) break @@ -165,6 +78,92 @@ export function Lexer(input: string, start: number = 0, end?: number) { else tokens.push(makeToken(input, TokenKind.OPERATOR, index)) break + case "f": + case "F": { + if (input[index + 1] === "'") { + const tsTokens: TSToken[] = [] + const start = ++index + + const tokenization = (start: number) => { + while (index < input.length) { + const char = input[index] + if (char === "'") { + index++ + eatString() + } else if (char === "}") { + tsTokens.push({ + kind: TSTokenKind.EXPRESSION, + tokens: Lexer(input, start + 1, index), + }) + break + } + index++ + } + } + + const stringification = (start: number) => { + while (index < input.length) { + const char = input[index] + if (char === "'") { + if (start + 1 !== index) + tsTokens.push({ + kind: TSTokenKind.STRING, + tokens: { + kind: TokenKind.STRING, + start: start + 1, + length: index - start + 1, + value: `'${input.slice(start + 1, index)}'`, + }, + }) + break + } else if (char === "#" && input[index + 1] === "{") { + tsTokens.push({ + kind: TSTokenKind.STRING, + tokens: { + value: `'${input.slice(start + 1, index)}'`, + kind: TokenKind.STRING, + length: index - start + 1, + start, + }, + }) + tokenization(++index) + start = index + } + index++ + } + } + + const eatString = () => { + while (index < input.length) { + const char = input[index] + if (char === "'") { + break + } else if (char === "#" && input[index + 1] === "{") { + index++ + eatTemplate() + } + index++ + } + } + + const eatTemplate = () => { + while (index < input.length) { + const char = input[index] + if (char === "'") { + eatString() + } else if (char === "}") { + break + } + index++ + } + } + + stringification(index++) + tokens.push(makeToken(tsTokens, TokenKind.TEMPLATE_STRING, start - 1, index - start + 1)) + break + } + } + default: { let start = index @@ -176,7 +175,7 @@ export function Lexer(input: string, start: number = 0, end?: number) { tokens.push(makeToken(input, TokenKind.WORD, start, index - start + 1)) } else if (!Checker.isBlankChar(token)) { console.error( - `\x1b[31m${input.slice(0, index)}>>>${token}<<<${input.slice(index + 1)}\nInvalid character.\x1b[0m`, + `\x1b[31merror: ${input + "\n" + " ".repeat(index + 7) + "^"}\nInvalid character.\x1b[0m`, ) throw new Error() } diff --git a/src/compilers/bindings/Parser.ts b/src/compilers/bindings/Parser.ts index 2b9373a..537267d 100644 --- a/src/compilers/bindings/Parser.ts +++ b/src/compilers/bindings/Parser.ts @@ -14,6 +14,10 @@ export class Parser { constructor(private input: string) { this.tokens = Lexer(this.input) this.output = this.parseExpression() + + if (this.at()) { + this.expect(TokenKind.EOF, "Unexpected token!") + } } at() { @@ -247,7 +251,12 @@ export class Parser { ) return callerToken.value } else { - this.expect(TokenKind.WORD, "Unexpected token!") + if (callerToken.kind === TokenKind.WORD) + this.warn( + `Implicit string literal '${callerToken.value}'. Use quoted string ('${callerToken.value}') for clarity!`, + callerToken, + ) + else this.expect(TokenKind.WORD, "Unexpected token!") return callerToken.value } } @@ -274,14 +283,11 @@ export class Parser { private warn(err: string, token?: Token) { const prev = token || this.at() - console.warn(`\x1b[33m${this.getPointer(prev)}\n` + `[WARNING]: ${err}\x1b[0m`) + console.warn(`\x1b[33mwarn:${this.getPointer(prev, true)}\n` + `[WARNING]: ${err}\x1b[0m`) } - private getPointer(token: Token) { - return `${this.input.slice(0, token.start)}>>>${this.input.slice( - token.start, - token.start + token.length, - )}<<<${this.input.slice(token.start + token.length)}` + private getPointer(token: Token, isWarn = false) { + return this.input + "\n" + " ".repeat(token.start + (isWarn ? 5 : 7)) + "^".repeat(token.length) } out(): { gen?: BindingItem[]; out: Expression } { diff --git a/src/compilers/bindings/types.ts b/src/compilers/bindings/types.ts index e8d95c9..31e0195 100644 --- a/src/compilers/bindings/types.ts +++ b/src/compilers/bindings/types.ts @@ -10,6 +10,8 @@ export enum TokenKind { OPERATOR, COMMA, + + EOF } export enum TSTokenKind { diff --git a/src/components/UI.ts b/src/components/UI.ts index dcdc59c..156a59f 100644 --- a/src/components/UI.ts +++ b/src/components/UI.ts @@ -1,27 +1,29 @@ import { isCompileBinding } from "../compilers/bindings/Checker.js" import { Parser } from "../compilers/bindings/Parser.js" import { FormatProperties } from "../compilers/FormatProperties.js" +import { Memory } from "../compilers/Memory.js" import { BindingType } from "../types/enums/BindingType.js" import { Renderer } from "../types/enums/Renderer.js" import { Type } from "../types/enums/Type.js" import { Properties } from "../types/properties/components.js" import { BindingItem } from "../types/properties/value.js" import { Class } from "./Class.js" -import { RandomString } from "./Utils.js" +import { ExtendsOf, RandomString } from "./Utils.js" import util from "node:util" export class UI extends Class { - path: string + readonly path: string - name: string - namespace: string - extend?: UI + readonly name: string + readonly namespace: string + readonly extend?: UI - extendable: boolean + readonly extendable: boolean - controls = new Map, Properties]>() - bindings: BindingItem[] = [] + readonly controls = new Map, Properties]>() + readonly bindings: BindingItem[] = [] + readonly extendType?: Type properties: Properties = {} constructor( @@ -37,6 +39,11 @@ export class UI extends Class process.exit(1) } + if (namespace && !/^\w+$/.test(namespace)) { + console.error(`The '${namespace}' cannot be used as a namespace`) + process.exit(1) + } + this.name = name?.match(/^(\w|\/)+/)?.[0] || RandomString(16) this.namespace = namespace || RandomString(16) @@ -44,6 +51,29 @@ export class UI extends Class else this.path = path this.extendable = this.name.search("/") === -1 + + Memory.add(this) + } + + protected UI_JSON() { + const obj: any = { + ...FormatProperties(this.properties), + } + + if (this.type) { + obj.type = this.type + } + + if (this.bindings.length) { + obj.bindings = this.bindings + } + + if (this.controls.size) { + obj.controls = [] + this.controls.forEach((e, key) => obj.controls.push({ [key + e[0]]: e[1] })) + } + + return obj } setProperties(properties: Properties) { @@ -77,32 +107,19 @@ export class UI extends Class return this } - toString() { + clone(properties?: Properties, name?: string, namespace?: string) { + return ExtendsOf(this, properties, name, namespace) + } + + protected toString() { return `@${this.namespace}.${this.name}` } - toJSON() { - const obj: any = { - ...FormatProperties(this.properties), - } - - if (this.type) { - obj.type = this.type - } - - if (this.bindings.length) { - obj.bindings = this.bindings - } - - if (this.controls.size) { - obj.controls = [] - this.controls.forEach((e, key) => obj.controls.push({ [key + e[0]]: e[1] })) - } - - return obj + protected toJSON() { + return this.UI_JSON() } - [util.inspect.custom]($: any, opts: any) { + protected [util.inspect.custom]($: any, opts: any) { const obj: any = { ...FormatProperties(this.properties), } @@ -116,8 +133,10 @@ export class UI extends Class this.controls.forEach((e, key) => obj.controls.push({ [key + e[0]]: e[1] })) } + const elementType = this.type || (this.extend ? `${this.extendType || "unknown"}:${this.extend}` : "unknown") + return `\x1b[33mUI\x1b[0m<\x1b[92m${ - this.type || this.extend ? `${this.extend}` : "ANY" + elementType }\x1b[0m> \x1b[92m"${this}\x1b[92m"\x1b[0m ${util.inspect(obj, opts)}\n` } } @@ -127,4 +146,9 @@ export class ModifyUI extends UI { if (!path) throw new Error("ModifyUI cannot have a path") super(undefined, name, namespace, path) } + + protected toJSON() { + const obj = this.UI_JSON() + return obj + } } diff --git a/src/components/Utils.ts b/src/components/Utils.ts index 108270a..e92ff7d 100644 --- a/src/components/Utils.ts +++ b/src/components/Utils.ts @@ -31,6 +31,7 @@ import { Element, Namespace, VanillaType } from "../types/vanilla/intellisense.j import { paths } from "../types/vanilla/paths.js" const CHARS = "0123456789abcdefghijklmnopqrstuvwxyz" +type CompileBinding = `[${string}]` export function Color(hex: string | number): Array3 { if (typeof hex === "number") { @@ -87,110 +88,134 @@ export function GetItemByAuxID(auxID: number) { if (item) return `minecraft:${item.toLowerCase()}` } +// Binding +/** + * Return format string binding input + * @param input + * @returns {CompileBinding} + */ +export function f(input: string): CompileBinding { + if (/^'.+'$/.test(input)) input = `f${input}` + else if (!/^f'.+'$/.test(input)) input = `f'${input}'` + return b(input) +} + +/** + * Return bracket binding input + * @param input + * @returns {CompileBinding} + */ +export function b(input: string): CompileBinding { + return `[ ${input} ]` +} + // Quick Elements export function Modify>(namespace: T, name: K) { // @ts-ignore -- TS cannot prove this, but runtime guarantees it return new ModifyUI>(name, namespace, paths[namespace][name]) } -export function Panel(properties?: Panel, name?: string, namespace?: string) { +export function Panel(properties?: Panel, namespace?: string, name?: string) { return new UI(Type.PANEL, name, namespace).setProperties(properties || {}) } -export function CollectionPanel(properties?: CollectionPanel, name?: string, namespace?: string) { +export function CollectionPanel(properties?: CollectionPanel, namespace?: string, name?: string) { return new UI(Type.COLLECTION_PANEL, name, namespace).setProperties(properties || {}) } -export function StackPanel(properties?: StackPanel, name?: string, namespace?: string) { +export function StackPanel(properties?: StackPanel, namespace?: string, name?: string) { return new UI(Type.STACK_PANEL, name, namespace).setProperties(properties || {}) } -export function InputPanel(properties?: InputPanel, name?: string, namespace?: string) { +export function InputPanel(properties?: InputPanel, namespace?: string, name?: string) { return new UI(Type.INPUT_PANEL, name, namespace).setProperties(properties || {}) } -export function Gird(properties?: Grid, name?: string, namespace?: string) { +export function Gird(properties?: Grid, namespace?: string, name?: string) { return new UI(Type.GRID, name, namespace).setProperties(properties || {}) } -export function Screen(properties?: Screen, name?: string, namespace?: string) { +export function Screen(properties?: Screen, namespace?: string, name?: string) { return new UI(Type.SCREEN, name, namespace).setProperties(properties || {}) } -export function Image(properties?: Image, name?: string, namespace?: string) { +export function Image(properties?: Image, namespace?: string, name?: string) { return new UI(Type.IMAGE, name, namespace).setProperties(properties || {}) } -export function Label(properties?: Label, name?: string, namespace?: string) { +export function Label(properties?: Label, namespace?: string, name?: string) { return new UI(Type.LABEL, name, namespace).setProperties(properties || {}) } export function Custom( renderer: R, properties?: Properties, - name?: string, namespace?: string, + name?: string, ) { const custom = new UI(Type.CUSTOM, name, namespace) if (properties) custom.setProperties({ renderer, ...properties }) return custom } -export function TooltipTrigger(properties?: TooltipTrigger, name?: string, namespace?: string) { +export function TooltipTrigger(properties?: TooltipTrigger, namespace?: string, name?: string) { return new UI(Type.TOOLTIP_TRIGGER, name, namespace).setProperties(properties || {}) } -export function Button(properties?: Button, name?: string, namespace?: string) { +export function Button(properties?: Button, namespace?: string, name?: string) { return new UI(Type.BUTTON, name, namespace).setProperties(properties || {}) } -export function Toggle(properties?: Toggle, name?: string, namespace?: string) { +export function Toggle(properties?: Toggle, namespace?: string, name?: string) { return new UI(Type.TOGGLE, name, namespace).setProperties(properties || {}) } -export function Dropdown(properties?: Dropdown, name?: string, namespace?: string) { +export function Dropdown(properties?: Dropdown, namespace?: string, name?: string) { return new UI(Type.DROPDOWN, name, namespace).setProperties(properties || {}) } -export function SelectionWheel(properties?: SelectionWheel, name?: string, namespace?: string) { +export function SelectionWheel(properties?: SelectionWheel, namespace?: string, name?: string) { return new UI(Type.SELECTION_WHEEL, name, namespace).setProperties(properties || {}) } -export function EditBox(properties?: EditBox, name?: string, namespace?: string) { +export function EditBox(properties?: EditBox, namespace?: string, name?: string) { return new UI(Type.EDIT_BOX, name, namespace).setProperties(properties || {}) } -export function ScrollbarBox(properties?: ScrollbarBox, name?: string, namespace?: string) { +export function ScrollbarBox(properties?: ScrollbarBox, namespace?: string, name?: string) { return new UI(Type.SCROLLBAR_BOX, name, namespace).setProperties(properties || {}) } -export function ScrollbarTrack(properties?: ScrollbarTrack, name?: string, namespace?: string) { +export function ScrollbarTrack(properties?: ScrollbarTrack, namespace?: string, name?: string) { return new UI(Type.SCROLL_TRACK, name, namespace).setProperties(properties || {}) } -export function ScrollView(properties?: ScrollView, name?: string, namespace?: string) { +export function ScrollView(properties?: ScrollView, namespace?: string, name?: string) { return new UI(Type.SCROLL_VIEW, name, namespace).setProperties(properties || {}) } -export function Slider(properties?: Slider, name?: string, namespace?: string) { +export function Slider(properties?: Slider, namespace?: string, name?: string) { return new UI(Type.SLIDER, name, namespace).setProperties(properties || {}) } -export function SliderBox(properties?: SliderBox, name?: string, namespace?: string) { +export function SliderBox(properties?: SliderBox, namespace?: string, name?: string) { return new UI(Type.SLIDER_BOX, name, namespace).setProperties(properties || {}) } export function ExtendsOf( element: UI, properties?: Properties, - name?: string, namespace?: string, + name?: string, ) { if (!element.extendable) { throw new Error("Cannot extend a UI that cannot be extended") } const ui = new UI(undefined, name, namespace) if (properties) ui.setProperties(properties) + // @ts-ignore ui.extend = element + // @ts-ignore + ui.extendType = element.type || element.extendType return ui as typeof element } diff --git a/src/types/enums/Type.ts b/src/types/enums/Type.ts index dc70234..373fd6b 100644 --- a/src/types/enums/Type.ts +++ b/src/types/enums/Type.ts @@ -1,36 +1,36 @@ export enum Type { - SELECTION_WHEEL = "selection_wheel", - PANEL = "panel", - SCREEN = "screen", - STACK_PANEL = "stack_panel", - LABEL = "label", - IMAGE = "image", - INPUT_PANEL = "input_panel", - CUSTOM = "custom", - GRID = "grid", - FACTORY = "factory", - BUTTON = "button", - TOGGLE = "toggle", - SLIDER = "slider", - EDIT_BOX = "edit_box", - DROPDOWN = "dropdown", - SCROLL_VIEW = "scroll_view", - SLIDER_BOX = "slider_box", - SCROLLBAR_BOX = "scrollbar_box", - SCROLL_TRACK = "scroll_track", - GRID_PAGE_INDICATOR = "grid_page_indicator", - IMAGE_CYCLER = "image_cycler", - LABEL_CYCLER = "label_cycler", - COLLECTION_PANEL = "collection_panel", - TOOLTIP_TRIGGER = "tooltip_trigger", - TAB = "tab", - CAROUSEL_LABEL = "carousel_label", - COMBOX = "combox", - LAYOUT = "layout", - STACK_GRID = "stack_grid", - JOYSTICK = "joystick", - RICH_TEXT = "rich_text", - SIXTEEN_NINE_LAYOUT = "sixteen_nine_layout", - MUL_LINES = "mul_lines", - UNKNOWN = "unknown", -} + SELECTION_WHEEL = "selection_wheel", + PANEL = "panel", + SCREEN = "screen", + STACK_PANEL = "stack_panel", + LABEL = "label", + IMAGE = "image", + INPUT_PANEL = "input_panel", + CUSTOM = "custom", + GRID = "grid", + FACTORY = "factory", + BUTTON = "button", + TOGGLE = "toggle", + SLIDER = "slider", + EDIT_BOX = "edit_box", + DROPDOWN = "dropdown", + SCROLL_VIEW = "scroll_view", + SLIDER_BOX = "slider_box", + SCROLLBAR_BOX = "scrollbar_box", + SCROLL_TRACK = "scroll_track", + GRID_PAGE_INDICATOR = "grid_page_indicator", + IMAGE_CYCLER = "image_cycler", + LABEL_CYCLER = "label_cycler", + COLLECTION_PANEL = "collection_panel", + TOOLTIP_TRIGGER = "tooltip_trigger", + TAB = "tab", + CAROUSEL_LABEL = "carousel_label", + COMBOX = "combox", + LAYOUT = "layout", + STACK_GRID = "stack_grid", + JOYSTICK = "joystick", + RICH_TEXT = "rich_text", + SIXTEEN_NINE_LAYOUT = "sixteen_nine_layout", + MUL_LINES = "mul_lines", + UNKNOWN = "unknown", +} \ No newline at end of file diff --git a/src/types/properties/value.ts b/src/types/properties/value.ts index a1425f8..6b9d85f 100644 --- a/src/types/properties/value.ts +++ b/src/types/properties/value.ts @@ -31,6 +31,7 @@ export type BindingItem = { source_property_name?: Value target_property_name?: Value resolve_sibling_scope?: Value + resolve_ancestor_scope?: Value } export type FocusContainerCustom = Array<{ diff --git a/src/types/vanilla/intellisense.ts b/src/types/vanilla/intellisense.ts index 7924b1c..e6b7e09 100644 --- a/src/types/vanilla/intellisense.ts +++ b/src/types/vanilla/intellisense.ts @@ -5,19853 +5,19853 @@ export type Element = Extract> = IntelliSense[T][K] export type IntelliSense = { - achievement: AchievementType - add_external_server: AddExternalServerType - adhoc_inprogress: AdhocInprogressType - adhoc: AdhocType - anvil: AnvilType - anvil_pocket: AnvilPocketType - authentication_modals: AuthenticationModalsType - authentication: AuthenticationType - auto_save_info: AutoSaveInfoType - beacon: BeaconType - beacon_pocket: BeaconPocketType - blast_furnace: BlastFurnaceType - book: BookType - brewing_stand: BrewingStandType - brewing_stand_pocket: BrewingStandPocketType - bundle_purchase_warning: BundlePurchaseWarningType - cartography: CartographyType - cartography_pocket: CartographyPocketType - chalkboard: ChalkboardType - chat: ChatType - chat_settings: ChatSettingsType - chest: ChestType - choose_realm: ChooseRealmType - coin_purchase: CoinPurchaseType - command_block: CommandBlockType - confirm_delete_account: ConfirmDeleteAccountType - content_log: ContentLogType - content_log_history: ContentLogHistoryType - crafter_pocket: CrafterPocketType - create_world_upsell: CreateWorldUpsellType - credits: CreditsType - csb_purchase_error: CsbPurchaseErrorType - csb: CsbType - csb_content: CsbContentType - csb_banner: CsbBannerType - csb_buy: CsbBuyType - common_csb: CommonCsbType - csb_purchase_amazondevicewarning: CsbPurchaseAmazondevicewarningType - csb_purchase_warning: CsbPurchaseWarningType - csb_subscription_panel: CsbSubscriptionPanelType - csb_upsell: CsbUpsellType - csb_packs: CsbPacksType - csb_welcome: CsbWelcomeType - csb_faq: CsbFaqType - csb_landing: CsbLandingType - custom_templates: CustomTemplatesType - world_conversion_complete: WorldConversionCompleteType - day_one_experience_intro: DayOneExperienceIntroType - day_one_experience: DayOneExperienceType - death: DeathType - debug_screen: DebugScreenType - dev_console: DevConsoleType - disconnect: DisconnectType - display_logged_error: DisplayLoggedErrorType - discovery_dialog: DiscoveryDialogType - edu_featured: EduFeaturedType - edu_quit_button: EduQuitButtonType - persona_emote: PersonaEmoteType - enchanting: EnchantingType - enchanting_pocket: EnchantingPocketType - encyclopedia: EncyclopediaType - expanded_skin_pack: ExpandedSkinPackType - feed_common: FeedCommonType - file_upload: FileUploadType - furnace: FurnaceType - furnace_pocket: FurnacePocketType - game_tip: GameTipType - gamepad_disconnected: GamepadDisconnectedType - gameplay: GameplayType - gathering_info: GatheringInfoType - globalpause: GlobalpauseType - grindstone: GrindstoneType - grindstone_pocket: GrindstonePocketType - gamma_calibration: GammaCalibrationType - horse: HorseType - horse_pocket: HorsePocketType - how_to_play_common: HowToPlayCommonType - how_to_play: HowToPlayType - hud: HudType - host_options: HostOptionsType - bed: BedType - im_reader: ImReaderType - crafting: CraftingType - crafting_pocket: CraftingPocketType - invite: InviteType - jigsaw_editor: JigsawEditorType - late_join: LateJoinType - library_modal: LibraryModalType - local_world_picker: LocalWorldPickerType - loom: LoomType - loom_pocket: LoomPocketType - manage_feed: ManageFeedType - manifest_validation: ManifestValidationType - sdl_label: SdlLabelType - sdl_dropdowns: SdlDropdownsType - sdl_image_row: SdlImageRowType - sdl_text_row: SdlTextRowType - mob_effect: MobEffectType - non_xbl_user_management: NonXblUserManagementType - npc_interact: NpcInteractType - online_safety: OnlineSafetyType - pack_settings: PackSettingsType - panorama: PanoramaType - patch_notes: PatchNotesType - pause: PauseType - pdp: PdpType - pdp_screenshots: PdpScreenshotsType - permissions: PermissionsType - persona_cast_character_screen: PersonaCastCharacterScreenType - persona_common: PersonaCommonType - persona_popups: PersonaPopupsType - play: PlayType - perf_turtle: PerfTurtleType - pocket_containers: PocketContainersType - popup_dialog: PopupDialogType - portfolio: PortfolioType - progress: ProgressType - rating_prompt: RatingPromptType - realms_common: RealmsCommonType - realms_create: RealmsCreateType - realms_pending_invitations: RealmsPendingInvitationsType - realms_slots: RealmsSlotsType - realms_settings: RealmsSettingsType - realms_allowlist: RealmsAllowlistType - realms_invite_link_settings: RealmsInviteLinkSettingsType - realms_plus_ended: RealmsPlusEndedType - realmsPlus: RealmsPlusType - realmsPlus_content: RealmsPlusContentType - realmsPlus_faq: RealmsPlusFaqType - realmsPlus_landing: RealmsPlusLandingType - realmsPlus_buy: RealmsPlusBuyType - realmsPlus_packs: RealmsPlusPacksType - realmsPlus_purchase_warning: RealmsPlusPurchaseWarningType - realms_stories_transition: RealmsStoriesTransitionType - redstone: RedstoneType - resource_packs: ResourcePacksType - safe_zone: SafeZoneType - storage_migration_common: StorageMigrationCommonType - storage_migration_generic: StorageMigrationGenericType - scoreboard: ScoreboardType - screenshot: ScreenshotType - select_world: SelectWorldType - server_form: ServerFormType - settings: SettingsType - controls_section: ControlsSectionType - general_section: GeneralSectionType - realms_world_section: RealmsWorldSectionType - settings_common: SettingsCommonType - world_section: WorldSectionType - social_section: SocialSectionType - sidebar_navigation: SidebarNavigationType - sign: SignType - simple_inprogress: SimpleInprogressType - skin_pack_purchase: SkinPackPurchaseType - skin_picker: SkinPickerType - smithing_table: SmithingTableType - smithing_table_2: SmithingTable2Type - smithing_table_pocket: SmithingTablePocketType - smithing_table_2_pocket: SmithingTable2PocketType - smoker: SmokerType - start: StartType - stonecutter: StonecutterType - stonecutter_pocket: StonecutterPocketType - storage_management: StorageManagementType - storage_management_popup: StorageManagementPopupType - common_store: CommonStoreType - store_layout: StoreLayoutType - filter_menu: FilterMenuType - store_inventory: StoreInventoryType - store_item_list: StoreItemListType - store_progress: StoreProgressType - promo_timeline: PromoTimelineType - store_sale_item_list: StoreSaleItemListType - store_search: StoreSearchType - sort_menu: SortMenuType - structure_editor: StructureEditorType - submit_feedback: SubmitFeedbackType - tabbed_upsell: TabbedUpsellType - thanks_for_testing: ThanksForTestingType - third_party_store: ThirdPartyStoreType - toast_screen: ToastScreenType - token_faq: TokenFaqType - trade: TradeType - trade_pocket: TradePocketType - trade2: Trade2Type - trade2_pocket: Trade2PocketType - trialUpsell: TrialUpsellType - ugc_viewer: UgcViewerType - common_art: CommonArtType - common: CommonType - "common-classic": CommonClassicType - edu_common: EduCommonType - purchase_common: PurchaseCommonType - common_buttons: CommonButtonsType - common_dialogs: CommonDialogsType - common_tabs: CommonTabsType - common_toggles: CommonTogglesType - friendsbutton: FriendsbuttonType - iconbutton: IconbuttonType - update_dimensions: UpdateDimensionsType - update_version: UpdateVersionType - world_recovery: WorldRecoveryType - world_templates: WorldTemplatesType - xbl_console_qr_signin: XblConsoleQrSigninType - xbl_console_signin: XblConsoleSigninType - xbl_console_signin_succeeded: XblConsoleSigninSucceededType - xbl_immediate_signin: XblImmediateSigninType - win10_trial_conversion: Win10TrialConversionType + "achievement": AchievementType, + "add_external_server": AddExternalServerType, + "adhoc_inprogress": AdhocInprogressType, + "adhoc": AdhocType, + "anvil": AnvilType, + "anvil_pocket": AnvilPocketType, + "authentication_modals": AuthenticationModalsType, + "authentication": AuthenticationType, + "auto_save_info": AutoSaveInfoType, + "beacon": BeaconType, + "beacon_pocket": BeaconPocketType, + "blast_furnace": BlastFurnaceType, + "book": BookType, + "brewing_stand": BrewingStandType, + "brewing_stand_pocket": BrewingStandPocketType, + "bundle_purchase_warning": BundlePurchaseWarningType, + "cartography": CartographyType, + "cartography_pocket": CartographyPocketType, + "chalkboard": ChalkboardType, + "chat": ChatType, + "chat_settings": ChatSettingsType, + "chest": ChestType, + "choose_realm": ChooseRealmType, + "coin_purchase": CoinPurchaseType, + "command_block": CommandBlockType, + "confirm_delete_account": ConfirmDeleteAccountType, + "content_log": ContentLogType, + "content_log_history": ContentLogHistoryType, + "crafter_pocket": CrafterPocketType, + "create_world_upsell": CreateWorldUpsellType, + "credits": CreditsType, + "csb_purchase_error": CsbPurchaseErrorType, + "csb": CsbType, + "csb_content": CsbContentType, + "csb_banner": CsbBannerType, + "csb_buy": CsbBuyType, + "common_csb": CommonCsbType, + "csb_purchase_amazondevicewarning": CsbPurchaseAmazondevicewarningType, + "csb_purchase_warning": CsbPurchaseWarningType, + "csb_subscription_panel": CsbSubscriptionPanelType, + "csb_upsell": CsbUpsellType, + "csb_packs": CsbPacksType, + "csb_welcome": CsbWelcomeType, + "csb_faq": CsbFaqType, + "csb_landing": CsbLandingType, + "custom_templates": CustomTemplatesType, + "world_conversion_complete": WorldConversionCompleteType, + "day_one_experience_intro": DayOneExperienceIntroType, + "day_one_experience": DayOneExperienceType, + "death": DeathType, + "debug_screen": DebugScreenType, + "dev_console": DevConsoleType, + "disconnect": DisconnectType, + "display_logged_error": DisplayLoggedErrorType, + "discovery_dialog": DiscoveryDialogType, + "edu_featured": EduFeaturedType, + "edu_quit_button": EduQuitButtonType, + "persona_emote": PersonaEmoteType, + "enchanting": EnchantingType, + "enchanting_pocket": EnchantingPocketType, + "encyclopedia": EncyclopediaType, + "expanded_skin_pack": ExpandedSkinPackType, + "feed_common": FeedCommonType, + "file_upload": FileUploadType, + "furnace": FurnaceType, + "furnace_pocket": FurnacePocketType, + "game_tip": GameTipType, + "gamepad_disconnected": GamepadDisconnectedType, + "gameplay": GameplayType, + "gathering_info": GatheringInfoType, + "globalpause": GlobalpauseType, + "grindstone": GrindstoneType, + "grindstone_pocket": GrindstonePocketType, + "gamma_calibration": GammaCalibrationType, + "horse": HorseType, + "horse_pocket": HorsePocketType, + "how_to_play_common": HowToPlayCommonType, + "how_to_play": HowToPlayType, + "hud": HudType, + "host_options": HostOptionsType, + "bed": BedType, + "im_reader": ImReaderType, + "crafting": CraftingType, + "crafting_pocket": CraftingPocketType, + "invite": InviteType, + "jigsaw_editor": JigsawEditorType, + "late_join": LateJoinType, + "library_modal": LibraryModalType, + "local_world_picker": LocalWorldPickerType, + "loom": LoomType, + "loom_pocket": LoomPocketType, + "manage_feed": ManageFeedType, + "manifest_validation": ManifestValidationType, + "sdl_label": SdlLabelType, + "sdl_dropdowns": SdlDropdownsType, + "sdl_image_row": SdlImageRowType, + "sdl_text_row": SdlTextRowType, + "mob_effect": MobEffectType, + "non_xbl_user_management": NonXblUserManagementType, + "npc_interact": NpcInteractType, + "online_safety": OnlineSafetyType, + "pack_settings": PackSettingsType, + "panorama": PanoramaType, + "patch_notes": PatchNotesType, + "pause": PauseType, + "pdp": PdpType, + "pdp_screenshots": PdpScreenshotsType, + "permissions": PermissionsType, + "persona_cast_character_screen": PersonaCastCharacterScreenType, + "persona_common": PersonaCommonType, + "persona_popups": PersonaPopupsType, + "play": PlayType, + "perf_turtle": PerfTurtleType, + "pocket_containers": PocketContainersType, + "popup_dialog": PopupDialogType, + "portfolio": PortfolioType, + "progress": ProgressType, + "rating_prompt": RatingPromptType, + "realms_common": RealmsCommonType, + "realms_create": RealmsCreateType, + "realms_pending_invitations": RealmsPendingInvitationsType, + "realms_slots": RealmsSlotsType, + "realms_settings": RealmsSettingsType, + "realms_allowlist": RealmsAllowlistType, + "realms_invite_link_settings": RealmsInviteLinkSettingsType, + "realms_plus_ended": RealmsPlusEndedType, + "realmsPlus": RealmsPlusType, + "realmsPlus_content": RealmsPlusContentType, + "realmsPlus_faq": RealmsPlusFaqType, + "realmsPlus_landing": RealmsPlusLandingType, + "realmsPlus_buy": RealmsPlusBuyType, + "realmsPlus_packs": RealmsPlusPacksType, + "realmsPlus_purchase_warning": RealmsPlusPurchaseWarningType, + "realms_stories_transition": RealmsStoriesTransitionType, + "redstone": RedstoneType, + "resource_packs": ResourcePacksType, + "safe_zone": SafeZoneType, + "storage_migration_common": StorageMigrationCommonType, + "storage_migration_generic": StorageMigrationGenericType, + "scoreboard": ScoreboardType, + "screenshot": ScreenshotType, + "select_world": SelectWorldType, + "server_form": ServerFormType, + "settings": SettingsType, + "controls_section": ControlsSectionType, + "general_section": GeneralSectionType, + "realms_world_section": RealmsWorldSectionType, + "settings_common": SettingsCommonType, + "world_section": WorldSectionType, + "social_section": SocialSectionType, + "sidebar_navigation": SidebarNavigationType, + "sign": SignType, + "simple_inprogress": SimpleInprogressType, + "skin_pack_purchase": SkinPackPurchaseType, + "skin_picker": SkinPickerType, + "smithing_table": SmithingTableType, + "smithing_table_2": SmithingTable2Type, + "smithing_table_pocket": SmithingTablePocketType, + "smithing_table_2_pocket": SmithingTable2PocketType, + "smoker": SmokerType, + "start": StartType, + "stonecutter": StonecutterType, + "stonecutter_pocket": StonecutterPocketType, + "storage_management": StorageManagementType, + "storage_management_popup": StorageManagementPopupType, + "common_store": CommonStoreType, + "store_layout": StoreLayoutType, + "filter_menu": FilterMenuType, + "store_inventory": StoreInventoryType, + "store_item_list": StoreItemListType, + "store_progress": StoreProgressType, + "promo_timeline": PromoTimelineType, + "store_sale_item_list": StoreSaleItemListType, + "store_search": StoreSearchType, + "sort_menu": SortMenuType, + "structure_editor": StructureEditorType, + "submit_feedback": SubmitFeedbackType, + "tabbed_upsell": TabbedUpsellType, + "thanks_for_testing": ThanksForTestingType, + "third_party_store": ThirdPartyStoreType, + "toast_screen": ToastScreenType, + "token_faq": TokenFaqType, + "trade": TradeType, + "trade_pocket": TradePocketType, + "trade2": Trade2Type, + "trade2_pocket": Trade2PocketType, + "trialUpsell": TrialUpsellType, + "ugc_viewer": UgcViewerType, + "common_art": CommonArtType, + "common": CommonType, + "common-classic": CommonClassicType, + "edu_common": EduCommonType, + "purchase_common": PurchaseCommonType, + "common_buttons": CommonButtonsType, + "common_dialogs": CommonDialogsType, + "common_tabs": CommonTabsType, + "common_toggles": CommonTogglesType, + "friendsbutton": FriendsbuttonType, + "iconbutton": IconbuttonType, + "update_dimensions": UpdateDimensionsType, + "update_version": UpdateVersionType, + "world_recovery": WorldRecoveryType, + "world_templates": WorldTemplatesType, + "xbl_console_qr_signin": XblConsoleQrSigninType, + "xbl_console_signin": XblConsoleSigninType, + "xbl_console_signin_succeeded": XblConsoleSigninSucceededType, + "xbl_immediate_signin": XblImmediateSigninType, + "win10_trial_conversion": Win10TrialConversionType, } export type AchievementType = { - empty_progress_bar_icon: T.IMAGE - full_progress_bar_icon_base: T.IMAGE + "empty_progress_bar_icon": T.IMAGE, + "full_progress_bar_icon_base": T.IMAGE, } export type AddExternalServerType = { - play_button: T.BUTTON - play_disabled_button: T.BUTTON - remove_button: T.BUTTON - save_button: T.BUTTON - save_disabled_button: T.BUTTON - text_edit_group: T.STACK_PANEL - "text_edit_group/name_label": T.LABEL - "text_edit_group/edit_box": T.EDIT_BOX - title_text: T.LABEL - content_panel: T.STACK_PANEL - "content_panel/name_edit": T.STACK_PANEL - "content_panel/ip_edit": T.STACK_PANEL - "content_panel/port_edit": T.STACK_PANEL - main_panel: T.INPUT_PANEL - "main_panel/common_panel": T.PANEL - "main_panel/title": T.LABEL - "main_panel/main_content": T.STACK_PANEL - "main_panel/play": T.BUTTON - "main_panel/play_disabled": T.BUTTON - "main_panel/remove": T.BUTTON - "main_panel/save": T.BUTTON - "main_panel/save_disabled": T.BUTTON - gamepad_helpers: T.PANEL - "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL - add_external_server_screen_new: T.SCREEN - add_external_server_screen_edit: T.SCREEN - add_external_server_screen: T.SCREEN - add_external_server_screen_content: T.PANEL - "add_external_server_screen_content/root_panel": T.PANEL - "add_external_server_screen_content/root_panel/gamepad_helpers": T.PANEL - "add_external_server_screen_content/root_panel/main_panel": T.INPUT_PANEL + "play_button": T.BUTTON, + "play_disabled_button": T.BUTTON, + "remove_button": T.BUTTON, + "save_button": T.BUTTON, + "save_disabled_button": T.BUTTON, + "text_edit_group": T.STACK_PANEL, + "text_edit_group/name_label": T.LABEL, + "text_edit_group/edit_box": T.EDIT_BOX, + "title_text": T.LABEL, + "content_panel": T.STACK_PANEL, + "content_panel/name_edit": T.STACK_PANEL, + "content_panel/ip_edit": T.STACK_PANEL, + "content_panel/port_edit": T.STACK_PANEL, + "main_panel": T.INPUT_PANEL, + "main_panel/common_panel": T.PANEL, + "main_panel/title": T.LABEL, + "main_panel/main_content": T.STACK_PANEL, + "main_panel/play": T.BUTTON, + "main_panel/play_disabled": T.BUTTON, + "main_panel/remove": T.BUTTON, + "main_panel/save": T.BUTTON, + "main_panel/save_disabled": T.BUTTON, + "gamepad_helpers": T.PANEL, + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL, + "add_external_server_screen_new": T.SCREEN, + "add_external_server_screen_edit": T.SCREEN, + "add_external_server_screen": T.SCREEN, + "add_external_server_screen_content": T.PANEL, + "add_external_server_screen_content/root_panel": T.PANEL, + "add_external_server_screen_content/root_panel/gamepad_helpers": T.PANEL, + "add_external_server_screen_content/root_panel/main_panel": T.INPUT_PANEL, } export type AdhocInprogressType = { - title_text: T.LABEL - main_panel: T.PANEL - "main_panel/common_panel": T.PANEL - "main_panel/title": T.LABEL - "main_panel/main_content": T.LABEL - "main_panel/progress_loading_bars": T.IMAGE - adhoc_inprogress_screen: T.SCREEN - adhoc_inprogress_screen_content: T.PANEL - "adhoc_inprogress_screen_content/root_panel": T.PANEL - "adhoc_inprogress_screen_content/root_panel/main_panel": T.PANEL + "title_text": T.LABEL, + "main_panel": T.PANEL, + "main_panel/common_panel": T.PANEL, + "main_panel/title": T.LABEL, + "main_panel/main_content": T.LABEL, + "main_panel/progress_loading_bars": T.IMAGE, + "adhoc_inprogress_screen": T.SCREEN, + "adhoc_inprogress_screen_content": T.PANEL, + "adhoc_inprogress_screen_content/root_panel": T.PANEL, + "adhoc_inprogress_screen_content/root_panel/main_panel": T.PANEL, } export type AdhocType = { - online_button: T.BUTTON - local_button: T.BUTTON - title_text: T.LABEL - content_panel: T.STACK_PANEL - "content_panel/title_text": T.LABEL - main_panel: T.INPUT_PANEL - "main_panel/common_panel": T.PANEL - "main_panel/title": T.LABEL - "main_panel/main_content": T.LABEL - "main_panel/online": T.BUTTON - "main_panel/local": T.BUTTON - gamepad_helpers: T.PANEL - "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL - adhoc_screen: T.SCREEN - adhoc_screen_content: T.PANEL - "adhoc_screen_content/root_panel": T.PANEL - "adhoc_screen_content/root_panel/gamepad_helpers": T.PANEL - "adhoc_screen_content/root_panel/main_panel": T.INPUT_PANEL + "online_button": T.BUTTON, + "local_button": T.BUTTON, + "title_text": T.LABEL, + "content_panel": T.STACK_PANEL, + "content_panel/title_text": T.LABEL, + "main_panel": T.INPUT_PANEL, + "main_panel/common_panel": T.PANEL, + "main_panel/title": T.LABEL, + "main_panel/main_content": T.LABEL, + "main_panel/online": T.BUTTON, + "main_panel/local": T.BUTTON, + "gamepad_helpers": T.PANEL, + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL, + "adhoc_screen": T.SCREEN, + "adhoc_screen_content": T.PANEL, + "adhoc_screen_content/root_panel": T.PANEL, + "adhoc_screen_content/root_panel/gamepad_helpers": T.PANEL, + "adhoc_screen_content/root_panel/main_panel": T.INPUT_PANEL, } export type AnvilType = { - generic_label: T.LABEL - anvil_icon: T.IMAGE - title_label: T.LABEL - anvil_icon_panel: T.PANEL - "anvil_icon_panel/anvil_icon": T.IMAGE - text_edit_control: T.EDIT_BOX - icon_and_text_panel: T.PANEL - "icon_and_text_panel/anvil_icon_panel": T.PANEL - "icon_and_text_panel/anvil_title_and_text_panel": T.PANEL - title_panel: T.PANEL - "title_panel/title_label": T.LABEL - text_edit_panel: T.PANEL - "text_edit_panel/text_edit_control": T.EDIT_BOX - anvil_title_and_text_panel: T.PANEL - "anvil_title_and_text_panel/title_panel": T.PANEL - "anvil_title_and_text_panel/text_edit_panel": T.PANEL - plus_sign_icon: T.IMAGE - arrow_icon: T.IMAGE - cross_out_icon: T.IMAGE - anvil_output_slot_button: T.BUTTON - anvil_item_slot: T.PANEL - "anvil_item_slot/container_item": T.INPUT_PANEL - recipe_grid: T.GRID - "recipe_grid/input_item_slot": T.PANEL - "recipe_grid/plus": T.PANEL - "recipe_grid/plus/plus_sign_icon": T.IMAGE - "recipe_grid/material_item_slot": T.PANEL - "recipe_grid/yields": T.PANEL - "recipe_grid/yields/arrow_icon": T.IMAGE - "recipe_grid/yields/cross_out_icon": T.IMAGE - "recipe_grid/result_item_slot": T.PANEL - cost_label: T.LABEL - "cost_label/gray": T.IMAGE - recipe_panel: T.PANEL - "recipe_panel/recipe_grid": T.GRID - "recipe_panel/cost_label_0": T.LABEL - "recipe_panel/cost_label_1": T.LABEL - top_half_panel: T.PANEL - "top_half_panel/icon_and_text_panel": T.PANEL - "top_half_panel/recipe_panel": T.PANEL - anvil_panel: T.PANEL - "anvil_panel/container_gamepad_helpers": T.STACK_PANEL - "anvil_panel/selected_item_details_factory": T.FACTORY - "anvil_panel/item_lock_notification_factory": T.FACTORY - "anvil_panel/root_panel": T.INPUT_PANEL - "anvil_panel/root_panel/common_panel": T.PANEL - "anvil_panel/root_panel/anvil_screen_inventory": T.PANEL - "anvil_panel/root_panel/anvil_screen_inventory/top_half_panel": T.PANEL - "anvil_panel/root_panel/anvil_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL - "anvil_panel/root_panel/anvil_screen_inventory/hotbar_grid": T.GRID - "anvil_panel/root_panel/anvil_screen_inventory/inventory_take_progress_icon_button": T.BUTTON - "anvil_panel/root_panel/inventory_selected_icon_button": T.BUTTON - "anvil_panel/root_panel/gamepad_cursor": T.BUTTON - "anvil_panel/flying_item_renderer": T.CUSTOM - anvil_screen: T.SCREEN + "generic_label": T.LABEL, + "anvil_icon": T.IMAGE, + "title_label": T.LABEL, + "anvil_icon_panel": T.PANEL, + "anvil_icon_panel/anvil_icon": T.IMAGE, + "text_edit_control": T.EDIT_BOX, + "icon_and_text_panel": T.PANEL, + "icon_and_text_panel/anvil_icon_panel": T.PANEL, + "icon_and_text_panel/anvil_title_and_text_panel": T.PANEL, + "title_panel": T.PANEL, + "title_panel/title_label": T.LABEL, + "text_edit_panel": T.PANEL, + "text_edit_panel/text_edit_control": T.EDIT_BOX, + "anvil_title_and_text_panel": T.PANEL, + "anvil_title_and_text_panel/title_panel": T.PANEL, + "anvil_title_and_text_panel/text_edit_panel": T.PANEL, + "plus_sign_icon": T.IMAGE, + "arrow_icon": T.IMAGE, + "cross_out_icon": T.IMAGE, + "anvil_output_slot_button": T.BUTTON, + "anvil_item_slot": T.PANEL, + "anvil_item_slot/container_item": T.INPUT_PANEL, + "recipe_grid": T.GRID, + "recipe_grid/input_item_slot": T.PANEL, + "recipe_grid/plus": T.PANEL, + "recipe_grid/plus/plus_sign_icon": T.IMAGE, + "recipe_grid/material_item_slot": T.PANEL, + "recipe_grid/yields": T.PANEL, + "recipe_grid/yields/arrow_icon": T.IMAGE, + "recipe_grid/yields/cross_out_icon": T.IMAGE, + "recipe_grid/result_item_slot": T.PANEL, + "cost_label": T.LABEL, + "cost_label/gray": T.IMAGE, + "recipe_panel": T.PANEL, + "recipe_panel/recipe_grid": T.GRID, + "recipe_panel/cost_label_0": T.LABEL, + "recipe_panel/cost_label_1": T.LABEL, + "top_half_panel": T.PANEL, + "top_half_panel/icon_and_text_panel": T.PANEL, + "top_half_panel/recipe_panel": T.PANEL, + "anvil_panel": T.PANEL, + "anvil_panel/container_gamepad_helpers": T.STACK_PANEL, + "anvil_panel/selected_item_details_factory": T.FACTORY, + "anvil_panel/item_lock_notification_factory": T.FACTORY, + "anvil_panel/root_panel": T.INPUT_PANEL, + "anvil_panel/root_panel/common_panel": T.PANEL, + "anvil_panel/root_panel/anvil_screen_inventory": T.PANEL, + "anvil_panel/root_panel/anvil_screen_inventory/top_half_panel": T.PANEL, + "anvil_panel/root_panel/anvil_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL, + "anvil_panel/root_panel/anvil_screen_inventory/hotbar_grid": T.GRID, + "anvil_panel/root_panel/anvil_screen_inventory/inventory_take_progress_icon_button": T.BUTTON, + "anvil_panel/root_panel/inventory_selected_icon_button": T.BUTTON, + "anvil_panel/root_panel/gamepad_cursor": T.BUTTON, + "anvil_panel/flying_item_renderer": T.CUSTOM, + "anvil_screen": T.SCREEN, } export type AnvilPocketType = { - generic_label: T.LABEL - background_image: T.IMAGE - arrow_icon: T.IMAGE - cost_label: T.LABEL - "cost_label/gray": T.IMAGE - title_label: T.LABEL - text_edit_control: T.EDIT_BOX - anvil_title_and_text_panel: T.PANEL - "anvil_title_and_text_panel/title_label": T.LABEL - "anvil_title_and_text_panel/text_edit_control": T.EDIT_BOX - slots_panel: T.PANEL - "slots_panel/input_slot": T.INPUT_PANEL - "slots_panel/material_slot": T.INPUT_PANEL - "slots_panel/result_slot": T.INPUT_PANEL - "slots_panel/plus_sign": T.LABEL - "slots_panel/arrow": T.IMAGE - "slots_panel/arrow/cross_out": T.IMAGE - anvil_contents_panel: T.PANEL - "anvil_contents_panel/red_cost": T.LABEL - "anvil_contents_panel/green_cost": T.LABEL - "anvil_contents_panel/slots_panel": T.PANEL - "anvil_contents_panel/anvil_title_and_text_panel": T.PANEL - inventory_grid: T.GRID - inventory_content: T.PANEL - "inventory_content/scrolling_panel": T.PANEL - inventory_and_anvil_panel: T.PANEL - "inventory_and_anvil_panel/inventory_half_screen": T.PANEL - "inventory_and_anvil_panel/inventory_half_screen/inventory_content": T.PANEL - "inventory_and_anvil_panel/anvil_half_screen": T.PANEL - "inventory_and_anvil_panel/anvil_half_screen/anvil_contents_panel": T.PANEL - header: T.PANEL - "header/header_background": T.IMAGE - "header/legacy_pocket_close_button": T.BUTTON - "header/panel": T.PANEL - "header/panel/title_label": T.LABEL - header_and_content_stack_panel: T.STACK_PANEL - "header_and_content_stack_panel/header": T.PANEL - "header_and_content_stack_panel/inventory_and_anvil_panel": T.PANEL - anvil_panel: T.PANEL - "anvil_panel/bg": T.IMAGE - "anvil_panel/root_panel": T.INPUT_PANEL - "anvil_panel/header_and_content_stack_panel": T.STACK_PANEL - "anvil_panel/container_gamepad_helpers": T.STACK_PANEL - "anvil_panel/inventory_selected_icon_button": T.BUTTON - "anvil_panel/hold_icon": T.BUTTON - "anvil_panel/selected_item_details_factory": T.FACTORY - "anvil_panel/item_lock_notification_factory": T.FACTORY - "anvil_panel/flying_item_renderer": T.CUSTOM + "generic_label": T.LABEL, + "background_image": T.IMAGE, + "arrow_icon": T.IMAGE, + "cost_label": T.LABEL, + "cost_label/gray": T.IMAGE, + "title_label": T.LABEL, + "text_edit_control": T.EDIT_BOX, + "anvil_title_and_text_panel": T.PANEL, + "anvil_title_and_text_panel/title_label": T.LABEL, + "anvil_title_and_text_panel/text_edit_control": T.EDIT_BOX, + "slots_panel": T.PANEL, + "slots_panel/input_slot": T.INPUT_PANEL, + "slots_panel/material_slot": T.INPUT_PANEL, + "slots_panel/result_slot": T.INPUT_PANEL, + "slots_panel/plus_sign": T.LABEL, + "slots_panel/arrow": T.IMAGE, + "slots_panel/arrow/cross_out": T.IMAGE, + "anvil_contents_panel": T.PANEL, + "anvil_contents_panel/red_cost": T.LABEL, + "anvil_contents_panel/green_cost": T.LABEL, + "anvil_contents_panel/slots_panel": T.PANEL, + "anvil_contents_panel/anvil_title_and_text_panel": T.PANEL, + "inventory_grid": T.GRID, + "inventory_content": T.PANEL, + "inventory_content/scrolling_panel": T.PANEL, + "inventory_and_anvil_panel": T.PANEL, + "inventory_and_anvil_panel/inventory_half_screen": T.PANEL, + "inventory_and_anvil_panel/inventory_half_screen/inventory_content": T.PANEL, + "inventory_and_anvil_panel/anvil_half_screen": T.PANEL, + "inventory_and_anvil_panel/anvil_half_screen/anvil_contents_panel": T.PANEL, + "header": T.PANEL, + "header/header_background": T.IMAGE, + "header/legacy_pocket_close_button": T.BUTTON, + "header/panel": T.PANEL, + "header/panel/title_label": T.LABEL, + "header_and_content_stack_panel": T.STACK_PANEL, + "header_and_content_stack_panel/header": T.PANEL, + "header_and_content_stack_panel/inventory_and_anvil_panel": T.PANEL, + "anvil_panel": T.PANEL, + "anvil_panel/bg": T.IMAGE, + "anvil_panel/root_panel": T.INPUT_PANEL, + "anvil_panel/header_and_content_stack_panel": T.STACK_PANEL, + "anvil_panel/container_gamepad_helpers": T.STACK_PANEL, + "anvil_panel/inventory_selected_icon_button": T.BUTTON, + "anvil_panel/hold_icon": T.BUTTON, + "anvil_panel/selected_item_details_factory": T.FACTORY, + "anvil_panel/item_lock_notification_factory": T.FACTORY, + "anvil_panel/flying_item_renderer": T.CUSTOM, } export type AuthenticationModalsType = { - modal_dialog_label: T.LABEL - modal_dialog_content: T.STACK_PANEL - "modal_dialog_content/body_text": T.PANEL - "modal_dialog_content/button_wrapper": T.PANEL - "modal_dialog_content/button_wrapper/buttons": T.STACK_PANEL - "modal_dialog_content/button_wrapper/buttons/left": T.BUTTON - "modal_dialog_content/button_wrapper/buttons/padding": T.PANEL - "modal_dialog_content/button_wrapper/buttons/right": T.BUTTON - modal_dialog_frame: T.IMAGE - "modal_dialog_frame/title": T.LABEL - "modal_dialog_frame/close": T.BUTTON - "modal_dialog_frame/black_tint_image": T.IMAGE - "modal_dialog_frame/black_tint_image/content": T.UNKNOWN - ad_modal_dialog: T.SCREEN + "modal_dialog_label": T.LABEL, + "modal_dialog_content": T.STACK_PANEL, + "modal_dialog_content/body_text": T.PANEL, + "modal_dialog_content/button_wrapper": T.PANEL, + "modal_dialog_content/button_wrapper/buttons": T.STACK_PANEL, + "modal_dialog_content/button_wrapper/buttons/left": T.BUTTON, + "modal_dialog_content/button_wrapper/buttons/padding": T.PANEL, + "modal_dialog_content/button_wrapper/buttons/right": T.BUTTON, + "modal_dialog_frame": T.IMAGE, + "modal_dialog_frame/title": T.LABEL, + "modal_dialog_frame/close": T.BUTTON, + "modal_dialog_frame/black_tint_image": T.IMAGE, + "modal_dialog_frame/black_tint_image/content": T.UNKNOWN, + "ad_modal_dialog": T.SCREEN, } export type AuthenticationType = { - nothing: T.PANEL - tts_control: T.BUTTON - split_button_panel: T.PANEL - "split_button_panel/buttons": T.STACK_PANEL - "split_button_panel/buttons/a": T.UNKNOWN - "split_button_panel/buttons/paddding": T.PANEL - "split_button_panel/buttons/b": T.UNKNOWN - vertical_split_button_panel: T.PANEL - fixed_width_wrapper: T.PANEL - "fixed_width_wrapper/content": T.UNKNOWN - sign_in_button: T.BUTTON - download_button: T.BUTTON - smooth_label: T.LABEL - smooth_bound_label: T.LABEL - title_label: T.LABEL - eula_hyperlink: T.BUTTON - accept_eula_button: T.BUTTON - eula_content: T.STACK_PANEL - "eula_content/prompt_wrapper": T.PANEL - "eula_content/prompt_wrapper/border": T.BUTTON - "eula_content/prompt_wrapper/prompt_text": T.LABEL - "eula_content/padding": T.PANEL - "eula_content/buttons": T.PANEL - eula: T.IMAGE - version: T.PANEL - "version/label": T.LABEL - "version/label_background": T.IMAGE - view_terms_button: T.BUTTON - privacy_policy_button: T.BUTTON - agree_panel: T.PANEL - "agree_panel/checkbox_control": T.TOGGLE - "agree_panel/i_agree_label": T.LABEL - term_item: T.PANEL - "term_item/item": T.UNKNOWN - terms_and_conditions_panel: T.PANEL - "terms_and_conditions_panel/terms_string_panel": T.PANEL - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": T.STACK_PANEL - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree": T.PANEL - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": T.PANEL - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": T.PANEL - confirmation_panel: T.PANEL - "confirmation_panel/confirm_button": T.BUTTON - scroll_stack_panel: T.PANEL - "scroll_stack_panel/border": T.BUTTON - "scroll_stack_panel/terms": T.LABEL - purchase_confirm_content: T.STACK_PANEL - "purchase_confirm_content/header_padding": T.PANEL - "purchase_confirm_content/panel_wrap": T.PANEL - "purchase_confirm_content/panel_wrap/scrolling_panel": T.PANEL - "purchase_confirm_content/terms_and_conditions_panel": T.PANEL - "purchase_confirm_content/button_padding": T.PANEL - "purchase_confirm_content/confirmation_panel": T.PANEL - "purchase_confirm_content/padding": T.PANEL - purchase_prompt_content: T.STACK_PANEL - "purchase_prompt_content/prompt_wrap": T.PANEL - "purchase_prompt_content/prompt_wrap/border": T.BUTTON - "purchase_prompt_content/prompt_wrap/prompt": T.LABEL - "purchase_prompt_content/purchase_wrap_centering_container": T.PANEL - "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap": T.STACK_PANEL - "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/purchase": T.BUTTON - "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/padding_middle": T.PANEL - "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/signout": T.BUTTON - purchase_prompt: T.IMAGE - purchase_confirm: T.IMAGE - purchase_panel: T.PANEL - "purchase_panel/prompt": T.IMAGE - "purchase_panel/confirm": T.IMAGE - title_panel: T.PANEL - "title_panel/title_label_wrapper": T.PANEL - hyperlink_panel: T.PANEL - "hyperlink_panel/link_stack": T.STACK_PANEL - "hyperlink_panel/link_stack/link1": T.BUTTON - "hyperlink_panel/link_stack/link2": T.BUTTON - "hyperlink_panel/link_stack/padding": T.PANEL - auth_screen: T.SCREEN - sign_in_content: T.STACK_PANEL - "sign_in_content/body_text": T.PANEL - "sign_in_content/body_hyperlink": T.PANEL - "sign_in_content/sign_in_wrapper": T.PANEL - "sign_in_content/sign_in_wrapper/button": T.BUTTON - "sign_in_content/download_wrapper": T.PANEL - "sign_in_content/download_wrapper/button": T.BUTTON - authentication_screen_content: T.PANEL - "authentication_screen_content/debug": T.STACK_PANEL - "authentication_screen_content/client_version": T.PANEL - "authentication_screen_content/client_version/version": T.PANEL - "authentication_screen_content/sign_in": T.IMAGE - "authentication_screen_content/sign_in_ios": T.IMAGE - "authentication_screen_content/pack_progress": T.IMAGE - "authentication_screen_content/welcome": T.UNKNOWN - "authentication_screen_content/demo": T.UNKNOWN - "authentication_screen_content/eula": T.IMAGE - "authentication_screen_content/purchase_panel": T.PANEL - "authentication_screen_content/popup_dialog_factory": T.FACTORY - popup_content_base: T.STACK_PANEL - "popup_content_base/message": T.PANEL - "popup_content_base/message/border": T.BUTTON - "popup_content_base/message/text": T.PANEL - "popup_content_base/content": T.UNKNOWN - "popup_content_base/footer_padding": T.PANEL - popup_dialog: T.INPUT_PANEL - "popup_dialog/dialog": T.IMAGE - trial_info_ios_additional_content: T.PANEL - "trial_info_ios_additional_content/dismiss": T.BUTTON - popup_dialog_trial_info_ios: T.INPUT_PANEL - student_message_panel: T.PANEL - trial_info_additional_content: T.STACK_PANEL - "trial_info_additional_content/buttons": T.PANEL - generic_welcome_additional_content: T.STACK_PANEL - "generic_welcome_additional_content/button_wrapper": T.PANEL - "generic_welcome_additional_content/button_wrapper/buttons": T.PANEL - popup_dialog_trial_info: T.INPUT_PANEL - popup_dialog_generic_welcome: T.INPUT_PANEL - popup_message: T.STACK_PANEL - "popup_message/main_message": T.LABEL - "popup_message/extra_message": T.PANEL - "popup_message/padding": T.PANEL - popup_message_student: T.LABEL - popup_hyperlink: T.BUTTON - popup_purchase_link: T.BUTTON - popup_dismiss_button: T.BUTTON - pack_progress_content: T.STACK_PANEL - "pack_progress_content/top_padding": T.PANEL - "pack_progress_content/loading_text_panel": T.PANEL - "pack_progress_content/loading_text_panel/loading_text": T.LABEL - "pack_progress_content/loading_bar_panel": T.PANEL - "pack_progress_content/loading_bar_panel/loading_bar": T.PANEL - "pack_progress_content/loading_padding": T.PANEL - "pack_progress_content/skip_panel": T.PANEL - "pack_progress_content/skip_panel/skip_button": T.BUTTON - "pack_progress_content/bottom_padding": T.PANEL - sign_in_ios_content: T.STACK_PANEL - "sign_in_ios_content/body_text": T.PANEL - "sign_in_ios_content/body_hyperlink": T.PANEL - "sign_in_ios_content/signin_ios_button_panel": T.STACK_PANEL - "sign_in_ios_content/signin_ios_button_panel/app_store_prompt_wrap": T.PANEL - "sign_in_ios_content/signin_ios_button_panel/app_store_prompt_wrap/prompt": T.LABEL - "sign_in_ios_content/signin_ios_button_panel/buttons": T.PANEL - "sign_in_ios_content/signin_ios_button_panel/pad_footer": T.PANEL - "sign_in_ios_content/error_sign_in_panel": T.PANEL - "sign_in_ios_content/error_sign_in_panel/button": T.BUTTON - "sign_in_ios_content/error_download_panel": T.PANEL - "sign_in_ios_content/error_download_panel/button": T.BUTTON - sign_in_ios_button: T.BUTTON - to_app_store: T.BUTTON - debug_panel: T.STACK_PANEL - "debug_panel/state_label": T.LABEL - "debug_panel/state_text_box": T.EDIT_BOX - "debug_panel/open_popup": T.BUTTON - "debug_panel/refresh_popup": T.BUTTON - "debug_panel/reset": T.BUTTON - "debug_panel/toggle_ios": T.BUTTON - authentication_popup_link_button: T.STACK_PANEL - "authentication_popup_link_button/top_padding": T.PANEL - "authentication_popup_link_button/link_button": T.BUTTON - authentication_popup_contents: T.STACK_PANEL - "authentication_popup_contents/initial_padding": T.PANEL - "authentication_popup_contents/body": T.LABEL - "authentication_popup_contents/learn_more_link": T.STACK_PANEL - "authentication_popup_contents/link2": T.STACK_PANEL - "authentication_popup_contents/end_padding": T.PANEL - resizeable_scrolling_panel: T.PANEL - authentication_popup_content_panel: T.PANEL - authentication_popup_button: T.BUTTON - authentication_popup_one_button: T.PANEL - "authentication_popup_one_button/button": T.BUTTON - authentication_popup_two_buttons: T.STACK_PANEL - "authentication_popup_two_buttons/first_button": T.BUTTON - "authentication_popup_two_buttons/button_padding": T.PANEL - "authentication_popup_two_buttons/second_button": T.BUTTON - authentication_popup_lower_button_panel: T.PANEL - "authentication_popup_lower_button_panel/one_button": T.PANEL - "authentication_popup_lower_button_panel/two_buttons": T.STACK_PANEL - authentication_popup: T.INPUT_PANEL + "nothing": T.PANEL, + "tts_control": T.BUTTON, + "split_button_panel": T.PANEL, + "split_button_panel/buttons": T.STACK_PANEL, + "split_button_panel/buttons/a": T.UNKNOWN, + "split_button_panel/buttons/paddding": T.PANEL, + "split_button_panel/buttons/b": T.UNKNOWN, + "vertical_split_button_panel": T.PANEL, + "fixed_width_wrapper": T.PANEL, + "fixed_width_wrapper/content": T.UNKNOWN, + "sign_in_button": T.BUTTON, + "download_button": T.BUTTON, + "smooth_label": T.LABEL, + "smooth_bound_label": T.LABEL, + "title_label": T.LABEL, + "eula_hyperlink": T.BUTTON, + "accept_eula_button": T.BUTTON, + "eula_content": T.STACK_PANEL, + "eula_content/prompt_wrapper": T.PANEL, + "eula_content/prompt_wrapper/border": T.BUTTON, + "eula_content/prompt_wrapper/prompt_text": T.LABEL, + "eula_content/padding": T.PANEL, + "eula_content/buttons": T.PANEL, + "eula": T.IMAGE, + "version": T.PANEL, + "version/label": T.LABEL, + "version/label_background": T.IMAGE, + "view_terms_button": T.BUTTON, + "privacy_policy_button": T.BUTTON, + "agree_panel": T.PANEL, + "agree_panel/checkbox_control": T.TOGGLE, + "agree_panel/i_agree_label": T.LABEL, + "term_item": T.PANEL, + "term_item/item": T.UNKNOWN, + "terms_and_conditions_panel": T.PANEL, + "terms_and_conditions_panel/terms_string_panel": T.PANEL, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": T.STACK_PANEL, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree": T.PANEL, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": T.PANEL, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": T.PANEL, + "confirmation_panel": T.PANEL, + "confirmation_panel/confirm_button": T.BUTTON, + "scroll_stack_panel": T.PANEL, + "scroll_stack_panel/border": T.BUTTON, + "scroll_stack_panel/terms": T.LABEL, + "purchase_confirm_content": T.STACK_PANEL, + "purchase_confirm_content/header_padding": T.PANEL, + "purchase_confirm_content/panel_wrap": T.PANEL, + "purchase_confirm_content/panel_wrap/scrolling_panel": T.PANEL, + "purchase_confirm_content/terms_and_conditions_panel": T.PANEL, + "purchase_confirm_content/button_padding": T.PANEL, + "purchase_confirm_content/confirmation_panel": T.PANEL, + "purchase_confirm_content/padding": T.PANEL, + "purchase_prompt_content": T.STACK_PANEL, + "purchase_prompt_content/prompt_wrap": T.PANEL, + "purchase_prompt_content/prompt_wrap/border": T.BUTTON, + "purchase_prompt_content/prompt_wrap/prompt": T.LABEL, + "purchase_prompt_content/purchase_wrap_centering_container": T.PANEL, + "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap": T.STACK_PANEL, + "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/purchase": T.BUTTON, + "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/padding_middle": T.PANEL, + "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/signout": T.BUTTON, + "purchase_prompt": T.IMAGE, + "purchase_confirm": T.IMAGE, + "purchase_panel": T.PANEL, + "purchase_panel/prompt": T.IMAGE, + "purchase_panel/confirm": T.IMAGE, + "title_panel": T.PANEL, + "title_panel/title_label_wrapper": T.PANEL, + "hyperlink_panel": T.PANEL, + "hyperlink_panel/link_stack": T.STACK_PANEL, + "hyperlink_panel/link_stack/link1": T.BUTTON, + "hyperlink_panel/link_stack/link2": T.BUTTON, + "hyperlink_panel/link_stack/padding": T.PANEL, + "auth_screen": T.SCREEN, + "sign_in_content": T.STACK_PANEL, + "sign_in_content/body_text": T.PANEL, + "sign_in_content/body_hyperlink": T.PANEL, + "sign_in_content/sign_in_wrapper": T.PANEL, + "sign_in_content/sign_in_wrapper/button": T.BUTTON, + "sign_in_content/download_wrapper": T.PANEL, + "sign_in_content/download_wrapper/button": T.BUTTON, + "authentication_screen_content": T.PANEL, + "authentication_screen_content/debug": T.STACK_PANEL, + "authentication_screen_content/client_version": T.PANEL, + "authentication_screen_content/client_version/version": T.PANEL, + "authentication_screen_content/sign_in": T.IMAGE, + "authentication_screen_content/sign_in_ios": T.IMAGE, + "authentication_screen_content/pack_progress": T.IMAGE, + "authentication_screen_content/welcome": T.UNKNOWN, + "authentication_screen_content/demo": T.UNKNOWN, + "authentication_screen_content/eula": T.IMAGE, + "authentication_screen_content/purchase_panel": T.PANEL, + "authentication_screen_content/popup_dialog_factory": T.FACTORY, + "popup_content_base": T.STACK_PANEL, + "popup_content_base/message": T.PANEL, + "popup_content_base/message/border": T.BUTTON, + "popup_content_base/message/text": T.PANEL, + "popup_content_base/content": T.UNKNOWN, + "popup_content_base/footer_padding": T.PANEL, + "popup_dialog": T.INPUT_PANEL, + "popup_dialog/dialog": T.IMAGE, + "trial_info_ios_additional_content": T.PANEL, + "trial_info_ios_additional_content/dismiss": T.BUTTON, + "popup_dialog_trial_info_ios": T.INPUT_PANEL, + "student_message_panel": T.PANEL, + "trial_info_additional_content": T.STACK_PANEL, + "trial_info_additional_content/buttons": T.PANEL, + "generic_welcome_additional_content": T.STACK_PANEL, + "generic_welcome_additional_content/button_wrapper": T.PANEL, + "generic_welcome_additional_content/button_wrapper/buttons": T.PANEL, + "popup_dialog_trial_info": T.INPUT_PANEL, + "popup_dialog_generic_welcome": T.INPUT_PANEL, + "popup_message": T.STACK_PANEL, + "popup_message/main_message": T.LABEL, + "popup_message/extra_message": T.PANEL, + "popup_message/padding": T.PANEL, + "popup_message_student": T.LABEL, + "popup_hyperlink": T.BUTTON, + "popup_purchase_link": T.BUTTON, + "popup_dismiss_button": T.BUTTON, + "pack_progress_content": T.STACK_PANEL, + "pack_progress_content/top_padding": T.PANEL, + "pack_progress_content/loading_text_panel": T.PANEL, + "pack_progress_content/loading_text_panel/loading_text": T.LABEL, + "pack_progress_content/loading_bar_panel": T.PANEL, + "pack_progress_content/loading_bar_panel/loading_bar": T.PANEL, + "pack_progress_content/loading_padding": T.PANEL, + "pack_progress_content/skip_panel": T.PANEL, + "pack_progress_content/skip_panel/skip_button": T.BUTTON, + "pack_progress_content/bottom_padding": T.PANEL, + "sign_in_ios_content": T.STACK_PANEL, + "sign_in_ios_content/body_text": T.PANEL, + "sign_in_ios_content/body_hyperlink": T.PANEL, + "sign_in_ios_content/signin_ios_button_panel": T.STACK_PANEL, + "sign_in_ios_content/signin_ios_button_panel/app_store_prompt_wrap": T.PANEL, + "sign_in_ios_content/signin_ios_button_panel/app_store_prompt_wrap/prompt": T.LABEL, + "sign_in_ios_content/signin_ios_button_panel/buttons": T.PANEL, + "sign_in_ios_content/signin_ios_button_panel/pad_footer": T.PANEL, + "sign_in_ios_content/error_sign_in_panel": T.PANEL, + "sign_in_ios_content/error_sign_in_panel/button": T.BUTTON, + "sign_in_ios_content/error_download_panel": T.PANEL, + "sign_in_ios_content/error_download_panel/button": T.BUTTON, + "sign_in_ios_button": T.BUTTON, + "to_app_store": T.BUTTON, + "debug_panel": T.STACK_PANEL, + "debug_panel/state_label": T.LABEL, + "debug_panel/state_text_box": T.EDIT_BOX, + "debug_panel/open_popup": T.BUTTON, + "debug_panel/refresh_popup": T.BUTTON, + "debug_panel/reset": T.BUTTON, + "debug_panel/toggle_ios": T.BUTTON, + "authentication_popup_link_button": T.STACK_PANEL, + "authentication_popup_link_button/top_padding": T.PANEL, + "authentication_popup_link_button/link_button": T.BUTTON, + "authentication_popup_contents": T.STACK_PANEL, + "authentication_popup_contents/initial_padding": T.PANEL, + "authentication_popup_contents/body": T.LABEL, + "authentication_popup_contents/learn_more_link": T.STACK_PANEL, + "authentication_popup_contents/link2": T.STACK_PANEL, + "authentication_popup_contents/end_padding": T.PANEL, + "resizeable_scrolling_panel": T.PANEL, + "authentication_popup_content_panel": T.PANEL, + "authentication_popup_button": T.BUTTON, + "authentication_popup_one_button": T.PANEL, + "authentication_popup_one_button/button": T.BUTTON, + "authentication_popup_two_buttons": T.STACK_PANEL, + "authentication_popup_two_buttons/first_button": T.BUTTON, + "authentication_popup_two_buttons/button_padding": T.PANEL, + "authentication_popup_two_buttons/second_button": T.BUTTON, + "authentication_popup_lower_button_panel": T.PANEL, + "authentication_popup_lower_button_panel/one_button": T.PANEL, + "authentication_popup_lower_button_panel/two_buttons": T.STACK_PANEL, + "authentication_popup": T.INPUT_PANEL, } export type AutoSaveInfoType = { - auto_save: T.IMAGE - accept_label: T.PANEL - "accept_label/button_label": T.LABEL - accept_button: T.BUTTON - main_panel: T.INPUT_PANEL - "main_panel/common_panel": T.PANEL - "main_panel/title_label": T.LABEL - "main_panel/message_label": T.LABEL - "main_panel/save_icon": T.IMAGE - "main_panel/a": T.BUTTON - "main_panel/gamepad_helpers": T.PANEL - gamepad_helpers: T.PANEL - "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL - auto_save_info_screen: T.SCREEN - auto_save_info_screen_content: T.PANEL - "auto_save_info_screen_content/root_panel": T.PANEL - "auto_save_info_screen_content/root_panel/main_panel": T.INPUT_PANEL + "auto_save": T.IMAGE, + "accept_label": T.PANEL, + "accept_label/button_label": T.LABEL, + "accept_button": T.BUTTON, + "main_panel": T.INPUT_PANEL, + "main_panel/common_panel": T.PANEL, + "main_panel/title_label": T.LABEL, + "main_panel/message_label": T.LABEL, + "main_panel/save_icon": T.IMAGE, + "main_panel/a": T.BUTTON, + "main_panel/gamepad_helpers": T.PANEL, + "gamepad_helpers": T.PANEL, + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL, + "auto_save_info_screen": T.SCREEN, + "auto_save_info_screen_content": T.PANEL, + "auto_save_info_screen_content/root_panel": T.PANEL, + "auto_save_info_screen_content/root_panel/main_panel": T.INPUT_PANEL, } export type BeaconType = { - selected_item_details: T.PANEL - beacon_panel: T.PANEL - "beacon_panel/container_gamepad_helpers": T.STACK_PANEL - "beacon_panel/selected_item_details_factory": T.FACTORY - "beacon_panel/item_lock_notification_factory": T.FACTORY - "beacon_panel/root_panel": T.INPUT_PANEL - "beacon_panel/root_panel/common_panel": T.PANEL - "beacon_panel/root_panel/beacon_inventory": T.PANEL - "beacon_panel/root_panel/beacon_inventory/beacon_inner_panel": T.IMAGE - "beacon_panel/root_panel/beacon_inventory/payment_panel": T.PANEL - "beacon_panel/root_panel/beacon_inventory/inventory_panel_bottom_half": T.PANEL - "beacon_panel/root_panel/beacon_inventory/hotbar_grid_template": T.GRID - "beacon_panel/root_panel/beacon_inventory/inventory_selected_icon_button": T.BUTTON - "beacon_panel/root_panel/beacon_inventory/gamepad_cursor": T.BUTTON - "beacon_panel/flying_item_renderer": T.CUSTOM - inventory_slot_button: T.BUTTON - hotbar_slot_button: T.BUTTON - image_atlas: T.IMAGE - pyramid_image: T.IMAGE - pyramid_panel: T.PANEL - "pyramid_panel/level1": T.IMAGE - "pyramid_panel/level2": T.IMAGE - "pyramid_panel/level3": T.IMAGE - "pyramid_panel/level4": T.IMAGE - item_seperator: T.IMAGE - item_renderer: T.CUSTOM - usable_items_panel: T.PANEL - "usable_items_panel/netherite": T.CUSTOM - "usable_items_panel/item_seperator_0": T.IMAGE - "usable_items_panel/emerald": T.CUSTOM - "usable_items_panel/item_seperator_1": T.IMAGE - "usable_items_panel/diamond": T.CUSTOM - "usable_items_panel/item_seperator_2": T.IMAGE - "usable_items_panel/gold": T.CUSTOM - "usable_items_panel/item_seperator_3": T.IMAGE - "usable_items_panel/iron": T.CUSTOM - base_image: T.IMAGE - hover_text: T.CUSTOM - hover_state: T.IMAGE - "hover_state/hover_text": T.CUSTOM - button_unchecked_default: T.IMAGE - button_unchecked_hover: T.IMAGE - "button_unchecked_hover/hover_text": T.CUSTOM - button_checked_hover: T.IMAGE - "button_checked_hover/hover_text": T.CUSTOM - button_locked: T.IMAGE - button_locked_hover: T.IMAGE - "button_locked_hover/hover_text": T.CUSTOM - button_checked: T.IMAGE - toggle_button: T.TOGGLE - base_button: T.BUTTON - "base_button/default": T.IMAGE - "base_button/hover": T.IMAGE - "base_button/pressed": T.IMAGE - active_button: T.BUTTON - inactive_button: T.BUTTON - "inactive_button/default": T.IMAGE - "inactive_button/hover": T.IMAGE - selected_button: T.BUTTON - "selected_button/default": T.IMAGE - "selected_button/hover": T.IMAGE - secondary_effect_base: T.IMAGE - speed_secondary: T.IMAGE - haste_secondary: T.IMAGE - resist_secondary: T.IMAGE - jump_secondary: T.IMAGE - strength_secondary: T.IMAGE - image_template: T.PANEL - "image_template/base_image": T.IMAGE - secondary_effect_images: T.PANEL - "secondary_effect_images/speed_secondary": T.IMAGE - "secondary_effect_images/haste_secondary": T.IMAGE - "secondary_effect_images/resist_secondary": T.IMAGE - "secondary_effect_images/jump_secondary": T.IMAGE - "secondary_effect_images/strength_secondary": T.IMAGE - toggle_template: T.PANEL - "toggle_template/toggle_button": T.TOGGLE - button_template: T.PANEL - "button_template/active_button": T.BUTTON - "button_template/inactive_button": T.BUTTON - "button_template/image_template": T.PANEL - panel_template: T.PANEL - button_panel: T.PANEL - "button_panel/speed_panel": T.PANEL - "button_panel/speed_panel/toggle_template": T.PANEL - "button_panel/haste_panel": T.PANEL - "button_panel/resist_panel": T.PANEL - "button_panel/jump_panel": T.PANEL - "button_panel/strength_panel": T.PANEL - "button_panel/regen_panel": T.PANEL - "button_panel/extra_panel": T.PANEL - payment_panel: T.PANEL - "payment_panel/confirm_panel": T.PANEL - "payment_panel/cancel_panel": T.PANEL - "payment_panel/ingredient_item": T.INPUT_PANEL - "payment_panel/usable_items_panel": T.PANEL - beacon_label: T.LABEL - beacon_inner_panel: T.IMAGE - "beacon_inner_panel/button_panel": T.PANEL - "beacon_inner_panel/pyramid_panel": T.PANEL - "beacon_inner_panel/middle_strip": T.IMAGE - "beacon_inner_panel/primary_power_label": T.LABEL - "beacon_inner_panel/secondary_power_label": T.LABEL - beacon_screen: T.SCREEN + "selected_item_details": T.PANEL, + "beacon_panel": T.PANEL, + "beacon_panel/container_gamepad_helpers": T.STACK_PANEL, + "beacon_panel/selected_item_details_factory": T.FACTORY, + "beacon_panel/item_lock_notification_factory": T.FACTORY, + "beacon_panel/root_panel": T.INPUT_PANEL, + "beacon_panel/root_panel/common_panel": T.PANEL, + "beacon_panel/root_panel/beacon_inventory": T.PANEL, + "beacon_panel/root_panel/beacon_inventory/beacon_inner_panel": T.IMAGE, + "beacon_panel/root_panel/beacon_inventory/payment_panel": T.PANEL, + "beacon_panel/root_panel/beacon_inventory/inventory_panel_bottom_half": T.PANEL, + "beacon_panel/root_panel/beacon_inventory/hotbar_grid_template": T.GRID, + "beacon_panel/root_panel/beacon_inventory/inventory_selected_icon_button": T.BUTTON, + "beacon_panel/root_panel/beacon_inventory/gamepad_cursor": T.BUTTON, + "beacon_panel/flying_item_renderer": T.CUSTOM, + "inventory_slot_button": T.BUTTON, + "hotbar_slot_button": T.BUTTON, + "image_atlas": T.IMAGE, + "pyramid_image": T.IMAGE, + "pyramid_panel": T.PANEL, + "pyramid_panel/level1": T.IMAGE, + "pyramid_panel/level2": T.IMAGE, + "pyramid_panel/level3": T.IMAGE, + "pyramid_panel/level4": T.IMAGE, + "item_seperator": T.IMAGE, + "item_renderer": T.CUSTOM, + "usable_items_panel": T.PANEL, + "usable_items_panel/netherite": T.CUSTOM, + "usable_items_panel/item_seperator_0": T.IMAGE, + "usable_items_panel/emerald": T.CUSTOM, + "usable_items_panel/item_seperator_1": T.IMAGE, + "usable_items_panel/diamond": T.CUSTOM, + "usable_items_panel/item_seperator_2": T.IMAGE, + "usable_items_panel/gold": T.CUSTOM, + "usable_items_panel/item_seperator_3": T.IMAGE, + "usable_items_panel/iron": T.CUSTOM, + "base_image": T.IMAGE, + "hover_text": T.CUSTOM, + "hover_state": T.IMAGE, + "hover_state/hover_text": T.CUSTOM, + "button_unchecked_default": T.IMAGE, + "button_unchecked_hover": T.IMAGE, + "button_unchecked_hover/hover_text": T.CUSTOM, + "button_checked_hover": T.IMAGE, + "button_checked_hover/hover_text": T.CUSTOM, + "button_locked": T.IMAGE, + "button_locked_hover": T.IMAGE, + "button_locked_hover/hover_text": T.CUSTOM, + "button_checked": T.IMAGE, + "toggle_button": T.TOGGLE, + "base_button": T.BUTTON, + "base_button/default": T.IMAGE, + "base_button/hover": T.IMAGE, + "base_button/pressed": T.IMAGE, + "active_button": T.BUTTON, + "inactive_button": T.BUTTON, + "inactive_button/default": T.IMAGE, + "inactive_button/hover": T.IMAGE, + "selected_button": T.BUTTON, + "selected_button/default": T.IMAGE, + "selected_button/hover": T.IMAGE, + "secondary_effect_base": T.IMAGE, + "speed_secondary": T.IMAGE, + "haste_secondary": T.IMAGE, + "resist_secondary": T.IMAGE, + "jump_secondary": T.IMAGE, + "strength_secondary": T.IMAGE, + "image_template": T.PANEL, + "image_template/base_image": T.IMAGE, + "secondary_effect_images": T.PANEL, + "secondary_effect_images/speed_secondary": T.IMAGE, + "secondary_effect_images/haste_secondary": T.IMAGE, + "secondary_effect_images/resist_secondary": T.IMAGE, + "secondary_effect_images/jump_secondary": T.IMAGE, + "secondary_effect_images/strength_secondary": T.IMAGE, + "toggle_template": T.PANEL, + "toggle_template/toggle_button": T.TOGGLE, + "button_template": T.PANEL, + "button_template/active_button": T.BUTTON, + "button_template/inactive_button": T.BUTTON, + "button_template/image_template": T.PANEL, + "panel_template": T.PANEL, + "button_panel": T.PANEL, + "button_panel/speed_panel": T.PANEL, + "button_panel/speed_panel/toggle_template": T.PANEL, + "button_panel/haste_panel": T.PANEL, + "button_panel/resist_panel": T.PANEL, + "button_panel/jump_panel": T.PANEL, + "button_panel/strength_panel": T.PANEL, + "button_panel/regen_panel": T.PANEL, + "button_panel/extra_panel": T.PANEL, + "payment_panel": T.PANEL, + "payment_panel/confirm_panel": T.PANEL, + "payment_panel/cancel_panel": T.PANEL, + "payment_panel/ingredient_item": T.INPUT_PANEL, + "payment_panel/usable_items_panel": T.PANEL, + "beacon_label": T.LABEL, + "beacon_inner_panel": T.IMAGE, + "beacon_inner_panel/button_panel": T.PANEL, + "beacon_inner_panel/pyramid_panel": T.PANEL, + "beacon_inner_panel/middle_strip": T.IMAGE, + "beacon_inner_panel/primary_power_label": T.LABEL, + "beacon_inner_panel/secondary_power_label": T.LABEL, + "beacon_screen": T.SCREEN, } export type BeaconPocketType = { - generic_label: T.LABEL - panel_outline: T.IMAGE - dark_bg: T.IMAGE - background_image: T.IMAGE - item_seperator: T.IMAGE - item_renderer: T.CUSTOM - usable_items_panel: T.PANEL - "usable_items_panel/netherite": T.CUSTOM - "usable_items_panel/item_seperator_0": T.IMAGE - "usable_items_panel/emerald": T.CUSTOM - "usable_items_panel/item_seperator_1": T.IMAGE - "usable_items_panel/diamond": T.CUSTOM - "usable_items_panel/item_seperator_2": T.IMAGE - "usable_items_panel/gold": T.CUSTOM - "usable_items_panel/item_seperator_3": T.IMAGE - "usable_items_panel/iron": T.CUSTOM - pyramid_image: T.IMAGE - pyramid_panel: T.PANEL - "pyramid_panel/pyramid_image": T.IMAGE - background_panel: T.IMAGE - beacon_background: T.IMAGE - "beacon_background/middle_strip": T.IMAGE - inventory_grid: T.GRID - inventory_content: T.PANEL - "inventory_content/scrolling_panel": T.PANEL - highlight_hover_square: T.PANEL - "highlight_hover_square/highlight_square": T.IMAGE - button_unchecked_default: T.IMAGE - button_unchecked_hover: T.IMAGE - "button_unchecked_hover/highlight_hover_square": T.PANEL - button_checked: T.IMAGE - button_checked_hover: T.IMAGE - "button_checked_hover/highlight_hover_square": T.PANEL - button_locked: T.IMAGE - button_locked_hover: T.IMAGE - "button_locked_hover/highlight_hover_square": T.PANEL - toggle_button: T.TOGGLE - base_button: T.BUTTON - "base_button/default": T.IMAGE - "base_button/hover": T.IMAGE - "base_button/hover/highlight_hover_square": T.PANEL - "base_button/pressed": T.IMAGE - active_button: T.BUTTON - inactive_button_image: T.IMAGE - inactive_button: T.BUTTON - "inactive_button/default": T.IMAGE - "inactive_button/hover": T.IMAGE - "inactive_button/hover/highlight_hover_square": T.PANEL - selected_button_image: T.IMAGE - selected_button: T.BUTTON - "selected_button/default": T.IMAGE - "selected_button/hover": T.IMAGE - "selected_button/hover/highlight_hover_square": T.PANEL - secondary_effect_base: T.PANEL - speed_secondary: T.PANEL - haste_secondary: T.PANEL - resist_secondary: T.PANEL - jump_secondary: T.PANEL - strength_secondary: T.PANEL - secondary_effect_images: T.PANEL - "secondary_effect_images/speed_secondary": T.PANEL - "secondary_effect_images/haste_secondary": T.PANEL - "secondary_effect_images/resist_secondary": T.PANEL - "secondary_effect_images/jump_secondary": T.PANEL - "secondary_effect_images/strength_secondary": T.PANEL - base_image: T.IMAGE - image_template: T.PANEL - "image_template/base_image": T.IMAGE - toggle_template: T.PANEL - "toggle_template/toggle_button": T.TOGGLE - button_template: T.PANEL - "button_template/active_button": T.BUTTON - "button_template/inactive_button": T.BUTTON - "button_template/image_template": T.PANEL - panel_template: T.PANEL - beacon_power_label: T.PANEL - "beacon_power_label/label": T.LABEL - beacon_sub_panel: T.PANEL - beacon_button_left_panel: T.PANEL - "beacon_button_left_panel/primary_power_label": T.PANEL - "beacon_button_left_panel/panel": T.PANEL - "beacon_button_left_panel/panel/pyramids_and_buttons": T.PANEL - "beacon_button_left_panel/panel/pyramids_and_buttons/level1": T.PANEL - "beacon_button_left_panel/panel/pyramids_and_buttons/speed_panel": T.PANEL - "beacon_button_left_panel/panel/pyramids_and_buttons/haste_panel": T.PANEL - "beacon_button_left_panel/panel/pyramids_and_buttons/level2": T.PANEL - "beacon_button_left_panel/panel/pyramids_and_buttons/resist_panel": T.PANEL - "beacon_button_left_panel/panel/pyramids_and_buttons/jump_panel": T.PANEL - "beacon_button_left_panel/panel/pyramids_and_buttons/level3": T.PANEL - "beacon_button_left_panel/panel/pyramids_and_buttons/strength_panel": T.PANEL - beacon_button_right_panel: T.PANEL - "beacon_button_right_panel/secondary_power_label": T.PANEL - "beacon_button_right_panel/panel": T.PANEL - "beacon_button_right_panel/panel/buttons_and_pyramid": T.PANEL - "beacon_button_right_panel/panel/buttons_and_pyramid/level4": T.PANEL - "beacon_button_right_panel/panel/buttons_and_pyramid/regen_panel": T.PANEL - "beacon_button_right_panel/panel/buttons_and_pyramid/extra_panel": T.PANEL - beacon_buttons_panel: T.PANEL - "beacon_buttons_panel/beacon_background": T.IMAGE - "beacon_buttons_panel/left_panel": T.PANEL - "beacon_buttons_panel/right_panel": T.PANEL - confirm_panel: T.PANEL - "confirm_panel/ingredient_item": T.INPUT_PANEL - "confirm_panel/confirm_panel": T.PANEL - "confirm_panel/cancel_panel": T.PANEL - beacon_payment_panel: T.STACK_PANEL - "beacon_payment_panel/usable_items_panel": T.PANEL - "beacon_payment_panel/pad": T.PANEL - "beacon_payment_panel/confirm_panel": T.PANEL - beacon_contents_panel: T.STACK_PANEL - "beacon_contents_panel/fill1": T.PANEL - "beacon_contents_panel/beacon_buttons_panel": T.PANEL - "beacon_contents_panel/pad1": T.PANEL - "beacon_contents_panel/beacon_payment_panel": T.STACK_PANEL - "beacon_contents_panel/fill2": T.PANEL - header: T.PANEL - "header/header_background": T.IMAGE - "header/legacy_pocket_close_button": T.BUTTON - "header/panel": T.PANEL - "header/panel/title_label": T.LABEL - inventory_and_beacon_panel: T.PANEL - "inventory_and_beacon_panel/inventory_half_screen": T.PANEL - "inventory_and_beacon_panel/inventory_half_screen/inventory_content": T.PANEL - "inventory_and_beacon_panel/beacon_half_screen": T.PANEL - "inventory_and_beacon_panel/beacon_half_screen/beacon_content": T.STACK_PANEL - header_and_content_stack_panel: T.STACK_PANEL - "header_and_content_stack_panel/header": T.PANEL - "header_and_content_stack_panel/inventory_and_beacon_panel": T.PANEL - beacon_panel: T.PANEL - "beacon_panel/bg": T.IMAGE - "beacon_panel/root_panel": T.INPUT_PANEL - "beacon_panel/header_and_content_stack_panel": T.STACK_PANEL - "beacon_panel/container_gamepad_helpers": T.STACK_PANEL - "beacon_panel/inventory_selected_icon_button": T.BUTTON - "beacon_panel/hold_icon": T.BUTTON - "beacon_panel/selected_item_details_factory": T.FACTORY - "beacon_panel/item_lock_notification_factory": T.FACTORY - "beacon_panel/flying_item_renderer": T.CUSTOM + "generic_label": T.LABEL, + "panel_outline": T.IMAGE, + "dark_bg": T.IMAGE, + "background_image": T.IMAGE, + "item_seperator": T.IMAGE, + "item_renderer": T.CUSTOM, + "usable_items_panel": T.PANEL, + "usable_items_panel/netherite": T.CUSTOM, + "usable_items_panel/item_seperator_0": T.IMAGE, + "usable_items_panel/emerald": T.CUSTOM, + "usable_items_panel/item_seperator_1": T.IMAGE, + "usable_items_panel/diamond": T.CUSTOM, + "usable_items_panel/item_seperator_2": T.IMAGE, + "usable_items_panel/gold": T.CUSTOM, + "usable_items_panel/item_seperator_3": T.IMAGE, + "usable_items_panel/iron": T.CUSTOM, + "pyramid_image": T.IMAGE, + "pyramid_panel": T.PANEL, + "pyramid_panel/pyramid_image": T.IMAGE, + "background_panel": T.IMAGE, + "beacon_background": T.IMAGE, + "beacon_background/middle_strip": T.IMAGE, + "inventory_grid": T.GRID, + "inventory_content": T.PANEL, + "inventory_content/scrolling_panel": T.PANEL, + "highlight_hover_square": T.PANEL, + "highlight_hover_square/highlight_square": T.IMAGE, + "button_unchecked_default": T.IMAGE, + "button_unchecked_hover": T.IMAGE, + "button_unchecked_hover/highlight_hover_square": T.PANEL, + "button_checked": T.IMAGE, + "button_checked_hover": T.IMAGE, + "button_checked_hover/highlight_hover_square": T.PANEL, + "button_locked": T.IMAGE, + "button_locked_hover": T.IMAGE, + "button_locked_hover/highlight_hover_square": T.PANEL, + "toggle_button": T.TOGGLE, + "base_button": T.BUTTON, + "base_button/default": T.IMAGE, + "base_button/hover": T.IMAGE, + "base_button/hover/highlight_hover_square": T.PANEL, + "base_button/pressed": T.IMAGE, + "active_button": T.BUTTON, + "inactive_button_image": T.IMAGE, + "inactive_button": T.BUTTON, + "inactive_button/default": T.IMAGE, + "inactive_button/hover": T.IMAGE, + "inactive_button/hover/highlight_hover_square": T.PANEL, + "selected_button_image": T.IMAGE, + "selected_button": T.BUTTON, + "selected_button/default": T.IMAGE, + "selected_button/hover": T.IMAGE, + "selected_button/hover/highlight_hover_square": T.PANEL, + "secondary_effect_base": T.PANEL, + "speed_secondary": T.PANEL, + "haste_secondary": T.PANEL, + "resist_secondary": T.PANEL, + "jump_secondary": T.PANEL, + "strength_secondary": T.PANEL, + "secondary_effect_images": T.PANEL, + "secondary_effect_images/speed_secondary": T.PANEL, + "secondary_effect_images/haste_secondary": T.PANEL, + "secondary_effect_images/resist_secondary": T.PANEL, + "secondary_effect_images/jump_secondary": T.PANEL, + "secondary_effect_images/strength_secondary": T.PANEL, + "base_image": T.IMAGE, + "image_template": T.PANEL, + "image_template/base_image": T.IMAGE, + "toggle_template": T.PANEL, + "toggle_template/toggle_button": T.TOGGLE, + "button_template": T.PANEL, + "button_template/active_button": T.BUTTON, + "button_template/inactive_button": T.BUTTON, + "button_template/image_template": T.PANEL, + "panel_template": T.PANEL, + "beacon_power_label": T.PANEL, + "beacon_power_label/label": T.LABEL, + "beacon_sub_panel": T.PANEL, + "beacon_button_left_panel": T.PANEL, + "beacon_button_left_panel/primary_power_label": T.PANEL, + "beacon_button_left_panel/panel": T.PANEL, + "beacon_button_left_panel/panel/pyramids_and_buttons": T.PANEL, + "beacon_button_left_panel/panel/pyramids_and_buttons/level1": T.PANEL, + "beacon_button_left_panel/panel/pyramids_and_buttons/speed_panel": T.PANEL, + "beacon_button_left_panel/panel/pyramids_and_buttons/haste_panel": T.PANEL, + "beacon_button_left_panel/panel/pyramids_and_buttons/level2": T.PANEL, + "beacon_button_left_panel/panel/pyramids_and_buttons/resist_panel": T.PANEL, + "beacon_button_left_panel/panel/pyramids_and_buttons/jump_panel": T.PANEL, + "beacon_button_left_panel/panel/pyramids_and_buttons/level3": T.PANEL, + "beacon_button_left_panel/panel/pyramids_and_buttons/strength_panel": T.PANEL, + "beacon_button_right_panel": T.PANEL, + "beacon_button_right_panel/secondary_power_label": T.PANEL, + "beacon_button_right_panel/panel": T.PANEL, + "beacon_button_right_panel/panel/buttons_and_pyramid": T.PANEL, + "beacon_button_right_panel/panel/buttons_and_pyramid/level4": T.PANEL, + "beacon_button_right_panel/panel/buttons_and_pyramid/regen_panel": T.PANEL, + "beacon_button_right_panel/panel/buttons_and_pyramid/extra_panel": T.PANEL, + "beacon_buttons_panel": T.PANEL, + "beacon_buttons_panel/beacon_background": T.IMAGE, + "beacon_buttons_panel/left_panel": T.PANEL, + "beacon_buttons_panel/right_panel": T.PANEL, + "confirm_panel": T.PANEL, + "confirm_panel/ingredient_item": T.INPUT_PANEL, + "confirm_panel/confirm_panel": T.PANEL, + "confirm_panel/cancel_panel": T.PANEL, + "beacon_payment_panel": T.STACK_PANEL, + "beacon_payment_panel/usable_items_panel": T.PANEL, + "beacon_payment_panel/pad": T.PANEL, + "beacon_payment_panel/confirm_panel": T.PANEL, + "beacon_contents_panel": T.STACK_PANEL, + "beacon_contents_panel/fill1": T.PANEL, + "beacon_contents_panel/beacon_buttons_panel": T.PANEL, + "beacon_contents_panel/pad1": T.PANEL, + "beacon_contents_panel/beacon_payment_panel": T.STACK_PANEL, + "beacon_contents_panel/fill2": T.PANEL, + "header": T.PANEL, + "header/header_background": T.IMAGE, + "header/legacy_pocket_close_button": T.BUTTON, + "header/panel": T.PANEL, + "header/panel/title_label": T.LABEL, + "inventory_and_beacon_panel": T.PANEL, + "inventory_and_beacon_panel/inventory_half_screen": T.PANEL, + "inventory_and_beacon_panel/inventory_half_screen/inventory_content": T.PANEL, + "inventory_and_beacon_panel/beacon_half_screen": T.PANEL, + "inventory_and_beacon_panel/beacon_half_screen/beacon_content": T.STACK_PANEL, + "header_and_content_stack_panel": T.STACK_PANEL, + "header_and_content_stack_panel/header": T.PANEL, + "header_and_content_stack_panel/inventory_and_beacon_panel": T.PANEL, + "beacon_panel": T.PANEL, + "beacon_panel/bg": T.IMAGE, + "beacon_panel/root_panel": T.INPUT_PANEL, + "beacon_panel/header_and_content_stack_panel": T.STACK_PANEL, + "beacon_panel/container_gamepad_helpers": T.STACK_PANEL, + "beacon_panel/inventory_selected_icon_button": T.BUTTON, + "beacon_panel/hold_icon": T.BUTTON, + "beacon_panel/selected_item_details_factory": T.FACTORY, + "beacon_panel/item_lock_notification_factory": T.FACTORY, + "beacon_panel/flying_item_renderer": T.CUSTOM, } export type BlastFurnaceType = { - blast_furnace_screen: T.SCREEN + "blast_furnace_screen": T.SCREEN, } export type BookType = { - screenshot: T.IMAGE - screenshot_frame: T.IMAGE - "screenshot_frame/caption_edit": T.EDIT_BOX - photo_corner: T.IMAGE - photo_corner_bl: T.IMAGE - photo_corner_br: T.IMAGE - photo_corner_tr: T.IMAGE - photo_corner_tl: T.IMAGE - page_caption: T.EDIT_BOX - page_photo: T.PANEL - "page_photo/screenshot": T.IMAGE - "page_photo/screenshot_frame": T.IMAGE - "page_photo/photo_corner_bl": T.IMAGE - "page_photo/photo_corner_br": T.IMAGE - "page_photo/photo_corner_tl": T.IMAGE - "page_photo/photo_corner_tr": T.IMAGE - pick_item: T.PANEL - "pick_item/photo": T.PANEL - "pick_item/button": T.BUTTON - pick_item_inventory: T.PANEL - "pick_item_inventory/photo": T.PANEL - "pick_item_inventory/button": T.BUTTON - header: T.LABEL - text_centering_panel_inventory: T.PANEL - "text_centering_panel_inventory/inventory_header": T.LABEL - text_centering_panel_portfolio: T.PANEL - "text_centering_panel_portfolio/portfolio_header": T.LABEL - pick_scrolling_content: T.STACK_PANEL - "pick_scrolling_content/inventory_header": T.PANEL - "pick_scrolling_content/inventory_grid": T.STACK_PANEL - "pick_scrolling_content/portfolio_header": T.PANEL - "pick_scrolling_content/portfolio_grid": T.STACK_PANEL - pick_panel: T.IMAGE - "pick_panel/scroll": T.PANEL - "pick_panel/close_button": T.BUTTON - blank: T.IMAGE - book_background: T.IMAGE - book_spine_image: T.IMAGE - page_crease_left_image: T.IMAGE - page_crease_right_image: T.IMAGE - page_edge_left_image: T.IMAGE - page_edge_right_image: T.IMAGE - text_edit_hover_image: T.IMAGE - base_button: T.BUTTON - "base_button/default": T.IMAGE - "base_button/hover": T.IMAGE - "base_button/pressed": T.IMAGE - book_buttons_panel: T.PANEL - "book_buttons_panel/sign_export_buttons": T.STACK_PANEL - "book_buttons_panel/sign_export_buttons/left_spacer": T.PANEL - "book_buttons_panel/sign_export_buttons/sign_button": T.BUTTON - "book_buttons_panel/sign_export_buttons/export_button": T.BUTTON - "book_buttons_panel/sign_export_buttons/right_spacer": T.PANEL - "book_buttons_panel/im_content_button": T.BUTTON - cover_buttons_stack_panel_holder: T.PANEL - "cover_buttons_stack_panel_holder/cover_buttons_stack_panel": T.STACK_PANEL - "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/finalize_button": T.BUTTON - "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/padding_1": T.PANEL - "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/cancel_sign_button": T.BUTTON - close_button_default: T.IMAGE - close_button_hover: T.IMAGE - close_button_pressed: T.IMAGE - close_button: T.BUTTON - "close_button/default": T.IMAGE - "close_button/hover": T.IMAGE - "close_button/pressed": T.IMAGE - page_text_edit: T.EDIT_BOX - page_text: T.EDIT_BOX - page_number_label: T.LABEL - padded_button: T.PANEL - "padded_button/button": T.BUTTON - page_buttons_panel: T.STACK_PANEL - "page_buttons_panel/swap_page_left": T.PANEL - "page_buttons_panel/insert_text_page": T.PANEL - "page_buttons_panel/insert_photo_page": T.PANEL - "page_buttons_panel/delete_page": T.PANEL - "page_buttons_panel/swap_page_right": T.PANEL - page_content_panel: T.PANEL - "page_content_panel/page_text": T.EDIT_BOX - "page_content_panel/page_photo": T.PANEL - "page_content_panel/page_number_label": T.LABEL - "page_content_panel/page_buttons_panel": T.STACK_PANEL - "page_content_panel/edit_page": T.BUTTON - title_label: T.LABEL - title_text_box: T.EDIT_BOX - author_label: T.LABEL - author_text_box: T.EDIT_BOX - author_stack_panel: T.STACK_PANEL - "author_stack_panel/author_label_panel": T.PANEL - "author_stack_panel/author_label_panel/author_label": T.LABEL - "author_stack_panel/author_text_panel": T.PANEL - "author_stack_panel/author_text_panel/author_text_box": T.EDIT_BOX - warning_label: T.LABEL - cover_content_panel: T.PANEL - "cover_content_panel/title_label": T.LABEL - "cover_content_panel/title_text_box": T.EDIT_BOX - "cover_content_panel/author_stack_panel": T.STACK_PANEL - "cover_content_panel/warning_label": T.LABEL - cover_and_buttons_panel: T.PANEL - "cover_and_buttons_panel/cover_panel": T.PANEL - "cover_and_buttons_panel/cover_panel/cover_content_panel": T.PANEL - "cover_and_buttons_panel/cover_panel/book_background": T.IMAGE - "cover_and_buttons_panel/cover_panel/close_button": T.BUTTON - "cover_and_buttons_panel/cover_buttons_stack_panel_holder": T.PANEL - page_panel: T.PANEL - "page_panel/page_content_panel": T.PANEL - book_grid: T.GRID - "book_grid/page_panel_left": T.PANEL - "book_grid/page_panel_right": T.PANEL - book_and_buttons_panel: T.PANEL - "book_and_buttons_panel/book_panel": T.PANEL - "book_and_buttons_panel/book_panel/book_grid": T.GRID - "book_and_buttons_panel/book_panel/book_background": T.IMAGE - "book_and_buttons_panel/book_panel/book_spine_image": T.IMAGE - "book_and_buttons_panel/book_panel/close_button": T.BUTTON - "book_and_buttons_panel/book_panel/prev_button": T.BUTTON - "book_and_buttons_panel/book_panel/next_button": T.BUTTON - "book_and_buttons_panel/book_buttons_panel": T.PANEL - root_panel: T.PANEL - book_screen: T.SCREEN - book_screen_content: T.PANEL - "book_screen_content/root_panel": T.PANEL - "book_screen_content/root_panel/book_and_buttons_panel": T.PANEL - "book_screen_content/root_panel/cover_and_buttons_panel": T.PANEL - "book_screen_content/root_panel/pick_panel": T.IMAGE - "book_screen_content/root_panel/export_progress": T.PANEL - "book_screen_content/root_panel/gamepad_helper_a": T.STACK_PANEL - "book_screen_content/root_panel/gamepad_helper_b": T.STACK_PANEL + "screenshot": T.IMAGE, + "screenshot_frame": T.IMAGE, + "screenshot_frame/caption_edit": T.EDIT_BOX, + "photo_corner": T.IMAGE, + "photo_corner_bl": T.IMAGE, + "photo_corner_br": T.IMAGE, + "photo_corner_tr": T.IMAGE, + "photo_corner_tl": T.IMAGE, + "page_caption": T.EDIT_BOX, + "page_photo": T.PANEL, + "page_photo/screenshot": T.IMAGE, + "page_photo/screenshot_frame": T.IMAGE, + "page_photo/photo_corner_bl": T.IMAGE, + "page_photo/photo_corner_br": T.IMAGE, + "page_photo/photo_corner_tl": T.IMAGE, + "page_photo/photo_corner_tr": T.IMAGE, + "pick_item": T.PANEL, + "pick_item/photo": T.PANEL, + "pick_item/button": T.BUTTON, + "pick_item_inventory": T.PANEL, + "pick_item_inventory/photo": T.PANEL, + "pick_item_inventory/button": T.BUTTON, + "header": T.LABEL, + "text_centering_panel_inventory": T.PANEL, + "text_centering_panel_inventory/inventory_header": T.LABEL, + "text_centering_panel_portfolio": T.PANEL, + "text_centering_panel_portfolio/portfolio_header": T.LABEL, + "pick_scrolling_content": T.STACK_PANEL, + "pick_scrolling_content/inventory_header": T.PANEL, + "pick_scrolling_content/inventory_grid": T.STACK_PANEL, + "pick_scrolling_content/portfolio_header": T.PANEL, + "pick_scrolling_content/portfolio_grid": T.STACK_PANEL, + "pick_panel": T.IMAGE, + "pick_panel/scroll": T.PANEL, + "pick_panel/close_button": T.BUTTON, + "blank": T.IMAGE, + "book_background": T.IMAGE, + "book_spine_image": T.IMAGE, + "page_crease_left_image": T.IMAGE, + "page_crease_right_image": T.IMAGE, + "page_edge_left_image": T.IMAGE, + "page_edge_right_image": T.IMAGE, + "text_edit_hover_image": T.IMAGE, + "base_button": T.BUTTON, + "base_button/default": T.IMAGE, + "base_button/hover": T.IMAGE, + "base_button/pressed": T.IMAGE, + "book_buttons_panel": T.PANEL, + "book_buttons_panel/sign_export_buttons": T.STACK_PANEL, + "book_buttons_panel/sign_export_buttons/left_spacer": T.PANEL, + "book_buttons_panel/sign_export_buttons/sign_button": T.BUTTON, + "book_buttons_panel/sign_export_buttons/export_button": T.BUTTON, + "book_buttons_panel/sign_export_buttons/right_spacer": T.PANEL, + "book_buttons_panel/im_content_button": T.BUTTON, + "cover_buttons_stack_panel_holder": T.PANEL, + "cover_buttons_stack_panel_holder/cover_buttons_stack_panel": T.STACK_PANEL, + "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/finalize_button": T.BUTTON, + "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/padding_1": T.PANEL, + "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/cancel_sign_button": T.BUTTON, + "close_button_default": T.IMAGE, + "close_button_hover": T.IMAGE, + "close_button_pressed": T.IMAGE, + "close_button": T.BUTTON, + "close_button/default": T.IMAGE, + "close_button/hover": T.IMAGE, + "close_button/pressed": T.IMAGE, + "page_text_edit": T.EDIT_BOX, + "page_text": T.EDIT_BOX, + "page_number_label": T.LABEL, + "padded_button": T.PANEL, + "padded_button/button": T.BUTTON, + "page_buttons_panel": T.STACK_PANEL, + "page_buttons_panel/swap_page_left": T.PANEL, + "page_buttons_panel/insert_text_page": T.PANEL, + "page_buttons_panel/insert_photo_page": T.PANEL, + "page_buttons_panel/delete_page": T.PANEL, + "page_buttons_panel/swap_page_right": T.PANEL, + "page_content_panel": T.PANEL, + "page_content_panel/page_text": T.EDIT_BOX, + "page_content_panel/page_photo": T.PANEL, + "page_content_panel/page_number_label": T.LABEL, + "page_content_panel/page_buttons_panel": T.STACK_PANEL, + "page_content_panel/edit_page": T.BUTTON, + "title_label": T.LABEL, + "title_text_box": T.EDIT_BOX, + "author_label": T.LABEL, + "author_text_box": T.EDIT_BOX, + "author_stack_panel": T.STACK_PANEL, + "author_stack_panel/author_label_panel": T.PANEL, + "author_stack_panel/author_label_panel/author_label": T.LABEL, + "author_stack_panel/author_text_panel": T.PANEL, + "author_stack_panel/author_text_panel/author_text_box": T.EDIT_BOX, + "warning_label": T.LABEL, + "cover_content_panel": T.PANEL, + "cover_content_panel/title_label": T.LABEL, + "cover_content_panel/title_text_box": T.EDIT_BOX, + "cover_content_panel/author_stack_panel": T.STACK_PANEL, + "cover_content_panel/warning_label": T.LABEL, + "cover_and_buttons_panel": T.PANEL, + "cover_and_buttons_panel/cover_panel": T.PANEL, + "cover_and_buttons_panel/cover_panel/cover_content_panel": T.PANEL, + "cover_and_buttons_panel/cover_panel/book_background": T.IMAGE, + "cover_and_buttons_panel/cover_panel/close_button": T.BUTTON, + "cover_and_buttons_panel/cover_buttons_stack_panel_holder": T.PANEL, + "page_panel": T.PANEL, + "page_panel/page_content_panel": T.PANEL, + "book_grid": T.GRID, + "book_grid/page_panel_left": T.PANEL, + "book_grid/page_panel_right": T.PANEL, + "book_and_buttons_panel": T.PANEL, + "book_and_buttons_panel/book_panel": T.PANEL, + "book_and_buttons_panel/book_panel/book_grid": T.GRID, + "book_and_buttons_panel/book_panel/book_background": T.IMAGE, + "book_and_buttons_panel/book_panel/book_spine_image": T.IMAGE, + "book_and_buttons_panel/book_panel/close_button": T.BUTTON, + "book_and_buttons_panel/book_panel/prev_button": T.BUTTON, + "book_and_buttons_panel/book_panel/next_button": T.BUTTON, + "book_and_buttons_panel/book_buttons_panel": T.PANEL, + "root_panel": T.PANEL, + "book_screen": T.SCREEN, + "book_screen_content": T.PANEL, + "book_screen_content/root_panel": T.PANEL, + "book_screen_content/root_panel/book_and_buttons_panel": T.PANEL, + "book_screen_content/root_panel/cover_and_buttons_panel": T.PANEL, + "book_screen_content/root_panel/pick_panel": T.IMAGE, + "book_screen_content/root_panel/export_progress": T.PANEL, + "book_screen_content/root_panel/gamepad_helper_a": T.STACK_PANEL, + "book_screen_content/root_panel/gamepad_helper_b": T.STACK_PANEL, } export type BrewingStandType = { - brewing_pipes: T.IMAGE - brewing_fuel_pipes: T.IMAGE - bottle_empty_image: T.IMAGE - fuel_empty_image: T.IMAGE - bubbles_empty_image: T.IMAGE - bubbles_full_image: T.IMAGE - brewing_arrow_empty_image: T.IMAGE - brewing_arrow_full_image: T.IMAGE - brewing_fuel_bar_empty_image: T.IMAGE - brewing_fuel_bar_full_image: T.IMAGE - brewing_label: T.LABEL - brewingstand_output_item: T.INPUT_PANEL - brewing_output_slots: T.GRID - "brewing_output_slots/left_offset": T.PANEL - "brewing_output_slots/left_offset/output_grid_item1": T.INPUT_PANEL - "brewing_output_slots/output_grid_item2": T.INPUT_PANEL - "brewing_output_slots/right_offset": T.PANEL - "brewing_output_slots/right_offset/output_grid_item3": T.INPUT_PANEL - brewing_input_slot: T.PANEL - "brewing_input_slot/input_grid_item": T.INPUT_PANEL - brewing_fuel_slot: T.PANEL - "brewing_fuel_slot/fuel_grid_item": T.INPUT_PANEL - brewing_panel_top_half: T.PANEL - "brewing_panel_top_half/brewing_label": T.LABEL - "brewing_panel_top_half/brewing_stand_pictogram": T.PANEL - brewing_stand_pictogram: T.PANEL - "brewing_stand_pictogram/brewing_input_slot": T.PANEL - "brewing_stand_pictogram/brewing_output_slots": T.GRID - "brewing_stand_pictogram/brewing_fuel_slot": T.PANEL - "brewing_stand_pictogram/brewing_arrow_empty_image": T.IMAGE - "brewing_stand_pictogram/brewing_arrow_full_image": T.IMAGE - "brewing_stand_pictogram/brewing_fuel_bar_empty_image": T.IMAGE - "brewing_stand_pictogram/brewing_fuel_bar_full_image": T.IMAGE - "brewing_stand_pictogram/bubbles_empty_image": T.IMAGE - "brewing_stand_pictogram/bubbles_full_image": T.IMAGE - "brewing_stand_pictogram/brewing_fuel_pipes": T.IMAGE - "brewing_stand_pictogram/brewing_pipes": T.IMAGE - brewing_stand_panel: T.PANEL - "brewing_stand_panel/container_gamepad_helpers": T.STACK_PANEL - "brewing_stand_panel/selected_item_details_factory": T.FACTORY - "brewing_stand_panel/item_lock_notification_factory": T.FACTORY - "brewing_stand_panel/root_panel": T.INPUT_PANEL - "brewing_stand_panel/root_panel/common_panel": T.PANEL - "brewing_stand_panel/root_panel/furnace_screen_inventory": T.PANEL - "brewing_stand_panel/root_panel/furnace_screen_inventory/brewing_panel_top_half": T.PANEL - "brewing_stand_panel/root_panel/furnace_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL - "brewing_stand_panel/root_panel/furnace_screen_inventory/hotbar_grid": T.GRID - "brewing_stand_panel/root_panel/furnace_screen_inventory/inventory_take_progress_icon_button": T.BUTTON - "brewing_stand_panel/root_panel/inventory_selected_icon_button": T.BUTTON - "brewing_stand_panel/root_panel/gamepad_cursor": T.BUTTON - "brewing_stand_panel/flying_item_renderer": T.CUSTOM - brewing_stand_screen: T.SCREEN + "brewing_pipes": T.IMAGE, + "brewing_fuel_pipes": T.IMAGE, + "bottle_empty_image": T.IMAGE, + "fuel_empty_image": T.IMAGE, + "bubbles_empty_image": T.IMAGE, + "bubbles_full_image": T.IMAGE, + "brewing_arrow_empty_image": T.IMAGE, + "brewing_arrow_full_image": T.IMAGE, + "brewing_fuel_bar_empty_image": T.IMAGE, + "brewing_fuel_bar_full_image": T.IMAGE, + "brewing_label": T.LABEL, + "brewingstand_output_item": T.INPUT_PANEL, + "brewing_output_slots": T.GRID, + "brewing_output_slots/left_offset": T.PANEL, + "brewing_output_slots/left_offset/output_grid_item1": T.INPUT_PANEL, + "brewing_output_slots/output_grid_item2": T.INPUT_PANEL, + "brewing_output_slots/right_offset": T.PANEL, + "brewing_output_slots/right_offset/output_grid_item3": T.INPUT_PANEL, + "brewing_input_slot": T.PANEL, + "brewing_input_slot/input_grid_item": T.INPUT_PANEL, + "brewing_fuel_slot": T.PANEL, + "brewing_fuel_slot/fuel_grid_item": T.INPUT_PANEL, + "brewing_panel_top_half": T.PANEL, + "brewing_panel_top_half/brewing_label": T.LABEL, + "brewing_panel_top_half/brewing_stand_pictogram": T.PANEL, + "brewing_stand_pictogram": T.PANEL, + "brewing_stand_pictogram/brewing_input_slot": T.PANEL, + "brewing_stand_pictogram/brewing_output_slots": T.GRID, + "brewing_stand_pictogram/brewing_fuel_slot": T.PANEL, + "brewing_stand_pictogram/brewing_arrow_empty_image": T.IMAGE, + "brewing_stand_pictogram/brewing_arrow_full_image": T.IMAGE, + "brewing_stand_pictogram/brewing_fuel_bar_empty_image": T.IMAGE, + "brewing_stand_pictogram/brewing_fuel_bar_full_image": T.IMAGE, + "brewing_stand_pictogram/bubbles_empty_image": T.IMAGE, + "brewing_stand_pictogram/bubbles_full_image": T.IMAGE, + "brewing_stand_pictogram/brewing_fuel_pipes": T.IMAGE, + "brewing_stand_pictogram/brewing_pipes": T.IMAGE, + "brewing_stand_panel": T.PANEL, + "brewing_stand_panel/container_gamepad_helpers": T.STACK_PANEL, + "brewing_stand_panel/selected_item_details_factory": T.FACTORY, + "brewing_stand_panel/item_lock_notification_factory": T.FACTORY, + "brewing_stand_panel/root_panel": T.INPUT_PANEL, + "brewing_stand_panel/root_panel/common_panel": T.PANEL, + "brewing_stand_panel/root_panel/furnace_screen_inventory": T.PANEL, + "brewing_stand_panel/root_panel/furnace_screen_inventory/brewing_panel_top_half": T.PANEL, + "brewing_stand_panel/root_panel/furnace_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL, + "brewing_stand_panel/root_panel/furnace_screen_inventory/hotbar_grid": T.GRID, + "brewing_stand_panel/root_panel/furnace_screen_inventory/inventory_take_progress_icon_button": T.BUTTON, + "brewing_stand_panel/root_panel/inventory_selected_icon_button": T.BUTTON, + "brewing_stand_panel/root_panel/gamepad_cursor": T.BUTTON, + "brewing_stand_panel/flying_item_renderer": T.CUSTOM, + "brewing_stand_screen": T.SCREEN, } export type BrewingStandPocketType = { - generic_label: T.LABEL - brewing_fuel_pipes: T.IMAGE - bubbles_empty_image: T.IMAGE - bubbles_full_image: T.IMAGE - bottle_empty_image: T.IMAGE - background_image: T.IMAGE - output_slot: T.INPUT_PANEL - brewing_input_slot: T.PANEL - "brewing_input_slot/input_slot": T.INPUT_PANEL - brewing_fuel_slot: T.PANEL - "brewing_fuel_slot/fuel_slot": T.INPUT_PANEL - brewing_out_slots: T.GRID - "brewing_out_slots/left_offset": T.PANEL - "brewing_out_slots/left_offset/output_slot1": T.INPUT_PANEL - "brewing_out_slots/middle": T.PANEL - "brewing_out_slots/middle/output_slot2": T.INPUT_PANEL - "brewing_out_slots/right_offset": T.PANEL - "brewing_out_slots/right_offset/output_slot3": T.INPUT_PANEL - slots_panel: T.PANEL - "slots_panel/brewing_input_slot": T.PANEL - "slots_panel/brewing_fuel_slot": T.PANEL - "slots_panel/brewing_out_slots": T.GRID - "slots_panel/brewing_arrow_panel": T.PANEL - "slots_panel/brewing_arrow_panel/brewing_arrow_empty_image": T.IMAGE - "slots_panel/brewing_arrow_panel/brewing_arrow_full_image": T.IMAGE - "slots_panel/brewing_bubbles_panel": T.PANEL - "slots_panel/brewing_bubbles_panel/bubbles_empty_image": T.IMAGE - "slots_panel/brewing_bubbles_panel/bubbles_full_image": T.IMAGE - "slots_panel/brewing_fuel_bar_panel": T.PANEL - "slots_panel/brewing_fuel_bar_panel/brewing_fuel_bar_empty_image": T.IMAGE - "slots_panel/brewing_fuel_bar_panel/brewing_fuel_bar_full_image": T.IMAGE - "slots_panel/brewing_fuel_pipes": T.IMAGE - "slots_panel/brewing_pipes": T.IMAGE - inventory_grid: T.GRID - inventory_content: T.PANEL - "inventory_content/scrolling_panel": T.PANEL - brewing_stand_contents_panel: T.PANEL - "brewing_stand_contents_panel/slots_panel": T.PANEL - header: T.PANEL - "header/header_background": T.IMAGE - "header/legacy_pocket_close_button": T.BUTTON - "header/panel": T.PANEL - "header/panel/title_label": T.LABEL - inventory_and_brewing_panel: T.PANEL - "inventory_and_brewing_panel/inventory_half_screen": T.PANEL - "inventory_and_brewing_panel/inventory_half_screen/inventory_content": T.PANEL - "inventory_and_brewing_panel/brewing_half_screen": T.PANEL - "inventory_and_brewing_panel/brewing_half_screen/brewing_stand_contents_panel": T.PANEL - header_and_content_stack_panel: T.STACK_PANEL - "header_and_content_stack_panel/header": T.PANEL - "header_and_content_stack_panel/inventory_and_brewing_panel": T.PANEL - brewing_stand_panel: T.PANEL - "brewing_stand_panel/bg": T.IMAGE - "brewing_stand_panel/root_panel": T.INPUT_PANEL - "brewing_stand_panel/header_and_content_stack_panel": T.STACK_PANEL - "brewing_stand_panel/container_gamepad_helpers": T.STACK_PANEL - "brewing_stand_panel/inventory_selected_icon_button": T.BUTTON - "brewing_stand_panel/hold_icon": T.BUTTON - "brewing_stand_panel/selected_item_details_factory": T.FACTORY - "brewing_stand_panel/item_lock_notification_factory": T.FACTORY - "brewing_stand_panel/flying_item_renderer": T.CUSTOM + "generic_label": T.LABEL, + "brewing_fuel_pipes": T.IMAGE, + "bubbles_empty_image": T.IMAGE, + "bubbles_full_image": T.IMAGE, + "bottle_empty_image": T.IMAGE, + "background_image": T.IMAGE, + "output_slot": T.INPUT_PANEL, + "brewing_input_slot": T.PANEL, + "brewing_input_slot/input_slot": T.INPUT_PANEL, + "brewing_fuel_slot": T.PANEL, + "brewing_fuel_slot/fuel_slot": T.INPUT_PANEL, + "brewing_out_slots": T.GRID, + "brewing_out_slots/left_offset": T.PANEL, + "brewing_out_slots/left_offset/output_slot1": T.INPUT_PANEL, + "brewing_out_slots/middle": T.PANEL, + "brewing_out_slots/middle/output_slot2": T.INPUT_PANEL, + "brewing_out_slots/right_offset": T.PANEL, + "brewing_out_slots/right_offset/output_slot3": T.INPUT_PANEL, + "slots_panel": T.PANEL, + "slots_panel/brewing_input_slot": T.PANEL, + "slots_panel/brewing_fuel_slot": T.PANEL, + "slots_panel/brewing_out_slots": T.GRID, + "slots_panel/brewing_arrow_panel": T.PANEL, + "slots_panel/brewing_arrow_panel/brewing_arrow_empty_image": T.IMAGE, + "slots_panel/brewing_arrow_panel/brewing_arrow_full_image": T.IMAGE, + "slots_panel/brewing_bubbles_panel": T.PANEL, + "slots_panel/brewing_bubbles_panel/bubbles_empty_image": T.IMAGE, + "slots_panel/brewing_bubbles_panel/bubbles_full_image": T.IMAGE, + "slots_panel/brewing_fuel_bar_panel": T.PANEL, + "slots_panel/brewing_fuel_bar_panel/brewing_fuel_bar_empty_image": T.IMAGE, + "slots_panel/brewing_fuel_bar_panel/brewing_fuel_bar_full_image": T.IMAGE, + "slots_panel/brewing_fuel_pipes": T.IMAGE, + "slots_panel/brewing_pipes": T.IMAGE, + "inventory_grid": T.GRID, + "inventory_content": T.PANEL, + "inventory_content/scrolling_panel": T.PANEL, + "brewing_stand_contents_panel": T.PANEL, + "brewing_stand_contents_panel/slots_panel": T.PANEL, + "header": T.PANEL, + "header/header_background": T.IMAGE, + "header/legacy_pocket_close_button": T.BUTTON, + "header/panel": T.PANEL, + "header/panel/title_label": T.LABEL, + "inventory_and_brewing_panel": T.PANEL, + "inventory_and_brewing_panel/inventory_half_screen": T.PANEL, + "inventory_and_brewing_panel/inventory_half_screen/inventory_content": T.PANEL, + "inventory_and_brewing_panel/brewing_half_screen": T.PANEL, + "inventory_and_brewing_panel/brewing_half_screen/brewing_stand_contents_panel": T.PANEL, + "header_and_content_stack_panel": T.STACK_PANEL, + "header_and_content_stack_panel/header": T.PANEL, + "header_and_content_stack_panel/inventory_and_brewing_panel": T.PANEL, + "brewing_stand_panel": T.PANEL, + "brewing_stand_panel/bg": T.IMAGE, + "brewing_stand_panel/root_panel": T.INPUT_PANEL, + "brewing_stand_panel/header_and_content_stack_panel": T.STACK_PANEL, + "brewing_stand_panel/container_gamepad_helpers": T.STACK_PANEL, + "brewing_stand_panel/inventory_selected_icon_button": T.BUTTON, + "brewing_stand_panel/hold_icon": T.BUTTON, + "brewing_stand_panel/selected_item_details_factory": T.FACTORY, + "brewing_stand_panel/item_lock_notification_factory": T.FACTORY, + "brewing_stand_panel/flying_item_renderer": T.CUSTOM, } export type BundlePurchaseWarningType = { - x_padding: T.PANEL - y_padding: T.PANEL - bundle_grid_item: T.PANEL - "bundle_grid_item/banner_image": T.IMAGE - "bundle_grid_item/content": T.STACK_PANEL - "bundle_grid_item/game_pad_focus_border": T.BUTTON - is_focused: T.PANEL - "is_focused/image_border": T.IMAGE - "is_focused/banner_border": T.IMAGE - focus_border: T.IMAGE - focus_border_button: T.BUTTON - "focus_border_button/default": T.PANEL - "focus_border_button/hover": T.PANEL - "focus_border_button/pressed": T.PANEL - grid_item_content: T.STACK_PANEL - "grid_item_content/image_border": T.IMAGE - "grid_item_content/image_border/bundle_thumbnail": T.IMAGE - "grid_item_content/padding_0": T.PANEL - "grid_item_content/bundle_title_panel": T.PANEL - "grid_item_content/bundle_title_panel/bundle_title": T.LABEL - bundle_grid: T.GRID - side_contents: T.STACK_PANEL - "side_contents/title_alignment_hack": T.PANEL - "side_contents/title_alignment_hack/side_section_title": T.LABEL - "side_contents/padding_y_0": T.PANEL - "side_contents/grid_input_panel": T.INPUT_PANEL - "side_contents/grid_input_panel/grid_scroll": T.PANEL - dialog_content: T.STACK_PANEL - "dialog_content/grid_stack": T.STACK_PANEL - "dialog_content/grid_stack/left_grid_scroll": T.STACK_PANEL - "dialog_content/grid_stack/padding_x_divider": T.PANEL - "dialog_content/grid_stack/right_grid_scroll": T.STACK_PANEL - purchase_button_panel: T.BUTTON - screen_dialog: T.PANEL - bundle_purchase_warning_screen_content: T.PANEL - "bundle_purchase_warning_screen_content/dialog": T.PANEL - background: T.IMAGE - bundle_purchase_warning_screen: T.SCREEN + "x_padding": T.PANEL, + "y_padding": T.PANEL, + "bundle_grid_item": T.PANEL, + "bundle_grid_item/banner_image": T.IMAGE, + "bundle_grid_item/content": T.STACK_PANEL, + "bundle_grid_item/game_pad_focus_border": T.BUTTON, + "is_focused": T.PANEL, + "is_focused/image_border": T.IMAGE, + "is_focused/banner_border": T.IMAGE, + "focus_border": T.IMAGE, + "focus_border_button": T.BUTTON, + "focus_border_button/default": T.PANEL, + "focus_border_button/hover": T.PANEL, + "focus_border_button/pressed": T.PANEL, + "grid_item_content": T.STACK_PANEL, + "grid_item_content/image_border": T.IMAGE, + "grid_item_content/image_border/bundle_thumbnail": T.IMAGE, + "grid_item_content/padding_0": T.PANEL, + "grid_item_content/bundle_title_panel": T.PANEL, + "grid_item_content/bundle_title_panel/bundle_title": T.LABEL, + "bundle_grid": T.GRID, + "side_contents": T.STACK_PANEL, + "side_contents/title_alignment_hack": T.PANEL, + "side_contents/title_alignment_hack/side_section_title": T.LABEL, + "side_contents/padding_y_0": T.PANEL, + "side_contents/grid_input_panel": T.INPUT_PANEL, + "side_contents/grid_input_panel/grid_scroll": T.PANEL, + "dialog_content": T.STACK_PANEL, + "dialog_content/grid_stack": T.STACK_PANEL, + "dialog_content/grid_stack/left_grid_scroll": T.STACK_PANEL, + "dialog_content/grid_stack/padding_x_divider": T.PANEL, + "dialog_content/grid_stack/right_grid_scroll": T.STACK_PANEL, + "purchase_button_panel": T.BUTTON, + "screen_dialog": T.PANEL, + "bundle_purchase_warning_screen_content": T.PANEL, + "bundle_purchase_warning_screen_content/dialog": T.PANEL, + "background": T.IMAGE, + "bundle_purchase_warning_screen": T.SCREEN, } export type CartographyType = { - title_label: T.LABEL - arrow_icon: T.IMAGE - plus_sign_icon: T.IMAGE - text_edit_control: T.EDIT_BOX - cartography_output_slot_button: T.BUTTON - cartography_item_slot: T.PANEL - "cartography_item_slot/container_item": T.INPUT_PANEL - map_image: T.IMAGE - map_image_panel: T.PANEL - "map_image_panel/none_map": T.IMAGE - "map_image_panel/copy_map": T.IMAGE - "map_image_panel/rename_map": T.IMAGE - "map_image_panel/map": T.IMAGE - "map_image_panel/locator_map": T.IMAGE - "map_image_panel/zoom_map": T.IMAGE - "map_image_panel/lock_map": T.IMAGE - text_box_panel: T.STACK_PANEL - "text_box_panel/map_name_label": T.LABEL - "text_box_panel/text_edit_control": T.EDIT_BOX - input_slots: T.STACK_PANEL - "input_slots/input_item_slot": T.PANEL - "input_slots/plus_centerer": T.PANEL - "input_slots/plus_centerer/plus_sign_icon": T.IMAGE - "input_slots/additional_item_slot": T.PANEL - output_description_label: T.LABEL - main_panel: T.PANEL - "main_panel/input_slots": T.STACK_PANEL - "main_panel/arrow_icon": T.IMAGE - "main_panel/map_image_panel": T.PANEL - "main_panel/arrow_icon2": T.IMAGE - "main_panel/result_item_slot": T.PANEL - top_half_panel: T.STACK_PANEL - "top_half_panel/padding1": T.PANEL - "top_half_panel/title_panel": T.PANEL - "top_half_panel/title_panel/title_label": T.LABEL - "top_half_panel/padding2": T.PANEL - "top_half_panel/text_box_panel": T.STACK_PANEL - "top_half_panel/padding3": T.PANEL - "top_half_panel/padding4": T.PANEL - "top_half_panel/main_panel_wrap": T.PANEL - "top_half_panel/main_panel_wrap/main_panel": T.PANEL - "top_half_panel/output_description_label": T.LABEL - "top_half_panel/padding5": T.PANEL - cartography_panel: T.PANEL - "cartography_panel/container_gamepad_helpers": T.STACK_PANEL - "cartography_panel/selected_item_details_factory": T.FACTORY - "cartography_panel/item_lock_notification_factory": T.FACTORY - "cartography_panel/root_panel": T.INPUT_PANEL - "cartography_panel/root_panel/common_panel": T.PANEL - "cartography_panel/root_panel/cartography_screen_inventory": T.PANEL - "cartography_panel/root_panel/cartography_screen_inventory/top_half_panel": T.STACK_PANEL - "cartography_panel/root_panel/cartography_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL - "cartography_panel/root_panel/cartography_screen_inventory/hotbar_grid": T.GRID - "cartography_panel/root_panel/cartography_screen_inventory/inventory_take_progress_icon_button": T.BUTTON - "cartography_panel/root_panel/inventory_selected_icon_button": T.BUTTON - "cartography_panel/root_panel/gamepad_cursor": T.BUTTON - "cartography_panel/root_panel/tab_close_and_help_button": T.IMAGE - "cartography_panel/flying_item_renderer": T.CUSTOM - cartography_screen: T.SCREEN + "title_label": T.LABEL, + "arrow_icon": T.IMAGE, + "plus_sign_icon": T.IMAGE, + "text_edit_control": T.EDIT_BOX, + "cartography_output_slot_button": T.BUTTON, + "cartography_item_slot": T.PANEL, + "cartography_item_slot/container_item": T.INPUT_PANEL, + "map_image": T.IMAGE, + "map_image_panel": T.PANEL, + "map_image_panel/none_map": T.IMAGE, + "map_image_panel/copy_map": T.IMAGE, + "map_image_panel/rename_map": T.IMAGE, + "map_image_panel/map": T.IMAGE, + "map_image_panel/locator_map": T.IMAGE, + "map_image_panel/zoom_map": T.IMAGE, + "map_image_panel/lock_map": T.IMAGE, + "text_box_panel": T.STACK_PANEL, + "text_box_panel/map_name_label": T.LABEL, + "text_box_panel/text_edit_control": T.EDIT_BOX, + "input_slots": T.STACK_PANEL, + "input_slots/input_item_slot": T.PANEL, + "input_slots/plus_centerer": T.PANEL, + "input_slots/plus_centerer/plus_sign_icon": T.IMAGE, + "input_slots/additional_item_slot": T.PANEL, + "output_description_label": T.LABEL, + "main_panel": T.PANEL, + "main_panel/input_slots": T.STACK_PANEL, + "main_panel/arrow_icon": T.IMAGE, + "main_panel/map_image_panel": T.PANEL, + "main_panel/arrow_icon2": T.IMAGE, + "main_panel/result_item_slot": T.PANEL, + "top_half_panel": T.STACK_PANEL, + "top_half_panel/padding1": T.PANEL, + "top_half_panel/title_panel": T.PANEL, + "top_half_panel/title_panel/title_label": T.LABEL, + "top_half_panel/padding2": T.PANEL, + "top_half_panel/text_box_panel": T.STACK_PANEL, + "top_half_panel/padding3": T.PANEL, + "top_half_panel/padding4": T.PANEL, + "top_half_panel/main_panel_wrap": T.PANEL, + "top_half_panel/main_panel_wrap/main_panel": T.PANEL, + "top_half_panel/output_description_label": T.LABEL, + "top_half_panel/padding5": T.PANEL, + "cartography_panel": T.PANEL, + "cartography_panel/container_gamepad_helpers": T.STACK_PANEL, + "cartography_panel/selected_item_details_factory": T.FACTORY, + "cartography_panel/item_lock_notification_factory": T.FACTORY, + "cartography_panel/root_panel": T.INPUT_PANEL, + "cartography_panel/root_panel/common_panel": T.PANEL, + "cartography_panel/root_panel/cartography_screen_inventory": T.PANEL, + "cartography_panel/root_panel/cartography_screen_inventory/top_half_panel": T.STACK_PANEL, + "cartography_panel/root_panel/cartography_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL, + "cartography_panel/root_panel/cartography_screen_inventory/hotbar_grid": T.GRID, + "cartography_panel/root_panel/cartography_screen_inventory/inventory_take_progress_icon_button": T.BUTTON, + "cartography_panel/root_panel/inventory_selected_icon_button": T.BUTTON, + "cartography_panel/root_panel/gamepad_cursor": T.BUTTON, + "cartography_panel/root_panel/tab_close_and_help_button": T.IMAGE, + "cartography_panel/flying_item_renderer": T.CUSTOM, + "cartography_screen": T.SCREEN, } export type CartographyPocketType = { - vertical_arrow_icon: T.IMAGE - chest_item_renderer: T.CUSTOM - cartography_item_renderer: T.CUSTOM - input_item_slot: T.INPUT_PANEL - additional_item_slot: T.INPUT_PANEL - result_item_slot: T.INPUT_PANEL - right_panel: T.STACK_PANEL - "right_panel/content": T.INPUT_PANEL - "right_panel/content/bg": T.PANEL - "right_panel/content/cartography_content_stack_panel": T.STACK_PANEL - "right_panel/navigation_tabs_holder": T.PANEL - "right_panel/navigation_tabs_holder/right_navigation_tabs": T.STACK_PANEL - right_tab_cartography: T.PANEL - right_navigation_tabs: T.STACK_PANEL - "right_navigation_tabs/pocket_tab_close_and_help_button": T.IMAGE - "right_navigation_tabs/fill": T.PANEL - "right_navigation_tabs/right_tab_cartography": T.PANEL - input_slots_stack_panel: T.STACK_PANEL - "input_slots_stack_panel/input_item_slot": T.INPUT_PANEL - input_slots: T.STACK_PANEL - "input_slots/input_item_slot": T.INPUT_PANEL - "input_slots/plus_centerer": T.PANEL - "input_slots/plus_centerer/plus_sign_icon": T.IMAGE - "input_slots/additional_item_slot": T.INPUT_PANEL - cartography_content_stack_panel: T.STACK_PANEL - "cartography_content_stack_panel/label_holder": T.PANEL - "cartography_content_stack_panel/label_holder/cartography_label": T.LABEL - "cartography_content_stack_panel/padding_1": T.PANEL - "cartography_content_stack_panel/panel": T.PANEL - "cartography_content_stack_panel/panel/input_slots": T.STACK_PANEL - "cartography_content_stack_panel/padding_2": T.PANEL - "cartography_content_stack_panel/map_centerer": T.PANEL - "cartography_content_stack_panel/map_centerer/map_image_panel": T.PANEL - "cartography_content_stack_panel/description_centerer": T.PANEL - "cartography_content_stack_panel/description_centerer/output_description_label": T.LABEL - "cartography_content_stack_panel/padding_3": T.PANEL - "cartography_content_stack_panel/arrow_centerer": T.PANEL - "cartography_content_stack_panel/arrow_centerer/vertical_arrow_icon": T.IMAGE - "cartography_content_stack_panel/padding_4": T.PANEL - "cartography_content_stack_panel/result_centerer": T.PANEL - "cartography_content_stack_panel/result_centerer/result_item_slot": T.INPUT_PANEL - "cartography_content_stack_panel/filling_panel": T.PANEL - "cartography_content_stack_panel/text_box_panel": T.STACK_PANEL - inventory_panel: T.STACK_PANEL - "inventory_panel/inventory_title_label_centerer": T.PANEL - "inventory_panel/inventory_title_label_centerer/inventory_title_label": T.LABEL - "inventory_panel/inventory_scroll_panel": T.PANEL - inventory_scroll_panel: T.PANEL - pattern_button: T.UNKNOWN - pattern_scroll_panel: T.UNKNOWN - left_panel: T.STACK_PANEL - "left_panel/gamepad_helpers_and_tabs_holder": T.PANEL - "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": T.PANEL - "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": T.PANEL - "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": T.STACK_PANEL - "left_panel/content": T.INPUT_PANEL - "left_panel/content/bg": T.PANEL - "left_panel/content/inventory_panel": T.STACK_PANEL - left_tab_inventory: T.PANEL - left_navigation_tabs: T.STACK_PANEL - "left_navigation_tabs/padding": T.PANEL - "left_navigation_tabs/left_tab_inventory": T.PANEL - pocket_hotbar_and_content_panels: T.STACK_PANEL - cartography_panel: T.PANEL - "cartography_panel/pocket_hotbar_and_content_panels": T.STACK_PANEL - "cartography_panel/container_gamepad_helpers": T.STACK_PANEL - "cartography_panel/selected_item_details_factory": T.FACTORY - "cartography_panel/item_lock_notification_factory": T.FACTORY - "cartography_panel/inventory_selected_icon_button": T.BUTTON - "cartography_panel/inventory_take_progress_icon_button": T.BUTTON - "cartography_panel/flying_item_renderer": T.CUSTOM + "vertical_arrow_icon": T.IMAGE, + "chest_item_renderer": T.CUSTOM, + "cartography_item_renderer": T.CUSTOM, + "input_item_slot": T.INPUT_PANEL, + "additional_item_slot": T.INPUT_PANEL, + "result_item_slot": T.INPUT_PANEL, + "right_panel": T.STACK_PANEL, + "right_panel/content": T.INPUT_PANEL, + "right_panel/content/bg": T.PANEL, + "right_panel/content/cartography_content_stack_panel": T.STACK_PANEL, + "right_panel/navigation_tabs_holder": T.PANEL, + "right_panel/navigation_tabs_holder/right_navigation_tabs": T.STACK_PANEL, + "right_tab_cartography": T.PANEL, + "right_navigation_tabs": T.STACK_PANEL, + "right_navigation_tabs/pocket_tab_close_and_help_button": T.IMAGE, + "right_navigation_tabs/fill": T.PANEL, + "right_navigation_tabs/right_tab_cartography": T.PANEL, + "input_slots_stack_panel": T.STACK_PANEL, + "input_slots_stack_panel/input_item_slot": T.INPUT_PANEL, + "input_slots": T.STACK_PANEL, + "input_slots/input_item_slot": T.INPUT_PANEL, + "input_slots/plus_centerer": T.PANEL, + "input_slots/plus_centerer/plus_sign_icon": T.IMAGE, + "input_slots/additional_item_slot": T.INPUT_PANEL, + "cartography_content_stack_panel": T.STACK_PANEL, + "cartography_content_stack_panel/label_holder": T.PANEL, + "cartography_content_stack_panel/label_holder/cartography_label": T.LABEL, + "cartography_content_stack_panel/padding_1": T.PANEL, + "cartography_content_stack_panel/panel": T.PANEL, + "cartography_content_stack_panel/panel/input_slots": T.STACK_PANEL, + "cartography_content_stack_panel/padding_2": T.PANEL, + "cartography_content_stack_panel/map_centerer": T.PANEL, + "cartography_content_stack_panel/map_centerer/map_image_panel": T.PANEL, + "cartography_content_stack_panel/description_centerer": T.PANEL, + "cartography_content_stack_panel/description_centerer/output_description_label": T.LABEL, + "cartography_content_stack_panel/padding_3": T.PANEL, + "cartography_content_stack_panel/arrow_centerer": T.PANEL, + "cartography_content_stack_panel/arrow_centerer/vertical_arrow_icon": T.IMAGE, + "cartography_content_stack_panel/padding_4": T.PANEL, + "cartography_content_stack_panel/result_centerer": T.PANEL, + "cartography_content_stack_panel/result_centerer/result_item_slot": T.INPUT_PANEL, + "cartography_content_stack_panel/filling_panel": T.PANEL, + "cartography_content_stack_panel/text_box_panel": T.STACK_PANEL, + "inventory_panel": T.STACK_PANEL, + "inventory_panel/inventory_title_label_centerer": T.PANEL, + "inventory_panel/inventory_title_label_centerer/inventory_title_label": T.LABEL, + "inventory_panel/inventory_scroll_panel": T.PANEL, + "inventory_scroll_panel": T.PANEL, + "pattern_button": T.UNKNOWN, + "pattern_scroll_panel": T.UNKNOWN, + "left_panel": T.STACK_PANEL, + "left_panel/gamepad_helpers_and_tabs_holder": T.PANEL, + "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": T.PANEL, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": T.PANEL, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": T.STACK_PANEL, + "left_panel/content": T.INPUT_PANEL, + "left_panel/content/bg": T.PANEL, + "left_panel/content/inventory_panel": T.STACK_PANEL, + "left_tab_inventory": T.PANEL, + "left_navigation_tabs": T.STACK_PANEL, + "left_navigation_tabs/padding": T.PANEL, + "left_navigation_tabs/left_tab_inventory": T.PANEL, + "pocket_hotbar_and_content_panels": T.STACK_PANEL, + "cartography_panel": T.PANEL, + "cartography_panel/pocket_hotbar_and_content_panels": T.STACK_PANEL, + "cartography_panel/container_gamepad_helpers": T.STACK_PANEL, + "cartography_panel/selected_item_details_factory": T.FACTORY, + "cartography_panel/item_lock_notification_factory": T.FACTORY, + "cartography_panel/inventory_selected_icon_button": T.BUTTON, + "cartography_panel/inventory_take_progress_icon_button": T.BUTTON, + "cartography_panel/flying_item_renderer": T.CUSTOM, } export type ChalkboardType = { - text_edit_control: T.EDIT_BOX - locked_toggle: T.TOGGLE - locked_label: T.LABEL - lock_control: T.STACK_PANEL - "lock_control/toggle": T.TOGGLE - "lock_control/pad_wrap": T.PANEL - "lock_control/pad_wrap/label": T.LABEL - gamepad_helpers: T.PANEL - "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL - chalkboard_screen: T.SCREEN - chalkboard_root: T.PANEL - chalkboard_content: T.PANEL - "chalkboard_content/gamepad_helpers": T.PANEL - "chalkboard_content/edit_box": T.EDIT_BOX - "chalkboard_content/locked_toggle": T.STACK_PANEL + "text_edit_control": T.EDIT_BOX, + "locked_toggle": T.TOGGLE, + "locked_label": T.LABEL, + "lock_control": T.STACK_PANEL, + "lock_control/toggle": T.TOGGLE, + "lock_control/pad_wrap": T.PANEL, + "lock_control/pad_wrap/label": T.LABEL, + "gamepad_helpers": T.PANEL, + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL, + "chalkboard_screen": T.SCREEN, + "chalkboard_root": T.PANEL, + "chalkboard_content": T.PANEL, + "chalkboard_content/gamepad_helpers": T.PANEL, + "chalkboard_content/edit_box": T.EDIT_BOX, + "chalkboard_content/locked_toggle": T.STACK_PANEL, } export type ChatType = { - down_arrow_image: T.IMAGE - keyboard_image: T.IMAGE - copy_image: T.IMAGE - paste_image: T.IMAGE - gear_image: T.IMAGE - send_image: T.IMAGE - send_panel: T.STACK_PANEL - "send_panel/send_image_panel": T.PANEL - "send_panel/send_image_panel/send_image": T.IMAGE - "send_panel/gamepad_x_button": T.STACK_PANEL - "send_panel/gamepad_x_button/side_padding": T.PANEL - "send_panel/gamepad_x_button/gamepad_x_button_image": T.PANEL - "send_panel/gamepad_x_button/gamepad_x_button_image/icon": T.STACK_PANEL - keyboard_image_panel: T.PANEL - "keyboard_image_panel/keyboard_image": T.IMAGE - "keyboard_image_panel/down_arrow_image": T.IMAGE - small_button: T.BUTTON - keyboard_button: T.BUTTON - chat_settings_button: T.BUTTON - send_button: T.BUTTON - messages_text: T.PANEL - "messages_text/text": T.LABEL - message_tts_wrapper: T.PANEL - messages_stack_panel: T.STACK_PANEL - messages_scrolling_panel: T.PANEL - text_edit_box: T.EDIT_BOX - commands_background: T.IMAGE - click_autocomplete_is_focused: T.IMAGE - auto_complete_panel_contents_with_item: T.PANEL - "auto_complete_panel_contents_with_item/auto_complete_item_renderer": T.CUSTOM - "auto_complete_panel_contents_with_item/text": T.LABEL - "auto_complete_panel_contents_with_item/autocomplete_button": T.BUTTON - "auto_complete_panel_contents_with_item/autocomplete_button/default": T.PANEL - "auto_complete_panel_contents_with_item/autocomplete_button/hover": T.IMAGE - "auto_complete_panel_contents_with_item/autocomplete_button/pressed": T.IMAGE - auto_complete_panel: T.PANEL - "auto_complete_panel/panel": T.PANEL - "auto_complete_panel/panel/auto_complete_grid": T.GRID - commands_panel: T.PANEL - "commands_panel/auto_complete_panel": T.PANEL - chat_bottom_panel: T.STACK_PANEL - "chat_bottom_panel/keyboard_button": T.BUTTON - "chat_bottom_panel/host_main_button": T.BUTTON - "chat_bottom_panel/chat_settings": T.BUTTON - "chat_bottom_panel/text_box": T.EDIT_BOX - "chat_bottom_panel/send_button": T.BUTTON - title_text: T.PANEL - "title_text/title_panel": T.LABEL - back_content_panel: T.PANEL - "back_content_panel/back_button": T.BUTTON - "back_content_panel/gamepad_back_helper": T.INPUT_PANEL - "back_content_panel/gamepad_back_helper/gamepad_helper_button": T.STACK_PANEL - coordinate_dropdown_content: T.STACK_PANEL - "coordinate_dropdown_content/top_padding": T.PANEL - "coordinate_dropdown_content/my_position": T.PANEL - "coordinate_dropdown_content/block_position": T.PANEL - "coordinate_dropdown_content/bottom_padding": T.PANEL - coordinate_dropdown: T.PANEL - popup_toast: T.INPUT_PANEL - copy_coordinate_button: T.BUTTON - paste_button: T.BUTTON - chat_header: T.IMAGE - "chat_header/title_panel": T.PANEL - "chat_header/title_panel/back_button_content_panel": T.PANEL - "chat_header/title_panel/title": T.PANEL - "chat_header/title_panel/popup_dialog_factory": T.FACTORY - "chat_header/title_panel/chat_header_content_area": T.STACK_PANEL - "chat_header/title_panel/chat_header_content_area/coordinate_dropdown": T.PANEL - "chat_header/title_panel/chat_header_content_area/coordinates_panel": T.PANEL - "chat_header/title_panel/chat_header_content_area/coordinates_panel/coordinates_background_image": T.IMAGE - "chat_header/title_panel/chat_header_content_area/coordinates_panel/coordinates_background_image/coordinates_text": T.LABEL - "chat_header/title_panel/chat_header_content_area/copy_coordinate_button": T.BUTTON - "chat_header/title_panel/chat_header_content_area/icon": T.STACK_PANEL - "chat_header/title_panel/chat_header_content_area/paste_button": T.BUTTON - chat_screen: T.SCREEN - chat_screen_content: T.PANEL - "chat_screen_content/messages_panel": T.PANEL - "chat_screen_content/chat_bottom_panel": T.STACK_PANEL - "chat_screen_content/chat_top_panel": T.IMAGE - "chat_screen_content/autocomplete_commands_panel": T.PANEL - "chat_screen_content/host_main_panel": T.PANEL - "chat_screen_content/popup_factory": T.FACTORY - chat_background: T.IMAGE + "down_arrow_image": T.IMAGE, + "keyboard_image": T.IMAGE, + "copy_image": T.IMAGE, + "paste_image": T.IMAGE, + "gear_image": T.IMAGE, + "send_image": T.IMAGE, + "send_panel": T.STACK_PANEL, + "send_panel/send_image_panel": T.PANEL, + "send_panel/send_image_panel/send_image": T.IMAGE, + "send_panel/gamepad_x_button": T.STACK_PANEL, + "send_panel/gamepad_x_button/side_padding": T.PANEL, + "send_panel/gamepad_x_button/gamepad_x_button_image": T.PANEL, + "send_panel/gamepad_x_button/gamepad_x_button_image/icon": T.STACK_PANEL, + "keyboard_image_panel": T.PANEL, + "keyboard_image_panel/keyboard_image": T.IMAGE, + "keyboard_image_panel/down_arrow_image": T.IMAGE, + "small_button": T.BUTTON, + "keyboard_button": T.BUTTON, + "chat_settings_button": T.BUTTON, + "send_button": T.BUTTON, + "messages_text": T.PANEL, + "messages_text/text": T.LABEL, + "message_tts_wrapper": T.PANEL, + "messages_stack_panel": T.STACK_PANEL, + "messages_scrolling_panel": T.PANEL, + "text_edit_box": T.EDIT_BOX, + "commands_background": T.IMAGE, + "click_autocomplete_is_focused": T.IMAGE, + "auto_complete_panel_contents_with_item": T.PANEL, + "auto_complete_panel_contents_with_item/auto_complete_item_renderer": T.CUSTOM, + "auto_complete_panel_contents_with_item/text": T.LABEL, + "auto_complete_panel_contents_with_item/autocomplete_button": T.BUTTON, + "auto_complete_panel_contents_with_item/autocomplete_button/default": T.PANEL, + "auto_complete_panel_contents_with_item/autocomplete_button/hover": T.IMAGE, + "auto_complete_panel_contents_with_item/autocomplete_button/pressed": T.IMAGE, + "auto_complete_panel": T.PANEL, + "auto_complete_panel/panel": T.PANEL, + "auto_complete_panel/panel/auto_complete_grid": T.GRID, + "commands_panel": T.PANEL, + "commands_panel/auto_complete_panel": T.PANEL, + "chat_bottom_panel": T.STACK_PANEL, + "chat_bottom_panel/keyboard_button": T.BUTTON, + "chat_bottom_panel/host_main_button": T.BUTTON, + "chat_bottom_panel/chat_settings": T.BUTTON, + "chat_bottom_panel/text_box": T.EDIT_BOX, + "chat_bottom_panel/send_button": T.BUTTON, + "title_text": T.PANEL, + "title_text/title_panel": T.LABEL, + "back_content_panel": T.PANEL, + "back_content_panel/back_button": T.BUTTON, + "back_content_panel/gamepad_back_helper": T.INPUT_PANEL, + "back_content_panel/gamepad_back_helper/gamepad_helper_button": T.STACK_PANEL, + "coordinate_dropdown_content": T.STACK_PANEL, + "coordinate_dropdown_content/top_padding": T.PANEL, + "coordinate_dropdown_content/my_position": T.PANEL, + "coordinate_dropdown_content/block_position": T.PANEL, + "coordinate_dropdown_content/bottom_padding": T.PANEL, + "coordinate_dropdown": T.PANEL, + "popup_toast": T.INPUT_PANEL, + "copy_coordinate_button": T.BUTTON, + "paste_button": T.BUTTON, + "chat_header": T.IMAGE, + "chat_header/title_panel": T.PANEL, + "chat_header/title_panel/back_button_content_panel": T.PANEL, + "chat_header/title_panel/title": T.PANEL, + "chat_header/title_panel/popup_dialog_factory": T.FACTORY, + "chat_header/title_panel/chat_header_content_area": T.STACK_PANEL, + "chat_header/title_panel/chat_header_content_area/coordinate_dropdown": T.PANEL, + "chat_header/title_panel/chat_header_content_area/coordinates_panel": T.PANEL, + "chat_header/title_panel/chat_header_content_area/coordinates_panel/coordinates_background_image": T.IMAGE, + "chat_header/title_panel/chat_header_content_area/coordinates_panel/coordinates_background_image/coordinates_text": T.LABEL, + "chat_header/title_panel/chat_header_content_area/copy_coordinate_button": T.BUTTON, + "chat_header/title_panel/chat_header_content_area/icon": T.STACK_PANEL, + "chat_header/title_panel/chat_header_content_area/paste_button": T.BUTTON, + "chat_screen": T.SCREEN, + "chat_screen_content": T.PANEL, + "chat_screen_content/messages_panel": T.PANEL, + "chat_screen_content/chat_bottom_panel": T.STACK_PANEL, + "chat_screen_content/chat_top_panel": T.IMAGE, + "chat_screen_content/autocomplete_commands_panel": T.PANEL, + "chat_screen_content/host_main_panel": T.PANEL, + "chat_screen_content/popup_factory": T.FACTORY, + "chat_background": T.IMAGE, } export type ChatSettingsType = { - mute_all_toggle: T.PANEL - mute_emote_chat_toggle: T.PANEL - chat_tts_toggle: T.PANEL - reset_button: T.BUTTON - typeface_dropdown_content: T.STACK_PANEL - "typeface_dropdown_content/top_padding": T.PANEL - "typeface_dropdown_content/mojangles": T.PANEL - "typeface_dropdown_content/noto_sans": T.PANEL - "typeface_dropdown_content/bottom_padding": T.PANEL - typeface_dropdown: T.PANEL - chat_color_dropdown_content: T.STACK_PANEL - "chat_color_dropdown_content/top_padding": T.PANEL - "chat_color_dropdown_content/0": T.PANEL - "chat_color_dropdown_content/1": T.PANEL - "chat_color_dropdown_content/2": T.PANEL - "chat_color_dropdown_content/3": T.PANEL - "chat_color_dropdown_content/4": T.PANEL - "chat_color_dropdown_content/5": T.PANEL - "chat_color_dropdown_content/6": T.PANEL - "chat_color_dropdown_content/bottom_padding": T.PANEL - colors_dropdown_base: T.PANEL - chat_color_dropdown: T.PANEL - mentions_color_dropdown: T.PANEL - font_size_slider: T.PANEL - line_spacing_slider: T.PANEL - colored_icon_panel: T.PANEL - "colored_icon_panel/icon": T.IMAGE - "colored_icon_panel/icon_overlay": T.IMAGE - paintbrush: T.PANEL - line_break: T.PANEL - "line_break/line_break_image": T.IMAGE - chat_settings_scrolling_content: T.PANEL - "chat_settings_scrolling_content/chat_settings_content_area": T.STACK_PANEL - "chat_settings_scrolling_content/chat_settings_content_area/mute_all_toggle": T.PANEL - "chat_settings_scrolling_content/chat_settings_content_area/mute_emote_chat_toggle": T.PANEL - "chat_settings_scrolling_content/chat_settings_content_area/chat_tts_toggle": T.PANEL - "chat_settings_scrolling_content/chat_settings_content_area/toggles_to_font_shape": T.PANEL - "chat_settings_scrolling_content/chat_settings_content_area/typeface_dropdown": T.PANEL - "chat_settings_scrolling_content/chat_settings_content_area/font_size": T.PANEL - "chat_settings_scrolling_content/chat_settings_content_area/line_spacing": T.PANEL - "chat_settings_scrolling_content/chat_settings_content_area/font_shape_to_font_colors": T.PANEL - "chat_settings_scrolling_content/chat_settings_content_area/chat_color": T.PANEL - "chat_settings_scrolling_content/chat_settings_content_area/mentions_color": T.PANEL - "chat_settings_scrolling_content/chat_settings_content_area/reset_button": T.BUTTON - chat_setting_scrolling_panel: T.PANEL - chat_settings_popup: T.INPUT_PANEL - popup_factory: T.FACTORY + "mute_all_toggle": T.PANEL, + "mute_emote_chat_toggle": T.PANEL, + "chat_tts_toggle": T.PANEL, + "reset_button": T.BUTTON, + "typeface_dropdown_content": T.STACK_PANEL, + "typeface_dropdown_content/top_padding": T.PANEL, + "typeface_dropdown_content/mojangles": T.PANEL, + "typeface_dropdown_content/noto_sans": T.PANEL, + "typeface_dropdown_content/bottom_padding": T.PANEL, + "typeface_dropdown": T.PANEL, + "chat_color_dropdown_content": T.STACK_PANEL, + "chat_color_dropdown_content/top_padding": T.PANEL, + "chat_color_dropdown_content/0": T.PANEL, + "chat_color_dropdown_content/1": T.PANEL, + "chat_color_dropdown_content/2": T.PANEL, + "chat_color_dropdown_content/3": T.PANEL, + "chat_color_dropdown_content/4": T.PANEL, + "chat_color_dropdown_content/5": T.PANEL, + "chat_color_dropdown_content/6": T.PANEL, + "chat_color_dropdown_content/bottom_padding": T.PANEL, + "colors_dropdown_base": T.PANEL, + "chat_color_dropdown": T.PANEL, + "mentions_color_dropdown": T.PANEL, + "font_size_slider": T.PANEL, + "line_spacing_slider": T.PANEL, + "colored_icon_panel": T.PANEL, + "colored_icon_panel/icon": T.IMAGE, + "colored_icon_panel/icon_overlay": T.IMAGE, + "paintbrush": T.PANEL, + "line_break": T.PANEL, + "line_break/line_break_image": T.IMAGE, + "chat_settings_scrolling_content": T.PANEL, + "chat_settings_scrolling_content/chat_settings_content_area": T.STACK_PANEL, + "chat_settings_scrolling_content/chat_settings_content_area/mute_all_toggle": T.PANEL, + "chat_settings_scrolling_content/chat_settings_content_area/mute_emote_chat_toggle": T.PANEL, + "chat_settings_scrolling_content/chat_settings_content_area/chat_tts_toggle": T.PANEL, + "chat_settings_scrolling_content/chat_settings_content_area/toggles_to_font_shape": T.PANEL, + "chat_settings_scrolling_content/chat_settings_content_area/typeface_dropdown": T.PANEL, + "chat_settings_scrolling_content/chat_settings_content_area/font_size": T.PANEL, + "chat_settings_scrolling_content/chat_settings_content_area/line_spacing": T.PANEL, + "chat_settings_scrolling_content/chat_settings_content_area/font_shape_to_font_colors": T.PANEL, + "chat_settings_scrolling_content/chat_settings_content_area/chat_color": T.PANEL, + "chat_settings_scrolling_content/chat_settings_content_area/mentions_color": T.PANEL, + "chat_settings_scrolling_content/chat_settings_content_area/reset_button": T.BUTTON, + "chat_setting_scrolling_panel": T.PANEL, + "chat_settings_popup": T.INPUT_PANEL, + "popup_factory": T.FACTORY, } export type ChestType = { - chest_label: T.LABEL - chest_grid_item: T.INPUT_PANEL - small_chest_grid: T.GRID - large_chest_grid: T.GRID - small_chest_panel_top_half: T.PANEL - "small_chest_panel_top_half/chest_label": T.LABEL - "small_chest_panel_top_half/small_chest_grid": T.GRID - large_chest_panel_top_half: T.PANEL - "large_chest_panel_top_half/chest_label": T.LABEL - "large_chest_panel_top_half/large_chest_grid": T.GRID - small_chest_panel: T.PANEL - "small_chest_panel/container_gamepad_helpers": T.STACK_PANEL - "small_chest_panel/selected_item_details_factory": T.FACTORY - "small_chest_panel/item_lock_notification_factory": T.FACTORY - "small_chest_panel/root_panel": T.INPUT_PANEL - "small_chest_panel/root_panel/common_panel": T.PANEL - "small_chest_panel/root_panel/chest_panel": T.PANEL - "small_chest_panel/root_panel/chest_panel/small_chest_panel_top_half": T.PANEL - "small_chest_panel/root_panel/chest_panel/inventory_panel_bottom_half_with_label": T.PANEL - "small_chest_panel/root_panel/chest_panel/hotbar_grid": T.GRID - "small_chest_panel/root_panel/chest_panel/inventory_take_progress_icon_button": T.BUTTON - "small_chest_panel/root_panel/chest_panel/flying_item_renderer": T.CUSTOM - "small_chest_panel/root_panel/inventory_selected_icon_button": T.BUTTON - "small_chest_panel/root_panel/gamepad_cursor": T.BUTTON - selected_item_details: T.PANEL - large_chest_panel: T.PANEL - "large_chest_panel/container_gamepad_helpers": T.STACK_PANEL - "large_chest_panel/selected_item_details_factory": T.FACTORY - "large_chest_panel/item_lock_notification_factory": T.FACTORY - "large_chest_panel/root_panel": T.INPUT_PANEL - "large_chest_panel/root_panel/common_panel": T.PANEL - "large_chest_panel/root_panel/chest_panel": T.PANEL - "large_chest_panel/root_panel/chest_panel/large_chest_panel_top_half": T.PANEL - "large_chest_panel/root_panel/chest_panel/inventory_panel_bottom_half_with_label": T.PANEL - "large_chest_panel/root_panel/chest_panel/hotbar_grid": T.GRID - "large_chest_panel/root_panel/chest_panel/inventory_take_progress_icon_button": T.BUTTON - "large_chest_panel/root_panel/chest_panel/flying_item_renderer": T.CUSTOM - "large_chest_panel/root_panel/inventory_selected_icon_button": T.BUTTON - "large_chest_panel/root_panel/gamepad_cursor": T.BUTTON - ender_chest_panel: T.PANEL - shulker_box_panel: T.PANEL - barrel_panel: T.PANEL - small_chest_screen: T.SCREEN - large_chest_screen: T.SCREEN - ender_chest_screen: T.SCREEN - shulker_box_screen: T.SCREEN - barrel_screen: T.SCREEN + "chest_label": T.LABEL, + "chest_grid_item": T.INPUT_PANEL, + "small_chest_grid": T.GRID, + "large_chest_grid": T.GRID, + "small_chest_panel_top_half": T.PANEL, + "small_chest_panel_top_half/chest_label": T.LABEL, + "small_chest_panel_top_half/small_chest_grid": T.GRID, + "large_chest_panel_top_half": T.PANEL, + "large_chest_panel_top_half/chest_label": T.LABEL, + "large_chest_panel_top_half/large_chest_grid": T.GRID, + "small_chest_panel": T.PANEL, + "small_chest_panel/container_gamepad_helpers": T.STACK_PANEL, + "small_chest_panel/selected_item_details_factory": T.FACTORY, + "small_chest_panel/item_lock_notification_factory": T.FACTORY, + "small_chest_panel/root_panel": T.INPUT_PANEL, + "small_chest_panel/root_panel/common_panel": T.PANEL, + "small_chest_panel/root_panel/chest_panel": T.PANEL, + "small_chest_panel/root_panel/chest_panel/small_chest_panel_top_half": T.PANEL, + "small_chest_panel/root_panel/chest_panel/inventory_panel_bottom_half_with_label": T.PANEL, + "small_chest_panel/root_panel/chest_panel/hotbar_grid": T.GRID, + "small_chest_panel/root_panel/chest_panel/inventory_take_progress_icon_button": T.BUTTON, + "small_chest_panel/root_panel/chest_panel/flying_item_renderer": T.CUSTOM, + "small_chest_panel/root_panel/inventory_selected_icon_button": T.BUTTON, + "small_chest_panel/root_panel/gamepad_cursor": T.BUTTON, + "selected_item_details": T.PANEL, + "large_chest_panel": T.PANEL, + "large_chest_panel/container_gamepad_helpers": T.STACK_PANEL, + "large_chest_panel/selected_item_details_factory": T.FACTORY, + "large_chest_panel/item_lock_notification_factory": T.FACTORY, + "large_chest_panel/root_panel": T.INPUT_PANEL, + "large_chest_panel/root_panel/common_panel": T.PANEL, + "large_chest_panel/root_panel/chest_panel": T.PANEL, + "large_chest_panel/root_panel/chest_panel/large_chest_panel_top_half": T.PANEL, + "large_chest_panel/root_panel/chest_panel/inventory_panel_bottom_half_with_label": T.PANEL, + "large_chest_panel/root_panel/chest_panel/hotbar_grid": T.GRID, + "large_chest_panel/root_panel/chest_panel/inventory_take_progress_icon_button": T.BUTTON, + "large_chest_panel/root_panel/chest_panel/flying_item_renderer": T.CUSTOM, + "large_chest_panel/root_panel/inventory_selected_icon_button": T.BUTTON, + "large_chest_panel/root_panel/gamepad_cursor": T.BUTTON, + "ender_chest_panel": T.PANEL, + "shulker_box_panel": T.PANEL, + "barrel_panel": T.PANEL, + "small_chest_screen": T.SCREEN, + "large_chest_screen": T.SCREEN, + "ender_chest_screen": T.SCREEN, + "shulker_box_screen": T.SCREEN, + "barrel_screen": T.SCREEN, } export type ChooseRealmType = { - realm_screenshot: T.IMAGE - "realm_screenshot/picture": T.IMAGE - realms_scroll_content: T.INPUT_PANEL - "realms_scroll_content/scrolling_panel": T.PANEL - realms_scroll_panel: T.PANEL - "realms_scroll_panel/realms_stack_panel": T.STACK_PANEL - "realms_scroll_panel/realms_stack_panel/realms_world_item_grid": T.GRID - "realms_scroll_panel/realms_stack_panel/padding_0": T.PANEL - "realms_scroll_panel/realms_stack_panel/add_realm_button": T.BUTTON - "realms_scroll_panel/realms_stack_panel/ten_player_button": T.BUTTON - "realms_scroll_panel/realms_stack_panel/padding_1": T.PANEL - "realms_scroll_panel/realms_stack_panel/two_player_button": T.BUTTON - realms_world_item_grid: T.GRID - realms_world_item: T.STACK_PANEL - "realms_world_item/realms_world_item_button": T.BUTTON - realms_world_item_button: T.BUTTON - add_realm_button: T.BUTTON - ten_player_button: T.BUTTON - two_player_button: T.BUTTON - realms_world_content_panel: T.STACK_PANEL - "realms_world_content_panel/realm_screenshot": T.IMAGE - "realms_world_content_panel/padding": T.PANEL - "realms_world_content_panel/realms_world_content_text_area_panel": T.PANEL - "realms_world_content_panel/realms_world_content_text_area_panel/realms_world_text_panel": T.PANEL - "realms_world_content_panel/realms_world_content_text_area_panel/realms_world_text_panel/realms_world_header": T.LABEL - "realms_world_content_panel/realms_world_content_status_area_panel": T.STACK_PANEL - "realms_world_content_panel/realms_world_content_status_area_panel/world_player_count_text_panel": T.PANEL - "realms_world_content_panel/realms_world_content_status_area_panel/world_player_count_text_panel/realms_world_player_count": T.LABEL - "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon": T.PANEL - "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_online_icon": T.IMAGE - "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_unavailable_icon": T.IMAGE - "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_offline_icon": T.IMAGE - main_panel: T.PANEL - "main_panel/progress_loading_bars": T.IMAGE - "main_panel/realms_scroll_content": T.INPUT_PANEL - slots_scroll_panel: T.PANEL - "slots_scroll_panel/slots_stack_panel": T.STACK_PANEL - "slots_scroll_panel/slots_stack_panel/padding_0": T.PANEL - "slots_scroll_panel/slots_stack_panel/choose_slot_text": T.LABEL - "slots_scroll_panel/slots_stack_panel/padding_1": T.PANEL - "slots_scroll_panel/slots_stack_panel/slots_grid": T.STACK_PANEL - slots_grid: T.STACK_PANEL - "slots_grid/slot_1": T.BUTTON - "slots_grid/padding_0": T.PANEL - "slots_grid/slot_2": T.BUTTON - "slots_grid/padding_1": T.PANEL - "slots_grid/slot_3": T.BUTTON - slot_content_panel: T.STACK_PANEL - "slot_content_panel/world_slot_top": T.PANEL - "slot_content_panel/world_slot_top/plus_image": T.IMAGE - "slot_content_panel/world_slot_top/world_thumbnail": T.IMAGE - "slot_content_panel/world_slot_bottom": T.PANEL - "slot_content_panel/world_slot_bottom/white_line_hover": T.IMAGE - "slot_content_panel/world_slot_bottom/world_text_panel": T.PANEL - "slot_content_panel/world_slot_bottom/world_text_panel/background_grey": T.IMAGE - "slot_content_panel/world_slot_bottom/world_text_panel/background_green": T.IMAGE - "slot_content_panel/world_slot_bottom/world_text_panel/world_text": T.LABEL - slot_panel: T.PANEL - "slot_panel/slots_scroll_content": T.INPUT_PANEL - "slot_panel/slots_scroll_content/scrolling_panel": T.PANEL - choose_realm_screen: T.SCREEN - choose_realm_screen_content: T.PANEL - "choose_realm_screen_content/realm_dialog": T.PANEL - "choose_realm_screen_content/slot_dialog": T.PANEL - background: T.IMAGE + "realm_screenshot": T.IMAGE, + "realm_screenshot/picture": T.IMAGE, + "realms_scroll_content": T.INPUT_PANEL, + "realms_scroll_content/scrolling_panel": T.PANEL, + "realms_scroll_panel": T.PANEL, + "realms_scroll_panel/realms_stack_panel": T.STACK_PANEL, + "realms_scroll_panel/realms_stack_panel/realms_world_item_grid": T.GRID, + "realms_scroll_panel/realms_stack_panel/padding_0": T.PANEL, + "realms_scroll_panel/realms_stack_panel/add_realm_button": T.BUTTON, + "realms_scroll_panel/realms_stack_panel/ten_player_button": T.BUTTON, + "realms_scroll_panel/realms_stack_panel/padding_1": T.PANEL, + "realms_scroll_panel/realms_stack_panel/two_player_button": T.BUTTON, + "realms_world_item_grid": T.GRID, + "realms_world_item": T.STACK_PANEL, + "realms_world_item/realms_world_item_button": T.BUTTON, + "realms_world_item_button": T.BUTTON, + "add_realm_button": T.BUTTON, + "ten_player_button": T.BUTTON, + "two_player_button": T.BUTTON, + "realms_world_content_panel": T.STACK_PANEL, + "realms_world_content_panel/realm_screenshot": T.IMAGE, + "realms_world_content_panel/padding": T.PANEL, + "realms_world_content_panel/realms_world_content_text_area_panel": T.PANEL, + "realms_world_content_panel/realms_world_content_text_area_panel/realms_world_text_panel": T.PANEL, + "realms_world_content_panel/realms_world_content_text_area_panel/realms_world_text_panel/realms_world_header": T.LABEL, + "realms_world_content_panel/realms_world_content_status_area_panel": T.STACK_PANEL, + "realms_world_content_panel/realms_world_content_status_area_panel/world_player_count_text_panel": T.PANEL, + "realms_world_content_panel/realms_world_content_status_area_panel/world_player_count_text_panel/realms_world_player_count": T.LABEL, + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon": T.PANEL, + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_online_icon": T.IMAGE, + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_unavailable_icon": T.IMAGE, + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_offline_icon": T.IMAGE, + "main_panel": T.PANEL, + "main_panel/progress_loading_bars": T.IMAGE, + "main_panel/realms_scroll_content": T.INPUT_PANEL, + "slots_scroll_panel": T.PANEL, + "slots_scroll_panel/slots_stack_panel": T.STACK_PANEL, + "slots_scroll_panel/slots_stack_panel/padding_0": T.PANEL, + "slots_scroll_panel/slots_stack_panel/choose_slot_text": T.LABEL, + "slots_scroll_panel/slots_stack_panel/padding_1": T.PANEL, + "slots_scroll_panel/slots_stack_panel/slots_grid": T.STACK_PANEL, + "slots_grid": T.STACK_PANEL, + "slots_grid/slot_1": T.BUTTON, + "slots_grid/padding_0": T.PANEL, + "slots_grid/slot_2": T.BUTTON, + "slots_grid/padding_1": T.PANEL, + "slots_grid/slot_3": T.BUTTON, + "slot_content_panel": T.STACK_PANEL, + "slot_content_panel/world_slot_top": T.PANEL, + "slot_content_panel/world_slot_top/plus_image": T.IMAGE, + "slot_content_panel/world_slot_top/world_thumbnail": T.IMAGE, + "slot_content_panel/world_slot_bottom": T.PANEL, + "slot_content_panel/world_slot_bottom/white_line_hover": T.IMAGE, + "slot_content_panel/world_slot_bottom/world_text_panel": T.PANEL, + "slot_content_panel/world_slot_bottom/world_text_panel/background_grey": T.IMAGE, + "slot_content_panel/world_slot_bottom/world_text_panel/background_green": T.IMAGE, + "slot_content_panel/world_slot_bottom/world_text_panel/world_text": T.LABEL, + "slot_panel": T.PANEL, + "slot_panel/slots_scroll_content": T.INPUT_PANEL, + "slot_panel/slots_scroll_content/scrolling_panel": T.PANEL, + "choose_realm_screen": T.SCREEN, + "choose_realm_screen_content": T.PANEL, + "choose_realm_screen_content/realm_dialog": T.PANEL, + "choose_realm_screen_content/slot_dialog": T.PANEL, + "background": T.IMAGE, } export type CoinPurchaseType = { - black_image: T.IMAGE - banner_fill: T.IMAGE - coins_stack_panel: T.STACK_PANEL - "coins_stack_panel/coin": T.IMAGE - "coins_stack_panel/coin_padding": T.PANEL - "coins_stack_panel/text_padding": T.PANEL - "coins_stack_panel/text_padding/coins_without_bonus": T.LABEL - call_out_coins_stack_panel: T.STACK_PANEL - "call_out_coins_stack_panel/coin": T.IMAGE - "call_out_coins_stack_panel/coin_padding": T.PANEL - "call_out_coins_stack_panel/text_padding": T.PANEL - "call_out_coins_stack_panel/text_padding/coins_without_bonus": T.LABEL - button_content: T.PANEL - "button_content/bonus_coins_stack": T.STACK_PANEL - "button_content/call_out_background": T.IMAGE - "button_content/call_out_background/bevel": T.IMAGE - call_out_button_content: T.PANEL - "call_out_button_content/call_out_header": T.PANEL - "call_out_button_content/call_out_bonus_coins_stack": T.STACK_PANEL - "call_out_button_content/call_out_background": T.IMAGE - "call_out_button_content/call_out_background/call_out_border": T.IMAGE - call_out_header: T.PANEL - "call_out_header/call_out_banner": T.IMAGE - "call_out_header/call_out_label": T.LABEL - bonus_coins_stack: T.STACK_PANEL - "bonus_coins_stack/image_padding": T.PANEL - "bonus_coins_stack/image_panel": T.PANEL - "bonus_coins_stack/image_panel/image": T.IMAGE - "bonus_coins_stack/non_bonus_padding_0": T.PANEL - "bonus_coins_stack/price_panel": T.PANEL - "bonus_coins_stack/price_panel/coins_stack_panel": T.STACK_PANEL - "bonus_coins_stack/plus_label": T.PANEL - "bonus_coins_stack/plus_label/plus_label": T.LABEL - "bonus_coins_stack/non_bonus_padding_1": T.PANEL - "bonus_coins_stack/bonus_label_panel": T.PANEL - "bonus_coins_stack/bonus_label_panel/bonus_label": T.LABEL - "bonus_coins_stack/padding_0": T.PANEL - "bonus_coins_stack/bonus_price_panel": T.PANEL - "bonus_coins_stack/bonus_price_panel/coins_stack_panel": T.STACK_PANEL - "bonus_coins_stack/padding_1": T.PANEL - "bonus_coins_stack/currency_panel": T.PANEL - "bonus_coins_stack/currency_panel/currency_price_panel": T.IMAGE - "bonus_coins_stack/currency_panel/currency_price_panel/price": T.LABEL - "bonus_coins_stack/currency_panel/currency_price_panel/debug_price": T.LABEL - "bonus_coins_stack/padding_2": T.PANEL - call_out_bonus_coins_stack: T.STACK_PANEL - "call_out_bonus_coins_stack/image_padding": T.PANEL - "call_out_bonus_coins_stack/image_panel": T.PANEL - "call_out_bonus_coins_stack/image_panel/image": T.IMAGE - "call_out_bonus_coins_stack/non_bonus_padding_0": T.PANEL - "call_out_bonus_coins_stack/price_panel": T.PANEL - "call_out_bonus_coins_stack/price_panel/call_out_coins_stack_panel": T.STACK_PANEL - "call_out_bonus_coins_stack/plus_label": T.PANEL - "call_out_bonus_coins_stack/plus_label/plus_label": T.LABEL - "call_out_bonus_coins_stack/non_bonus_padding": T.PANEL - "call_out_bonus_coins_stack/bonus_label_panel": T.PANEL - "call_out_bonus_coins_stack/bonus_label_panel/bonus_label": T.LABEL - "call_out_bonus_coins_stack/padding_0": T.PANEL - "call_out_bonus_coins_stack/bonus_coin_panel": T.STACK_PANEL - "call_out_bonus_coins_stack/bonus_coin_panel/fill_panel_0": T.PANEL - "call_out_bonus_coins_stack/bonus_coin_panel/coin_panel": T.PANEL - "call_out_bonus_coins_stack/bonus_coin_panel/coin_panel/coin": T.IMAGE - "call_out_bonus_coins_stack/bonus_coin_panel/coin_padding": T.PANEL - "call_out_bonus_coins_stack/bonus_coin_panel/bonus_coin_label_panel": T.PANEL - "call_out_bonus_coins_stack/bonus_coin_panel/bonus_coin_label_panel/bonus_coins": T.LABEL - "call_out_bonus_coins_stack/bonus_coin_panel/fill_panel_1": T.PANEL - "call_out_bonus_coins_stack/padding_1": T.PANEL - "call_out_bonus_coins_stack/currency_panel": T.PANEL - "call_out_bonus_coins_stack/currency_panel/currency_price_panel": T.IMAGE - "call_out_bonus_coins_stack/currency_panel/currency_price_panel/price": T.LABEL - "call_out_bonus_coins_stack/currency_panel/currency_price_panel/debug_price": T.LABEL - "call_out_bonus_coins_stack/padding_2": T.PANEL - price: T.LABEL - offer_panel: T.BUTTON - call_out_offer_panel: T.BUTTON - offer_item: T.PANEL - "offer_item/offer_panel": T.BUTTON - "offer_item/call_out_offer_panel": T.BUTTON - offer_grid_item: T.PANEL - "offer_grid_item/offer_item": T.PANEL - not_enough_coins: T.LABEL - faq_button: T.BUTTON - divider_panel: T.PANEL - "divider_panel/divider": T.IMAGE - coin_purchase_panel: T.STACK_PANEL - "coin_purchase_panel/padding_0": T.PANEL - "coin_purchase_panel/not_enough_coins_panel": T.PANEL - "coin_purchase_panel/not_enough_coins_panel/not_enough_coins": T.LABEL - "coin_purchase_panel/padding_1": T.PANEL - "coin_purchase_panel/coin_purchase_grid": T.GRID - "coin_purchase_panel/divider_panel": T.PANEL - "coin_purchase_panel/faq_button": T.BUTTON - main_panel: T.PANEL - "main_panel/coin_purchase_panel": T.STACK_PANEL - "main_panel/loading_background": T.IMAGE - "main_panel/progress_loading_spinner": T.IMAGE - "main_panel/no_offers_panel": T.LABEL - background: T.IMAGE - bundle_description: T.PANEL - bundle_description_left: T.PANEL - bundle_description_center: T.PANEL - bundle_description_right: T.PANEL - bundle_coins_stack: T.STACK_PANEL - "bundle_coins_stack/content_panel": T.STACK_PANEL - "bundle_coins_stack/content_panel/text_stack": T.STACK_PANEL - "bundle_coins_stack/content_panel/text_stack/title_label": T.LABEL - "bundle_coins_stack/content_panel/text_stack/padding_1": T.PANEL - "bundle_coins_stack/content_panel/text_stack/description_section_factory": T.STACK_PANEL - "bundle_coins_stack/content_panel/thumbnail_panel": T.PANEL - "bundle_coins_stack/content_panel/thumbnail_panel/thumbnail": T.IMAGE - "bundle_coins_stack/content_panel/thumbnail_panel/thumbnail/coin_image": T.IMAGE - "bundle_coins_stack/content_panel/padding_0": T.PANEL - "bundle_coins_stack/padding_0": T.PANEL - "bundle_coins_stack/currency_panel": T.PANEL - "bundle_coins_stack/currency_panel/currency_price_panel": T.IMAGE - "bundle_coins_stack/currency_panel/currency_price_panel/price": T.LABEL - "bundle_coins_stack/currency_panel/currency_price_panel/debug_price": T.LABEL - "bundle_coins_stack/padding_2": T.PANEL - bundle_button_content: T.PANEL - "bundle_button_content/bundle_coins_stack": T.STACK_PANEL - "bundle_button_content/call_out_background": T.IMAGE - "bundle_button_content/call_out_background/bevel": T.IMAGE - bundle_offer_panel: T.BUTTON - bundle_offer_item: T.PANEL - "bundle_offer_item/offer_panel": T.BUTTON - bundle_offer_grid_item: T.PANEL - "bundle_offer_grid_item/offer_item": T.PANEL - bundle_stack_factory: T.STACK_PANEL - bundle_factory_panel: T.PANEL - "bundle_factory_panel/bundle_stack_factory": T.STACK_PANEL - bundle_panel: T.PANEL - "bundle_panel/progress_loading_spinner": T.IMAGE - "bundle_panel/loading_background": T.IMAGE - "bundle_panel/bundle_stack_factory": T.PANEL + "black_image": T.IMAGE, + "banner_fill": T.IMAGE, + "coins_stack_panel": T.STACK_PANEL, + "coins_stack_panel/coin": T.IMAGE, + "coins_stack_panel/coin_padding": T.PANEL, + "coins_stack_panel/text_padding": T.PANEL, + "coins_stack_panel/text_padding/coins_without_bonus": T.LABEL, + "call_out_coins_stack_panel": T.STACK_PANEL, + "call_out_coins_stack_panel/coin": T.IMAGE, + "call_out_coins_stack_panel/coin_padding": T.PANEL, + "call_out_coins_stack_panel/text_padding": T.PANEL, + "call_out_coins_stack_panel/text_padding/coins_without_bonus": T.LABEL, + "button_content": T.PANEL, + "button_content/bonus_coins_stack": T.STACK_PANEL, + "button_content/call_out_background": T.IMAGE, + "button_content/call_out_background/bevel": T.IMAGE, + "call_out_button_content": T.PANEL, + "call_out_button_content/call_out_header": T.PANEL, + "call_out_button_content/call_out_bonus_coins_stack": T.STACK_PANEL, + "call_out_button_content/call_out_background": T.IMAGE, + "call_out_button_content/call_out_background/call_out_border": T.IMAGE, + "call_out_header": T.PANEL, + "call_out_header/call_out_banner": T.IMAGE, + "call_out_header/call_out_label": T.LABEL, + "bonus_coins_stack": T.STACK_PANEL, + "bonus_coins_stack/image_padding": T.PANEL, + "bonus_coins_stack/image_panel": T.PANEL, + "bonus_coins_stack/image_panel/image": T.IMAGE, + "bonus_coins_stack/non_bonus_padding_0": T.PANEL, + "bonus_coins_stack/price_panel": T.PANEL, + "bonus_coins_stack/price_panel/coins_stack_panel": T.STACK_PANEL, + "bonus_coins_stack/plus_label": T.PANEL, + "bonus_coins_stack/plus_label/plus_label": T.LABEL, + "bonus_coins_stack/non_bonus_padding_1": T.PANEL, + "bonus_coins_stack/bonus_label_panel": T.PANEL, + "bonus_coins_stack/bonus_label_panel/bonus_label": T.LABEL, + "bonus_coins_stack/padding_0": T.PANEL, + "bonus_coins_stack/bonus_price_panel": T.PANEL, + "bonus_coins_stack/bonus_price_panel/coins_stack_panel": T.STACK_PANEL, + "bonus_coins_stack/padding_1": T.PANEL, + "bonus_coins_stack/currency_panel": T.PANEL, + "bonus_coins_stack/currency_panel/currency_price_panel": T.IMAGE, + "bonus_coins_stack/currency_panel/currency_price_panel/price": T.LABEL, + "bonus_coins_stack/currency_panel/currency_price_panel/debug_price": T.LABEL, + "bonus_coins_stack/padding_2": T.PANEL, + "call_out_bonus_coins_stack": T.STACK_PANEL, + "call_out_bonus_coins_stack/image_padding": T.PANEL, + "call_out_bonus_coins_stack/image_panel": T.PANEL, + "call_out_bonus_coins_stack/image_panel/image": T.IMAGE, + "call_out_bonus_coins_stack/non_bonus_padding_0": T.PANEL, + "call_out_bonus_coins_stack/price_panel": T.PANEL, + "call_out_bonus_coins_stack/price_panel/call_out_coins_stack_panel": T.STACK_PANEL, + "call_out_bonus_coins_stack/plus_label": T.PANEL, + "call_out_bonus_coins_stack/plus_label/plus_label": T.LABEL, + "call_out_bonus_coins_stack/non_bonus_padding": T.PANEL, + "call_out_bonus_coins_stack/bonus_label_panel": T.PANEL, + "call_out_bonus_coins_stack/bonus_label_panel/bonus_label": T.LABEL, + "call_out_bonus_coins_stack/padding_0": T.PANEL, + "call_out_bonus_coins_stack/bonus_coin_panel": T.STACK_PANEL, + "call_out_bonus_coins_stack/bonus_coin_panel/fill_panel_0": T.PANEL, + "call_out_bonus_coins_stack/bonus_coin_panel/coin_panel": T.PANEL, + "call_out_bonus_coins_stack/bonus_coin_panel/coin_panel/coin": T.IMAGE, + "call_out_bonus_coins_stack/bonus_coin_panel/coin_padding": T.PANEL, + "call_out_bonus_coins_stack/bonus_coin_panel/bonus_coin_label_panel": T.PANEL, + "call_out_bonus_coins_stack/bonus_coin_panel/bonus_coin_label_panel/bonus_coins": T.LABEL, + "call_out_bonus_coins_stack/bonus_coin_panel/fill_panel_1": T.PANEL, + "call_out_bonus_coins_stack/padding_1": T.PANEL, + "call_out_bonus_coins_stack/currency_panel": T.PANEL, + "call_out_bonus_coins_stack/currency_panel/currency_price_panel": T.IMAGE, + "call_out_bonus_coins_stack/currency_panel/currency_price_panel/price": T.LABEL, + "call_out_bonus_coins_stack/currency_panel/currency_price_panel/debug_price": T.LABEL, + "call_out_bonus_coins_stack/padding_2": T.PANEL, + "price": T.LABEL, + "offer_panel": T.BUTTON, + "call_out_offer_panel": T.BUTTON, + "offer_item": T.PANEL, + "offer_item/offer_panel": T.BUTTON, + "offer_item/call_out_offer_panel": T.BUTTON, + "offer_grid_item": T.PANEL, + "offer_grid_item/offer_item": T.PANEL, + "not_enough_coins": T.LABEL, + "faq_button": T.BUTTON, + "divider_panel": T.PANEL, + "divider_panel/divider": T.IMAGE, + "coin_purchase_panel": T.STACK_PANEL, + "coin_purchase_panel/padding_0": T.PANEL, + "coin_purchase_panel/not_enough_coins_panel": T.PANEL, + "coin_purchase_panel/not_enough_coins_panel/not_enough_coins": T.LABEL, + "coin_purchase_panel/padding_1": T.PANEL, + "coin_purchase_panel/coin_purchase_grid": T.GRID, + "coin_purchase_panel/divider_panel": T.PANEL, + "coin_purchase_panel/faq_button": T.BUTTON, + "main_panel": T.PANEL, + "main_panel/coin_purchase_panel": T.STACK_PANEL, + "main_panel/loading_background": T.IMAGE, + "main_panel/progress_loading_spinner": T.IMAGE, + "main_panel/no_offers_panel": T.LABEL, + "background": T.IMAGE, + "bundle_description": T.PANEL, + "bundle_description_left": T.PANEL, + "bundle_description_center": T.PANEL, + "bundle_description_right": T.PANEL, + "bundle_coins_stack": T.STACK_PANEL, + "bundle_coins_stack/content_panel": T.STACK_PANEL, + "bundle_coins_stack/content_panel/text_stack": T.STACK_PANEL, + "bundle_coins_stack/content_panel/text_stack/title_label": T.LABEL, + "bundle_coins_stack/content_panel/text_stack/padding_1": T.PANEL, + "bundle_coins_stack/content_panel/text_stack/description_section_factory": T.STACK_PANEL, + "bundle_coins_stack/content_panel/thumbnail_panel": T.PANEL, + "bundle_coins_stack/content_panel/thumbnail_panel/thumbnail": T.IMAGE, + "bundle_coins_stack/content_panel/thumbnail_panel/thumbnail/coin_image": T.IMAGE, + "bundle_coins_stack/content_panel/padding_0": T.PANEL, + "bundle_coins_stack/padding_0": T.PANEL, + "bundle_coins_stack/currency_panel": T.PANEL, + "bundle_coins_stack/currency_panel/currency_price_panel": T.IMAGE, + "bundle_coins_stack/currency_panel/currency_price_panel/price": T.LABEL, + "bundle_coins_stack/currency_panel/currency_price_panel/debug_price": T.LABEL, + "bundle_coins_stack/padding_2": T.PANEL, + "bundle_button_content": T.PANEL, + "bundle_button_content/bundle_coins_stack": T.STACK_PANEL, + "bundle_button_content/call_out_background": T.IMAGE, + "bundle_button_content/call_out_background/bevel": T.IMAGE, + "bundle_offer_panel": T.BUTTON, + "bundle_offer_item": T.PANEL, + "bundle_offer_item/offer_panel": T.BUTTON, + "bundle_offer_grid_item": T.PANEL, + "bundle_offer_grid_item/offer_item": T.PANEL, + "bundle_stack_factory": T.STACK_PANEL, + "bundle_factory_panel": T.PANEL, + "bundle_factory_panel/bundle_stack_factory": T.STACK_PANEL, + "bundle_panel": T.PANEL, + "bundle_panel/progress_loading_spinner": T.IMAGE, + "bundle_panel/loading_background": T.IMAGE, + "bundle_panel/bundle_stack_factory": T.PANEL, } export type CommandBlockType = { - plus_icon: T.IMAGE - paste_icon: T.IMAGE - plus_button: T.BUTTON - paste_button: T.BUTTON - icon_dropdown_toggle_button_state_content: T.STACK_PANEL - "icon_dropdown_toggle_button_state_content/icon_panel": T.PANEL - "icon_dropdown_toggle_button_state_content/icon_panel/dropdown_contents_icon": T.IMAGE - "icon_dropdown_toggle_button_state_content/spacer": T.PANEL - "icon_dropdown_toggle_button_state_content/label_panel": T.PANEL - "icon_dropdown_toggle_button_state_content/label_panel/label": T.LABEL - "icon_dropdown_toggle_button_state_content/arrow_panel": T.PANEL - "icon_dropdown_toggle_button_state_content/arrow_panel/arrow": T.IMAGE - command_block_multiline_text_edit_box: T.EDIT_BOX - command_block_text_edit_box: T.EDIT_BOX - command_block_helper_stack: T.STACK_PANEL - "command_block_helper_stack/offset": T.PANEL - "command_block_helper_stack/text_": T.LABEL - previous_command_block_info_stack: T.STACK_PANEL - "previous_command_block_info_stack/offset": T.PANEL - "previous_command_block_info_stack/start_label": T.LABEL - "previous_command_block_info_stack/offset1": T.PANEL - "previous_command_block_info_stack/start_label_dynamic_text": T.LABEL - cancel_button: T.BUTTON - blocktype_dropdown_content: T.PANEL - block_type_panel: T.PANEL - condition_dropdown_content: T.PANEL - condition_mode_panel: T.PANEL - redstone_dropdown_content: T.PANEL - redstone_mode_panel: T.PANEL - left_scrolling_panel: T.PANEL - left_scroll_panel_content: T.PANEL - "left_scroll_panel_content/content_stack_panel": T.STACK_PANEL - "left_scroll_panel_content/content_stack_panel/offset1": T.PANEL - "left_scroll_panel_content/content_stack_panel/offset2": T.PANEL - "left_scroll_panel_content/content_stack_panel/offset2/hover_note_text": T.EDIT_BOX - "left_scroll_panel_content/content_stack_panel/offset3": T.PANEL - "left_scroll_panel_content/content_stack_panel/block_type_mode_panel": T.PANEL - "left_scroll_panel_content/content_stack_panel/offset4": T.PANEL - "left_scroll_panel_content/content_stack_panel/condition_mode_panel": T.PANEL - "left_scroll_panel_content/content_stack_panel/offset5": T.PANEL - "left_scroll_panel_content/content_stack_panel/redstone_mode_panel": T.PANEL - "left_scroll_panel_content/content_stack_panel/offset_execute_on_first_tick": T.PANEL - "left_scroll_panel_content/content_stack_panel/option_label_execute_on_first_tick": T.LABEL - "left_scroll_panel_content/content_stack_panel/execute_on_first_tick_toggle": T.PANEL - "left_scroll_panel_content/content_stack_panel/offset_tick_delay": T.PANEL - "left_scroll_panel_content/content_stack_panel/option_label_tick_delay": T.LABEL - "left_scroll_panel_content/content_stack_panel/tick_delay_text": T.EDIT_BOX - "left_scroll_panel_content/content_stack_panel/offset7": T.PANEL - "left_scroll_panel_content/content_stack_panel/cancel": T.BUTTON - "left_scroll_panel_content/content_stack_panel/offset8": T.PANEL - left_divider_content: T.PANEL - "left_divider_content/left_scrolling_panel": T.PANEL - right_scrolling_panel: T.PANEL - right_scroll_panel_content: T.STACK_PANEL - "right_scroll_panel_content/command_block_commands_panel": T.STACK_PANEL - "right_scroll_panel_content/command_block_commands_panel/spacer1": T.PANEL - "right_scroll_panel_content/command_block_commands_panel/centering_panel": T.PANEL - "right_scroll_panel_content/command_block_commands_panel/centering_panel/option_label": T.LABEL - "right_scroll_panel_content/command_block_commands_panel/spacer2": T.PANEL - "right_scroll_panel_content/command_block_commands_panel/centering_panel1": T.PANEL - "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel": T.STACK_PANEL - "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/offset": T.PANEL - "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/offset/command_block_commands_text": T.EDIT_BOX - "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/paste_button": T.BUTTON - "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/plus_button": T.BUTTON - "right_scroll_panel_content/switch_warning_panel": T.PANEL - "right_scroll_panel_content/switch_warning_panel/switch_warning_label": T.LABEL - "right_scroll_panel_content/self_label": T.STACK_PANEL - "right_scroll_panel_content/self_label_offset": T.PANEL - "right_scroll_panel_content/nearest_player_label": T.STACK_PANEL - "right_scroll_panel_content/nearest_player_label_offset": T.PANEL - "right_scroll_panel_content/random_player_label": T.STACK_PANEL - "right_scroll_panel_content/random_player_label_offset": T.PANEL - "right_scroll_panel_content/all_players_label": T.STACK_PANEL - "right_scroll_panel_content/all_players_label_offset": T.PANEL - "right_scroll_panel_content/all_entities_label": T.STACK_PANEL - "right_scroll_panel_content/all_entities_label_offset": T.PANEL - "right_scroll_panel_content/nearest_label": T.STACK_PANEL - "right_scroll_panel_content/nearest_label_offset": T.PANEL - "right_scroll_panel_content/command_block_previous_output_panel": T.STACK_PANEL - "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel": T.PANEL - "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack": T.STACK_PANEL - "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack/show_output_toggle": T.PANEL - "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack/option_label": T.LABEL - "right_scroll_panel_content/command_block_previous_output_panel/spacer": T.PANEL - "right_scroll_panel_content/command_block_previous_output_panel/command_output_text_centering_panel": T.PANEL - "right_scroll_panel_content/command_block_previous_output_panel/command_output_text_centering_panel/command_output_text": T.EDIT_BOX - "right_scroll_panel_content/previous_block_type_text": T.STACK_PANEL - "right_scroll_panel_content/offset4": T.PANEL - "right_scroll_panel_content/previous_conditional_mode_text": T.STACK_PANEL - "right_scroll_panel_content/offset5": T.PANEL - "right_scroll_panel_content/previous_redstone_mode_text": T.STACK_PANEL - divider_content: T.PANEL - "divider_content/left_side": T.PANEL - "divider_content/right_side": T.PANEL - command_block_screen_content: T.PANEL - "command_block_screen_content/background_divider": T.PANEL - "command_block_screen_content/background_divider/bg_image": T.UNKNOWN - "command_block_screen_content/background_divider/dialog_divider": T.IMAGE - "command_block_screen_content/background_divider/header_buttons_stack_panel": T.STACK_PANEL - "command_block_screen_content/background_divider/header_buttons_stack_panel/paste_button": T.BUTTON - "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder": T.PANEL - "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/close": T.BUTTON - "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize": T.BUTTON - "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/default": T.UNKNOWN - "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/hover": T.UNKNOWN - "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/pressed": T.UNKNOWN - "command_block_screen_content/title": T.LABEL - "command_block_screen_content/content": T.PANEL - "command_block_screen_content/maximized_command_block_text": T.EDIT_BOX - right_divider_content: T.PANEL - "right_divider_content/right_scrolling_panel": T.PANEL - command_block_screen: T.SCREEN + "plus_icon": T.IMAGE, + "paste_icon": T.IMAGE, + "plus_button": T.BUTTON, + "paste_button": T.BUTTON, + "icon_dropdown_toggle_button_state_content": T.STACK_PANEL, + "icon_dropdown_toggle_button_state_content/icon_panel": T.PANEL, + "icon_dropdown_toggle_button_state_content/icon_panel/dropdown_contents_icon": T.IMAGE, + "icon_dropdown_toggle_button_state_content/spacer": T.PANEL, + "icon_dropdown_toggle_button_state_content/label_panel": T.PANEL, + "icon_dropdown_toggle_button_state_content/label_panel/label": T.LABEL, + "icon_dropdown_toggle_button_state_content/arrow_panel": T.PANEL, + "icon_dropdown_toggle_button_state_content/arrow_panel/arrow": T.IMAGE, + "command_block_multiline_text_edit_box": T.EDIT_BOX, + "command_block_text_edit_box": T.EDIT_BOX, + "command_block_helper_stack": T.STACK_PANEL, + "command_block_helper_stack/offset": T.PANEL, + "command_block_helper_stack/text_": T.LABEL, + "previous_command_block_info_stack": T.STACK_PANEL, + "previous_command_block_info_stack/offset": T.PANEL, + "previous_command_block_info_stack/start_label": T.LABEL, + "previous_command_block_info_stack/offset1": T.PANEL, + "previous_command_block_info_stack/start_label_dynamic_text": T.LABEL, + "cancel_button": T.BUTTON, + "blocktype_dropdown_content": T.PANEL, + "block_type_panel": T.PANEL, + "condition_dropdown_content": T.PANEL, + "condition_mode_panel": T.PANEL, + "redstone_dropdown_content": T.PANEL, + "redstone_mode_panel": T.PANEL, + "left_scrolling_panel": T.PANEL, + "left_scroll_panel_content": T.PANEL, + "left_scroll_panel_content/content_stack_panel": T.STACK_PANEL, + "left_scroll_panel_content/content_stack_panel/offset1": T.PANEL, + "left_scroll_panel_content/content_stack_panel/offset2": T.PANEL, + "left_scroll_panel_content/content_stack_panel/offset2/hover_note_text": T.EDIT_BOX, + "left_scroll_panel_content/content_stack_panel/offset3": T.PANEL, + "left_scroll_panel_content/content_stack_panel/block_type_mode_panel": T.PANEL, + "left_scroll_panel_content/content_stack_panel/offset4": T.PANEL, + "left_scroll_panel_content/content_stack_panel/condition_mode_panel": T.PANEL, + "left_scroll_panel_content/content_stack_panel/offset5": T.PANEL, + "left_scroll_panel_content/content_stack_panel/redstone_mode_panel": T.PANEL, + "left_scroll_panel_content/content_stack_panel/offset_execute_on_first_tick": T.PANEL, + "left_scroll_panel_content/content_stack_panel/option_label_execute_on_first_tick": T.LABEL, + "left_scroll_panel_content/content_stack_panel/execute_on_first_tick_toggle": T.PANEL, + "left_scroll_panel_content/content_stack_panel/offset_tick_delay": T.PANEL, + "left_scroll_panel_content/content_stack_panel/option_label_tick_delay": T.LABEL, + "left_scroll_panel_content/content_stack_panel/tick_delay_text": T.EDIT_BOX, + "left_scroll_panel_content/content_stack_panel/offset7": T.PANEL, + "left_scroll_panel_content/content_stack_panel/cancel": T.BUTTON, + "left_scroll_panel_content/content_stack_panel/offset8": T.PANEL, + "left_divider_content": T.PANEL, + "left_divider_content/left_scrolling_panel": T.PANEL, + "right_scrolling_panel": T.PANEL, + "right_scroll_panel_content": T.STACK_PANEL, + "right_scroll_panel_content/command_block_commands_panel": T.STACK_PANEL, + "right_scroll_panel_content/command_block_commands_panel/spacer1": T.PANEL, + "right_scroll_panel_content/command_block_commands_panel/centering_panel": T.PANEL, + "right_scroll_panel_content/command_block_commands_panel/centering_panel/option_label": T.LABEL, + "right_scroll_panel_content/command_block_commands_panel/spacer2": T.PANEL, + "right_scroll_panel_content/command_block_commands_panel/centering_panel1": T.PANEL, + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel": T.STACK_PANEL, + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/offset": T.PANEL, + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/offset/command_block_commands_text": T.EDIT_BOX, + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/paste_button": T.BUTTON, + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/plus_button": T.BUTTON, + "right_scroll_panel_content/switch_warning_panel": T.PANEL, + "right_scroll_panel_content/switch_warning_panel/switch_warning_label": T.LABEL, + "right_scroll_panel_content/self_label": T.STACK_PANEL, + "right_scroll_panel_content/self_label_offset": T.PANEL, + "right_scroll_panel_content/nearest_player_label": T.STACK_PANEL, + "right_scroll_panel_content/nearest_player_label_offset": T.PANEL, + "right_scroll_panel_content/random_player_label": T.STACK_PANEL, + "right_scroll_panel_content/random_player_label_offset": T.PANEL, + "right_scroll_panel_content/all_players_label": T.STACK_PANEL, + "right_scroll_panel_content/all_players_label_offset": T.PANEL, + "right_scroll_panel_content/all_entities_label": T.STACK_PANEL, + "right_scroll_panel_content/all_entities_label_offset": T.PANEL, + "right_scroll_panel_content/nearest_label": T.STACK_PANEL, + "right_scroll_panel_content/nearest_label_offset": T.PANEL, + "right_scroll_panel_content/command_block_previous_output_panel": T.STACK_PANEL, + "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel": T.PANEL, + "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack": T.STACK_PANEL, + "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack/show_output_toggle": T.PANEL, + "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack/option_label": T.LABEL, + "right_scroll_panel_content/command_block_previous_output_panel/spacer": T.PANEL, + "right_scroll_panel_content/command_block_previous_output_panel/command_output_text_centering_panel": T.PANEL, + "right_scroll_panel_content/command_block_previous_output_panel/command_output_text_centering_panel/command_output_text": T.EDIT_BOX, + "right_scroll_panel_content/previous_block_type_text": T.STACK_PANEL, + "right_scroll_panel_content/offset4": T.PANEL, + "right_scroll_panel_content/previous_conditional_mode_text": T.STACK_PANEL, + "right_scroll_panel_content/offset5": T.PANEL, + "right_scroll_panel_content/previous_redstone_mode_text": T.STACK_PANEL, + "divider_content": T.PANEL, + "divider_content/left_side": T.PANEL, + "divider_content/right_side": T.PANEL, + "command_block_screen_content": T.PANEL, + "command_block_screen_content/background_divider": T.PANEL, + "command_block_screen_content/background_divider/bg_image": T.UNKNOWN, + "command_block_screen_content/background_divider/dialog_divider": T.IMAGE, + "command_block_screen_content/background_divider/header_buttons_stack_panel": T.STACK_PANEL, + "command_block_screen_content/background_divider/header_buttons_stack_panel/paste_button": T.BUTTON, + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder": T.PANEL, + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/close": T.BUTTON, + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize": T.BUTTON, + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/default": T.UNKNOWN, + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/hover": T.UNKNOWN, + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/pressed": T.UNKNOWN, + "command_block_screen_content/title": T.LABEL, + "command_block_screen_content/content": T.PANEL, + "command_block_screen_content/maximized_command_block_text": T.EDIT_BOX, + "right_divider_content": T.PANEL, + "right_divider_content/right_scrolling_panel": T.PANEL, + "command_block_screen": T.SCREEN, } export type ConfirmDeleteAccountType = { - horizontal_divider: T.STACK_PANEL - image_panel: T.PANEL - "image_panel/image": T.IMAGE - header_panel: T.STACK_PANEL - "header_panel/image_panel": T.PANEL - "header_panel/padding": T.PANEL - "header_panel/text_panel": T.STACK_PANEL - "header_panel/text_panel/header_text": T.LABEL - "header_panel/text_panel/padding_2": T.PANEL - "header_panel/text_panel/header_text_2": T.LABEL - dialog_content: T.STACK_PANEL - "dialog_content/body_content": T.PANEL - "dialog_content/padding": T.PANEL - "dialog_content/button_panel": T.STACK_PANEL - "dialog_content/button_panel/confirm_delete_account_button": T.BUTTON - "dialog_content/button_panel/padding": T.PANEL - "dialog_content/button_panel/cancel_delete_account_button": T.BUTTON - confirm_checkbox: T.STACK_PANEL - "confirm_checkbox/check_box_wrapper": T.PANEL - "confirm_checkbox/check_box_wrapper/check_box": T.TOGGLE - "confirm_checkbox/padding": T.PANEL - "confirm_checkbox/label_wrapper": T.PANEL - "confirm_checkbox/label_wrapper/label": T.LABEL - scrolling_panel: T.PANEL - description_label_panel: T.STACK_PANEL - "description_label_panel/header_label_wrapper": T.PANEL - "description_label_panel/padding": T.PANEL - "description_label_panel/divider_0": T.STACK_PANEL - "description_label_panel/confirm_0": T.STACK_PANEL - "description_label_panel/divider_1": T.STACK_PANEL - "description_label_panel/confirm_1": T.STACK_PANEL - "description_label_panel/divider_2": T.STACK_PANEL - "description_label_panel/confirm_2": T.STACK_PANEL - "description_label_panel/divider_3": T.STACK_PANEL - "description_label_panel/confirm_3": T.STACK_PANEL - confirm_delete_account_screen: T.SCREEN - confirm_delete_account_screen_content: T.PANEL - "confirm_delete_account_screen_content/root_panel": T.PANEL - "confirm_delete_account_screen_content/root_panel/dialog": T.PANEL - screen_dialog: T.PANEL - background: T.IMAGE + "horizontal_divider": T.STACK_PANEL, + "image_panel": T.PANEL, + "image_panel/image": T.IMAGE, + "header_panel": T.STACK_PANEL, + "header_panel/image_panel": T.PANEL, + "header_panel/padding": T.PANEL, + "header_panel/text_panel": T.STACK_PANEL, + "header_panel/text_panel/header_text": T.LABEL, + "header_panel/text_panel/padding_2": T.PANEL, + "header_panel/text_panel/header_text_2": T.LABEL, + "dialog_content": T.STACK_PANEL, + "dialog_content/body_content": T.PANEL, + "dialog_content/padding": T.PANEL, + "dialog_content/button_panel": T.STACK_PANEL, + "dialog_content/button_panel/confirm_delete_account_button": T.BUTTON, + "dialog_content/button_panel/padding": T.PANEL, + "dialog_content/button_panel/cancel_delete_account_button": T.BUTTON, + "confirm_checkbox": T.STACK_PANEL, + "confirm_checkbox/check_box_wrapper": T.PANEL, + "confirm_checkbox/check_box_wrapper/check_box": T.TOGGLE, + "confirm_checkbox/padding": T.PANEL, + "confirm_checkbox/label_wrapper": T.PANEL, + "confirm_checkbox/label_wrapper/label": T.LABEL, + "scrolling_panel": T.PANEL, + "description_label_panel": T.STACK_PANEL, + "description_label_panel/header_label_wrapper": T.PANEL, + "description_label_panel/padding": T.PANEL, + "description_label_panel/divider_0": T.STACK_PANEL, + "description_label_panel/confirm_0": T.STACK_PANEL, + "description_label_panel/divider_1": T.STACK_PANEL, + "description_label_panel/confirm_1": T.STACK_PANEL, + "description_label_panel/divider_2": T.STACK_PANEL, + "description_label_panel/confirm_2": T.STACK_PANEL, + "description_label_panel/divider_3": T.STACK_PANEL, + "description_label_panel/confirm_3": T.STACK_PANEL, + "confirm_delete_account_screen": T.SCREEN, + "confirm_delete_account_screen_content": T.PANEL, + "confirm_delete_account_screen_content/root_panel": T.PANEL, + "confirm_delete_account_screen_content/root_panel/dialog": T.PANEL, + "screen_dialog": T.PANEL, + "background": T.IMAGE, } export type ContentLogType = { - content_log_label: T.LABEL - content_log_grid_item: T.PANEL - "content_log_grid_item/content_log_background": T.IMAGE - "content_log_grid_item/content_log_background/content_log_text": T.LABEL - content_log_panel: T.PANEL - "content_log_panel/stack_panel": T.STACK_PANEL + "content_log_label": T.LABEL, + "content_log_grid_item": T.PANEL, + "content_log_grid_item/content_log_background": T.IMAGE, + "content_log_grid_item/content_log_background/content_log_text": T.LABEL, + "content_log_panel": T.PANEL, + "content_log_panel/stack_panel": T.STACK_PANEL, } export type ContentLogHistoryType = { - clipboard_icon: T.IMAGE - clipboard_icon_wrapper: T.PANEL - "clipboard_icon_wrapper/stack_panel": T.STACK_PANEL - "clipboard_icon_wrapper/stack_panel/icon_panel": T.PANEL - "clipboard_icon_wrapper/stack_panel/icon_panel/icon": T.IMAGE - "clipboard_icon_wrapper/stack_panel/offset": T.PANEL - "clipboard_icon_wrapper/stack_panel/label_panel": T.PANEL - "clipboard_icon_wrapper/stack_panel/label_panel/label": T.LABEL - clipboard_button: T.BUTTON - clear_icon: T.IMAGE - clear_icon_wrapper: T.PANEL - "clear_icon_wrapper/stack_panel": T.STACK_PANEL - "clear_icon_wrapper/stack_panel/icon_panel": T.PANEL - "clear_icon_wrapper/stack_panel/icon_panel/icon": T.IMAGE - "clear_icon_wrapper/stack_panel/offset": T.PANEL - "clear_icon_wrapper/stack_panel/label_panel": T.PANEL - "clear_icon_wrapper/stack_panel/label_panel/label": T.LABEL - clear_button: T.BUTTON - horizontal_button_stack_panel: T.STACK_PANEL - "horizontal_button_stack_panel/clipboard_button": T.BUTTON - "horizontal_button_stack_panel/clear_button": T.BUTTON - content_log_message: T.LABEL - content_log_message_panel: T.PANEL - "content_log_message_panel/content_log_message": T.LABEL - content_log_message_panel_panel: T.PANEL - "content_log_message_panel_panel/content_log_message_panel": T.PANEL - messages_stack_panel: T.STACK_PANEL - messages_scrolling_panel: T.PANEL - main_stack_panel: T.STACK_PANEL - "main_stack_panel/messages_scrolling_panel": T.PANEL - content_log_history_panel: T.PANEL - "content_log_history_panel/content_log_history_dialog": T.UNKNOWN - content_log_history_screen: T.SCREEN + "clipboard_icon": T.IMAGE, + "clipboard_icon_wrapper": T.PANEL, + "clipboard_icon_wrapper/stack_panel": T.STACK_PANEL, + "clipboard_icon_wrapper/stack_panel/icon_panel": T.PANEL, + "clipboard_icon_wrapper/stack_panel/icon_panel/icon": T.IMAGE, + "clipboard_icon_wrapper/stack_panel/offset": T.PANEL, + "clipboard_icon_wrapper/stack_panel/label_panel": T.PANEL, + "clipboard_icon_wrapper/stack_panel/label_panel/label": T.LABEL, + "clipboard_button": T.BUTTON, + "clear_icon": T.IMAGE, + "clear_icon_wrapper": T.PANEL, + "clear_icon_wrapper/stack_panel": T.STACK_PANEL, + "clear_icon_wrapper/stack_panel/icon_panel": T.PANEL, + "clear_icon_wrapper/stack_panel/icon_panel/icon": T.IMAGE, + "clear_icon_wrapper/stack_panel/offset": T.PANEL, + "clear_icon_wrapper/stack_panel/label_panel": T.PANEL, + "clear_icon_wrapper/stack_panel/label_panel/label": T.LABEL, + "clear_button": T.BUTTON, + "horizontal_button_stack_panel": T.STACK_PANEL, + "horizontal_button_stack_panel/clipboard_button": T.BUTTON, + "horizontal_button_stack_panel/clear_button": T.BUTTON, + "content_log_message": T.LABEL, + "content_log_message_panel": T.PANEL, + "content_log_message_panel/content_log_message": T.LABEL, + "content_log_message_panel_panel": T.PANEL, + "content_log_message_panel_panel/content_log_message_panel": T.PANEL, + "messages_stack_panel": T.STACK_PANEL, + "messages_scrolling_panel": T.PANEL, + "main_stack_panel": T.STACK_PANEL, + "main_stack_panel/messages_scrolling_panel": T.PANEL, + "content_log_history_panel": T.PANEL, + "content_log_history_panel/content_log_history_dialog": T.UNKNOWN, + "content_log_history_screen": T.SCREEN, } export type CrafterPocketType = { - generic_label: T.LABEL - header_panel: T.PANEL - "header_panel/header_background": T.IMAGE - "header_panel/title_label": T.LABEL - header_area: T.PANEL - "header_area/x": T.BUTTON - "header_area/inventory_header": T.PANEL - "header_area/container_header": T.PANEL - dark_bg: T.IMAGE - panel_outline: T.IMAGE - background_panel: T.IMAGE - inventory_panel: T.PANEL - "inventory_panel/scrolling_panel": T.PANEL - left_screen: T.PANEL - "left_screen/inventory_panel": T.PANEL - crafter_input_grid: T.GRID - crafter_disabled_slot: T.BUTTON - "crafter_disabled_slot/default": T.IMAGE - "crafter_disabled_slot/hover": T.IMAGE - "crafter_disabled_slot/pressed": T.IMAGE - cell_image: T.IMAGE - crafter_highlight_slot: T.IMAGE - crafter_container_slot_button_prototype: T.BUTTON - crafter_highlight_slot_panel: T.PANEL - "crafter_highlight_slot_panel/highlight": T.IMAGE - "crafter_highlight_slot_panel/highlight/hover_text": T.CUSTOM - "crafter_highlight_slot_panel/white_border": T.IMAGE - crafter_enabled_slot_template: T.INPUT_PANEL - output_slot_hover_info: T.BUTTON - "output_slot_hover_info/hover": T.CUSTOM - "output_slot_hover_info/output_slot": T.CUSTOM - "output_slot_hover_info/output_slot_border": T.IMAGE - "output_slot_hover_info/output_count": T.LABEL - panel_crafter: T.PANEL - "panel_crafter/item_lock_notification_factory": T.FACTORY - "panel_crafter/root_panel": T.INPUT_PANEL - "panel_crafter/root_panel/disabled_slot_0_button": T.BUTTON - "panel_crafter/root_panel/disabled_slot_1_button": T.BUTTON - "panel_crafter/root_panel/disabled_slot_2_button": T.BUTTON - "panel_crafter/root_panel/disabled_slot_3_button": T.BUTTON - "panel_crafter/root_panel/disabled_slot_4_button": T.BUTTON - "panel_crafter/root_panel/disabled_slot_5_button": T.BUTTON - "panel_crafter/root_panel/disabled_slot_6_button": T.BUTTON - "panel_crafter/root_panel/disabled_slot_7_button": T.BUTTON - "panel_crafter/root_panel/disabled_slot_8_button": T.BUTTON - "panel_crafter/root_panel/redstone_screen_inventory": T.PANEL - "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid": T.PANEL - "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid/crafter_input_grid": T.GRID - "panel_crafter/root_panel/redstone_screen_inventory/red_hold_icon": T.BUTTON - "panel_crafter/root_panel/redstone_screen_inventory/redstone_wire_line": T.IMAGE - "panel_crafter/root_panel/redstone_screen_inventory/crafter_output": T.BUTTON - "panel_crafter/root_panel/red_icon": T.BUTTON - right_screen_background: T.IMAGE - right_screen: T.PANEL - "right_screen/right_screen_bg": T.IMAGE - "right_screen/right_screen_bg/inventory_panel": T.PANEL - panel: T.PANEL - "panel/container_gamepad_helpers": T.STACK_PANEL - "panel/header": T.PANEL - "panel/bg": T.IMAGE - "panel/inventory": T.PANEL - "panel/container": T.PANEL - "panel/selected_item_details_factory": T.FACTORY - "panel/item_lock_notification_factory": T.FACTORY - "panel/gamepad_cursor": T.BUTTON - "panel/flying_item_renderer": T.CUSTOM - crafter: T.PANEL + "generic_label": T.LABEL, + "header_panel": T.PANEL, + "header_panel/header_background": T.IMAGE, + "header_panel/title_label": T.LABEL, + "header_area": T.PANEL, + "header_area/x": T.BUTTON, + "header_area/inventory_header": T.PANEL, + "header_area/container_header": T.PANEL, + "dark_bg": T.IMAGE, + "panel_outline": T.IMAGE, + "background_panel": T.IMAGE, + "inventory_panel": T.PANEL, + "inventory_panel/scrolling_panel": T.PANEL, + "left_screen": T.PANEL, + "left_screen/inventory_panel": T.PANEL, + "crafter_input_grid": T.GRID, + "crafter_disabled_slot": T.BUTTON, + "crafter_disabled_slot/default": T.IMAGE, + "crafter_disabled_slot/hover": T.IMAGE, + "crafter_disabled_slot/pressed": T.IMAGE, + "cell_image": T.IMAGE, + "crafter_highlight_slot": T.IMAGE, + "crafter_container_slot_button_prototype": T.BUTTON, + "crafter_highlight_slot_panel": T.PANEL, + "crafter_highlight_slot_panel/highlight": T.IMAGE, + "crafter_highlight_slot_panel/highlight/hover_text": T.CUSTOM, + "crafter_highlight_slot_panel/white_border": T.IMAGE, + "crafter_enabled_slot_template": T.INPUT_PANEL, + "output_slot_hover_info": T.BUTTON, + "output_slot_hover_info/hover": T.CUSTOM, + "output_slot_hover_info/output_slot": T.CUSTOM, + "output_slot_hover_info/output_slot_border": T.IMAGE, + "output_slot_hover_info/output_count": T.LABEL, + "panel_crafter": T.PANEL, + "panel_crafter/item_lock_notification_factory": T.FACTORY, + "panel_crafter/root_panel": T.INPUT_PANEL, + "panel_crafter/root_panel/disabled_slot_0_button": T.BUTTON, + "panel_crafter/root_panel/disabled_slot_1_button": T.BUTTON, + "panel_crafter/root_panel/disabled_slot_2_button": T.BUTTON, + "panel_crafter/root_panel/disabled_slot_3_button": T.BUTTON, + "panel_crafter/root_panel/disabled_slot_4_button": T.BUTTON, + "panel_crafter/root_panel/disabled_slot_5_button": T.BUTTON, + "panel_crafter/root_panel/disabled_slot_6_button": T.BUTTON, + "panel_crafter/root_panel/disabled_slot_7_button": T.BUTTON, + "panel_crafter/root_panel/disabled_slot_8_button": T.BUTTON, + "panel_crafter/root_panel/redstone_screen_inventory": T.PANEL, + "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid": T.PANEL, + "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid/crafter_input_grid": T.GRID, + "panel_crafter/root_panel/redstone_screen_inventory/red_hold_icon": T.BUTTON, + "panel_crafter/root_panel/redstone_screen_inventory/redstone_wire_line": T.IMAGE, + "panel_crafter/root_panel/redstone_screen_inventory/crafter_output": T.BUTTON, + "panel_crafter/root_panel/red_icon": T.BUTTON, + "right_screen_background": T.IMAGE, + "right_screen": T.PANEL, + "right_screen/right_screen_bg": T.IMAGE, + "right_screen/right_screen_bg/inventory_panel": T.PANEL, + "panel": T.PANEL, + "panel/container_gamepad_helpers": T.STACK_PANEL, + "panel/header": T.PANEL, + "panel/bg": T.IMAGE, + "panel/inventory": T.PANEL, + "panel/container": T.PANEL, + "panel/selected_item_details_factory": T.FACTORY, + "panel/item_lock_notification_factory": T.FACTORY, + "panel/gamepad_cursor": T.BUTTON, + "panel/flying_item_renderer": T.CUSTOM, + "crafter": T.PANEL, } export type CreateWorldUpsellType = { - world_icon: T.IMAGE - realms_icon: T.IMAGE - dark_banner: T.IMAGE - grey_banner: T.IMAGE - checkmark: T.IMAGE - largex: T.IMAGE - realms_art_icon: T.IMAGE - new_world_button: T.BUTTON - new_realm_button: T.BUTTON - remove_trial_button: T.BUTTON - button_content: T.STACK_PANEL - "button_content/padding_0": T.PANEL - "button_content/icon_panel": T.PANEL - "button_content/padding_1": T.PANEL - "button_content/label_panel": T.PANEL - realm_button_content: T.STACK_PANEL - world_button_content: T.STACK_PANEL - realms_button_text_panel: T.STACK_PANEL - "realms_button_text_panel/new_realm_label": T.LABEL - "realms_button_text_panel/new_realm_trial_label": T.LABEL - price_label: T.LABEL - new_realm_label: T.LABEL - new_realm_trial_label: T.LABEL - new_world_label: T.LABEL - button_and_price_panel: T.STACK_PANEL - "button_and_price_panel/padding": T.PANEL - "button_and_price_panel/price_label_panel": T.PANEL - "button_and_price_panel/price_label_panel/price": T.LABEL - border_shell: T.IMAGE - head_banner_panel: T.IMAGE - create_new_realm_content: T.STACK_PANEL - "create_new_realm_content/head_banner_panel": T.IMAGE - "create_new_realm_content/head_banner_panel/realm_button_price": T.STACK_PANEL - "create_new_realm_content/realm_grid": T.GRID - create_world_upsell_grid_item: T.PANEL - "create_world_upsell_grid_item/db": T.IMAGE - "create_world_upsell_grid_item/gb": T.IMAGE - "create_world_upsell_grid_item/gp": T.STACK_PANEL - grid_panel: T.STACK_PANEL - "grid_panel/padding": T.PANEL - "grid_panel/upsell_text_panel": T.PANEL - "grid_panel/upsell_text_panel/upsell_label": T.LABEL - create_new_world_content: T.STACK_PANEL - "create_new_world_content/head_banner_panel": T.IMAGE - "create_new_world_content/head_banner_panel/world_button_price": T.STACK_PANEL - "create_new_world_content/world_grid": T.GRID - new_world_or_realm_scroll: T.PANEL - create_new_world_or_realm_content: T.STACK_PANEL - "create_new_world_or_realm_content/world": T.IMAGE - "create_new_world_or_realm_content/padding": T.PANEL - "create_new_world_or_realm_content/realm_content": T.IMAGE - new_realm_scroll: T.PANEL - new_realm_content_panel: T.STACK_PANEL - "new_realm_content_panel/key_art_panel": T.PANEL - "new_realm_content_panel/key_art_panel/realms_art_icon": T.IMAGE - "new_realm_content_panel/padding_hack": T.PANEL - "new_realm_content_panel/padding_0": T.PANEL - "new_realm_content_panel/new_realm_scroll": T.PANEL - "new_realm_content_panel/padding_1": T.PANEL - create_realm_upsell_content: T.STACK_PANEL - "create_realm_upsell_content/realm_content": T.IMAGE - "create_realm_upsell_content/padding_0": T.PANEL - "create_realm_upsell_content/remove_trial_button": T.BUTTON - "create_realm_upsell_content/padding_1": T.PANEL - realm_content: T.IMAGE - create_world_upsell: T.SCREEN - create_world_upsell_realms: T.SCREEN - main_panel: T.PANEL - variable_screen_size_panel: T.PANEL - "variable_screen_size_panel/dialog_0": T.PANEL - "variable_screen_size_panel/dialog_1": T.PANEL - main_panel_realms_only: T.PANEL + "world_icon": T.IMAGE, + "realms_icon": T.IMAGE, + "dark_banner": T.IMAGE, + "grey_banner": T.IMAGE, + "checkmark": T.IMAGE, + "largex": T.IMAGE, + "realms_art_icon": T.IMAGE, + "new_world_button": T.BUTTON, + "new_realm_button": T.BUTTON, + "remove_trial_button": T.BUTTON, + "button_content": T.STACK_PANEL, + "button_content/padding_0": T.PANEL, + "button_content/icon_panel": T.PANEL, + "button_content/padding_1": T.PANEL, + "button_content/label_panel": T.PANEL, + "realm_button_content": T.STACK_PANEL, + "world_button_content": T.STACK_PANEL, + "realms_button_text_panel": T.STACK_PANEL, + "realms_button_text_panel/new_realm_label": T.LABEL, + "realms_button_text_panel/new_realm_trial_label": T.LABEL, + "price_label": T.LABEL, + "new_realm_label": T.LABEL, + "new_realm_trial_label": T.LABEL, + "new_world_label": T.LABEL, + "button_and_price_panel": T.STACK_PANEL, + "button_and_price_panel/padding": T.PANEL, + "button_and_price_panel/price_label_panel": T.PANEL, + "button_and_price_panel/price_label_panel/price": T.LABEL, + "border_shell": T.IMAGE, + "head_banner_panel": T.IMAGE, + "create_new_realm_content": T.STACK_PANEL, + "create_new_realm_content/head_banner_panel": T.IMAGE, + "create_new_realm_content/head_banner_panel/realm_button_price": T.STACK_PANEL, + "create_new_realm_content/realm_grid": T.GRID, + "create_world_upsell_grid_item": T.PANEL, + "create_world_upsell_grid_item/db": T.IMAGE, + "create_world_upsell_grid_item/gb": T.IMAGE, + "create_world_upsell_grid_item/gp": T.STACK_PANEL, + "grid_panel": T.STACK_PANEL, + "grid_panel/padding": T.PANEL, + "grid_panel/upsell_text_panel": T.PANEL, + "grid_panel/upsell_text_panel/upsell_label": T.LABEL, + "create_new_world_content": T.STACK_PANEL, + "create_new_world_content/head_banner_panel": T.IMAGE, + "create_new_world_content/head_banner_panel/world_button_price": T.STACK_PANEL, + "create_new_world_content/world_grid": T.GRID, + "new_world_or_realm_scroll": T.PANEL, + "create_new_world_or_realm_content": T.STACK_PANEL, + "create_new_world_or_realm_content/world": T.IMAGE, + "create_new_world_or_realm_content/padding": T.PANEL, + "create_new_world_or_realm_content/realm_content": T.IMAGE, + "new_realm_scroll": T.PANEL, + "new_realm_content_panel": T.STACK_PANEL, + "new_realm_content_panel/key_art_panel": T.PANEL, + "new_realm_content_panel/key_art_panel/realms_art_icon": T.IMAGE, + "new_realm_content_panel/padding_hack": T.PANEL, + "new_realm_content_panel/padding_0": T.PANEL, + "new_realm_content_panel/new_realm_scroll": T.PANEL, + "new_realm_content_panel/padding_1": T.PANEL, + "create_realm_upsell_content": T.STACK_PANEL, + "create_realm_upsell_content/realm_content": T.IMAGE, + "create_realm_upsell_content/padding_0": T.PANEL, + "create_realm_upsell_content/remove_trial_button": T.BUTTON, + "create_realm_upsell_content/padding_1": T.PANEL, + "realm_content": T.IMAGE, + "create_world_upsell": T.SCREEN, + "create_world_upsell_realms": T.SCREEN, + "main_panel": T.PANEL, + "variable_screen_size_panel": T.PANEL, + "variable_screen_size_panel/dialog_0": T.PANEL, + "variable_screen_size_panel/dialog_1": T.PANEL, + "main_panel_realms_only": T.PANEL, } export type CreditsType = { - fade_in_image: T.IMAGE - fade_out_image: T.IMAGE - skip_panel: T.PANEL - "skip_panel/skip_button": T.BUTTON - "skip_panel/exit_credits_input_panel": T.INPUT_PANEL - credits_renderer: T.CUSTOM - credits_screen_content: T.PANEL - "credits_screen_content/credits_renderer": T.CUSTOM - "credits_screen_content/vignette_renderer": T.CUSTOM - "credits_screen_content/fade_in_image": T.IMAGE - "credits_screen_content/credits_factory": T.FACTORY - "credits_screen_content/whole_screen_input_panel": T.INPUT_PANEL - background: T.IMAGE - credits_screen: T.SCREEN + "fade_in_image": T.IMAGE, + "fade_out_image": T.IMAGE, + "skip_panel": T.PANEL, + "skip_panel/skip_button": T.BUTTON, + "skip_panel/exit_credits_input_panel": T.INPUT_PANEL, + "credits_renderer": T.CUSTOM, + "credits_screen_content": T.PANEL, + "credits_screen_content/credits_renderer": T.CUSTOM, + "credits_screen_content/vignette_renderer": T.CUSTOM, + "credits_screen_content/fade_in_image": T.IMAGE, + "credits_screen_content/credits_factory": T.FACTORY, + "credits_screen_content/whole_screen_input_panel": T.INPUT_PANEL, + "background": T.IMAGE, + "credits_screen": T.SCREEN, } export type CsbPurchaseErrorType = { - csb_purchase_error_screen: T.SCREEN - purchase_error_screen_content: T.PANEL - "purchase_error_screen_content/main_panel": T.PANEL - purchase_error_modal_main_panel: T.STACK_PANEL - "purchase_error_modal_main_panel/text_panel": T.PANEL - "purchase_error_modal_main_panel/text_panel/text": T.LABEL - "purchase_error_modal_main_panel/padding_1": T.PANEL - "purchase_error_modal_main_panel/art_panel": T.PANEL - "purchase_error_modal_main_panel/art_panel/art": T.IMAGE - "purchase_error_modal_main_panel/padding_2": T.PANEL - "purchase_error_modal_main_panel/error_panel": T.STACK_PANEL - "purchase_error_modal_main_panel/error_panel/error_code": T.LABEL - "purchase_error_modal_main_panel/error_panel/correlation_id": T.LABEL - purchase_error_modal_back_button: T.BUTTON + "csb_purchase_error_screen": T.SCREEN, + "purchase_error_screen_content": T.PANEL, + "purchase_error_screen_content/main_panel": T.PANEL, + "purchase_error_modal_main_panel": T.STACK_PANEL, + "purchase_error_modal_main_panel/text_panel": T.PANEL, + "purchase_error_modal_main_panel/text_panel/text": T.LABEL, + "purchase_error_modal_main_panel/padding_1": T.PANEL, + "purchase_error_modal_main_panel/art_panel": T.PANEL, + "purchase_error_modal_main_panel/art_panel/art": T.IMAGE, + "purchase_error_modal_main_panel/padding_2": T.PANEL, + "purchase_error_modal_main_panel/error_panel": T.STACK_PANEL, + "purchase_error_modal_main_panel/error_panel/error_code": T.LABEL, + "purchase_error_modal_main_panel/error_panel/correlation_id": T.LABEL, + "purchase_error_modal_back_button": T.BUTTON, } export type CsbType = { - csb_pdp_screen: T.SCREEN - csb_upgrade_notice_screen: T.SCREEN - csb_background: T.IMAGE - gradient_image_stack: T.STACK_PANEL - "gradient_image_stack/gradient": T.IMAGE - gradient_content_panel: T.PANEL - "gradient_content_panel/gradient": T.STACK_PANEL - "gradient_content_panel/particles": T.IMAGE - "gradient_content_panel/content_panel": T.UNKNOWN - csb_screen_main_panel: T.INPUT_PANEL - csb_main_panel: T.PANEL - "csb_main_panel/root_panel": T.PANEL - "csb_main_panel/root_panel/main_panel": T.STACK_PANEL - dialog_content: T.STACK_PANEL - "dialog_content/selector_area": T.PANEL - "dialog_content/padding_1": T.PANEL - "dialog_content/allow_divider_offset_panel": T.PANEL - "dialog_content/allow_divider_offset_panel/left_right_pane_divider": T.IMAGE - "dialog_content/padding_2": T.PANEL - "dialog_content/content_area": T.PANEL - "dialog_content/padding_3": T.PANEL - selector_area: T.PANEL - "selector_area/scrolling_panel": T.PANEL - scrollable_selector_area_content: T.STACK_PANEL - "scrollable_selector_area_content/focus_reset_input_panel": T.INPUT_PANEL - "scrollable_selector_area_content/csb_toggle": T.STACK_PANEL - "scrollable_selector_area_content/content_toggle": T.STACK_PANEL - "scrollable_selector_area_content/faq_toggle": T.STACK_PANEL - "scrollable_selector_area_content/toggle_section_divider": T.STACK_PANEL - "scrollable_selector_area_content/buy_now_toggle": T.STACK_PANEL - "scrollable_selector_area_content/xbl_btn_panel": T.PANEL - "scrollable_selector_area_content/xbl_btn_panel/xbl_btn": T.BUTTON - section_toggle_base: T.PANEL - tab_button_text: T.LABEL - toggle_base: T.STACK_PANEL - "toggle_base/toggle": T.PANEL - "toggle_base/padding": T.PANEL - csb_toggle: T.STACK_PANEL - content_toggle: T.STACK_PANEL - faq_toggle: T.STACK_PANEL - buy_now_toggle: T.STACK_PANEL - left_right_pane_divider: T.IMAGE - content_area: T.PANEL - "content_area/control": T.STACK_PANEL - "content_area/control/scrolling_panel_csb": T.PANEL - section_content_panels: T.STACK_PANEL - vertical_padding_4px: T.PANEL - section_base: T.STACK_PANEL - buy_now_content_section: T.STACK_PANEL - "buy_now_content_section/vertical_padding": T.PANEL - "buy_now_content_section/content": T.STACK_PANEL - markdown_background_animated: T.PANEL - "markdown_background_animated/csb_chevron": T.IMAGE - markdown_background: T.STACK_PANEL - "markdown_background/banner_panel": T.PANEL - "markdown_background/banner_panel/banner": T.IMAGE - "markdown_background/banner_panel/banner/banner_stack_panel": T.STACK_PANEL - "markdown_background/banner_panel/banner/banner_stack_panel/0": T.UNKNOWN - "markdown_background/triangle_panel": T.PANEL - "markdown_background/triangle_panel/triangle": T.IMAGE - empty_label: T.PANEL - full_width_section_divider: T.STACK_PANEL + "csb_pdp_screen": T.SCREEN, + "csb_upgrade_notice_screen": T.SCREEN, + "csb_background": T.IMAGE, + "gradient_image_stack": T.STACK_PANEL, + "gradient_image_stack/gradient": T.IMAGE, + "gradient_content_panel": T.PANEL, + "gradient_content_panel/gradient": T.STACK_PANEL, + "gradient_content_panel/particles": T.IMAGE, + "gradient_content_panel/content_panel": T.UNKNOWN, + "csb_screen_main_panel": T.INPUT_PANEL, + "csb_main_panel": T.PANEL, + "csb_main_panel/root_panel": T.PANEL, + "csb_main_panel/root_panel/main_panel": T.STACK_PANEL, + "dialog_content": T.STACK_PANEL, + "dialog_content/selector_area": T.PANEL, + "dialog_content/padding_1": T.PANEL, + "dialog_content/allow_divider_offset_panel": T.PANEL, + "dialog_content/allow_divider_offset_panel/left_right_pane_divider": T.IMAGE, + "dialog_content/padding_2": T.PANEL, + "dialog_content/content_area": T.PANEL, + "dialog_content/padding_3": T.PANEL, + "selector_area": T.PANEL, + "selector_area/scrolling_panel": T.PANEL, + "scrollable_selector_area_content": T.STACK_PANEL, + "scrollable_selector_area_content/focus_reset_input_panel": T.INPUT_PANEL, + "scrollable_selector_area_content/csb_toggle": T.STACK_PANEL, + "scrollable_selector_area_content/content_toggle": T.STACK_PANEL, + "scrollable_selector_area_content/faq_toggle": T.STACK_PANEL, + "scrollable_selector_area_content/toggle_section_divider": T.STACK_PANEL, + "scrollable_selector_area_content/buy_now_toggle": T.STACK_PANEL, + "scrollable_selector_area_content/xbl_btn_panel": T.PANEL, + "scrollable_selector_area_content/xbl_btn_panel/xbl_btn": T.BUTTON, + "section_toggle_base": T.PANEL, + "tab_button_text": T.LABEL, + "toggle_base": T.STACK_PANEL, + "toggle_base/toggle": T.PANEL, + "toggle_base/padding": T.PANEL, + "csb_toggle": T.STACK_PANEL, + "content_toggle": T.STACK_PANEL, + "faq_toggle": T.STACK_PANEL, + "buy_now_toggle": T.STACK_PANEL, + "left_right_pane_divider": T.IMAGE, + "content_area": T.PANEL, + "content_area/control": T.STACK_PANEL, + "content_area/control/scrolling_panel_csb": T.PANEL, + "section_content_panels": T.STACK_PANEL, + "vertical_padding_4px": T.PANEL, + "section_base": T.STACK_PANEL, + "buy_now_content_section": T.STACK_PANEL, + "buy_now_content_section/vertical_padding": T.PANEL, + "buy_now_content_section/content": T.STACK_PANEL, + "markdown_background_animated": T.PANEL, + "markdown_background_animated/csb_chevron": T.IMAGE, + "markdown_background": T.STACK_PANEL, + "markdown_background/banner_panel": T.PANEL, + "markdown_background/banner_panel/banner": T.IMAGE, + "markdown_background/banner_panel/banner/banner_stack_panel": T.STACK_PANEL, + "markdown_background/banner_panel/banner/banner_stack_panel/0": T.UNKNOWN, + "markdown_background/triangle_panel": T.PANEL, + "markdown_background/triangle_panel/triangle": T.IMAGE, + "empty_label": T.PANEL, + "full_width_section_divider": T.STACK_PANEL, } export type CsbContentType = { - csb_content_section: T.STACK_PANEL - "csb_content_section/content_section_vertical_padding_1": T.PANEL - "csb_content_section/popular_packs_label_panel": T.PANEL - "csb_content_section/popular_packs_label_panel/label_with_gradient": T.PANEL - "csb_content_section/popular_packs_label_panel/tts_border": T.BUTTON - "csb_content_section/content_section_vertical_padding_2": T.PANEL - "csb_content_section/content_pack_types": T.STACK_PANEL - "csb_content_section/content_packs_included": T.STACK_PANEL - "csb_content_section/content_section_vertical_padding_3": T.PANEL - content_pack_types_section: T.STACK_PANEL - "content_pack_types_section/pack_types": T.STACK_PANEL - "content_pack_types_section/padding": T.PANEL - content_packs_included_section: T.STACK_PANEL - "content_packs_included_section/popular_packs": T.STACK_PANEL - "content_packs_included_section/section_divider": T.STACK_PANEL - pack_types: T.STACK_PANEL - "pack_types/padding_01": T.PANEL - "pack_types/pack_types_1": T.STACK_PANEL - "pack_types/padding_02": T.PANEL - "pack_types/pack_types_2": T.STACK_PANEL - "pack_types/padding_03": T.PANEL - pack_types_1: T.STACK_PANEL - "pack_types_1/worlds": T.STACK_PANEL - "pack_types_1/padding_01": T.PANEL - "pack_types_1/textures": T.STACK_PANEL - "pack_types_1/padding_02": T.PANEL - "pack_types_1/persona": T.STACK_PANEL - pack_types_2: T.STACK_PANEL - "pack_types_2/padding_1": T.PANEL - "pack_types_2/skins": T.STACK_PANEL - "pack_types_2/padding_2": T.PANEL - "pack_types_2/mashups": T.STACK_PANEL - "pack_types_2/padding_3": T.PANEL - pack_type_description: T.STACK_PANEL - "pack_type_description/image_nesting_panel": T.PANEL - "pack_type_description/image_nesting_panel/texture": T.UNKNOWN - "pack_type_description/padding_0": T.PANEL - "pack_type_description/description_nesting_panel": T.PANEL - "pack_type_description/description_nesting_panel/description_label": T.LABEL - "pack_type_description/description_nesting_panel/tts_border": T.BUTTON - "pack_type_description/padding_1": T.PANEL - popular_packs: T.STACK_PANEL - "popular_packs/padding_0": T.PANEL - "popular_packs/pack_grid": T.STACK_PANEL - "popular_packs/view_all_packs_panel": T.STACK_PANEL - "popular_packs/view_all_packs_panel/view_all_packs_button": T.BUTTON - "popular_packs/view_all_packs_panel/padding": T.PANEL - "popular_packs/view_all_packs_panel/view_character_creator_items": T.BUTTON - "popular_packs/padding_1": T.PANEL - popular_packs_label: T.LABEL - packs_collection: T.STACK_PANEL - "packs_collection/row_1": T.STACK_PANEL - "packs_collection/row_1/pack_image_grid_item_0": T.PANEL - "packs_collection/row_1/padding": T.PANEL - "packs_collection/row_1/pack_image_grid_item_1": T.PANEL - "packs_collection/padding_1": T.PANEL - "packs_collection/row_2": T.STACK_PANEL - "packs_collection/row_2/pack_image_grid_item_0": T.PANEL - "packs_collection/row_2/padding": T.PANEL - "packs_collection/row_2/pack_image_grid_item_1": T.PANEL - "packs_collection/padding_2": T.PANEL - pack_image_grid_item: T.PANEL - "pack_image_grid_item/bg": T.IMAGE - "pack_image_grid_item/bg/featured_key_art": T.IMAGE - "pack_image_grid_item/bg/progress_loading": T.PANEL - "pack_image_grid_item/offer_button": T.BUTTON - "pack_image_grid_item/offer_button/default": T.IMAGE - "pack_image_grid_item/offer_button/hover": T.IMAGE - "pack_image_grid_item/offer_button/pressed": T.IMAGE + "csb_content_section": T.STACK_PANEL, + "csb_content_section/content_section_vertical_padding_1": T.PANEL, + "csb_content_section/popular_packs_label_panel": T.PANEL, + "csb_content_section/popular_packs_label_panel/label_with_gradient": T.PANEL, + "csb_content_section/popular_packs_label_panel/tts_border": T.BUTTON, + "csb_content_section/content_section_vertical_padding_2": T.PANEL, + "csb_content_section/content_pack_types": T.STACK_PANEL, + "csb_content_section/content_packs_included": T.STACK_PANEL, + "csb_content_section/content_section_vertical_padding_3": T.PANEL, + "content_pack_types_section": T.STACK_PANEL, + "content_pack_types_section/pack_types": T.STACK_PANEL, + "content_pack_types_section/padding": T.PANEL, + "content_packs_included_section": T.STACK_PANEL, + "content_packs_included_section/popular_packs": T.STACK_PANEL, + "content_packs_included_section/section_divider": T.STACK_PANEL, + "pack_types": T.STACK_PANEL, + "pack_types/padding_01": T.PANEL, + "pack_types/pack_types_1": T.STACK_PANEL, + "pack_types/padding_02": T.PANEL, + "pack_types/pack_types_2": T.STACK_PANEL, + "pack_types/padding_03": T.PANEL, + "pack_types_1": T.STACK_PANEL, + "pack_types_1/worlds": T.STACK_PANEL, + "pack_types_1/padding_01": T.PANEL, + "pack_types_1/textures": T.STACK_PANEL, + "pack_types_1/padding_02": T.PANEL, + "pack_types_1/persona": T.STACK_PANEL, + "pack_types_2": T.STACK_PANEL, + "pack_types_2/padding_1": T.PANEL, + "pack_types_2/skins": T.STACK_PANEL, + "pack_types_2/padding_2": T.PANEL, + "pack_types_2/mashups": T.STACK_PANEL, + "pack_types_2/padding_3": T.PANEL, + "pack_type_description": T.STACK_PANEL, + "pack_type_description/image_nesting_panel": T.PANEL, + "pack_type_description/image_nesting_panel/texture": T.UNKNOWN, + "pack_type_description/padding_0": T.PANEL, + "pack_type_description/description_nesting_panel": T.PANEL, + "pack_type_description/description_nesting_panel/description_label": T.LABEL, + "pack_type_description/description_nesting_panel/tts_border": T.BUTTON, + "pack_type_description/padding_1": T.PANEL, + "popular_packs": T.STACK_PANEL, + "popular_packs/padding_0": T.PANEL, + "popular_packs/pack_grid": T.STACK_PANEL, + "popular_packs/view_all_packs_panel": T.STACK_PANEL, + "popular_packs/view_all_packs_panel/view_all_packs_button": T.BUTTON, + "popular_packs/view_all_packs_panel/padding": T.PANEL, + "popular_packs/view_all_packs_panel/view_character_creator_items": T.BUTTON, + "popular_packs/padding_1": T.PANEL, + "popular_packs_label": T.LABEL, + "packs_collection": T.STACK_PANEL, + "packs_collection/row_1": T.STACK_PANEL, + "packs_collection/row_1/pack_image_grid_item_0": T.PANEL, + "packs_collection/row_1/padding": T.PANEL, + "packs_collection/row_1/pack_image_grid_item_1": T.PANEL, + "packs_collection/padding_1": T.PANEL, + "packs_collection/row_2": T.STACK_PANEL, + "packs_collection/row_2/pack_image_grid_item_0": T.PANEL, + "packs_collection/row_2/padding": T.PANEL, + "packs_collection/row_2/pack_image_grid_item_1": T.PANEL, + "packs_collection/padding_2": T.PANEL, + "pack_image_grid_item": T.PANEL, + "pack_image_grid_item/bg": T.IMAGE, + "pack_image_grid_item/bg/featured_key_art": T.IMAGE, + "pack_image_grid_item/bg/progress_loading": T.PANEL, + "pack_image_grid_item/offer_button": T.BUTTON, + "pack_image_grid_item/offer_button/default": T.IMAGE, + "pack_image_grid_item/offer_button/hover": T.IMAGE, + "pack_image_grid_item/offer_button/pressed": T.IMAGE, } export type CsbBannerType = { - csb_banner: T.PANEL - "csb_banner/static_button": T.BUTTON - "csb_banner/animated_button": T.BUTTON - csb_banner_slim: T.PANEL - "csb_banner_slim/banner_button": T.BUTTON - csb_banner_portal: T.PANEL - "csb_banner_portal/banner_button": T.BUTTON - promo_banner_csb_button: T.BUTTON - "promo_banner_csb_button/default": T.UNKNOWN - "promo_banner_csb_button/hover": T.UNKNOWN - csb_banner_slim_content: T.PANEL - "csb_banner_slim_content/banner_content": T.PANEL - csb_banner_portal_content: T.PANEL - "csb_banner_portal_content/banner_content": T.PANEL - slim_logo_panel: T.PANEL - "slim_logo_panel/mpp_logo": T.IMAGE - portal_logo_panel: T.PANEL - "portal_logo_panel/mpp_logo": T.IMAGE - csb_banner_new_content: T.PANEL - "csb_banner_new_content/text": T.STACK_PANEL - "csb_banner_new_content/text/logo_panel": T.UNKNOWN - "csb_banner_new_content/text/offer_panel": T.PANEL - "csb_banner_new_content/text/offer_panel/upsell_text": T.STACK_PANEL - "csb_banner_new_content/text/pixel_art": T.STACK_PANEL - sdl_upsell_text_component_factory: T.STACK_PANEL - csb_banner_content: T.PANEL - "csb_banner_content/banner": T.IMAGE - "csb_banner_content/text": T.STACK_PANEL - "csb_banner_content/text/logo_panel": T.PANEL - "csb_banner_content/text/logo_panel/logo": T.STACK_PANEL - "csb_banner_content/text/offer_panel": T.PANEL - "csb_banner_content/text/offer_panel/offer": T.LABEL - "csb_banner_content/text/learn_more_panel": T.PANEL - "csb_banner_content/text/learn_more_panel/learn_more": T.STACK_PANEL - "csb_banner_content/text/learn_more_panel/learn_more/more": T.LABEL - "csb_banner_content/text/learn_more_panel/learn_more/more_chevron": T.LABEL - animated_promo_banner_csb_button: T.BUTTON - "animated_promo_banner_csb_button/default": T.PANEL - "animated_promo_banner_csb_button/hover": T.PANEL - animated_csb_banner_content: T.PANEL - "animated_csb_banner_content/banner": T.IMAGE - "animated_csb_banner_content/text": T.STACK_PANEL - "animated_csb_banner_content/text/logo_panel": T.PANEL - "animated_csb_banner_content/text/logo_panel/logo": T.STACK_PANEL - "animated_csb_banner_content/text/offer_panel": T.PANEL - "animated_csb_banner_content/text/offer_panel/offer": T.LABEL - "animated_csb_banner_content/text/learn_more_panel": T.PANEL - "animated_csb_banner_content/text/learn_more_panel/learn_more": T.STACK_PANEL - "animated_csb_banner_content/text/learn_more_panel/learn_more/more": T.LABEL - "animated_csb_banner_content/text/learn_more_panel/learn_more/more_chevron": T.LABEL - still_pixel_art_panel: T.PANEL - "still_pixel_art_panel/banner": T.IMAGE - animated_pixel_art_panel: T.PANEL - "animated_pixel_art_panel/mygif": T.CUSTOM - image_component_factory: T.STACK_PANEL - image_asset_factory: T.STACK_PANEL + "csb_banner": T.PANEL, + "csb_banner/static_button": T.BUTTON, + "csb_banner/animated_button": T.BUTTON, + "csb_banner_slim": T.PANEL, + "csb_banner_slim/banner_button": T.BUTTON, + "csb_banner_portal": T.PANEL, + "csb_banner_portal/banner_button": T.BUTTON, + "promo_banner_csb_button": T.BUTTON, + "promo_banner_csb_button/default": T.UNKNOWN, + "promo_banner_csb_button/hover": T.UNKNOWN, + "csb_banner_slim_content": T.PANEL, + "csb_banner_slim_content/banner_content": T.PANEL, + "csb_banner_portal_content": T.PANEL, + "csb_banner_portal_content/banner_content": T.PANEL, + "slim_logo_panel": T.PANEL, + "slim_logo_panel/mpp_logo": T.IMAGE, + "portal_logo_panel": T.PANEL, + "portal_logo_panel/mpp_logo": T.IMAGE, + "csb_banner_new_content": T.PANEL, + "csb_banner_new_content/text": T.STACK_PANEL, + "csb_banner_new_content/text/logo_panel": T.UNKNOWN, + "csb_banner_new_content/text/offer_panel": T.PANEL, + "csb_banner_new_content/text/offer_panel/upsell_text": T.STACK_PANEL, + "csb_banner_new_content/text/pixel_art": T.STACK_PANEL, + "sdl_upsell_text_component_factory": T.STACK_PANEL, + "csb_banner_content": T.PANEL, + "csb_banner_content/banner": T.IMAGE, + "csb_banner_content/text": T.STACK_PANEL, + "csb_banner_content/text/logo_panel": T.PANEL, + "csb_banner_content/text/logo_panel/logo": T.STACK_PANEL, + "csb_banner_content/text/offer_panel": T.PANEL, + "csb_banner_content/text/offer_panel/offer": T.LABEL, + "csb_banner_content/text/learn_more_panel": T.PANEL, + "csb_banner_content/text/learn_more_panel/learn_more": T.STACK_PANEL, + "csb_banner_content/text/learn_more_panel/learn_more/more": T.LABEL, + "csb_banner_content/text/learn_more_panel/learn_more/more_chevron": T.LABEL, + "animated_promo_banner_csb_button": T.BUTTON, + "animated_promo_banner_csb_button/default": T.PANEL, + "animated_promo_banner_csb_button/hover": T.PANEL, + "animated_csb_banner_content": T.PANEL, + "animated_csb_banner_content/banner": T.IMAGE, + "animated_csb_banner_content/text": T.STACK_PANEL, + "animated_csb_banner_content/text/logo_panel": T.PANEL, + "animated_csb_banner_content/text/logo_panel/logo": T.STACK_PANEL, + "animated_csb_banner_content/text/offer_panel": T.PANEL, + "animated_csb_banner_content/text/offer_panel/offer": T.LABEL, + "animated_csb_banner_content/text/learn_more_panel": T.PANEL, + "animated_csb_banner_content/text/learn_more_panel/learn_more": T.STACK_PANEL, + "animated_csb_banner_content/text/learn_more_panel/learn_more/more": T.LABEL, + "animated_csb_banner_content/text/learn_more_panel/learn_more/more_chevron": T.LABEL, + "still_pixel_art_panel": T.PANEL, + "still_pixel_art_panel/banner": T.IMAGE, + "animated_pixel_art_panel": T.PANEL, + "animated_pixel_art_panel/mygif": T.CUSTOM, + "image_component_factory": T.STACK_PANEL, + "image_asset_factory": T.STACK_PANEL, } export type CsbBuyType = { - buy_now_content: T.STACK_PANEL - "buy_now_content/description_stack": T.STACK_PANEL - "buy_now_content/terms_and_conditions": T.PANEL - "buy_now_content/padding_2": T.PANEL - "buy_now_content/button_panel": T.PANEL - "buy_now_content/button_panel/buy_button": T.PANEL - "buy_now_content/button_panel/icon_panel": T.PANEL - "buy_now_content/padding_3": T.PANEL - "buy_now_content/terms": T.STACK_PANEL - content_text_section: T.STACK_PANEL - "content_text_section/text_description": T.PANEL - "content_text_section/padding": T.PANEL - content_description: T.PANEL - "content_description/content_description_label": T.LABEL - "content_description/tts_hover": T.BUTTON - trial_image_and_description: T.STACK_PANEL - "trial_image_and_description/image_border": T.IMAGE - "trial_image_and_description/padding": T.PANEL - "trial_image_and_description/description_text": T.PANEL - "trial_image_and_description/description_text/descriptions_label": T.LABEL - "trial_image_and_description/description_text/tts_hover": T.BUTTON - title_text: T.PANEL - "title_text/inner_text": T.LABEL - "title_text/tts_hover": T.BUTTON - description_stack: T.STACK_PANEL - "description_stack/title_with_gradient": T.PANEL - "description_stack/padding": T.PANEL - "description_stack/image_and_description": T.STACK_PANEL - terms_and_conditions: T.PANEL - "terms_and_conditions/terms_panel": T.PANEL - terms_and_conditions_panel: T.PANEL - "terms_and_conditions_panel/name_label": T.LABEL - "terms_and_conditions_panel/terms_string_panel": T.PANEL - "terms_and_conditions_panel/terms_string_panel/banner_fill": T.IMAGE - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": T.STACK_PANEL - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": T.PANEL - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": T.TOGGLE - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": T.BUTTON - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": T.BUTTON - button_text: T.LABEL - mcten_text_centering_panel: T.PANEL - "mcten_text_centering_panel/button_text": T.LABEL - view_terms_button: T.BUTTON - privacy_policy_button: T.BUTTON - buy_button_panel: T.PANEL - "buy_button_panel/buy_button": T.BUTTON - tool_tip_icon_panel: T.PANEL - "tool_tip_icon_panel/issue_icon": T.BUTTON - "tool_tip_icon_panel/issue_icon/info_icon": T.IMAGE - "tool_tip_icon_panel/issue_icon/default": T.PANEL - "tool_tip_icon_panel/issue_icon/hover": T.IMAGE - "tool_tip_icon_panel/issue_icon/pressed": T.IMAGE - buy_button_content: T.STACK_PANEL - "buy_button_content/button_chevron_panel": T.PANEL - "buy_button_content/button_chevron_panel/buy_button_chevron": T.PANEL - "buy_button_content/button_text_centering_panel": T.PANEL - info_icon: T.PANEL - "info_icon/panel_icon": T.IMAGE + "buy_now_content": T.STACK_PANEL, + "buy_now_content/description_stack": T.STACK_PANEL, + "buy_now_content/terms_and_conditions": T.PANEL, + "buy_now_content/padding_2": T.PANEL, + "buy_now_content/button_panel": T.PANEL, + "buy_now_content/button_panel/buy_button": T.PANEL, + "buy_now_content/button_panel/icon_panel": T.PANEL, + "buy_now_content/padding_3": T.PANEL, + "buy_now_content/terms": T.STACK_PANEL, + "content_text_section": T.STACK_PANEL, + "content_text_section/text_description": T.PANEL, + "content_text_section/padding": T.PANEL, + "content_description": T.PANEL, + "content_description/content_description_label": T.LABEL, + "content_description/tts_hover": T.BUTTON, + "trial_image_and_description": T.STACK_PANEL, + "trial_image_and_description/image_border": T.IMAGE, + "trial_image_and_description/padding": T.PANEL, + "trial_image_and_description/description_text": T.PANEL, + "trial_image_and_description/description_text/descriptions_label": T.LABEL, + "trial_image_and_description/description_text/tts_hover": T.BUTTON, + "title_text": T.PANEL, + "title_text/inner_text": T.LABEL, + "title_text/tts_hover": T.BUTTON, + "description_stack": T.STACK_PANEL, + "description_stack/title_with_gradient": T.PANEL, + "description_stack/padding": T.PANEL, + "description_stack/image_and_description": T.STACK_PANEL, + "terms_and_conditions": T.PANEL, + "terms_and_conditions/terms_panel": T.PANEL, + "terms_and_conditions_panel": T.PANEL, + "terms_and_conditions_panel/name_label": T.LABEL, + "terms_and_conditions_panel/terms_string_panel": T.PANEL, + "terms_and_conditions_panel/terms_string_panel/banner_fill": T.IMAGE, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": T.STACK_PANEL, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": T.PANEL, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": T.TOGGLE, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": T.BUTTON, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": T.BUTTON, + "button_text": T.LABEL, + "mcten_text_centering_panel": T.PANEL, + "mcten_text_centering_panel/button_text": T.LABEL, + "view_terms_button": T.BUTTON, + "privacy_policy_button": T.BUTTON, + "buy_button_panel": T.PANEL, + "buy_button_panel/buy_button": T.BUTTON, + "tool_tip_icon_panel": T.PANEL, + "tool_tip_icon_panel/issue_icon": T.BUTTON, + "tool_tip_icon_panel/issue_icon/info_icon": T.IMAGE, + "tool_tip_icon_panel/issue_icon/default": T.PANEL, + "tool_tip_icon_panel/issue_icon/hover": T.IMAGE, + "tool_tip_icon_panel/issue_icon/pressed": T.IMAGE, + "buy_button_content": T.STACK_PANEL, + "buy_button_content/button_chevron_panel": T.PANEL, + "buy_button_content/button_chevron_panel/buy_button_chevron": T.PANEL, + "buy_button_content/button_text_centering_panel": T.PANEL, + "info_icon": T.PANEL, + "info_icon/panel_icon": T.IMAGE, } export type CommonCsbType = { - csb_expiration_banner: T.PANEL - "csb_expiration_banner/background": T.IMAGE - "csb_expiration_banner/icon": T.IMAGE - "csb_expiration_banner/text": T.LABEL - csb_icon_large: T.IMAGE - csb_header: T.STACK_PANEL - "csb_header/label_a_text_csb": T.LABEL - "csb_header/label_space_text_csb": T.LABEL - "csb_header/label_b_text_pass": T.LABEL - csb_header_two_lines: T.STACK_PANEL - "csb_header_two_lines/top_header": T.LABEL - "csb_header_two_lines/panel_centre_second_line": T.PANEL - "csb_header_two_lines/panel_centre_second_line/sub_header": T.LABEL - csb_gold_button: T.BUTTON - csb_gold_text_button: T.BUTTON + "csb_expiration_banner": T.PANEL, + "csb_expiration_banner/background": T.IMAGE, + "csb_expiration_banner/icon": T.IMAGE, + "csb_expiration_banner/text": T.LABEL, + "csb_icon_large": T.IMAGE, + "csb_header": T.STACK_PANEL, + "csb_header/label_a_text_csb": T.LABEL, + "csb_header/label_space_text_csb": T.LABEL, + "csb_header/label_b_text_pass": T.LABEL, + "csb_header_two_lines": T.STACK_PANEL, + "csb_header_two_lines/top_header": T.LABEL, + "csb_header_two_lines/panel_centre_second_line": T.PANEL, + "csb_header_two_lines/panel_centre_second_line/sub_header": T.LABEL, + "csb_gold_button": T.BUTTON, + "csb_gold_text_button": T.BUTTON, } export type CsbPurchaseAmazondevicewarningType = { - csb_purchase_amazondevicewarning_screen: T.SCREEN - screen_content: T.PANEL - "screen_content/main_panel": T.PANEL - main_panel: T.STACK_PANEL - "main_panel/text_panel_1": T.PANEL - "main_panel/text_panel_1/text": T.LABEL - "main_panel/art_panel": T.PANEL - "main_panel/art_panel/art": T.IMAGE - "main_panel/padding": T.PANEL - "main_panel/text_panel_2": T.PANEL - "main_panel/text_panel_2/text": T.LABEL - back_button: T.BUTTON + "csb_purchase_amazondevicewarning_screen": T.SCREEN, + "screen_content": T.PANEL, + "screen_content/main_panel": T.PANEL, + "main_panel": T.STACK_PANEL, + "main_panel/text_panel_1": T.PANEL, + "main_panel/text_panel_1/text": T.LABEL, + "main_panel/art_panel": T.PANEL, + "main_panel/art_panel/art": T.IMAGE, + "main_panel/padding": T.PANEL, + "main_panel/text_panel_2": T.PANEL, + "main_panel/text_panel_2/text": T.LABEL, + "back_button": T.BUTTON, } export type CsbPurchaseWarningType = { - csb_purchase_warning_screen: T.SCREEN - purchase_warning_screen_content: T.PANEL - "purchase_warning_screen_content/main_panel": T.PANEL - warning_modal_main_panel: T.STACK_PANEL - "warning_modal_main_panel/text_panel_1": T.PANEL - "warning_modal_main_panel/text_panel_1/text": T.LABEL - "warning_modal_main_panel/padding_1": T.PANEL - "warning_modal_main_panel/art_panel": T.PANEL - "warning_modal_main_panel/art_panel/art": T.IMAGE - "warning_modal_main_panel/padding_2": T.PANEL - "warning_modal_main_panel/text_panel_2": T.PANEL - "warning_modal_main_panel/text_panel_2/text": T.LABEL - warning_modal_back_button: T.BUTTON + "csb_purchase_warning_screen": T.SCREEN, + "purchase_warning_screen_content": T.PANEL, + "purchase_warning_screen_content/main_panel": T.PANEL, + "warning_modal_main_panel": T.STACK_PANEL, + "warning_modal_main_panel/text_panel_1": T.PANEL, + "warning_modal_main_panel/text_panel_1/text": T.LABEL, + "warning_modal_main_panel/padding_1": T.PANEL, + "warning_modal_main_panel/art_panel": T.PANEL, + "warning_modal_main_panel/art_panel/art": T.IMAGE, + "warning_modal_main_panel/padding_2": T.PANEL, + "warning_modal_main_panel/text_panel_2": T.PANEL, + "warning_modal_main_panel/text_panel_2/text": T.LABEL, + "warning_modal_back_button": T.BUTTON, } export type CsbSubscriptionPanelType = { - csb_container: T.PANEL - "csb_container/fill": T.IMAGE - "csb_container/border": T.IMAGE - "csb_container/panel_contents": T.STACK_PANEL - "csb_container/panel_contents/content_container": T.STACK_PANEL - "csb_container/panel_contents/content_container/side_image_stack_left": T.PANEL - "csb_container/panel_contents/content_container/side_image_stack_left/csb_image": T.IMAGE - "csb_container/panel_contents/content_container/padding_02": T.PANEL - "csb_container/panel_contents/content_container/side_stack_right": T.STACK_PANEL - "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack": T.STACK_PANEL - "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/panel_label": T.LABEL - "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/interior_top_padding_01": T.PANEL - "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_01_container": T.STACK_PANEL - "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_02_container": T.STACK_PANEL - "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_03_container": T.STACK_PANEL - "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/interior_top_padding02": T.PANEL - "csb_container/panel_contents/button_panel_spacer": T.PANEL - "csb_container/panel_contents/csb_buttons": T.STACK_PANEL - "csb_container/panel_contents/csb_buttons/button_panel_padding": T.PANEL - "csb_container/panel_contents/csb_buttons/padding_01": T.PANEL - "csb_container/panel_contents/csb_buttons/csb_info_button": T.BUTTON - csb_marketplace_benefit: T.STACK_PANEL - "csb_marketplace_benefit/bullet_holder_01": T.STACK_PANEL - "csb_marketplace_benefit/bullet_holder_01/bullet_spacer": T.PANEL - "csb_marketplace_benefit/bullet_holder_01/bullet_01": T.LABEL - "csb_marketplace_benefit/panel_details_ln1": T.LABEL - csb_buy_container: T.PANEL - "csb_buy_container/csb_buy_button": T.BUTTON - csb_buy_button_text: T.LABEL - csb_cancel_button: T.BUTTON + "csb_container": T.PANEL, + "csb_container/fill": T.IMAGE, + "csb_container/border": T.IMAGE, + "csb_container/panel_contents": T.STACK_PANEL, + "csb_container/panel_contents/content_container": T.STACK_PANEL, + "csb_container/panel_contents/content_container/side_image_stack_left": T.PANEL, + "csb_container/panel_contents/content_container/side_image_stack_left/csb_image": T.IMAGE, + "csb_container/panel_contents/content_container/padding_02": T.PANEL, + "csb_container/panel_contents/content_container/side_stack_right": T.STACK_PANEL, + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack": T.STACK_PANEL, + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/panel_label": T.LABEL, + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/interior_top_padding_01": T.PANEL, + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_01_container": T.STACK_PANEL, + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_02_container": T.STACK_PANEL, + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_03_container": T.STACK_PANEL, + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/interior_top_padding02": T.PANEL, + "csb_container/panel_contents/button_panel_spacer": T.PANEL, + "csb_container/panel_contents/csb_buttons": T.STACK_PANEL, + "csb_container/panel_contents/csb_buttons/button_panel_padding": T.PANEL, + "csb_container/panel_contents/csb_buttons/padding_01": T.PANEL, + "csb_container/panel_contents/csb_buttons/csb_info_button": T.BUTTON, + "csb_marketplace_benefit": T.STACK_PANEL, + "csb_marketplace_benefit/bullet_holder_01": T.STACK_PANEL, + "csb_marketplace_benefit/bullet_holder_01/bullet_spacer": T.PANEL, + "csb_marketplace_benefit/bullet_holder_01/bullet_01": T.LABEL, + "csb_marketplace_benefit/panel_details_ln1": T.LABEL, + "csb_buy_container": T.PANEL, + "csb_buy_container/csb_buy_button": T.BUTTON, + "csb_buy_button_text": T.LABEL, + "csb_cancel_button": T.BUTTON, } export type CsbUpsellType = { - csb_upsell_screen: T.SCREEN - csb_upsell_compare_dialog: T.PANEL - "csb_upsell_compare_dialog/csb_upsell_compare_main_screen": T.PANEL - csb_upsell_popup_content: T.PANEL - "csb_upsell_popup_content/two_side_panels": T.STACK_PANEL - "csb_upsell_popup_content/two_side_panels/border_panel_left": T.PANEL - "csb_upsell_popup_content/two_side_panels/border_panel_left/border": T.IMAGE - "csb_upsell_popup_content/two_side_panels/border_panel_left/background_panel": T.IMAGE - "csb_upsell_popup_content/two_side_panels/border_panel_left/left_side_panel": T.STACK_PANEL - "csb_upsell_popup_content/two_side_panels/border_panel_left/button_centering": T.PANEL - "csb_upsell_popup_content/two_side_panels/border_panel_left/button_centering/learn_more_left": T.BUTTON - "csb_upsell_popup_content/two_side_panels/middle_spacer": T.PANEL - "csb_upsell_popup_content/two_side_panels/border_panel_right": T.PANEL - "csb_upsell_popup_content/two_side_panels/border_panel_right/border": T.IMAGE - "csb_upsell_popup_content/two_side_panels/border_panel_right/background_panel": T.IMAGE - "csb_upsell_popup_content/two_side_panels/border_panel_right/right_side_panel": T.STACK_PANEL - "csb_upsell_popup_content/two_side_panels/border_panel_right/button_centering": T.PANEL - "csb_upsell_popup_content/two_side_panels/border_panel_right/button_centering/learn_more_right": T.BUTTON - csb_upsell_left_side_panel: T.STACK_PANEL - "csb_upsell_left_side_panel/upper_half": T.STACK_PANEL - "csb_upsell_left_side_panel/upper_half/header_panel": T.STACK_PANEL - "csb_upsell_left_side_panel/upper_half/header_panel/blank_space": T.PANEL - "csb_upsell_left_side_panel/upper_half/header_panel/top_header": T.STACK_PANEL - "csb_upsell_left_side_panel/upper_half/header_panel/price_amount": T.PANEL - "csb_upsell_left_side_panel/middle_spacer": T.PANEL - "csb_upsell_left_side_panel/bottom_half": T.STACK_PANEL - "csb_upsell_left_side_panel/bottom_half/padding_b": T.PANEL - "csb_upsell_left_side_panel/bottom_half/bullet_one": T.STACK_PANEL - "csb_upsell_left_side_panel/bottom_half/padding_0": T.PANEL - "csb_upsell_left_side_panel/bottom_half/bullet_two": T.STACK_PANEL - "csb_upsell_left_side_panel/bottom_half/padding_1": T.PANEL - "csb_upsell_left_side_panel/bottom_half/bullet_three": T.STACK_PANEL - csb_upsell_right_side_panel: T.STACK_PANEL - "csb_upsell_right_side_panel/upper_half": T.STACK_PANEL - "csb_upsell_right_side_panel/upper_half/marketing_banner": T.PANEL - "csb_upsell_right_side_panel/upper_half/marketing_banner/background_color": T.IMAGE - "csb_upsell_right_side_panel/upper_half/marketing_banner/marketing_banner_label": T.LABEL - "csb_upsell_right_side_panel/upper_half/header_panel": T.STACK_PANEL - "csb_upsell_right_side_panel/upper_half/header_panel/top_header": T.LABEL - "csb_upsell_right_side_panel/upper_half/header_panel/price_amount": T.PANEL - "csb_upsell_right_side_panel/middle_spacer": T.PANEL - "csb_upsell_right_side_panel/bottom_half": T.STACK_PANEL - "csb_upsell_right_side_panel/bottom_half/padding_b": T.PANEL - "csb_upsell_right_side_panel/bottom_half/bullet_one": T.STACK_PANEL - "csb_upsell_right_side_panel/bottom_half/padding_1": T.PANEL - "csb_upsell_right_side_panel/bottom_half/bullet_two": T.STACK_PANEL - "csb_upsell_right_side_panel/bottom_half/padding_0": T.PANEL - "csb_upsell_right_side_panel/bottom_half/bullet_three": T.STACK_PANEL - csb_big_padding: T.PANEL - csb_bullet_padding: T.PANEL - "csb_bullet_padding/desktop": T.PANEL - "csb_bullet_padding/pocket": T.PANEL - csb_bullet_desktop_padding: T.PANEL - csb_bullet_pocket_padding: T.PANEL - csb_bullet: T.STACK_PANEL - "csb_bullet/padding_icon_left": T.PANEL - "csb_bullet/padding_icon_vertical": T.STACK_PANEL - "csb_bullet/padding_icon_vertical/padding_vertical": T.PANEL - "csb_bullet/padding_icon_vertical/label_icon": T.IMAGE - "csb_bullet/padding_icon_right": T.PANEL - csb_bullet_point: T.STACK_PANEL - "csb_bullet_point/bullet_icon": T.STACK_PANEL - "csb_bullet_point/label_text": T.LABEL - csb_bullet_split_point: T.STACK_PANEL - "csb_bullet_split_point/bullet_icon": T.STACK_PANEL - "csb_bullet_split_point/label_text": T.LABEL - "csb_bullet_split_point/space": T.PANEL - "csb_bullet_split_point/space/label_text_csb": T.LABEL - "csb_bullet_split_point/csb_name": T.PANEL - "csb_bullet_split_point/csb_name/csb_name_string": T.STACK_PANEL - csb_price: T.PANEL - "csb_price/price_details": T.STACK_PANEL - csb_price_details: T.STACK_PANEL - "csb_price_details/price_panel_1": T.PANEL - "csb_price_details/price_panel_1/amount": T.LABEL - "csb_price_details/price_panel_first_period": T.PANEL - "csb_price_details/price_panel_first_period/second_line": T.LABEL - csb_learn_more: T.PANEL - "csb_learn_more/learn_more": T.LABEL + "csb_upsell_screen": T.SCREEN, + "csb_upsell_compare_dialog": T.PANEL, + "csb_upsell_compare_dialog/csb_upsell_compare_main_screen": T.PANEL, + "csb_upsell_popup_content": T.PANEL, + "csb_upsell_popup_content/two_side_panels": T.STACK_PANEL, + "csb_upsell_popup_content/two_side_panels/border_panel_left": T.PANEL, + "csb_upsell_popup_content/two_side_panels/border_panel_left/border": T.IMAGE, + "csb_upsell_popup_content/two_side_panels/border_panel_left/background_panel": T.IMAGE, + "csb_upsell_popup_content/two_side_panels/border_panel_left/left_side_panel": T.STACK_PANEL, + "csb_upsell_popup_content/two_side_panels/border_panel_left/button_centering": T.PANEL, + "csb_upsell_popup_content/two_side_panels/border_panel_left/button_centering/learn_more_left": T.BUTTON, + "csb_upsell_popup_content/two_side_panels/middle_spacer": T.PANEL, + "csb_upsell_popup_content/two_side_panels/border_panel_right": T.PANEL, + "csb_upsell_popup_content/two_side_panels/border_panel_right/border": T.IMAGE, + "csb_upsell_popup_content/two_side_panels/border_panel_right/background_panel": T.IMAGE, + "csb_upsell_popup_content/two_side_panels/border_panel_right/right_side_panel": T.STACK_PANEL, + "csb_upsell_popup_content/two_side_panels/border_panel_right/button_centering": T.PANEL, + "csb_upsell_popup_content/two_side_panels/border_panel_right/button_centering/learn_more_right": T.BUTTON, + "csb_upsell_left_side_panel": T.STACK_PANEL, + "csb_upsell_left_side_panel/upper_half": T.STACK_PANEL, + "csb_upsell_left_side_panel/upper_half/header_panel": T.STACK_PANEL, + "csb_upsell_left_side_panel/upper_half/header_panel/blank_space": T.PANEL, + "csb_upsell_left_side_panel/upper_half/header_panel/top_header": T.STACK_PANEL, + "csb_upsell_left_side_panel/upper_half/header_panel/price_amount": T.PANEL, + "csb_upsell_left_side_panel/middle_spacer": T.PANEL, + "csb_upsell_left_side_panel/bottom_half": T.STACK_PANEL, + "csb_upsell_left_side_panel/bottom_half/padding_b": T.PANEL, + "csb_upsell_left_side_panel/bottom_half/bullet_one": T.STACK_PANEL, + "csb_upsell_left_side_panel/bottom_half/padding_0": T.PANEL, + "csb_upsell_left_side_panel/bottom_half/bullet_two": T.STACK_PANEL, + "csb_upsell_left_side_panel/bottom_half/padding_1": T.PANEL, + "csb_upsell_left_side_panel/bottom_half/bullet_three": T.STACK_PANEL, + "csb_upsell_right_side_panel": T.STACK_PANEL, + "csb_upsell_right_side_panel/upper_half": T.STACK_PANEL, + "csb_upsell_right_side_panel/upper_half/marketing_banner": T.PANEL, + "csb_upsell_right_side_panel/upper_half/marketing_banner/background_color": T.IMAGE, + "csb_upsell_right_side_panel/upper_half/marketing_banner/marketing_banner_label": T.LABEL, + "csb_upsell_right_side_panel/upper_half/header_panel": T.STACK_PANEL, + "csb_upsell_right_side_panel/upper_half/header_panel/top_header": T.LABEL, + "csb_upsell_right_side_panel/upper_half/header_panel/price_amount": T.PANEL, + "csb_upsell_right_side_panel/middle_spacer": T.PANEL, + "csb_upsell_right_side_panel/bottom_half": T.STACK_PANEL, + "csb_upsell_right_side_panel/bottom_half/padding_b": T.PANEL, + "csb_upsell_right_side_panel/bottom_half/bullet_one": T.STACK_PANEL, + "csb_upsell_right_side_panel/bottom_half/padding_1": T.PANEL, + "csb_upsell_right_side_panel/bottom_half/bullet_two": T.STACK_PANEL, + "csb_upsell_right_side_panel/bottom_half/padding_0": T.PANEL, + "csb_upsell_right_side_panel/bottom_half/bullet_three": T.STACK_PANEL, + "csb_big_padding": T.PANEL, + "csb_bullet_padding": T.PANEL, + "csb_bullet_padding/desktop": T.PANEL, + "csb_bullet_padding/pocket": T.PANEL, + "csb_bullet_desktop_padding": T.PANEL, + "csb_bullet_pocket_padding": T.PANEL, + "csb_bullet": T.STACK_PANEL, + "csb_bullet/padding_icon_left": T.PANEL, + "csb_bullet/padding_icon_vertical": T.STACK_PANEL, + "csb_bullet/padding_icon_vertical/padding_vertical": T.PANEL, + "csb_bullet/padding_icon_vertical/label_icon": T.IMAGE, + "csb_bullet/padding_icon_right": T.PANEL, + "csb_bullet_point": T.STACK_PANEL, + "csb_bullet_point/bullet_icon": T.STACK_PANEL, + "csb_bullet_point/label_text": T.LABEL, + "csb_bullet_split_point": T.STACK_PANEL, + "csb_bullet_split_point/bullet_icon": T.STACK_PANEL, + "csb_bullet_split_point/label_text": T.LABEL, + "csb_bullet_split_point/space": T.PANEL, + "csb_bullet_split_point/space/label_text_csb": T.LABEL, + "csb_bullet_split_point/csb_name": T.PANEL, + "csb_bullet_split_point/csb_name/csb_name_string": T.STACK_PANEL, + "csb_price": T.PANEL, + "csb_price/price_details": T.STACK_PANEL, + "csb_price_details": T.STACK_PANEL, + "csb_price_details/price_panel_1": T.PANEL, + "csb_price_details/price_panel_1/amount": T.LABEL, + "csb_price_details/price_panel_first_period": T.PANEL, + "csb_price_details/price_panel_first_period/second_line": T.LABEL, + "csb_learn_more": T.PANEL, + "csb_learn_more/learn_more": T.LABEL, } export type CsbPacksType = { - view_all_packs_screen: T.SCREEN - view_packs_screen_content: T.PANEL - "view_packs_screen_content/main_panel": T.STACK_PANEL - csb_view_packs_screen_main_panel: T.INPUT_PANEL - main_panel: T.INPUT_PANEL - "main_panel/offers": T.PANEL - "main_panel/progress_loading": T.PANEL - scrolling_content_stack: T.STACK_PANEL - "scrolling_content_stack/padding_0": T.PANEL - "scrolling_content_stack/store_factory": T.STACK_PANEL + "view_all_packs_screen": T.SCREEN, + "view_packs_screen_content": T.PANEL, + "view_packs_screen_content/main_panel": T.STACK_PANEL, + "csb_view_packs_screen_main_panel": T.INPUT_PANEL, + "main_panel": T.INPUT_PANEL, + "main_panel/offers": T.PANEL, + "main_panel/progress_loading": T.PANEL, + "scrolling_content_stack": T.STACK_PANEL, + "scrolling_content_stack/padding_0": T.PANEL, + "scrolling_content_stack/store_factory": T.STACK_PANEL, } export type CsbWelcomeType = { - csb_welcome_screen: T.SCREEN - welcome_screen_content: T.PANEL - "welcome_screen_content/main_panel": T.PANEL - welcome_modal_main_panel: T.STACK_PANEL - "welcome_modal_main_panel/art_panel": T.PANEL - "welcome_modal_main_panel/art_panel/art": T.IMAGE - "welcome_modal_main_panel/padding": T.PANEL - "welcome_modal_main_panel/text_panel": T.PANEL - "welcome_modal_main_panel/text_panel/text": T.LABEL - welcome_modal_continue_button: T.BUTTON + "csb_welcome_screen": T.SCREEN, + "welcome_screen_content": T.PANEL, + "welcome_screen_content/main_panel": T.PANEL, + "welcome_modal_main_panel": T.STACK_PANEL, + "welcome_modal_main_panel/art_panel": T.PANEL, + "welcome_modal_main_panel/art_panel/art": T.IMAGE, + "welcome_modal_main_panel/padding": T.PANEL, + "welcome_modal_main_panel/text_panel": T.PANEL, + "welcome_modal_main_panel/text_panel/text": T.LABEL, + "welcome_modal_continue_button": T.BUTTON, } export type CsbFaqType = { - faq_bottom_button: T.BUTTON - faq_image_section: T.PANEL - "faq_image_section/faq_image": T.IMAGE - faq_text_section_body: T.STACK_PANEL - faq_text_question: T.LABEL - faq_text_section: T.STACK_PANEL - "faq_text_section/faq_text_question": T.LABEL - "faq_text_section/faq_text_answer": T.LABEL - faq_price_bound_text_section: T.STACK_PANEL - "faq_price_bound_text_section/faq_text_question": T.LABEL - "faq_price_bound_text_section/faq_text_answer": T.LABEL - faq_question_body: T.STACK_PANEL - "faq_question_body/0": T.UNKNOWN - faq_question_body_stack: T.STACK_PANEL - faq_question_body_horz_padding: T.PANEL - image_left_faq_question_body: T.BUTTON - image_right_faq_question_body: T.BUTTON - image_left_faq_price_bound: T.BUTTON - image_right_faq_price_bound: T.BUTTON - faq_section_header_space: T.PANEL - faq_section_divider: T.STACK_PANEL - faq_content_section: T.STACK_PANEL - "faq_content_section/faq_section_vertical_padding_1": T.PANEL - "faq_content_section/faq_header": T.LABEL - "faq_content_section/faq_section_vertical_padding_2": T.PANEL - "faq_content_section/faq_question_1": T.BUTTON - "faq_content_section/faq_question_1_divider": T.STACK_PANEL - "faq_content_section/faq_question_2": T.BUTTON - "faq_content_section/faq_question_2_divider": T.STACK_PANEL - "faq_content_section/faq_question_3": T.BUTTON - "faq_content_section/faq_question_3_divider": T.STACK_PANEL - "faq_content_section/faq_question_4": T.BUTTON - "faq_content_section/faq_question_4_divider": T.STACK_PANEL - "faq_content_section/faq_question_5": T.BUTTON - "faq_content_section/faq_question_5_divider": T.STACK_PANEL - "faq_content_section/faq_question_6": T.BUTTON - "faq_content_section/faq_question_6_divider": T.STACK_PANEL - "faq_content_section/faq_question_7": T.BUTTON - "faq_content_section/faq_question_7_divider": T.STACK_PANEL - "faq_content_section/faq_question_8": T.BUTTON - "faq_content_section/faq_question_8_divider": T.STACK_PANEL - "faq_content_section/faq_question_9": T.BUTTON - "faq_content_section/faq_question_9_divider": T.STACK_PANEL - "faq_content_section/faq_question_10": T.BUTTON - "faq_content_section/faq_question_10_divider": T.STACK_PANEL - "faq_content_section/faq_button": T.BUTTON - "faq_content_section/faq_bottom_padding": T.PANEL - "faq_content_section/faq_bottom_padding/bottom_left_particles": T.IMAGE + "faq_bottom_button": T.BUTTON, + "faq_image_section": T.PANEL, + "faq_image_section/faq_image": T.IMAGE, + "faq_text_section_body": T.STACK_PANEL, + "faq_text_question": T.LABEL, + "faq_text_section": T.STACK_PANEL, + "faq_text_section/faq_text_question": T.LABEL, + "faq_text_section/faq_text_answer": T.LABEL, + "faq_price_bound_text_section": T.STACK_PANEL, + "faq_price_bound_text_section/faq_text_question": T.LABEL, + "faq_price_bound_text_section/faq_text_answer": T.LABEL, + "faq_question_body": T.STACK_PANEL, + "faq_question_body/0": T.UNKNOWN, + "faq_question_body_stack": T.STACK_PANEL, + "faq_question_body_horz_padding": T.PANEL, + "image_left_faq_question_body": T.BUTTON, + "image_right_faq_question_body": T.BUTTON, + "image_left_faq_price_bound": T.BUTTON, + "image_right_faq_price_bound": T.BUTTON, + "faq_section_header_space": T.PANEL, + "faq_section_divider": T.STACK_PANEL, + "faq_content_section": T.STACK_PANEL, + "faq_content_section/faq_section_vertical_padding_1": T.PANEL, + "faq_content_section/faq_header": T.LABEL, + "faq_content_section/faq_section_vertical_padding_2": T.PANEL, + "faq_content_section/faq_question_1": T.BUTTON, + "faq_content_section/faq_question_1_divider": T.STACK_PANEL, + "faq_content_section/faq_question_2": T.BUTTON, + "faq_content_section/faq_question_2_divider": T.STACK_PANEL, + "faq_content_section/faq_question_3": T.BUTTON, + "faq_content_section/faq_question_3_divider": T.STACK_PANEL, + "faq_content_section/faq_question_4": T.BUTTON, + "faq_content_section/faq_question_4_divider": T.STACK_PANEL, + "faq_content_section/faq_question_5": T.BUTTON, + "faq_content_section/faq_question_5_divider": T.STACK_PANEL, + "faq_content_section/faq_question_6": T.BUTTON, + "faq_content_section/faq_question_6_divider": T.STACK_PANEL, + "faq_content_section/faq_question_7": T.BUTTON, + "faq_content_section/faq_question_7_divider": T.STACK_PANEL, + "faq_content_section/faq_question_8": T.BUTTON, + "faq_content_section/faq_question_8_divider": T.STACK_PANEL, + "faq_content_section/faq_question_9": T.BUTTON, + "faq_content_section/faq_question_9_divider": T.STACK_PANEL, + "faq_content_section/faq_question_10": T.BUTTON, + "faq_content_section/faq_question_10_divider": T.STACK_PANEL, + "faq_content_section/faq_button": T.BUTTON, + "faq_content_section/faq_bottom_padding": T.PANEL, + "faq_content_section/faq_bottom_padding/bottom_left_particles": T.IMAGE, } export type CsbLandingType = { - landing_content_section: T.STACK_PANEL - "landing_content_section/landing_section_vertical_padding": T.PANEL - "landing_content_section/landing_content": T.STACK_PANEL - "landing_content_section/landing_content/title_stack": T.STACK_PANEL - "landing_content_section/landing_content/vertical_small_spacer_0": T.PANEL - "landing_content_section/landing_content/vertical_small_spacer_1": T.PANEL - "landing_content_section/landing_content/info_stack": T.STACK_PANEL - "landing_content_section/landing_content/vertical_small_spacer_2": T.PANEL - horizontal_small_spacer: T.PANEL - vertical_small_spacer: T.PANEL - vertical_large_spacer: T.PANEL - title_stack: T.STACK_PANEL - "title_stack/title_image_panel": T.STACK_PANEL - "title_stack/title_space": T.PANEL - "title_stack/action_button": T.PANEL - "title_stack/sign_in_button": T.PANEL - "title_stack/vertical_space2": T.PANEL - "title_stack/gradient_panel": T.PANEL - "title_stack/gradient_panel/label_with_gradient": T.PANEL - "title_stack/gradient_panel/tts_hover": T.BUTTON - "title_stack/gradient_panel2": T.PANEL - "title_stack/gradient_panel2/label_with_gradient2": T.PANEL - "title_stack/gradient_panel2/tts_hover": T.BUTTON - subscription_includes_text: T.LABEL - free_trial_text: T.LABEL - title_space: T.PANEL - title_image_panel: T.STACK_PANEL - "title_image_panel/vertical_small_spacer_1": T.PANEL - "title_image_panel/title_image_container": T.PANEL - "title_image_panel/title_image_container/title_image": T.IMAGE - "title_image_panel/vertical_small_spacer_2": T.PANEL - info_stack: T.STACK_PANEL - "info_stack/info_section_image": T.IMAGE - "info_stack/info_description_stack_retail": T.STACK_PANEL - info_description_stack_retail: T.STACK_PANEL - "info_description_stack_retail/info_section_stack_1": T.STACK_PANEL - "info_description_stack_retail/info_section_stack_1/horizontal_small_spacer": T.PANEL - "info_description_stack_retail/info_section_stack_1/info_section_text_1": T.STACK_PANEL - info_section_stack: T.STACK_PANEL - info_section_image_with_border: T.IMAGE - info_section_text_1: T.STACK_PANEL - "info_section_text_1/info_section_text": T.PANEL - "info_section_text_1/vertical_small_spacer_0": T.PANEL - "info_section_text_1/info_text_bullet_1": T.STACK_PANEL - "info_section_text_1/vertical_small_spacer_1": T.PANEL - "info_section_text_1/info_text_bullet_2": T.STACK_PANEL - "info_section_text_1/vertical_small_spacer_2": T.PANEL - "info_section_text_1/info_text_bullet_3": T.STACK_PANEL - "info_section_text_1/vertical_small_spacer_3": T.PANEL - "info_section_text_1/info_text_bullet_4": T.STACK_PANEL - "info_section_text_1/vertical_small_spacer_4": T.PANEL - "info_section_text_1/info_text_bullet_5": T.STACK_PANEL - "info_section_text_1/vertical_small_spacer_5": T.PANEL - "info_section_text_1/info_text_bullet_6": T.STACK_PANEL - "info_section_text_1/vertical_large_spacer_6": T.PANEL - info_section_text_2: T.STACK_PANEL - "info_section_text_2/info_text_bullet_1": T.STACK_PANEL - "info_section_text_2/vertical_small_spacer_0": T.PANEL - "info_section_text_2/info_text_bullet_2": T.STACK_PANEL - "info_section_text_2/vertical_small_spacer_1": T.PANEL - "info_section_text_2/info_text_bullet_4": T.STACK_PANEL - "info_section_text_2/vertical_small_spacer_3": T.PANEL - "info_section_text_2/info_text_bullet_5": T.STACK_PANEL - info_section_text: T.STACK_PANEL - info_text_bullet: T.STACK_PANEL - "info_text_bullet/info_text_bullet_bullet": T.LABEL - "info_text_bullet/bullet_spacer": T.PANEL - "info_text_bullet/info_text_bullet_body": T.PANEL - "info_text_bullet/bullet_spacer_end": T.PANEL - info_text_unbulletted: T.PANEL - "info_text_unbulletted/info_text_bullet_body": T.PANEL - info_text_body: T.PANEL - "info_text_body/text_body": T.LABEL - "info_text_body/tts_border": T.BUTTON + "landing_content_section": T.STACK_PANEL, + "landing_content_section/landing_section_vertical_padding": T.PANEL, + "landing_content_section/landing_content": T.STACK_PANEL, + "landing_content_section/landing_content/title_stack": T.STACK_PANEL, + "landing_content_section/landing_content/vertical_small_spacer_0": T.PANEL, + "landing_content_section/landing_content/vertical_small_spacer_1": T.PANEL, + "landing_content_section/landing_content/info_stack": T.STACK_PANEL, + "landing_content_section/landing_content/vertical_small_spacer_2": T.PANEL, + "horizontal_small_spacer": T.PANEL, + "vertical_small_spacer": T.PANEL, + "vertical_large_spacer": T.PANEL, + "title_stack": T.STACK_PANEL, + "title_stack/title_image_panel": T.STACK_PANEL, + "title_stack/title_space": T.PANEL, + "title_stack/action_button": T.PANEL, + "title_stack/sign_in_button": T.PANEL, + "title_stack/vertical_space2": T.PANEL, + "title_stack/gradient_panel": T.PANEL, + "title_stack/gradient_panel/label_with_gradient": T.PANEL, + "title_stack/gradient_panel/tts_hover": T.BUTTON, + "title_stack/gradient_panel2": T.PANEL, + "title_stack/gradient_panel2/label_with_gradient2": T.PANEL, + "title_stack/gradient_panel2/tts_hover": T.BUTTON, + "subscription_includes_text": T.LABEL, + "free_trial_text": T.LABEL, + "title_space": T.PANEL, + "title_image_panel": T.STACK_PANEL, + "title_image_panel/vertical_small_spacer_1": T.PANEL, + "title_image_panel/title_image_container": T.PANEL, + "title_image_panel/title_image_container/title_image": T.IMAGE, + "title_image_panel/vertical_small_spacer_2": T.PANEL, + "info_stack": T.STACK_PANEL, + "info_stack/info_section_image": T.IMAGE, + "info_stack/info_description_stack_retail": T.STACK_PANEL, + "info_description_stack_retail": T.STACK_PANEL, + "info_description_stack_retail/info_section_stack_1": T.STACK_PANEL, + "info_description_stack_retail/info_section_stack_1/horizontal_small_spacer": T.PANEL, + "info_description_stack_retail/info_section_stack_1/info_section_text_1": T.STACK_PANEL, + "info_section_stack": T.STACK_PANEL, + "info_section_image_with_border": T.IMAGE, + "info_section_text_1": T.STACK_PANEL, + "info_section_text_1/info_section_text": T.PANEL, + "info_section_text_1/vertical_small_spacer_0": T.PANEL, + "info_section_text_1/info_text_bullet_1": T.STACK_PANEL, + "info_section_text_1/vertical_small_spacer_1": T.PANEL, + "info_section_text_1/info_text_bullet_2": T.STACK_PANEL, + "info_section_text_1/vertical_small_spacer_2": T.PANEL, + "info_section_text_1/info_text_bullet_3": T.STACK_PANEL, + "info_section_text_1/vertical_small_spacer_3": T.PANEL, + "info_section_text_1/info_text_bullet_4": T.STACK_PANEL, + "info_section_text_1/vertical_small_spacer_4": T.PANEL, + "info_section_text_1/info_text_bullet_5": T.STACK_PANEL, + "info_section_text_1/vertical_small_spacer_5": T.PANEL, + "info_section_text_1/info_text_bullet_6": T.STACK_PANEL, + "info_section_text_1/vertical_large_spacer_6": T.PANEL, + "info_section_text_2": T.STACK_PANEL, + "info_section_text_2/info_text_bullet_1": T.STACK_PANEL, + "info_section_text_2/vertical_small_spacer_0": T.PANEL, + "info_section_text_2/info_text_bullet_2": T.STACK_PANEL, + "info_section_text_2/vertical_small_spacer_1": T.PANEL, + "info_section_text_2/info_text_bullet_4": T.STACK_PANEL, + "info_section_text_2/vertical_small_spacer_3": T.PANEL, + "info_section_text_2/info_text_bullet_5": T.STACK_PANEL, + "info_section_text": T.STACK_PANEL, + "info_text_bullet": T.STACK_PANEL, + "info_text_bullet/info_text_bullet_bullet": T.LABEL, + "info_text_bullet/bullet_spacer": T.PANEL, + "info_text_bullet/info_text_bullet_body": T.PANEL, + "info_text_bullet/bullet_spacer_end": T.PANEL, + "info_text_unbulletted": T.PANEL, + "info_text_unbulletted/info_text_bullet_body": T.PANEL, + "info_text_body": T.PANEL, + "info_text_body/text_body": T.LABEL, + "info_text_body/tts_border": T.BUTTON, } export type CustomTemplatesType = { - lock_icon: T.IMAGE - templates_scroll_content: T.INPUT_PANEL - "templates_scroll_content/scrolling_panel": T.PANEL - templates_scroll_panel: T.PANEL - "templates_scroll_panel/templates_stack_panel": T.STACK_PANEL - "templates_scroll_panel/templates_stack_panel/templates_item_grid": T.GRID - templates_item_grid: T.GRID - templates_item: T.STACK_PANEL - "templates_item/template_item_button": T.BUTTON - template_item_button: T.BUTTON - template_content_panel: T.STACK_PANEL - "template_content_panel/template_screenshot": T.IMAGE - "template_content_panel/template_text_panel": T.PANEL - "template_content_panel/lock_panel": T.PANEL - "template_content_panel/lock_panel/lock_icon": T.IMAGE - template_screenshot: T.IMAGE - "template_screenshot/picture": T.IMAGE - template_text_panel: T.PANEL - "template_text_panel/text_indent": T.PANEL - "template_text_panel/text_indent/top_side": T.STACK_PANEL - "template_text_panel/text_indent/top_side/template_name": T.LABEL - "template_text_panel/text_indent/top_side/download_text_label": T.LABEL - "template_text_panel/text_indent/bottom_side": T.STACK_PANEL - "template_text_panel/text_indent/bottom_side/template_description": T.LABEL - "template_text_panel/text_indent/bottom_side/template_version": T.LABEL - template_name: T.LABEL - template_download_text: T.LABEL - template_list_text: T.LABEL - template_description: T.LABEL - template_version: T.LABEL - main_panel: T.PANEL - "main_panel/templates_scroll_content": T.INPUT_PANEL - custom_templates_screen: T.SCREEN - custom_templates_screen_content: T.PANEL - "custom_templates_screen_content/dialog": T.PANEL - background: T.IMAGE + "lock_icon": T.IMAGE, + "templates_scroll_content": T.INPUT_PANEL, + "templates_scroll_content/scrolling_panel": T.PANEL, + "templates_scroll_panel": T.PANEL, + "templates_scroll_panel/templates_stack_panel": T.STACK_PANEL, + "templates_scroll_panel/templates_stack_panel/templates_item_grid": T.GRID, + "templates_item_grid": T.GRID, + "templates_item": T.STACK_PANEL, + "templates_item/template_item_button": T.BUTTON, + "template_item_button": T.BUTTON, + "template_content_panel": T.STACK_PANEL, + "template_content_panel/template_screenshot": T.IMAGE, + "template_content_panel/template_text_panel": T.PANEL, + "template_content_panel/lock_panel": T.PANEL, + "template_content_panel/lock_panel/lock_icon": T.IMAGE, + "template_screenshot": T.IMAGE, + "template_screenshot/picture": T.IMAGE, + "template_text_panel": T.PANEL, + "template_text_panel/text_indent": T.PANEL, + "template_text_panel/text_indent/top_side": T.STACK_PANEL, + "template_text_panel/text_indent/top_side/template_name": T.LABEL, + "template_text_panel/text_indent/top_side/download_text_label": T.LABEL, + "template_text_panel/text_indent/bottom_side": T.STACK_PANEL, + "template_text_panel/text_indent/bottom_side/template_description": T.LABEL, + "template_text_panel/text_indent/bottom_side/template_version": T.LABEL, + "template_name": T.LABEL, + "template_download_text": T.LABEL, + "template_list_text": T.LABEL, + "template_description": T.LABEL, + "template_version": T.LABEL, + "main_panel": T.PANEL, + "main_panel/templates_scroll_content": T.INPUT_PANEL, + "custom_templates_screen": T.SCREEN, + "custom_templates_screen_content": T.PANEL, + "custom_templates_screen_content/dialog": T.PANEL, + "background": T.IMAGE, } export type WorldConversionCompleteType = { - background: T.IMAGE - prompt_text: T.PANEL - "prompt_text/message": T.LABEL - converted_world_preview_name: T.LABEL - converted_world_preview_date: T.LABEL - converted_world_preview_game_mode: T.LABEL - converted_world_preview_filesize: T.LABEL - converted_world_preview_text_panel: T.PANEL - "converted_world_preview_text_panel/text_indent": T.PANEL - "converted_world_preview_text_panel/text_indent/top_side": T.STACK_PANEL - "converted_world_preview_text_panel/text_indent/top_side/converted_world_name": T.LABEL - "converted_world_preview_text_panel/text_indent/top_side/converted_world_date": T.LABEL - "converted_world_preview_text_panel/text_indent/bottom_side": T.STACK_PANEL - "converted_world_preview_text_panel/text_indent/bottom_side/converted_world_game_mode": T.LABEL - "converted_world_preview_text_panel/text_indent/bottom_side/converted_world_filesize": T.LABEL - converted_world_preview_panel: T.IMAGE - "converted_world_preview_panel/world_preview_content": T.STACK_PANEL - "converted_world_preview_panel/world_preview_content/converted_world_screenshot": T.IMAGE - "converted_world_preview_panel/world_preview_content/converted_world_screenshot/image_content": T.PANEL - "converted_world_preview_panel/world_preview_content/converted_world_screenshot/image_content/picture": T.IMAGE - "converted_world_preview_panel/world_preview_content/converted_world_text_panel": T.PANEL - main_panel: T.STACK_PANEL - "main_panel/padding_0": T.PANEL - "main_panel/prompt_1": T.PANEL - "main_panel/world_entry_container": T.PANEL - "main_panel/world_entry_container/world_entry_sizer": T.PANEL - "main_panel/world_entry_container/world_entry_sizer/world_entry": T.IMAGE - "main_panel/buttons_panel_sizer": T.PANEL - "main_panel/buttons_panel_sizer/buttons_panel": T.STACK_PANEL - "main_panel/buttons_panel_sizer/buttons_panel/load_game_button": T.BUTTON - "main_panel/buttons_panel_sizer/buttons_panel/padding": T.PANEL - "main_panel/buttons_panel_sizer/buttons_panel/return_button": T.BUTTON - world_conversion_complete_screen_content: T.PANEL - "world_conversion_complete_screen_content/dialog": T.PANEL - world_conversion_complete_screen: T.SCREEN + "background": T.IMAGE, + "prompt_text": T.PANEL, + "prompt_text/message": T.LABEL, + "converted_world_preview_name": T.LABEL, + "converted_world_preview_date": T.LABEL, + "converted_world_preview_game_mode": T.LABEL, + "converted_world_preview_filesize": T.LABEL, + "converted_world_preview_text_panel": T.PANEL, + "converted_world_preview_text_panel/text_indent": T.PANEL, + "converted_world_preview_text_panel/text_indent/top_side": T.STACK_PANEL, + "converted_world_preview_text_panel/text_indent/top_side/converted_world_name": T.LABEL, + "converted_world_preview_text_panel/text_indent/top_side/converted_world_date": T.LABEL, + "converted_world_preview_text_panel/text_indent/bottom_side": T.STACK_PANEL, + "converted_world_preview_text_panel/text_indent/bottom_side/converted_world_game_mode": T.LABEL, + "converted_world_preview_text_panel/text_indent/bottom_side/converted_world_filesize": T.LABEL, + "converted_world_preview_panel": T.IMAGE, + "converted_world_preview_panel/world_preview_content": T.STACK_PANEL, + "converted_world_preview_panel/world_preview_content/converted_world_screenshot": T.IMAGE, + "converted_world_preview_panel/world_preview_content/converted_world_screenshot/image_content": T.PANEL, + "converted_world_preview_panel/world_preview_content/converted_world_screenshot/image_content/picture": T.IMAGE, + "converted_world_preview_panel/world_preview_content/converted_world_text_panel": T.PANEL, + "main_panel": T.STACK_PANEL, + "main_panel/padding_0": T.PANEL, + "main_panel/prompt_1": T.PANEL, + "main_panel/world_entry_container": T.PANEL, + "main_panel/world_entry_container/world_entry_sizer": T.PANEL, + "main_panel/world_entry_container/world_entry_sizer/world_entry": T.IMAGE, + "main_panel/buttons_panel_sizer": T.PANEL, + "main_panel/buttons_panel_sizer/buttons_panel": T.STACK_PANEL, + "main_panel/buttons_panel_sizer/buttons_panel/load_game_button": T.BUTTON, + "main_panel/buttons_panel_sizer/buttons_panel/padding": T.PANEL, + "main_panel/buttons_panel_sizer/buttons_panel/return_button": T.BUTTON, + "world_conversion_complete_screen_content": T.PANEL, + "world_conversion_complete_screen_content/dialog": T.PANEL, + "world_conversion_complete_screen": T.SCREEN, } export type DayOneExperienceIntroType = { - padding_horizontal: T.PANEL - padding_vertical: T.PANEL - label_panel: T.PANEL - "label_panel/label_text": T.LABEL - text_panel: T.STACK_PANEL - "text_panel/padding_00": T.PANEL - "text_panel/tab_content_description_panel": T.PANEL - "text_panel/padding_01": T.PANEL - dialog_image: T.IMAGE - image_panel: T.PANEL - "image_panel/dialog_image_with_border": T.IMAGE - "image_panel/focus_image": T.UNKNOWN - top_tab: T.PANEL - common_tab_navigation_panel_layout: T.STACK_PANEL - tabbed_tab_navigation_panel_layout: T.STACK_PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_01": T.PANEL - "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_left_bumper": T.PANEL - "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_left_bumper/gamepad_helper_left_bumper": T.STACK_PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_02": T.PANEL - "tabbed_tab_navigation_panel_layout/welcome_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_03": T.PANEL - "tabbed_tab_navigation_panel_layout/marketplace_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_04": T.PANEL - "tabbed_tab_navigation_panel_layout/cross_platform_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_05": T.PANEL - "tabbed_tab_navigation_panel_layout/realms_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_06": T.PANEL - "tabbed_tab_navigation_panel_layout/villagers_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_07": T.PANEL - "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_right_bumper": T.PANEL - "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_right_bumper/gamepad_helper_right_bumper": T.STACK_PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_08": T.PANEL - tab_header_image_panel: T.PANEL - "tab_header_image_panel/welcome_tab_content": T.PANEL - "tab_header_image_panel/marketplace_tab_content": T.PANEL - "tab_header_image_panel/cross_platform_tab_content": T.PANEL - "tab_header_image_panel/realms_tab_content": T.PANEL - "tab_header_image_panel/villager_tab_content": T.PANEL - tabbed_tab_content_panel_layout: T.PANEL - "tabbed_tab_content_panel_layout/welcome_tab_content": T.PANEL - "tabbed_tab_content_panel_layout/marketplace_tab_content": T.PANEL - "tabbed_tab_content_panel_layout/cross_platform_tab_content": T.PANEL - "tabbed_tab_content_panel_layout/realms_tab_content": T.PANEL - "tabbed_tab_content_panel_layout/villager_tab_content": T.PANEL - common_tab_header_image_panel: T.PANEL - "common_tab_header_image_panel/header_image": T.IMAGE - common_tab_content_panel: T.PANEL - "common_tab_content_panel/content": T.UNKNOWN - welcome_tab_header_image_panel: T.PANEL - welcome_tab_content_panel: T.PANEL - marketplace_tab_header_image_panel: T.PANEL - marketplace_tab_content_panel: T.PANEL - cross_platform_tab_header_image_panel: T.PANEL - cross_platform_tab_content_panel: T.PANEL - realms_tab_header_image_panel: T.PANEL - realms_tab_content_panel: T.PANEL - villager_tab_header_image_panel: T.PANEL - villager_tab_content_panel: T.PANEL - tab_panel: T.STACK_PANEL - "tab_panel/tab_header_image": T.PANEL - "tab_panel/padding_00": T.PANEL - "tab_panel/tab_navigation_panel": T.STACK_PANEL - "tab_panel/tab_content_panel": T.PANEL - "tab_panel/padding_4": T.PANEL - "tab_panel/continue_button_panel": T.PANEL - "tab_panel/continue_button_panel/continue_button": T.BUTTON - day_one_experience_intro_screen: T.SCREEN - day_one_experience_intro_screen_content: T.PANEL - "day_one_experience_intro_screen_content/welcome_dialog": T.PANEL + "padding_horizontal": T.PANEL, + "padding_vertical": T.PANEL, + "label_panel": T.PANEL, + "label_panel/label_text": T.LABEL, + "text_panel": T.STACK_PANEL, + "text_panel/padding_00": T.PANEL, + "text_panel/tab_content_description_panel": T.PANEL, + "text_panel/padding_01": T.PANEL, + "dialog_image": T.IMAGE, + "image_panel": T.PANEL, + "image_panel/dialog_image_with_border": T.IMAGE, + "image_panel/focus_image": T.UNKNOWN, + "top_tab": T.PANEL, + "common_tab_navigation_panel_layout": T.STACK_PANEL, + "tabbed_tab_navigation_panel_layout": T.STACK_PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_01": T.PANEL, + "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_left_bumper": T.PANEL, + "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_left_bumper/gamepad_helper_left_bumper": T.STACK_PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_02": T.PANEL, + "tabbed_tab_navigation_panel_layout/welcome_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_03": T.PANEL, + "tabbed_tab_navigation_panel_layout/marketplace_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_04": T.PANEL, + "tabbed_tab_navigation_panel_layout/cross_platform_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_05": T.PANEL, + "tabbed_tab_navigation_panel_layout/realms_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_06": T.PANEL, + "tabbed_tab_navigation_panel_layout/villagers_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_07": T.PANEL, + "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_right_bumper": T.PANEL, + "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_right_bumper/gamepad_helper_right_bumper": T.STACK_PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_08": T.PANEL, + "tab_header_image_panel": T.PANEL, + "tab_header_image_panel/welcome_tab_content": T.PANEL, + "tab_header_image_panel/marketplace_tab_content": T.PANEL, + "tab_header_image_panel/cross_platform_tab_content": T.PANEL, + "tab_header_image_panel/realms_tab_content": T.PANEL, + "tab_header_image_panel/villager_tab_content": T.PANEL, + "tabbed_tab_content_panel_layout": T.PANEL, + "tabbed_tab_content_panel_layout/welcome_tab_content": T.PANEL, + "tabbed_tab_content_panel_layout/marketplace_tab_content": T.PANEL, + "tabbed_tab_content_panel_layout/cross_platform_tab_content": T.PANEL, + "tabbed_tab_content_panel_layout/realms_tab_content": T.PANEL, + "tabbed_tab_content_panel_layout/villager_tab_content": T.PANEL, + "common_tab_header_image_panel": T.PANEL, + "common_tab_header_image_panel/header_image": T.IMAGE, + "common_tab_content_panel": T.PANEL, + "common_tab_content_panel/content": T.UNKNOWN, + "welcome_tab_header_image_panel": T.PANEL, + "welcome_tab_content_panel": T.PANEL, + "marketplace_tab_header_image_panel": T.PANEL, + "marketplace_tab_content_panel": T.PANEL, + "cross_platform_tab_header_image_panel": T.PANEL, + "cross_platform_tab_content_panel": T.PANEL, + "realms_tab_header_image_panel": T.PANEL, + "realms_tab_content_panel": T.PANEL, + "villager_tab_header_image_panel": T.PANEL, + "villager_tab_content_panel": T.PANEL, + "tab_panel": T.STACK_PANEL, + "tab_panel/tab_header_image": T.PANEL, + "tab_panel/padding_00": T.PANEL, + "tab_panel/tab_navigation_panel": T.STACK_PANEL, + "tab_panel/tab_content_panel": T.PANEL, + "tab_panel/padding_4": T.PANEL, + "tab_panel/continue_button_panel": T.PANEL, + "tab_panel/continue_button_panel/continue_button": T.BUTTON, + "day_one_experience_intro_screen": T.SCREEN, + "day_one_experience_intro_screen_content": T.PANEL, + "day_one_experience_intro_screen_content/welcome_dialog": T.PANEL, } export type DayOneExperienceType = { - alpha_scroll_background: T.IMAGE - tip_text: T.LABEL - tip_arrow_base: T.IMAGE - tip_arrow_left: T.IMAGE - tip_arrow_right: T.IMAGE - import_time: T.CUSTOM - skins_tip_image: T.IMAGE - "skins_tip_image/arrows": T.STACK_PANEL - "skins_tip_image/arrows/right_arrow": T.IMAGE - "skins_tip_image/arrows/padding": T.PANEL - "skins_tip_image/arrows/left_arrow": T.IMAGE - skins_tip_top_text: T.LABEL - skins_tip_panel: T.STACK_PANEL - "skins_tip_panel/top_text_sizer": T.PANEL - "skins_tip_panel/top_text_sizer/settings_and_skin_text": T.LABEL - "skins_tip_panel/top_text_sizer/settings_text": T.LABEL - "skins_tip_panel/image_sizer": T.PANEL - "skins_tip_panel/image_sizer/image_section": T.PANEL - "skins_tip_panel/bottom_text_sizer": T.PANEL - "skins_tip_panel/bottom_text_sizer/bottom_text": T.LABEL - skin_viewer_panel_text: T.LABEL - skin_viewer_panel: T.PANEL - "skin_viewer_panel/paper_doll_container": T.PANEL - "skin_viewer_panel/paper_doll_container/paper_doll": T.CUSTOM - "skin_viewer_panel/legacy_skin_loading_panel": T.PANEL - "skin_viewer_panel/bottom_skin_text": T.PANEL - "skin_viewer_panel/bottom_skin_text/current_skin_text": T.LABEL - "skin_viewer_panel/bottom_skin_text/default_skin_text": T.LABEL - skin_tip_screen: T.PANEL - "skin_tip_screen/primary_content": T.STACK_PANEL - "skin_tip_screen/primary_content/skin_viewer_panel": T.PANEL - "skin_tip_screen/primary_content/skin_viewer_panel/skin_viewer": T.PANEL - "skin_tip_screen/primary_content/padding": T.PANEL - "skin_tip_screen/primary_content/skins_tip_panel_container": T.PANEL - "skin_tip_screen/primary_content/skins_tip_panel_container/background": T.PANEL - "skin_tip_screen/primary_content/skins_tip_panel_container/skins_tip_panel": T.STACK_PANEL - "skin_tip_screen/no_network_message": T.CUSTOM - legacy_world_item: T.STACK_PANEL - "legacy_world_item/header_button_panel": T.PANEL - legacy_world_item_grid: T.GRID - world_picker_scrolling_content: T.STACK_PANEL - "world_picker_scrolling_content/padding_0": T.PANEL - "world_picker_scrolling_content/skip_button": T.BUTTON - "world_picker_scrolling_content/padding_1": T.PANEL - "world_picker_scrolling_content/loading_legacy_worlds_panel": T.IMAGE - "world_picker_scrolling_content/loading_legacy_worlds_panel/loading_legacy_worlds_label": T.LABEL - "world_picker_scrolling_content/loading_legacy_worlds_panel/padding": T.PANEL - "world_picker_scrolling_content/loading_legacy_worlds_panel/progress_loading_bars": T.IMAGE - "world_picker_scrolling_content/padding_2": T.PANEL - "world_picker_scrolling_content/world_item_grid": T.GRID - world_picker_content: T.PANEL - "world_picker_content/scrolling_panel": T.PANEL - advanced_worlds_screen: T.STACK_PANEL - "advanced_worlds_screen/world_picker": T.PANEL - "advanced_worlds_screen/padding_1": T.PANEL - "advanced_worlds_screen/import_time_container": T.PANEL - "advanced_worlds_screen/import_time_container/import_time_label": T.CUSTOM - next_screen_button_content: T.PANEL - "next_screen_button_content/arrow_panel": T.PANEL - "next_screen_button_content/arrow_panel/label_panel": T.PANEL - "next_screen_button_content/arrow_panel/label_panel/label": T.LABEL - "next_screen_button_content/arrow_panel/image": T.IMAGE - "next_screen_button_content/loading_panel": T.PANEL - next_screen_button: T.BUTTON - next_panel: T.PANEL - "next_panel/next_button": T.BUTTON - common_scrolling_panel: T.PANEL - skin_tip_scroll_panel: T.PANEL - "skin_tip_scroll_panel/skin_tip_screen": T.PANEL - worlds_import_scroll_panel: T.PANEL - "worlds_import_scroll_panel/advanced_screen": T.STACK_PANEL - common_content: T.PANEL - skin_tip_scroll_content: T.PANEL - "skin_tip_scroll_content/scrolling_panel": T.PANEL - world_import_scroll_content: T.PANEL - "world_import_scroll_content/scrolling_panel": T.PANEL - default_tab_content_panel_layout: T.PANEL - "default_tab_content_panel_layout/skin_tip_tab_content": T.PANEL - "default_tab_content_panel_layout/world_import_tab_content": T.PANEL - default_wizard_screen: T.PANEL - "default_wizard_screen/tab_content_panel": T.PANEL - wizard_screen: T.SCREEN - wizard_screen_content: T.PANEL - "wizard_screen_content/main_control": T.PANEL - "wizard_screen_content/next_button": T.PANEL + "alpha_scroll_background": T.IMAGE, + "tip_text": T.LABEL, + "tip_arrow_base": T.IMAGE, + "tip_arrow_left": T.IMAGE, + "tip_arrow_right": T.IMAGE, + "import_time": T.CUSTOM, + "skins_tip_image": T.IMAGE, + "skins_tip_image/arrows": T.STACK_PANEL, + "skins_tip_image/arrows/right_arrow": T.IMAGE, + "skins_tip_image/arrows/padding": T.PANEL, + "skins_tip_image/arrows/left_arrow": T.IMAGE, + "skins_tip_top_text": T.LABEL, + "skins_tip_panel": T.STACK_PANEL, + "skins_tip_panel/top_text_sizer": T.PANEL, + "skins_tip_panel/top_text_sizer/settings_and_skin_text": T.LABEL, + "skins_tip_panel/top_text_sizer/settings_text": T.LABEL, + "skins_tip_panel/image_sizer": T.PANEL, + "skins_tip_panel/image_sizer/image_section": T.PANEL, + "skins_tip_panel/bottom_text_sizer": T.PANEL, + "skins_tip_panel/bottom_text_sizer/bottom_text": T.LABEL, + "skin_viewer_panel_text": T.LABEL, + "skin_viewer_panel": T.PANEL, + "skin_viewer_panel/paper_doll_container": T.PANEL, + "skin_viewer_panel/paper_doll_container/paper_doll": T.CUSTOM, + "skin_viewer_panel/legacy_skin_loading_panel": T.PANEL, + "skin_viewer_panel/bottom_skin_text": T.PANEL, + "skin_viewer_panel/bottom_skin_text/current_skin_text": T.LABEL, + "skin_viewer_panel/bottom_skin_text/default_skin_text": T.LABEL, + "skin_tip_screen": T.PANEL, + "skin_tip_screen/primary_content": T.STACK_PANEL, + "skin_tip_screen/primary_content/skin_viewer_panel": T.PANEL, + "skin_tip_screen/primary_content/skin_viewer_panel/skin_viewer": T.PANEL, + "skin_tip_screen/primary_content/padding": T.PANEL, + "skin_tip_screen/primary_content/skins_tip_panel_container": T.PANEL, + "skin_tip_screen/primary_content/skins_tip_panel_container/background": T.PANEL, + "skin_tip_screen/primary_content/skins_tip_panel_container/skins_tip_panel": T.STACK_PANEL, + "skin_tip_screen/no_network_message": T.CUSTOM, + "legacy_world_item": T.STACK_PANEL, + "legacy_world_item/header_button_panel": T.PANEL, + "legacy_world_item_grid": T.GRID, + "world_picker_scrolling_content": T.STACK_PANEL, + "world_picker_scrolling_content/padding_0": T.PANEL, + "world_picker_scrolling_content/skip_button": T.BUTTON, + "world_picker_scrolling_content/padding_1": T.PANEL, + "world_picker_scrolling_content/loading_legacy_worlds_panel": T.IMAGE, + "world_picker_scrolling_content/loading_legacy_worlds_panel/loading_legacy_worlds_label": T.LABEL, + "world_picker_scrolling_content/loading_legacy_worlds_panel/padding": T.PANEL, + "world_picker_scrolling_content/loading_legacy_worlds_panel/progress_loading_bars": T.IMAGE, + "world_picker_scrolling_content/padding_2": T.PANEL, + "world_picker_scrolling_content/world_item_grid": T.GRID, + "world_picker_content": T.PANEL, + "world_picker_content/scrolling_panel": T.PANEL, + "advanced_worlds_screen": T.STACK_PANEL, + "advanced_worlds_screen/world_picker": T.PANEL, + "advanced_worlds_screen/padding_1": T.PANEL, + "advanced_worlds_screen/import_time_container": T.PANEL, + "advanced_worlds_screen/import_time_container/import_time_label": T.CUSTOM, + "next_screen_button_content": T.PANEL, + "next_screen_button_content/arrow_panel": T.PANEL, + "next_screen_button_content/arrow_panel/label_panel": T.PANEL, + "next_screen_button_content/arrow_panel/label_panel/label": T.LABEL, + "next_screen_button_content/arrow_panel/image": T.IMAGE, + "next_screen_button_content/loading_panel": T.PANEL, + "next_screen_button": T.BUTTON, + "next_panel": T.PANEL, + "next_panel/next_button": T.BUTTON, + "common_scrolling_panel": T.PANEL, + "skin_tip_scroll_panel": T.PANEL, + "skin_tip_scroll_panel/skin_tip_screen": T.PANEL, + "worlds_import_scroll_panel": T.PANEL, + "worlds_import_scroll_panel/advanced_screen": T.STACK_PANEL, + "common_content": T.PANEL, + "skin_tip_scroll_content": T.PANEL, + "skin_tip_scroll_content/scrolling_panel": T.PANEL, + "world_import_scroll_content": T.PANEL, + "world_import_scroll_content/scrolling_panel": T.PANEL, + "default_tab_content_panel_layout": T.PANEL, + "default_tab_content_panel_layout/skin_tip_tab_content": T.PANEL, + "default_tab_content_panel_layout/world_import_tab_content": T.PANEL, + "default_wizard_screen": T.PANEL, + "default_wizard_screen/tab_content_panel": T.PANEL, + "wizard_screen": T.SCREEN, + "wizard_screen_content": T.PANEL, + "wizard_screen_content/main_control": T.PANEL, + "wizard_screen_content/next_button": T.PANEL, } export type DeathType = { - a_button_panel: T.PANEL - "a_button_panel/gamepad_helper_a": T.STACK_PANEL - you_died_panel: T.PANEL - "you_died_panel/you_died_label": T.LABEL - death_reason_panel: T.PANEL - "death_reason_panel/death_reason_label": T.LABEL - labels_panel: T.STACK_PANEL - "labels_panel/fill_1": T.PANEL - "labels_panel/you_died": T.PANEL - "labels_panel/padd_1": T.PANEL - "labels_panel/death_reason": T.PANEL - "labels_panel/padd_2": T.PANEL - buttons_panel: T.STACK_PANEL - "buttons_panel/padd_0": T.PANEL - "buttons_panel/respawn_button": T.BUTTON - "buttons_panel/padd_1": T.PANEL - "buttons_panel/main_menu_button": T.BUTTON - "buttons_panel/fill_2": T.PANEL - "buttons_panel/select_button": T.PANEL - death_screen_content: T.PANEL - "death_screen_content/death_screen_buttons_and_stuff": T.PANEL - "death_screen_content/death_screen_buttons_and_stuff/labels_panel": T.STACK_PANEL - "death_screen_content/death_screen_buttons_and_stuff/buttons_panel": T.STACK_PANEL - "death_screen_content/loading_label": T.LABEL - background_gradient: T.CUSTOM - death_screen: T.SCREEN + "a_button_panel": T.PANEL, + "a_button_panel/gamepad_helper_a": T.STACK_PANEL, + "you_died_panel": T.PANEL, + "you_died_panel/you_died_label": T.LABEL, + "death_reason_panel": T.PANEL, + "death_reason_panel/death_reason_label": T.LABEL, + "labels_panel": T.STACK_PANEL, + "labels_panel/fill_1": T.PANEL, + "labels_panel/you_died": T.PANEL, + "labels_panel/padd_1": T.PANEL, + "labels_panel/death_reason": T.PANEL, + "labels_panel/padd_2": T.PANEL, + "buttons_panel": T.STACK_PANEL, + "buttons_panel/padd_0": T.PANEL, + "buttons_panel/respawn_button": T.BUTTON, + "buttons_panel/padd_1": T.PANEL, + "buttons_panel/main_menu_button": T.BUTTON, + "buttons_panel/fill_2": T.PANEL, + "buttons_panel/select_button": T.PANEL, + "death_screen_content": T.PANEL, + "death_screen_content/death_screen_buttons_and_stuff": T.PANEL, + "death_screen_content/death_screen_buttons_and_stuff/labels_panel": T.STACK_PANEL, + "death_screen_content/death_screen_buttons_and_stuff/buttons_panel": T.STACK_PANEL, + "death_screen_content/loading_label": T.LABEL, + "background_gradient": T.CUSTOM, + "death_screen": T.SCREEN, } export type DebugScreenType = { - access_button: T.BUTTON - special_render: T.CUSTOM - content_panel: T.PANEL - "content_panel/access_button": T.BUTTON - "content_panel/special_render": T.CUSTOM - debug_screen: T.SCREEN + "access_button": T.BUTTON, + "special_render": T.CUSTOM, + "content_panel": T.PANEL, + "content_panel/access_button": T.BUTTON, + "content_panel/special_render": T.CUSTOM, + "debug_screen": T.SCREEN, } export type DevConsoleType = { - keyboard_button_content: T.PANEL - "keyboard_button_content/keyboard_image": T.IMAGE - keyboard_button: T.BUTTON - button_content: T.PANEL - "button_content/image": T.UNKNOWN - up_arrow: T.IMAGE - down_arrow: T.IMAGE - send_button: T.BUTTON - sent_message_up_button: T.BUTTON - sent_message_down_button: T.BUTTON - chat_stack_panel: T.STACK_PANEL - "chat_stack_panel/text_box": T.EDIT_BOX - "chat_stack_panel/send_button": T.BUTTON - "chat_stack_panel/sent_message_up_button": T.BUTTON - "chat_stack_panel/sent_message_down_button": T.BUTTON - main_stack_panel: T.STACK_PANEL - "main_stack_panel/messages_scrolling_panel": T.PANEL - "main_stack_panel/chat_stack_panel": T.STACK_PANEL - main_with_intellisense: T.PANEL - "main_with_intellisense/main_stack": T.STACK_PANEL - "main_with_intellisense/commands_panel": T.PANEL - dev_console_dialog: T.PANEL - dev_console_screen: T.SCREEN + "keyboard_button_content": T.PANEL, + "keyboard_button_content/keyboard_image": T.IMAGE, + "keyboard_button": T.BUTTON, + "button_content": T.PANEL, + "button_content/image": T.UNKNOWN, + "up_arrow": T.IMAGE, + "down_arrow": T.IMAGE, + "send_button": T.BUTTON, + "sent_message_up_button": T.BUTTON, + "sent_message_down_button": T.BUTTON, + "chat_stack_panel": T.STACK_PANEL, + "chat_stack_panel/text_box": T.EDIT_BOX, + "chat_stack_panel/send_button": T.BUTTON, + "chat_stack_panel/sent_message_up_button": T.BUTTON, + "chat_stack_panel/sent_message_down_button": T.BUTTON, + "main_stack_panel": T.STACK_PANEL, + "main_stack_panel/messages_scrolling_panel": T.PANEL, + "main_stack_panel/chat_stack_panel": T.STACK_PANEL, + "main_with_intellisense": T.PANEL, + "main_with_intellisense/main_stack": T.STACK_PANEL, + "main_with_intellisense/commands_panel": T.PANEL, + "dev_console_dialog": T.PANEL, + "dev_console_screen": T.SCREEN, } export type DisconnectType = { - disconnect_screen_text: T.LABEL - disconnect_text: T.LABEL - disconnect_title_text: T.LABEL - title_panel: T.PANEL - "title_panel/disconnect_title_text": T.LABEL - "title_panel/disconnect_text": T.LABEL - menu_button_template: T.BUTTON - continue_button: T.BUTTON - check_store_button: T.BUTTON - exit_button: T.BUTTON - ok_button: T.BUTTON - open_uri_button: T.BUTTON - cancel_button: T.BUTTON - button_panel: T.STACK_PANEL - "button_panel/open_uri_button_panel": T.PANEL - "button_panel/open_uri_button_panel/open_uri_button": T.BUTTON - "button_panel/open_button_panel": T.PANEL - "button_panel/open_button_panel/ok_button": T.BUTTON - gamepad_helpers: T.PANEL - "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL - disconnect_screen: T.SCREEN - disconnect_screen_content: T.PANEL - "disconnect_screen_content/title_panel": T.PANEL - "disconnect_screen_content/gamepad_helpers": T.PANEL - spacing_gap: T.PANEL - realms_disconnect_screen: T.SCREEN - realms_disconnect_button_panel: T.STACK_PANEL - "realms_disconnect_button_panel/open_uri_button_panel": T.PANEL - "realms_disconnect_button_panel/open_uri_button_panel/open_uri_button": T.BUTTON - "realms_disconnect_button_panel/realm_buttons_panel": T.PANEL - "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons": T.STACK_PANEL - "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/check_store_button": T.BUTTON - "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/spacing_gap": T.PANEL - "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/exit_button": T.BUTTON - realms_warning_screen: T.SCREEN - realms_warning_button_panel: T.STACK_PANEL - "realms_warning_button_panel/continue_button_panel": T.PANEL - "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel": T.STACK_PANEL - "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/check_store_button": T.BUTTON - "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/spacing_gap": T.PANEL - "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/continue_button": T.BUTTON - "realms_warning_button_panel/realms_warning_button_gap": T.PANEL - "realms_warning_button_panel/cancel_button_panel": T.PANEL - "realms_warning_button_panel/cancel_button_panel/cancel_button": T.BUTTON - open_account_setting_button: T.BUTTON + "disconnect_screen_text": T.LABEL, + "disconnect_text": T.LABEL, + "disconnect_title_text": T.LABEL, + "title_panel": T.PANEL, + "title_panel/disconnect_title_text": T.LABEL, + "title_panel/disconnect_text": T.LABEL, + "menu_button_template": T.BUTTON, + "continue_button": T.BUTTON, + "check_store_button": T.BUTTON, + "exit_button": T.BUTTON, + "ok_button": T.BUTTON, + "open_uri_button": T.BUTTON, + "cancel_button": T.BUTTON, + "button_panel": T.STACK_PANEL, + "button_panel/open_uri_button_panel": T.PANEL, + "button_panel/open_uri_button_panel/open_uri_button": T.BUTTON, + "button_panel/open_button_panel": T.PANEL, + "button_panel/open_button_panel/ok_button": T.BUTTON, + "gamepad_helpers": T.PANEL, + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL, + "disconnect_screen": T.SCREEN, + "disconnect_screen_content": T.PANEL, + "disconnect_screen_content/title_panel": T.PANEL, + "disconnect_screen_content/gamepad_helpers": T.PANEL, + "spacing_gap": T.PANEL, + "realms_disconnect_screen": T.SCREEN, + "realms_disconnect_button_panel": T.STACK_PANEL, + "realms_disconnect_button_panel/open_uri_button_panel": T.PANEL, + "realms_disconnect_button_panel/open_uri_button_panel/open_uri_button": T.BUTTON, + "realms_disconnect_button_panel/realm_buttons_panel": T.PANEL, + "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons": T.STACK_PANEL, + "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/check_store_button": T.BUTTON, + "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/spacing_gap": T.PANEL, + "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/exit_button": T.BUTTON, + "realms_warning_screen": T.SCREEN, + "realms_warning_button_panel": T.STACK_PANEL, + "realms_warning_button_panel/continue_button_panel": T.PANEL, + "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel": T.STACK_PANEL, + "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/check_store_button": T.BUTTON, + "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/spacing_gap": T.PANEL, + "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/continue_button": T.BUTTON, + "realms_warning_button_panel/realms_warning_button_gap": T.PANEL, + "realms_warning_button_panel/cancel_button_panel": T.PANEL, + "realms_warning_button_panel/cancel_button_panel/cancel_button": T.BUTTON, + "open_account_setting_button": T.BUTTON, } export type DisplayLoggedErrorType = { - display_logged_error_screen: T.SCREEN - factory_panel: T.PANEL - "factory_panel/error_dialog_factory": T.FACTORY - display_logged_error_modal: T.PANEL - error_message_stack: T.STACK_PANEL - "error_message_stack/error_message": T.LABEL - "error_message_stack/error_count": T.LABEL - input_blocking_button_base: T.BUTTON - details_button: T.BUTTON - dismiss_button: T.BUTTON - error_details_modal: T.PANEL - copy_path_button: T.BUTTON - hide_error_details_button: T.BUTTON - error_stack_scrolling_panel: T.PANEL - error_stack: T.STACK_PANEL - error_controller_panel: T.PANEL - "error_controller_panel/error_message": T.STACK_PANEL - "error_controller_panel/controller_button": T.BUTTON - "error_controller_panel/controller_button/hover": T.IMAGE - "error_controller_panel/controller_button/pressed": T.IMAGE - error_base: T.STACK_PANEL - "error_base/error_message": T.LABEL - "error_base/expand_button": T.BUTTON - error_short: T.PANEL - error_expanded: T.PANEL + "display_logged_error_screen": T.SCREEN, + "factory_panel": T.PANEL, + "factory_panel/error_dialog_factory": T.FACTORY, + "display_logged_error_modal": T.PANEL, + "error_message_stack": T.STACK_PANEL, + "error_message_stack/error_message": T.LABEL, + "error_message_stack/error_count": T.LABEL, + "input_blocking_button_base": T.BUTTON, + "details_button": T.BUTTON, + "dismiss_button": T.BUTTON, + "error_details_modal": T.PANEL, + "copy_path_button": T.BUTTON, + "hide_error_details_button": T.BUTTON, + "error_stack_scrolling_panel": T.PANEL, + "error_stack": T.STACK_PANEL, + "error_controller_panel": T.PANEL, + "error_controller_panel/error_message": T.STACK_PANEL, + "error_controller_panel/controller_button": T.BUTTON, + "error_controller_panel/controller_button/hover": T.IMAGE, + "error_controller_panel/controller_button/pressed": T.IMAGE, + "error_base": T.STACK_PANEL, + "error_base/error_message": T.LABEL, + "error_base/expand_button": T.BUTTON, + "error_short": T.PANEL, + "error_expanded": T.PANEL, } export type DiscoveryDialogType = { - service_body_label: T.LABEL - service_button: T.BUTTON - service_buttons: T.STACK_PANEL - content: T.STACK_PANEL - "content/body_text": T.PANEL - "content/text_to_button_padding": T.PANEL - "content/buttons": T.STACK_PANEL - service_dialog: T.INPUT_PANEL - discovery_dialog_factory: T.FACTORY + "service_body_label": T.LABEL, + "service_button": T.BUTTON, + "service_buttons": T.STACK_PANEL, + "content": T.STACK_PANEL, + "content/body_text": T.PANEL, + "content/text_to_button_padding": T.PANEL, + "content/buttons": T.STACK_PANEL, + "service_dialog": T.INPUT_PANEL, + "discovery_dialog_factory": T.FACTORY, } export type EduFeaturedType = { - featured_button_content: T.PANEL - "featured_button_content/button_label": T.LABEL - featured_button: T.BUTTON + "featured_button_content": T.PANEL, + "featured_button_content/button_label": T.LABEL, + "featured_button": T.BUTTON, } export type EduQuitButtonType = { - quit_button: T.BUTTON + "quit_button": T.BUTTON, } export type PersonaEmoteType = { - emote_wheel_screen: T.SCREEN - emote_wheel_touch_zone: T.BUTTON - emote_wheel_screen_content: T.STACK_PANEL - "emote_wheel_screen_content/top_padding": T.PANEL - "emote_wheel_screen_content/root_panel": T.PANEL - "emote_wheel_screen_content/root_panel/emotes_panel": T.PANEL - "emote_wheel_screen_content/instruction_padding": T.PANEL - "emote_wheel_screen_content/instruction_panel": T.PANEL - "emote_wheel_screen_content/instruction_panel/instruction_background": T.IMAGE - "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack": T.STACK_PANEL - "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/instruction_label_gamepad": T.LABEL - "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers": T.PANEL - "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack": T.STACK_PANEL - "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_start": T.STACK_PANEL - "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_exit_panel": T.PANEL - "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_exit_panel/gamepad_exit": T.LABEL - "emote_wheel_screen_content/instruction_panel/instruction_background/instruction_label_keyboard": T.LABEL - "emote_wheel_screen_content/instruction_panel/instruction_background/instruction_label_touch": T.LABEL - "emote_wheel_screen_content/dressing_room_button_panel": T.PANEL - "emote_wheel_screen_content/dressing_room_button_panel/dressing_room_button": T.BUTTON - "emote_wheel_screen_content/bottom_padding": T.PANEL - swap_emote_button: T.BUTTON + "emote_wheel_screen": T.SCREEN, + "emote_wheel_touch_zone": T.BUTTON, + "emote_wheel_screen_content": T.STACK_PANEL, + "emote_wheel_screen_content/top_padding": T.PANEL, + "emote_wheel_screen_content/root_panel": T.PANEL, + "emote_wheel_screen_content/root_panel/emotes_panel": T.PANEL, + "emote_wheel_screen_content/instruction_padding": T.PANEL, + "emote_wheel_screen_content/instruction_panel": T.PANEL, + "emote_wheel_screen_content/instruction_panel/instruction_background": T.IMAGE, + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack": T.STACK_PANEL, + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/instruction_label_gamepad": T.LABEL, + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers": T.PANEL, + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack": T.STACK_PANEL, + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_start": T.STACK_PANEL, + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_exit_panel": T.PANEL, + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_exit_panel/gamepad_exit": T.LABEL, + "emote_wheel_screen_content/instruction_panel/instruction_background/instruction_label_keyboard": T.LABEL, + "emote_wheel_screen_content/instruction_panel/instruction_background/instruction_label_touch": T.LABEL, + "emote_wheel_screen_content/dressing_room_button_panel": T.PANEL, + "emote_wheel_screen_content/dressing_room_button_panel/dressing_room_button": T.BUTTON, + "emote_wheel_screen_content/bottom_padding": T.PANEL, + "swap_emote_button": T.BUTTON, } export type EnchantingType = { - enchanting_image: T.IMAGE - lapis_image: T.IMAGE - dust_image: T.IMAGE - dust_image_selectable: T.IMAGE - dust_image_unselectable: T.IMAGE - dust_template: T.PANEL - "dust_template/dust_image_selectable": T.IMAGE - "dust_template/dust_image_unselectable": T.IMAGE - dust_panel: T.GRID - "dust_panel/a": T.PANEL - "dust_panel/b": T.PANEL - "dust_panel/c": T.PANEL - background_with_hover_text: T.IMAGE - "background_with_hover_text/hover_text": T.CUSTOM - dark_background: T.IMAGE - dark_background_with_hover_text: T.IMAGE - active_background: T.IMAGE - active_background_with_hover_text: T.IMAGE - enchant_runes: T.LABEL - enchant_cost: T.LABEL - success_runes: T.LABEL - fail_runes: T.LABEL - success_cost: T.LABEL - fail_cost: T.LABEL - enchanting_label: T.LABEL - base_button: T.BUTTON - unselectable_button: T.BUTTON - "unselectable_button/default": T.IMAGE - "unselectable_button/hover": T.IMAGE - "unselectable_button/pressed": T.IMAGE - "unselectable_button/rune_text": T.LABEL - "unselectable_button/enchant_cost": T.LABEL - selectable_button: T.BUTTON - "selectable_button/default": T.IMAGE - "selectable_button/hover": T.IMAGE - "selectable_button/pressed": T.IMAGE - "selectable_button/rune_text": T.LABEL - "selectable_button/enchant_cost": T.LABEL - enchant_button_panel: T.PANEL - "enchant_button_panel/dark_background": T.IMAGE - "enchant_button_panel/unselectable_button": T.BUTTON - "enchant_button_panel/selectable_button": T.BUTTON - enchanting_panel_top_half: T.PANEL - "enchanting_panel_top_half/enchanting_label": T.LABEL - "enchanting_panel_top_half/enchanting_book_panel": T.PANEL - "enchanting_panel_top_half/enchanting_book_panel/enchanting_book": T.CUSTOM - "enchanting_panel_top_half/item_grid": T.GRID - "enchanting_panel_top_half/item_grid/item_slot": T.INPUT_PANEL - "enchanting_panel_top_half/lapis_grid": T.GRID - "enchanting_panel_top_half/lapis_grid/lapis": T.INPUT_PANEL - "enchanting_panel_top_half/grid_panel": T.PANEL - "enchanting_panel_top_half/grid_panel/indent": T.IMAGE - "enchanting_panel_top_half/grid_panel/dust_panel": T.GRID - "enchanting_panel_top_half/grid_panel/enchantments_grid": T.GRID - enchanting_panel: T.PANEL - "enchanting_panel/container_gamepad_helpers": T.STACK_PANEL - "enchanting_panel/selected_item_details_factory": T.FACTORY - "enchanting_panel/item_lock_notification_factory": T.FACTORY - "enchanting_panel/root_panel": T.INPUT_PANEL - "enchanting_panel/root_panel/common_panel": T.PANEL - "enchanting_panel/root_panel/enchanting_screen_inventory": T.PANEL - "enchanting_panel/root_panel/enchanting_screen_inventory/enchanting_panel_top_half": T.PANEL - "enchanting_panel/root_panel/enchanting_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL - "enchanting_panel/root_panel/enchanting_screen_inventory/hotbar_grid": T.GRID - "enchanting_panel/root_panel/enchanting_screen_inventory/inventory_take_progress_icon_button": T.BUTTON - "enchanting_panel/root_panel/inventory_selected_icon_button": T.BUTTON - "enchanting_panel/root_panel/gamepad_cursor": T.BUTTON - "enchanting_panel/flying_item_renderer": T.CUSTOM - enchanting_screen: T.SCREEN + "enchanting_image": T.IMAGE, + "lapis_image": T.IMAGE, + "dust_image": T.IMAGE, + "dust_image_selectable": T.IMAGE, + "dust_image_unselectable": T.IMAGE, + "dust_template": T.PANEL, + "dust_template/dust_image_selectable": T.IMAGE, + "dust_template/dust_image_unselectable": T.IMAGE, + "dust_panel": T.GRID, + "dust_panel/a": T.PANEL, + "dust_panel/b": T.PANEL, + "dust_panel/c": T.PANEL, + "background_with_hover_text": T.IMAGE, + "background_with_hover_text/hover_text": T.CUSTOM, + "dark_background": T.IMAGE, + "dark_background_with_hover_text": T.IMAGE, + "active_background": T.IMAGE, + "active_background_with_hover_text": T.IMAGE, + "enchant_runes": T.LABEL, + "enchant_cost": T.LABEL, + "success_runes": T.LABEL, + "fail_runes": T.LABEL, + "success_cost": T.LABEL, + "fail_cost": T.LABEL, + "enchanting_label": T.LABEL, + "base_button": T.BUTTON, + "unselectable_button": T.BUTTON, + "unselectable_button/default": T.IMAGE, + "unselectable_button/hover": T.IMAGE, + "unselectable_button/pressed": T.IMAGE, + "unselectable_button/rune_text": T.LABEL, + "unselectable_button/enchant_cost": T.LABEL, + "selectable_button": T.BUTTON, + "selectable_button/default": T.IMAGE, + "selectable_button/hover": T.IMAGE, + "selectable_button/pressed": T.IMAGE, + "selectable_button/rune_text": T.LABEL, + "selectable_button/enchant_cost": T.LABEL, + "enchant_button_panel": T.PANEL, + "enchant_button_panel/dark_background": T.IMAGE, + "enchant_button_panel/unselectable_button": T.BUTTON, + "enchant_button_panel/selectable_button": T.BUTTON, + "enchanting_panel_top_half": T.PANEL, + "enchanting_panel_top_half/enchanting_label": T.LABEL, + "enchanting_panel_top_half/enchanting_book_panel": T.PANEL, + "enchanting_panel_top_half/enchanting_book_panel/enchanting_book": T.CUSTOM, + "enchanting_panel_top_half/item_grid": T.GRID, + "enchanting_panel_top_half/item_grid/item_slot": T.INPUT_PANEL, + "enchanting_panel_top_half/lapis_grid": T.GRID, + "enchanting_panel_top_half/lapis_grid/lapis": T.INPUT_PANEL, + "enchanting_panel_top_half/grid_panel": T.PANEL, + "enchanting_panel_top_half/grid_panel/indent": T.IMAGE, + "enchanting_panel_top_half/grid_panel/dust_panel": T.GRID, + "enchanting_panel_top_half/grid_panel/enchantments_grid": T.GRID, + "enchanting_panel": T.PANEL, + "enchanting_panel/container_gamepad_helpers": T.STACK_PANEL, + "enchanting_panel/selected_item_details_factory": T.FACTORY, + "enchanting_panel/item_lock_notification_factory": T.FACTORY, + "enchanting_panel/root_panel": T.INPUT_PANEL, + "enchanting_panel/root_panel/common_panel": T.PANEL, + "enchanting_panel/root_panel/enchanting_screen_inventory": T.PANEL, + "enchanting_panel/root_panel/enchanting_screen_inventory/enchanting_panel_top_half": T.PANEL, + "enchanting_panel/root_panel/enchanting_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL, + "enchanting_panel/root_panel/enchanting_screen_inventory/hotbar_grid": T.GRID, + "enchanting_panel/root_panel/enchanting_screen_inventory/inventory_take_progress_icon_button": T.BUTTON, + "enchanting_panel/root_panel/inventory_selected_icon_button": T.BUTTON, + "enchanting_panel/root_panel/gamepad_cursor": T.BUTTON, + "enchanting_panel/flying_item_renderer": T.CUSTOM, + "enchanting_screen": T.SCREEN, } export type EnchantingPocketType = { - generic_label: T.LABEL - background_image: T.IMAGE - inventory_grid: T.GRID - inventory_content: T.PANEL - "inventory_content/scrolling_panel": T.PANEL - lapis_image: T.IMAGE - enchanting_slots_panel: T.PANEL - "enchanting_slots_panel/input_slot": T.INPUT_PANEL - "enchanting_slots_panel/lapis_slot": T.INPUT_PANEL - enchant_text_runes: T.LABEL - show_highlighted_slot_control: T.IMAGE - show_highlighted_hover_slot_control: T.IMAGE - inactive_background: T.IMAGE - unselectable_button: T.BUTTON - "unselectable_button/default": T.IMAGE - "unselectable_button/hover": T.IMAGE - "unselectable_button/pressed": T.IMAGE - "unselectable_button/enchant_cost": T.LABEL - selectable_button: T.BUTTON - "selectable_button/default": T.IMAGE - "selectable_button/hover": T.IMAGE - "selectable_button/pressed": T.IMAGE - "selectable_button/enchant_cost": T.LABEL - enchant_button_panel: T.PANEL - "enchant_button_panel/inactive_background": T.IMAGE - "enchant_button_panel/unselectable_button": T.BUTTON - "enchant_button_panel/selectable_button": T.BUTTON - "enchant_button_panel/dust": T.PANEL - "enchant_button_panel/rune_text": T.LABEL - "enchant_button_panel/highlight": T.IMAGE - enchant_selection_panel: T.PANEL - "enchant_selection_panel/grid": T.GRID - "enchant_selection_panel/grid/button1": T.PANEL - "enchant_selection_panel/grid/button2": T.PANEL - "enchant_selection_panel/grid/button3": T.PANEL - item_renderer: T.CUSTOM - confirm_default_control: T.IMAGE - enchanting_confirm_button: T.BUTTON - "enchanting_confirm_button/default": T.IMAGE - "enchanting_confirm_button/hover": T.IMAGE - "enchanting_confirm_button/pressed": T.IMAGE - "enchanting_confirm_button/arrow_active": T.IMAGE - "enchanting_confirm_button/arrow_inactive": T.IMAGE - "enchanting_confirm_button/input_item_renderer": T.CUSTOM - "enchanting_confirm_button/output_item_renderer": T.CUSTOM - enchanting_confirm_panel: T.PANEL - "enchanting_confirm_panel/confirm": T.BUTTON - "enchanting_confirm_panel/enchantment_hint_text": T.LABEL - enchanting_book_contents_panel: T.PANEL - "enchanting_book_contents_panel/enchanting_book": T.CUSTOM - "enchanting_book_contents_panel/player_level_label": T.LABEL - "enchanting_book_contents_panel/level_label": T.LABEL - enchanting_book_panel: T.PANEL - "enchanting_book_panel/enchanting_slots_panel": T.PANEL - enchanting_slots_and_selection: T.STACK_PANEL - "enchanting_slots_and_selection/enchanting_slots_panel": T.PANEL - "enchanting_slots_and_selection/pad1": T.PANEL - "enchanting_slots_and_selection/enchant_selection_panel": T.PANEL - enchanting_contents_panel: T.STACK_PANEL - "enchanting_contents_panel/fill1": T.PANEL - "enchanting_contents_panel/enchanting_book_panel": T.PANEL - "enchanting_contents_panel/pad1": T.PANEL - "enchanting_contents_panel/enchanting_slots_and_selection": T.STACK_PANEL - "enchanting_contents_panel/pad2": T.PANEL - "enchanting_contents_panel/enchanting_confirm_panel": T.PANEL - "enchanting_contents_panel/fill2": T.PANEL - header: T.PANEL - "header/header_background": T.IMAGE - "header/legacy_pocket_close_button": T.BUTTON - "header/panel": T.PANEL - "header/panel/title_label": T.LABEL - inventory_and_enchanting_panel: T.PANEL - "inventory_and_enchanting_panel/inventory_half_screen": T.PANEL - "inventory_and_enchanting_panel/inventory_half_screen/inventory_content": T.PANEL - "inventory_and_enchanting_panel/enchanting_half_screen": T.PANEL - "inventory_and_enchanting_panel/enchanting_half_screen/enchanting_content": T.STACK_PANEL - header_and_content_stack_panel: T.STACK_PANEL - "header_and_content_stack_panel/header": T.PANEL - "header_and_content_stack_panel/inventory_and_enchanting_panel": T.PANEL - error_text_panel: T.PANEL - "error_text_panel/item_text_label": T.LABEL - enchanting_panel: T.PANEL - "enchanting_panel/bg": T.IMAGE - "enchanting_panel/root_panel": T.INPUT_PANEL - "enchanting_panel/header_and_content_stack_panel": T.STACK_PANEL - "enchanting_panel/container_gamepad_helpers": T.STACK_PANEL - "enchanting_panel/inventory_selected_icon_button": T.BUTTON - "enchanting_panel/hold_icon": T.BUTTON - "enchanting_panel/selected_item_details_factory": T.FACTORY - "enchanting_panel/item_lock_notification_factory": T.FACTORY - "enchanting_panel/flying_item_renderer": T.CUSTOM + "generic_label": T.LABEL, + "background_image": T.IMAGE, + "inventory_grid": T.GRID, + "inventory_content": T.PANEL, + "inventory_content/scrolling_panel": T.PANEL, + "lapis_image": T.IMAGE, + "enchanting_slots_panel": T.PANEL, + "enchanting_slots_panel/input_slot": T.INPUT_PANEL, + "enchanting_slots_panel/lapis_slot": T.INPUT_PANEL, + "enchant_text_runes": T.LABEL, + "show_highlighted_slot_control": T.IMAGE, + "show_highlighted_hover_slot_control": T.IMAGE, + "inactive_background": T.IMAGE, + "unselectable_button": T.BUTTON, + "unselectable_button/default": T.IMAGE, + "unselectable_button/hover": T.IMAGE, + "unselectable_button/pressed": T.IMAGE, + "unselectable_button/enchant_cost": T.LABEL, + "selectable_button": T.BUTTON, + "selectable_button/default": T.IMAGE, + "selectable_button/hover": T.IMAGE, + "selectable_button/pressed": T.IMAGE, + "selectable_button/enchant_cost": T.LABEL, + "enchant_button_panel": T.PANEL, + "enchant_button_panel/inactive_background": T.IMAGE, + "enchant_button_panel/unselectable_button": T.BUTTON, + "enchant_button_panel/selectable_button": T.BUTTON, + "enchant_button_panel/dust": T.PANEL, + "enchant_button_panel/rune_text": T.LABEL, + "enchant_button_panel/highlight": T.IMAGE, + "enchant_selection_panel": T.PANEL, + "enchant_selection_panel/grid": T.GRID, + "enchant_selection_panel/grid/button1": T.PANEL, + "enchant_selection_panel/grid/button2": T.PANEL, + "enchant_selection_panel/grid/button3": T.PANEL, + "item_renderer": T.CUSTOM, + "confirm_default_control": T.IMAGE, + "enchanting_confirm_button": T.BUTTON, + "enchanting_confirm_button/default": T.IMAGE, + "enchanting_confirm_button/hover": T.IMAGE, + "enchanting_confirm_button/pressed": T.IMAGE, + "enchanting_confirm_button/arrow_active": T.IMAGE, + "enchanting_confirm_button/arrow_inactive": T.IMAGE, + "enchanting_confirm_button/input_item_renderer": T.CUSTOM, + "enchanting_confirm_button/output_item_renderer": T.CUSTOM, + "enchanting_confirm_panel": T.PANEL, + "enchanting_confirm_panel/confirm": T.BUTTON, + "enchanting_confirm_panel/enchantment_hint_text": T.LABEL, + "enchanting_book_contents_panel": T.PANEL, + "enchanting_book_contents_panel/enchanting_book": T.CUSTOM, + "enchanting_book_contents_panel/player_level_label": T.LABEL, + "enchanting_book_contents_panel/level_label": T.LABEL, + "enchanting_book_panel": T.PANEL, + "enchanting_book_panel/enchanting_slots_panel": T.PANEL, + "enchanting_slots_and_selection": T.STACK_PANEL, + "enchanting_slots_and_selection/enchanting_slots_panel": T.PANEL, + "enchanting_slots_and_selection/pad1": T.PANEL, + "enchanting_slots_and_selection/enchant_selection_panel": T.PANEL, + "enchanting_contents_panel": T.STACK_PANEL, + "enchanting_contents_panel/fill1": T.PANEL, + "enchanting_contents_panel/enchanting_book_panel": T.PANEL, + "enchanting_contents_panel/pad1": T.PANEL, + "enchanting_contents_panel/enchanting_slots_and_selection": T.STACK_PANEL, + "enchanting_contents_panel/pad2": T.PANEL, + "enchanting_contents_panel/enchanting_confirm_panel": T.PANEL, + "enchanting_contents_panel/fill2": T.PANEL, + "header": T.PANEL, + "header/header_background": T.IMAGE, + "header/legacy_pocket_close_button": T.BUTTON, + "header/panel": T.PANEL, + "header/panel/title_label": T.LABEL, + "inventory_and_enchanting_panel": T.PANEL, + "inventory_and_enchanting_panel/inventory_half_screen": T.PANEL, + "inventory_and_enchanting_panel/inventory_half_screen/inventory_content": T.PANEL, + "inventory_and_enchanting_panel/enchanting_half_screen": T.PANEL, + "inventory_and_enchanting_panel/enchanting_half_screen/enchanting_content": T.STACK_PANEL, + "header_and_content_stack_panel": T.STACK_PANEL, + "header_and_content_stack_panel/header": T.PANEL, + "header_and_content_stack_panel/inventory_and_enchanting_panel": T.PANEL, + "error_text_panel": T.PANEL, + "error_text_panel/item_text_label": T.LABEL, + "enchanting_panel": T.PANEL, + "enchanting_panel/bg": T.IMAGE, + "enchanting_panel/root_panel": T.INPUT_PANEL, + "enchanting_panel/header_and_content_stack_panel": T.STACK_PANEL, + "enchanting_panel/container_gamepad_helpers": T.STACK_PANEL, + "enchanting_panel/inventory_selected_icon_button": T.BUTTON, + "enchanting_panel/hold_icon": T.BUTTON, + "enchanting_panel/selected_item_details_factory": T.FACTORY, + "enchanting_panel/item_lock_notification_factory": T.FACTORY, + "enchanting_panel/flying_item_renderer": T.CUSTOM, } export type EncyclopediaType = { - encyclopedia_screen: T.SCREEN - encyclopedia_selector_stack_panel: T.STACK_PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane": T.STACK_PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/overworld_category": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/armor_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/armor_stand_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/banners_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/beacons_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/beds_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/blocks_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/book_and_quill_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/chests_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/conduits_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/dyes_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/farming_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/fireworks_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/fishing_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/jigsaw_blocks_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/mounts_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/navigation_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/nether_portals_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/pets_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/raids_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/ranching_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/scaffolding_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/structure_blocks_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/tools_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/transportation_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/trading_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/weapons_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/stands_and_tables_category": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/anvil_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/brewing_stand_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/cauldron_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/crafting_table_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/enchanting_table_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/furnace_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/loom_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/smithing_table_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/redstone_engineering_category": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/droppers_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/dispensers_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/hoppers_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/jukebox_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/redstone_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/the_end_dimension_category": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/the_end_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/eye_of_ender_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/end_cities_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/elytra_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/shulker_boxes_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/options_and_cheats_category": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/game_settings_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/difficulty_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/adventure_mode_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/creative_mode_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/commands_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/host_and_player_options_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/command_blocks_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/realms_category": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/realms_stories_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/marketplace_category": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/minecoins_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/addons_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/worlds_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/textures_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/skins_button": T.PANEL - "encyclopedia_selector_stack_panel/how_to_play_selector_pane/mashups_button": T.PANEL - encyclopedia_section_content_panels: T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/section_contents_header": T.INPUT_PANEL - "encyclopedia_section_content_panels/general_tips_sections/armor_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/armor_stand_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/banners_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/beacons_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/beds_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/blocks_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/book_and_quill_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/chests_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/conduits_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/dyes_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/farming_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/fireworks_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/fishing_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/jigsaw": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/mounts_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/navigation_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/nether_portals_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/pets_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/raids_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/ranching_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/scaffolding_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/structure_blocks_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/tools_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/transportation_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/trading_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/weapons_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/anvil_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/brewing_stand_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/cauldron_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/crafting_table_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/enchanting_table_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/furnace_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/loom_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/smithing_table_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/droppers_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/dispensers_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/hoppers_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/jukebox_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/redstone_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/the_end_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/eye_of_ender_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/end_cities_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/elytra_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/shulker_boxes_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/game_settings_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/difficulty_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/adventure_mode_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/creative_mode_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/commands_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/host_and_player_options_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/command_blocks_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/realms_stories_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/minecoins_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/addons_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/worlds_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/textures_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/skins_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/mashups_section": T.STACK_PANEL - "encyclopedia_section_content_panels/general_tips_sections/section_contents_footer": T.INPUT_PANEL - adventure_mode_button: T.PANEL - adventure_mode_section: T.STACK_PANEL - "adventure_mode_section/paragraph_1": T.PANEL - "adventure_mode_section/padding_1": T.PANEL - "adventure_mode_section/paragraph_2": T.PANEL - anvil_button: T.PANEL - anvil_section: T.STACK_PANEL - "anvil_section/paragraph_1": T.PANEL - "anvil_section/padding_1": T.PANEL - "anvil_section/header_1": T.PANEL - "anvil_section/paragraph_2": T.PANEL - "anvil_section/padding_2": T.PANEL - "anvil_section/header_2": T.PANEL - "anvil_section/paragraph_3": T.PANEL - "anvil_section/padding_3": T.PANEL - "anvil_section/paragraph_4": T.PANEL - "anvil_section/padding_4": T.PANEL - "anvil_section/paragraph_5": T.PANEL - armor_button: T.PANEL - armor_section: T.STACK_PANEL - "armor_section/paragraph_1": T.PANEL - "armor_section/padding_1": T.PANEL - "armor_section/header_1": T.PANEL - "armor_section/paragraph_2": T.PANEL - "armor_section/padding_2": T.PANEL - "armor_section/paragraph_3": T.PANEL - "armor_section/padding_3": T.PANEL - "armor_section/paragraph_4": T.PANEL - "armor_section/padding_4": T.PANEL - "armor_section/header_2": T.PANEL - "armor_section/paragraph_5_keyboard": T.PANEL - "armor_section/paragraph_5_gamepad": T.PANEL - "armor_section/paragraph_5a_touch": T.PANEL - "armor_section/padding_5a_touch": T.PANEL - "armor_section/paragraph_5b_touch": T.PANEL - "armor_section/padding_5b_touch": T.PANEL - "armor_section/paragraph_5c_touch": T.PANEL - "armor_section/padding_5": T.PANEL - "armor_section/paragraph_6": T.PANEL - "armor_section/padding_6": T.PANEL - "armor_section/header_3": T.PANEL - "armor_section/paragraph_7": T.PANEL - armor_stand_button: T.PANEL - armor_stand_section: T.STACK_PANEL - "armor_stand_section/paragraph_1": T.PANEL - "armor_stand_section/padding_1": T.PANEL - "armor_stand_section/header_1": T.PANEL - "armor_stand_section/paragraph_2_keyboard": T.PANEL - "armor_stand_section/paragraph_2_gamepad": T.PANEL - "armor_stand_section/paragraph_2_touch": T.PANEL - "armor_stand_section/padding_2": T.PANEL - "armor_stand_section/paragraph_3_keyboard": T.PANEL - "armor_stand_section/paragraph_3_gamepad": T.PANEL - "armor_stand_section/paragraph_3_touch": T.PANEL - "armor_stand_section/padding_3": T.PANEL - "armor_stand_section/header_2": T.PANEL - "armor_stand_section/paragraph_4_keyboard": T.PANEL - "armor_stand_section/paragraph_4_gamepad": T.PANEL - "armor_stand_section/paragraph_4_touch": T.PANEL - "armor_stand_section/padding_4": T.PANEL - "armor_stand_section/header_3": T.PANEL - "armor_stand_section/paragraph_5": T.PANEL - banners_button: T.PANEL - banners_section: T.STACK_PANEL - "banners_section/paragraph_1": T.PANEL - "banners_section/padding_1": T.PANEL - "banners_section/paragraph_2": T.PANEL - "banners_section/padding_2": T.PANEL - "banners_section/header_1": T.PANEL - "banners_section/paragraph_3": T.PANEL - "banners_section/padding_3": T.PANEL - "banners_section/paragraph_4": T.PANEL - "banners_section/padding_4": T.PANEL - "banners_section/paragraph_5": T.PANEL - "banners_section/padding_5": T.PANEL - "banners_section/paragraph_6": T.PANEL - "banners_section/padding_6": T.PANEL - "banners_section/paragraph_7": T.PANEL - "banners_section/padding_7": T.PANEL - "banners_section/header_2": T.PANEL - "banners_section/paragraph_8": T.PANEL - "banners_section/padding_8": T.PANEL - "banners_section/header_3": T.PANEL - "banners_section/paragraph_9": T.PANEL - beacons_button: T.PANEL - beacons_section: T.STACK_PANEL - "beacons_section/paragraph_1": T.PANEL - "beacons_section/padding_1": T.PANEL - "beacons_section/paragraph_2": T.PANEL - "beacons_section/padding_2": T.PANEL - "beacons_section/header_1": T.PANEL - "beacons_section/paragraph_3": T.PANEL - "beacons_section/padding_3": T.PANEL - "beacons_section/paragraph_4": T.PANEL - "beacons_section/padding_4": T.PANEL - "beacons_section/header_2": T.PANEL - "beacons_section/paragraph_5": T.PANEL - "beacons_section/padding_5": T.PANEL - "beacons_section/paragraph_6": T.PANEL - "beacons_section/padding_6": T.PANEL - "beacons_section/paragraph_7": T.PANEL - "beacons_section/padding_7": T.PANEL - "beacons_section/paragraph_8": T.PANEL - conduits_button: T.PANEL - conduits_section: T.STACK_PANEL - "conduits_section/paragraph_1": T.PANEL - "conduits_section/padding_1": T.PANEL - "conduits_section/paragraph_2": T.PANEL - "conduits_section/padding_2": T.PANEL - "conduits_section/header_1": T.PANEL - "conduits_section/paragraph_3": T.PANEL - "conduits_section/padding_3": T.PANEL - "conduits_section/paragraph_4": T.PANEL - beds_button: T.PANEL - beds_section: T.STACK_PANEL - "beds_section/paragraph_1": T.PANEL - "beds_section/padding_1": T.PANEL - "beds_section/paragraph_2_keyboard": T.PANEL - "beds_section/paragraph_2_gamepad": T.PANEL - "beds_section/paragraph_2_touch": T.PANEL - "beds_section/padding_2": T.PANEL - "beds_section/paragraph_3": T.PANEL - "beds_section/padding_3": T.PANEL - "beds_section/paragraph_4": T.PANEL - "beds_section/padding_4": T.PANEL - "beds_section/paragraph_5": T.PANEL - blocks_button: T.PANEL - blocks_section: T.STACK_PANEL - "blocks_section/paragraph_1": T.PANEL - "blocks_section/padding_1": T.PANEL - "blocks_section/paragraph_2": T.PANEL - "blocks_section/padding_2": T.PANEL - "blocks_section/header_1": T.PANEL - "blocks_section/paragraph_3": T.PANEL - "blocks_section/padding_3": T.PANEL - "blocks_section/header_2": T.PANEL - "blocks_section/paragraph_4": T.PANEL - "blocks_section/padding_4": T.PANEL - "blocks_section/paragraph_5": T.PANEL - "blocks_section/padding_5": T.PANEL - "blocks_section/paragraph_6": T.PANEL - "blocks_section/padding_6": T.PANEL - "blocks_section/paragraph_7": T.PANEL - "blocks_section/padding_7": T.PANEL - "blocks_section/paragraph_8": T.PANEL - "blocks_section/padding_8": T.PANEL - "blocks_section/paragraph_9": T.PANEL - book_and_quill_button: T.PANEL - book_and_quill_section: T.STACK_PANEL - "book_and_quill_section/paragraph_1": T.PANEL - brewing_stand_button: T.PANEL - brewing_stand_section: T.STACK_PANEL - "brewing_stand_section/paragraph_1": T.PANEL - "brewing_stand_section/padding_1": T.PANEL - "brewing_stand_section/header_1": T.PANEL - "brewing_stand_section/paragraph_2": T.PANEL - "brewing_stand_section/padding_2": T.PANEL - "brewing_stand_section/header_2": T.PANEL - "brewing_stand_section/paragraph_3": T.PANEL - "brewing_stand_section/padding_3": T.PANEL - "brewing_stand_section/paragraph_4": T.PANEL - cauldron_button: T.PANEL - cauldron_section: T.STACK_PANEL - "cauldron_section/paragraph_1": T.PANEL - "cauldron_section/padding_1": T.PANEL - "cauldron_section/header_1": T.PANEL - "cauldron_section/paragraph_2_keyboard": T.PANEL - "cauldron_section/paragraph_2_gamepad": T.PANEL - "cauldron_section/paragraph_2_touch": T.PANEL - "cauldron_section/padding_2": T.PANEL - "cauldron_section/paragraph_3": T.PANEL - "cauldron_section/padding_3": T.PANEL - "cauldron_section/header_2": T.PANEL - "cauldron_section/paragraph_4_keyboard": T.PANEL - "cauldron_section/paragraph_4_gamepad": T.PANEL - "cauldron_section/paragraph_4_touch": T.PANEL - "cauldron_section/padding_4": T.PANEL - "cauldron_section/header_3": T.PANEL - "cauldron_section/paragraph_5_keyboard": T.PANEL - "cauldron_section/paragraph_5_gamepad": T.PANEL - "cauldron_section/paragraph_5_touch": T.PANEL - "cauldron_section/padding_5": T.PANEL - "cauldron_section/paragraph_6": T.PANEL - chests_button: T.PANEL - chests_section: T.STACK_PANEL - "chests_section/paragraph_1_keyboard": T.PANEL - "chests_section/paragraph_1_gamepad": T.PANEL - "chests_section/paragraph_1_touch": T.PANEL - "chests_section/padding_1": T.PANEL - "chests_section/paragraph_2": T.PANEL - "chests_section/padding_2": T.PANEL - "chests_section/paragraph_3": T.PANEL - command_blocks_button: T.PANEL - command_blocks_section: T.STACK_PANEL - "command_blocks_section/paragraph_1": T.PANEL - "command_blocks_section/padding_1": T.PANEL - "command_blocks_section/paragraph_2": T.PANEL - "command_blocks_section/padding_2": T.PANEL - "command_blocks_section/paragraph_3": T.PANEL - "command_blocks_section/padding_3": T.PANEL - "command_blocks_section/paragraph_4": T.PANEL - "command_blocks_section/padding_4": T.PANEL - "command_blocks_section/paragraph_5": T.PANEL - "command_blocks_section/paragraph_5_1": T.PANEL - "command_blocks_section/paragraph_5_2": T.PANEL - "command_blocks_section/paragraph_5_3": T.PANEL - "command_blocks_section/padding_5": T.PANEL - "command_blocks_section/paragraph_6": T.PANEL - "command_blocks_section/paragraph_6_1": T.PANEL - "command_blocks_section/paragraph_6_2": T.PANEL - "command_blocks_section/padding_6": T.PANEL - "command_blocks_section/paragraph_7": T.PANEL - "command_blocks_section/paragraph_7_1": T.PANEL - "command_blocks_section/paragraph_7_2": T.PANEL - "command_blocks_section/padding_7": T.PANEL - "command_blocks_section/paragraph_8": T.PANEL - commands_button: T.PANEL - commands_section: T.STACK_PANEL - "commands_section/paragraph_1": T.PANEL - "commands_section/padding_1": T.PANEL - "commands_section/paragraph_2": T.PANEL - crafting_table_button: T.PANEL - crafting_table_section: T.STACK_PANEL - "crafting_table_section/paragraph_1": T.PANEL - "crafting_table_section/padding_1": T.PANEL - "crafting_table_section/paragraph_2_keyboard": T.PANEL - "crafting_table_section/paragraph_2_gamepad": T.PANEL - "crafting_table_section/paragraph_2_touch": T.PANEL - creative_mode_button: T.PANEL - creative_mode_section: T.STACK_PANEL - "creative_mode_section/paragraph_1": T.PANEL - "creative_mode_section/padding_1": T.PANEL - "creative_mode_section/header_1": T.PANEL - "creative_mode_section/paragraph_2": T.PANEL - "creative_mode_section/padding_2": T.PANEL - "creative_mode_section/paragraph_3": T.PANEL - "creative_mode_section/padding_3": T.PANEL - "creative_mode_section/header_2": T.PANEL - "creative_mode_section/paragraph_4_keyboard": T.PANEL - "creative_mode_section/paragraph_4_gamepad": T.PANEL - "creative_mode_section/paragraph_4a_touch_joystick_tap": T.PANEL - "creative_mode_section/paragraph_4a_touch_classic_dpad": T.PANEL - "creative_mode_section/paragraph_4a_touch_joystick_crosshair": T.PANEL - "creative_mode_section/padding_4a_touch": T.PANEL - "creative_mode_section/paragraph_4b_touch_joystick_tap": T.PANEL - "creative_mode_section/paragraph_4b_touch_classic_dpad": T.PANEL - "creative_mode_section/paragraph_4b_touch_joystick_crosshair": T.PANEL - difficulty_button: T.PANEL - difficulty_section: T.STACK_PANEL - "difficulty_section/paragraph_1": T.PANEL - "difficulty_section/padding_1": T.PANEL - "difficulty_section/header_1": T.PANEL - "difficulty_section/paragraph_2": T.PANEL - "difficulty_section/padding_2": T.PANEL - "difficulty_section/header_2": T.PANEL - "difficulty_section/paragraph_3": T.PANEL - "difficulty_section/padding_3": T.PANEL - "difficulty_section/header_3": T.PANEL - "difficulty_section/paragraph_4": T.PANEL - "difficulty_section/padding_4": T.PANEL - "difficulty_section/header_4": T.PANEL - "difficulty_section/paragraph_5": T.PANEL - dispensers_button: T.PANEL - dispensers_section: T.STACK_PANEL - "dispensers_section/paragraph_1": T.PANEL - "dispensers_section/padding_1": T.PANEL - "dispensers_section/paragraph_2_keyboard": T.PANEL - "dispensers_section/paragraph_2_gamepad": T.PANEL - "dispensers_section/paragraph_2_touch": T.PANEL - "dispensers_section/padding_2": T.PANEL - "dispensers_section/header_1": T.PANEL - "dispensers_section/paragraph_3": T.PANEL - "dispensers_section/padding_3": T.PANEL - "dispensers_section/paragraph_4": T.PANEL - droppers_button: T.PANEL - droppers_section: T.STACK_PANEL - "droppers_section/paragraph_1_keyboard": T.PANEL - "droppers_section/paragraph_1_gamepad": T.PANEL - "droppers_section/paragraph_1_touch": T.PANEL - "droppers_section/padding_1": T.PANEL - "droppers_section/header_1": T.PANEL - "droppers_section/paragraph_2": T.PANEL - dyes_button: T.PANEL - dyes_section: T.STACK_PANEL - "dyes_section/paragraph_1": T.PANEL - "dyes_section/padding_1": T.PANEL - "dyes_section/paragraph_2": T.PANEL - "dyes_section/padding_2": T.PANEL - "dyes_section/paragraph_3": T.PANEL - "dyes_section/padding_3": T.PANEL - "dyes_section/paragraph_4": T.PANEL - "dyes_section/padding_4": T.PANEL - "dyes_section/paragraph_5": T.PANEL - "dyes_section/padding_5": T.PANEL - "dyes_section/paragraph_6": T.PANEL - "dyes_section/padding_6": T.PANEL - "dyes_section/paragraph_7": T.PANEL - elytra_button: T.PANEL - elytra_section: T.STACK_PANEL - "elytra_section/paragraph_1": T.PANEL - "elytra_section/padding_1": T.PANEL - "elytra_section/paragraph_2": T.PANEL - "elytra_section/padding_2": T.PANEL - "elytra_section/header_1": T.PANEL - "elytra_section/paragraph_3_keyboard": T.PANEL - "elytra_section/paragraph_3_gamepad": T.PANEL - "elytra_section/paragraph_3_touch": T.PANEL - "elytra_section/padding_3": T.PANEL - "elytra_section/paragraph_4": T.PANEL - "elytra_section/paragraph_4_touch": T.PANEL - "elytra_section/padding_4": T.PANEL - "elytra_section/paragraph_5": T.PANEL - "elytra_section/padding_5": T.PANEL - "elytra_section/header_2": T.PANEL - "elytra_section/paragraph_6": T.PANEL - enchanting_table_button: T.PANEL - enchanting_table_section: T.STACK_PANEL - "enchanting_table_section/paragraph_1": T.PANEL - "enchanting_table_section/padding_1": T.PANEL - "enchanting_table_section/header_1": T.PANEL - "enchanting_table_section/paragraph_2": T.PANEL - "enchanting_table_section/padding_2": T.PANEL - "enchanting_table_section/paragraph_3": T.PANEL - "enchanting_table_section/padding_3": T.PANEL - "enchanting_table_section/header_2": T.PANEL - "enchanting_table_section/paragraph_4": T.PANEL - "enchanting_table_section/padding_4": T.PANEL - "enchanting_table_section/header_3": T.PANEL - "enchanting_table_section/paragraph_5": T.PANEL - end_cities_button: T.PANEL - end_cities_section: T.STACK_PANEL - "end_cities_section/paragraph_1": T.PANEL - "end_cities_section/padding_1": T.PANEL - "end_cities_section/paragraph_2": T.PANEL - eye_of_ender_button: T.PANEL - eye_of_ender_section: T.STACK_PANEL - "eye_of_ender_section/paragraph_1": T.PANEL - "eye_of_ender_section/padding_1": T.PANEL - "eye_of_ender_section/paragraph_2": T.PANEL - farming_button: T.PANEL - farming_section: T.STACK_PANEL - "farming_section/paragraph_1": T.PANEL - "farming_section/padding_1": T.PANEL - "farming_section/header_1": T.PANEL - "farming_section/paragraph_2": T.PANEL - "farming_section/padding_2": T.PANEL - "farming_section/paragraph_3": T.PANEL - "farming_section/padding_3": T.PANEL - "farming_section/header_2": T.PANEL - "farming_section/paragraph_4": T.PANEL - "farming_section/padding_4": T.PANEL - "farming_section/paragraph_5": T.PANEL - "farming_section/padding_5": T.PANEL - "farming_section/paragraph_6": T.PANEL - "farming_section/padding_6": T.PANEL - "farming_section/paragraph_7": T.PANEL - fireworks_button: T.PANEL - fireworks_section: T.STACK_PANEL - "fireworks_section/paragraph_1": T.PANEL - "fireworks_section/padding_1": T.PANEL - "fireworks_section/paragraph_2": T.PANEL - "fireworks_section/padding_2": T.PANEL - "fireworks_section/header_1": T.PANEL - "fireworks_section/paragraph_3_keyboard": T.PANEL - "fireworks_section/paragraph_3_gamepad": T.PANEL - "fireworks_section/paragraph_3_touch": T.PANEL - "fireworks_section/padding_3": T.PANEL - "fireworks_section/paragraph_4": T.PANEL - "fireworks_section/padding_4": T.PANEL - "fireworks_section/header_2": T.PANEL - "fireworks_section/paragraph_5": T.PANEL - "fireworks_section/padding_5": T.PANEL - "fireworks_section/paragraph_6": T.PANEL - "fireworks_section/padding_5a": T.PANEL - "fireworks_section/paragraph_6_1": T.PANEL - "fireworks_section/padding_5b": T.PANEL - "fireworks_section/paragraph_6_2": T.PANEL - "fireworks_section/padding_5c": T.PANEL - "fireworks_section/paragraph_6_3": T.PANEL - "fireworks_section/padding_5d": T.PANEL - "fireworks_section/paragraph_6_4": T.PANEL - "fireworks_section/padding_5e": T.PANEL - "fireworks_section/paragraph_6_5": T.PANEL - "fireworks_section/padding_5f": T.PANEL - "fireworks_section/paragraph_6_6": T.PANEL - "fireworks_section/padding_6": T.PANEL - "fireworks_section/header_3": T.PANEL - "fireworks_section/paragraph_7": T.PANEL - jigsaw_blocks_button: T.PANEL - jigsaw_blocks_section: T.STACK_PANEL - "jigsaw_blocks_section/paragraph_1": T.PANEL - "jigsaw_blocks_section/padding_1": T.PANEL - "jigsaw_blocks_section/header_1": T.PANEL - "jigsaw_blocks_section/paragraph_2": T.PANEL - "jigsaw_blocks_section/padding_2": T.PANEL - "jigsaw_blocks_section/header_2": T.PANEL - "jigsaw_blocks_section/paragraph_3": T.PANEL - "jigsaw_blocks_section/padding_3": T.PANEL - "jigsaw_blocks_section/paragraph_4": T.PANEL - "jigsaw_blocks_section/padding_4": T.PANEL - "jigsaw_blocks_section/paragraph_5": T.PANEL - "jigsaw_blocks_section/padding_5": T.PANEL - "jigsaw_blocks_section/paragraph_6": T.PANEL - "jigsaw_blocks_section/padding_6": T.PANEL - "jigsaw_blocks_section/paragraph_7": T.PANEL - "jigsaw_blocks_section/padding_7": T.PANEL - "jigsaw_blocks_section/paragraph_8": T.PANEL - "jigsaw_blocks_section/padding_8": T.PANEL - "jigsaw_blocks_section/paragraph_9": T.PANEL - fishing_button: T.PANEL - fishing_section: T.STACK_PANEL - "fishing_section/paragraph_1": T.PANEL - "fishing_section/padding_1": T.PANEL - "fishing_section/header_1": T.PANEL - "fishing_section/paragraph_2_keyboard": T.PANEL - "fishing_section/paragraph_2_gamepad": T.PANEL - "fishing_section/paragraph_2_touch": T.PANEL - "fishing_section/padding_2": T.PANEL - "fishing_section/header_2": T.PANEL - "fishing_section/paragraph_3": T.PANEL - "fishing_section/padding_3": T.PANEL - "fishing_section/paragraph_4_keyboard": T.PANEL - "fishing_section/paragraph_4_gamepad": T.PANEL - "fishing_section/paragraph_4_touch": T.PANEL - furnace_button: T.PANEL - furnace_section: T.STACK_PANEL - "furnace_section/paragraph_1": T.PANEL - "furnace_section/padding_1": T.PANEL - "furnace_section/paragraph_2_keyboard": T.PANEL - "furnace_section/paragraph_2_gamepad": T.PANEL - "furnace_section/paragraph_2_touch": T.PANEL - "furnace_section/padding_2": T.PANEL - "furnace_section/paragraph_3": T.PANEL - game_settings_button: T.PANEL - game_settings_section: T.STACK_PANEL - "game_settings_section/paragraph_1": T.PANEL - "game_settings_section/padding_1": T.PANEL - "game_settings_section/paragraph_2": T.PANEL - "game_settings_section/padding_2": T.PANEL - "game_settings_section/paragraph_3": T.PANEL - "game_settings_section/padding_3": T.PANEL - "game_settings_section/paragraph_4": T.PANEL - "game_settings_section/padding_4": T.PANEL - "game_settings_section/header_1": T.PANEL - "game_settings_section/paragraph_5": T.PANEL - "game_settings_section/padding_5": T.PANEL - "game_settings_section/paragraph_6": T.PANEL - "game_settings_section/padding_6": T.PANEL - "game_settings_section/paragraph_7": T.PANEL - "game_settings_section/paragraph_7_1": T.PANEL - "game_settings_section/paragraph_7_2": T.PANEL - "game_settings_section/padding_7": T.PANEL - "game_settings_section/paragraph_8": T.PANEL - "game_settings_section/padding_8": T.PANEL - "game_settings_section/header_2": T.PANEL - "game_settings_section/paragraph_9": T.PANEL - "game_settings_section/padding_9": T.PANEL - "game_settings_section/paragraph_10": T.PANEL - "game_settings_section/padding_10": T.PANEL - "game_settings_section/paragraph_11": T.PANEL - "game_settings_section/padding_11": T.PANEL - "game_settings_section/paragraph_12": T.PANEL - "game_settings_section/padding_12": T.PANEL - "game_settings_section/paragraph_13": T.PANEL - "game_settings_section/padding_13": T.PANEL - "game_settings_section/paragraph_14": T.PANEL - "game_settings_section/padding_14": T.PANEL - "game_settings_section/paragraph_15": T.PANEL - "game_settings_section/padding_15": T.PANEL - "game_settings_section/paragraph_16": T.PANEL - "game_settings_section/padding_16": T.PANEL - "game_settings_section/paragraph_17": T.PANEL - hoppers_button: T.PANEL - hoppers_section: T.STACK_PANEL - "hoppers_section/paragraph_1": T.PANEL - "hoppers_section/padding_1": T.PANEL - "hoppers_section/paragraph_2": T.PANEL - "hoppers_section/padding_2": T.PANEL - "hoppers_section/header_1": T.PANEL - "hoppers_section/paragraph_3": T.PANEL - "hoppers_section/padding_3": T.PANEL - "hoppers_section/paragraph_4": T.PANEL - host_and_player_options_button: T.PANEL - host_and_player_options_section: T.STACK_PANEL - "host_and_player_options_section/paragraph_1_not_touch": T.PANEL - "host_and_player_options_section/paragraph_1_touch": T.PANEL - jukebox_button: T.PANEL - jukebox_section: T.STACK_PANEL - "jukebox_section/paragraph_1": T.PANEL - "jukebox_section/padding_1": T.PANEL - "jukebox_section/header_1": T.PANEL - "jukebox_section/paragraph_2_not_touch": T.PANEL - "jukebox_section/paragraph_2_touch": T.PANEL - "jukebox_section/padding_2": T.PANEL - "jukebox_section/header_2": T.PANEL - "jukebox_section/paragraph_3": T.PANEL - "jukebox_section/padding_3": T.PANEL - "jukebox_section/paragraph_4": T.PANEL - "jukebox_section/padding_4": T.PANEL - "jukebox_section/paragraph_5": T.PANEL - "jukebox_section/padding_5": T.PANEL - "jukebox_section/paragraph_6": T.PANEL - "jukebox_section/padding_6": T.PANEL - "jukebox_section/header_3": T.PANEL - "jukebox_section/paragraph_7": T.PANEL - "jukebox_section/padding_7": T.PANEL - "jukebox_section/paragraph_8": T.PANEL - loom_button: T.PANEL - loom_section: T.STACK_PANEL - "loom_section/paragraph_1": T.PANEL - "loom_section/padding_1": T.PANEL - "loom_section/header_1": T.PANEL - "loom_section/paragraph_2": T.PANEL - "loom_section/padding_2": T.PANEL - "loom_section/paragraph_3": T.PANEL - "loom_section/padding_3": T.PANEL - "loom_section/header_2": T.PANEL - "loom_section/paragraph_4": T.PANEL - realms_stories_button: T.PANEL - realms_stories_section: T.STACK_PANEL - "realms_stories_section/paragraph_1": T.PANEL - "realms_stories_section/padding_1": T.PANEL - "realms_stories_section/header_1": T.PANEL - "realms_stories_section/paragraph_2": T.PANEL - "realms_stories_section/padding_2": T.PANEL - "realms_stories_section/header_2": T.PANEL - "realms_stories_section/paragraph_3": T.PANEL - "realms_stories_section/padding_3": T.PANEL - "realms_stories_section/header_3": T.PANEL - "realms_stories_section/paragraph_4": T.PANEL - "realms_stories_section/padding_4": T.PANEL - "realms_stories_section/header_4": T.PANEL - "realms_stories_section/paragraph_5": T.PANEL - "realms_stories_section/padding_5": T.PANEL - "realms_stories_section/header_5": T.PANEL - "realms_stories_section/paragraph_6": T.PANEL - smithing_table_button: T.PANEL - smithing_table_section: T.STACK_PANEL - "smithing_table_section/paragraph_1": T.PANEL - "smithing_table_section/padding_1": T.PANEL - "smithing_table_section/paragraph_2": T.PANEL - "smithing_table_section/padding_2": T.PANEL - "smithing_table_section/header_1": T.PANEL - "smithing_table_section/paragraph_3": T.PANEL - "smithing_table_section/padding_3": T.PANEL - "smithing_table_section/paragraph_4": T.PANEL - "smithing_table_section/padding_4": T.PANEL - "smithing_table_section/paragraph_5": T.PANEL - "smithing_table_section/padding_5": T.PANEL - "smithing_table_section/paragraph_6": T.PANEL - "smithing_table_section/padding_6": T.PANEL - "smithing_table_section/header_2": T.PANEL - "smithing_table_section/paragraph_7": T.PANEL - "smithing_table_section/padding_7": T.PANEL - "smithing_table_section/paragraph_8": T.PANEL - "smithing_table_section/padding_8": T.PANEL - "smithing_table_section/paragraph_9": T.PANEL - mounts_button: T.PANEL - mounts_section: T.STACK_PANEL - "mounts_section/paragraph_1": T.PANEL - "mounts_section/padding_1": T.PANEL - "mounts_section/paragraph_2": T.PANEL - "mounts_section/padding_2": T.PANEL - "mounts_section/header_1": T.PANEL - "mounts_section/paragraph_3_not_touch": T.PANEL - "mounts_section/paragraph_3_touch": T.PANEL - "mounts_section/padding_3": T.PANEL - "mounts_section/paragraph_4": T.PANEL - "mounts_section/padding_4": T.PANEL - "mounts_section/header_2": T.PANEL - "mounts_section/paragraph_5": T.PANEL - "mounts_section/padding_5": T.PANEL - "mounts_section/paragraph_6": T.PANEL - "mounts_section/padding_6": T.PANEL - "mounts_section/paragraph_6b": T.PANEL - "mounts_section/padding_6b": T.PANEL - "mounts_section/paragraph_7": T.PANEL - "mounts_section/padding_7": T.PANEL - "mounts_section/paragraph_8": T.PANEL - "mounts_section/padding_8": T.PANEL - "mounts_section/header_3": T.PANEL - "mounts_section/paragraph_9": T.PANEL - "mounts_section/padding_9": T.PANEL - "mounts_section/paragraph_10": T.PANEL - "mounts_section/padding_10": T.PANEL - "mounts_section/paragraph_11": T.PANEL - "mounts_section/padding_11": T.PANEL - "mounts_section/paragraph_12": T.PANEL - "mounts_section/padding_12": T.PANEL - "mounts_section/header_4": T.PANEL - "mounts_section/paragraph_13": T.PANEL - "mounts_section/padding_13": T.PANEL - "mounts_section/paragraph_14": T.PANEL - "mounts_section/padding_14": T.PANEL - "mounts_section/header_5": T.PANEL - "mounts_section/paragraph_15_not_touch": T.PANEL - "mounts_section/paragraph_15a_touch": T.PANEL - "mounts_section/padding_15": T.PANEL - "mounts_section/paragraph_15b_touch": T.PANEL - navigation_button: T.PANEL - navigation_section: T.STACK_PANEL - "navigation_section/paragraph_1": T.PANEL - "navigation_section/padding_1": T.PANEL - "navigation_section/paragraph_2": T.PANEL - "navigation_section/padding_2": T.PANEL - "navigation_section/header_1": T.PANEL - "navigation_section/paragraph_3": T.PANEL - "navigation_section/padding_3": T.PANEL - "navigation_section/paragraph_4": T.PANEL - "navigation_section/padding_4": T.PANEL - "navigation_section/paragraph_5": T.PANEL - "navigation_section/padding_5": T.PANEL - "navigation_section/paragraph_6": T.PANEL - "navigation_section/padding_6": T.PANEL - "navigation_section/paragraph_7": T.PANEL - "navigation_section/padding_7": T.PANEL - "navigation_section/header_2": T.PANEL - "navigation_section/paragraph_8": T.PANEL - "navigation_section/padding_8": T.PANEL - "navigation_section/paragraph_9": T.PANEL - "navigation_section/padding_9": T.PANEL - "navigation_section/header_3": T.PANEL - "navigation_section/paragraph_10": T.PANEL - nether_portals_button: T.PANEL - nether_portals_section: T.STACK_PANEL - "nether_portals_section/paragraph_1": T.PANEL - "nether_portals_section/padding_1": T.PANEL - "nether_portals_section/paragraph_2": T.PANEL - "nether_portals_section/padding_2": T.PANEL - "nether_portals_section/paragraph_3": T.PANEL - "nether_portals_section/padding_3": T.PANEL - "nether_portals_section/image_1": T.IMAGE - pets_button: T.PANEL - pets_section: T.STACK_PANEL - "pets_section/header_1": T.PANEL - "pets_section/paragraph_1_not_touch": T.PANEL - "pets_section/paragraph_1_touch": T.PANEL - "pets_section/padding_1": T.PANEL - "pets_section/header_2": T.PANEL - "pets_section/paragraph_2": T.PANEL - "pets_section/padding_2": T.PANEL - "pets_section/header_3": T.PANEL - "pets_section/paragraph_3": T.PANEL - "pets_section/padding_3": T.PANEL - "pets_section/header_4": T.PANEL - "pets_section/paragraph_4": T.PANEL - raids_button: T.PANEL - raids_section: T.STACK_PANEL - "raids_section/paragraph_1": T.PANEL - "raids_section/padding_1": T.PANEL - "raids_section/paragraph_2": T.PANEL - "raids_section/padding_2": T.PANEL - "raids_section/header_1": T.PANEL - "raids_section/paragraph_3": T.PANEL - ranching_button: T.PANEL - ranching_section: T.STACK_PANEL - "ranching_section/paragraph_1": T.PANEL - "ranching_section/padding_1": T.PANEL - "ranching_section/header_1": T.PANEL - "ranching_section/paragraph_2": T.PANEL - "ranching_section/padding_2": T.PANEL - "ranching_section/paragraph_3": T.PANEL - "ranching_section/padding_3": T.PANEL - "ranching_section/header_2": T.PANEL - "ranching_section/paragraph_4": T.PANEL - "ranching_section/padding_4": T.PANEL - "ranching_section/paragraph_5": T.PANEL - redstone_button: T.PANEL - redstone_section: T.STACK_PANEL - "redstone_section/paragraph_1": T.PANEL - "redstone_section/padding_1": T.PANEL - "redstone_section/header_1": T.PANEL - "redstone_section/paragraph_2": T.PANEL - "redstone_section/padding_2": T.PANEL - "redstone_section/paragraph_3": T.PANEL - "redstone_section/padding_3": T.PANEL - "redstone_section/paragraph_4": T.PANEL - "redstone_section/padding_4": T.PANEL - "redstone_section/paragraph_5": T.PANEL - scaffolding_button: T.PANEL - scaffolding_section: T.STACK_PANEL - "scaffolding_section/header_1": T.PANEL - "scaffolding_section/paragraph_1_keyboard": T.PANEL - "scaffolding_section/paragraph_1_gamepad": T.PANEL - "scaffolding_section/paragraph_1a_touch": T.PANEL - "scaffolding_section/padding_1a_touch": T.PANEL - "scaffolding_section/paragraph_1b_touch": T.PANEL - "scaffolding_section/padding_1b_touch": T.PANEL - "scaffolding_section/paragraph_1c_touch": T.PANEL - "scaffolding_section/padding_1": T.PANEL - "scaffolding_section/header_2": T.PANEL - "scaffolding_section/paragraph_2": T.PANEL - "scaffolding_section/image_1": T.IMAGE - "scaffolding_section/padding_2": T.PANEL - "scaffolding_section/header_3": T.PANEL - "scaffolding_section/paragraph_3": T.PANEL - "scaffolding_section/padding_3": T.PANEL - structure_blocks_button: T.PANEL - structure_blocks_section: T.STACK_PANEL - "structure_blocks_section/paragraph_1": T.PANEL - "structure_blocks_section/padding_1": T.PANEL - "structure_blocks_section/header_1": T.PANEL - "structure_blocks_section/paragraph_2": T.PANEL - "structure_blocks_section/padding_2": T.PANEL - "structure_blocks_section/header_2": T.PANEL - "structure_blocks_section/paragraph_3": T.PANEL - "structure_blocks_section/padding_3": T.PANEL - "structure_blocks_section/paragraph_4": T.PANEL - "structure_blocks_section/padding_4": T.PANEL - "structure_blocks_section/paragraph_5": T.PANEL - "structure_blocks_section/padding_5": T.PANEL - "structure_blocks_section/paragraph_6": T.PANEL - "structure_blocks_section/padding_6": T.PANEL - "structure_blocks_section/paragraph_7": T.PANEL - "structure_blocks_section/padding_7": T.PANEL - "structure_blocks_section/header_3": T.PANEL - "structure_blocks_section/paragraph_8": T.PANEL - "structure_blocks_section/padding_8": T.PANEL - "structure_blocks_section/paragraph_9_keyboard": T.PANEL - "structure_blocks_section/paragraph_9_gamepad": T.PANEL - "structure_blocks_section/paragraph_9_touch": T.PANEL - "structure_blocks_section/padding_9": T.PANEL - "structure_blocks_section/header_4": T.PANEL - "structure_blocks_section/paragraph_10": T.PANEL - "structure_blocks_section/padding_10": T.PANEL - "structure_blocks_section/header_5": T.PANEL - "structure_blocks_section/paragraph_11": T.PANEL - "structure_blocks_section/padding_11": T.PANEL - "structure_blocks_section/paragraph_12": T.PANEL - "structure_blocks_section/padding_12": T.PANEL - "structure_blocks_section/paragraph_13": T.PANEL - "structure_blocks_section/padding_13": T.PANEL - "structure_blocks_section/header_6": T.PANEL - "structure_blocks_section/paragraph_14": T.PANEL - "structure_blocks_section/padding_14": T.PANEL - "structure_blocks_section/paragraph_15": T.PANEL - "structure_blocks_section/padding_15": T.PANEL - "structure_blocks_section/header_7": T.PANEL - "structure_blocks_section/paragraph_16": T.PANEL - "structure_blocks_section/padding_16": T.PANEL - "structure_blocks_section/paragraph_17": T.PANEL - shulker_boxes_button: T.PANEL - shulker_boxes_section: T.STACK_PANEL - "shulker_boxes_section/paragraph_1": T.PANEL - the_end_button: T.PANEL - the_end_section: T.STACK_PANEL - "the_end_section/paragraph_1": T.PANEL - "the_end_section/padding_1": T.PANEL - "the_end_section/paragraph_2": T.PANEL - "the_end_section/padding_2": T.PANEL - "the_end_section/header_1": T.PANEL - "the_end_section/paragraph_3": T.PANEL - "the_end_section/padding_3": T.PANEL - "the_end_section/paragraph_4": T.PANEL - "the_end_section/padding_4": T.PANEL - "the_end_section/paragraph_5": T.PANEL - tools_button: T.PANEL - tools_section: T.STACK_PANEL - "tools_section/paragraph_1": T.PANEL - "tools_section/padding_1": T.PANEL - "tools_section/paragraph_2": T.PANEL - "tools_section/padding_2": T.PANEL - "tools_section/header_1": T.PANEL - "tools_section/paragraph_3": T.PANEL - "tools_section/padding_3": T.PANEL - "tools_section/paragraph_4": T.PANEL - "tools_section/padding_4": T.PANEL - "tools_section/paragraph_5_not_touch": T.PANEL - "tools_section/paragraph_5_touch": T.PANEL - "tools_section/padding_5": T.PANEL - "tools_section/paragraph_6_not_touch": T.PANEL - "tools_section/paragraph_6_touch": T.PANEL - "tools_section/padding_6": T.PANEL - "tools_section/paragraph_7": T.PANEL - "tools_section/padding_7": T.PANEL - "tools_section/header_2": T.PANEL - "tools_section/paragraph_8": T.PANEL - "tools_section/padding_8": T.PANEL - "tools_section/paragraph_9": T.PANEL - "tools_section/padding_9": T.PANEL - "tools_section/paragraph_10": T.PANEL - "tools_section/padding_10": T.PANEL - "tools_section/paragraph_11": T.PANEL - "tools_section/padding_11": T.PANEL - "tools_section/paragraph_12": T.PANEL - trading_button: T.PANEL - trading_section: T.STACK_PANEL - "trading_section/paragraph_1": T.PANEL - "trading_section/padding_1": T.PANEL - "trading_section/header_1": T.PANEL - "trading_section/paragraph_2": T.PANEL - "trading_section/padding_2": T.PANEL - "trading_section/paragraph_3": T.PANEL - "trading_section/padding_3": T.PANEL - "trading_section/paragraph_4": T.PANEL - transportation_button: T.PANEL - transportation_section: T.STACK_PANEL - "transportation_section/paragraph_1": T.PANEL - "transportation_section/padding_1": T.PANEL - "transportation_section/header_1": T.PANEL - "transportation_section/paragraph_2": T.PANEL - "transportation_section/paragraph_2_touch": T.PANEL - "transportation_section/padding_2": T.PANEL - "transportation_section/paragraph_3_keyboard": T.PANEL - "transportation_section/paragraph_3_gamepad": T.PANEL - "transportation_section/paragraph_3a_touch": T.PANEL - "transportation_section/padding_3a": T.PANEL - "transportation_section/paragraph_3b_touch": T.PANEL - "transportation_section/padding_3b": T.PANEL - "transportation_section/paragraph_3c_touch": T.PANEL - "transportation_section/padding_3": T.PANEL - "transportation_section/header_2": T.PANEL - "transportation_section/paragraph_4": T.PANEL - "transportation_section/paragraph_4_touch": T.PANEL - "transportation_section/padding_4": T.PANEL - "transportation_section/paragraph_5_keyboard": T.PANEL - "transportation_section/paragraph_5_gamepad": T.PANEL - "transportation_section/paragraph_5a_touch": T.PANEL - "transportation_section/padding_5a": T.PANEL - "transportation_section/paragraph_5b_touch": T.PANEL - "transportation_section/padding_5b": T.PANEL - "transportation_section/paragraph_5c_touch": T.PANEL - weapons_button: T.PANEL - weapons_section: T.STACK_PANEL - "weapons_section/header_1": T.PANEL - "weapons_section/paragraph_1": T.PANEL - "weapons_section/padding_1": T.PANEL - "weapons_section/paragraph_2_not_touch": T.PANEL - "weapons_section/paragraph_2_touch": T.PANEL - "weapons_section/padding_2": T.PANEL - "weapons_section/header_2": T.PANEL - "weapons_section/paragraph_3_not_touch": T.PANEL - "weapons_section/paragraph_3_touch": T.PANEL - "weapons_section/padding_3": T.PANEL - "weapons_section/paragraph_4": T.PANEL - "weapons_section/padding_5": T.PANEL - "weapons_section/header_3": T.PANEL - "weapons_section/paragraph_5_not_touch": T.PANEL - "weapons_section/paragraph_5a_touch": T.PANEL - "weapons_section/padding_5a_touch": T.PANEL - "weapons_section/paragraph_5b_touch": T.PANEL - "weapons_section/padding_5b_touch": T.PANEL - "weapons_section/paragraph_5c_touch": T.PANEL - "weapons_section/padding_5c_touch": T.PANEL - "weapons_section/paragraph_5d_touch": T.PANEL - "weapons_section/padding_6": T.PANEL - "weapons_section/header_4": T.PANEL - "weapons_section/paragraph_6_not_touch": T.PANEL - "weapons_section/paragraph_6_touch": T.PANEL - "weapons_section/padding_7": T.PANEL - "weapons_section/header_5": T.PANEL - "weapons_section/paragraph_7": T.PANEL - minecoins_button: T.PANEL - minecoins_section: T.STACK_PANEL - "minecoins_section/paragraph_1": T.PANEL - "minecoins_section/padding_1": T.PANEL - "minecoins_section/paragraph_2": T.PANEL - "minecoins_section/padding_2": T.PANEL - "minecoins_section/get_minecoins_button": T.BUTTON - "minecoins_section/padding_3": T.PANEL - "minecoins_section/header_1": T.PANEL - "minecoins_section/paragraph_3": T.PANEL - addons_button: T.PANEL - addons_section: T.STACK_PANEL - "addons_section/paragraph_1": T.PANEL - "addons_section/padding_1": T.PANEL - "addons_section/paragraph_2": T.PANEL - "addons_section/padding_2": T.PANEL - "addons_section/header_1": T.PANEL - "addons_section/paragraph_3": T.PANEL - "addons_section/padding_3": T.PANEL - "addons_section/paragraph_4": T.PANEL - "addons_section/padding_4": T.PANEL - "addons_section/paragraph_5": T.PANEL - "addons_section/addons_faq_button": T.BUTTON - worlds_button: T.PANEL - worlds_section: T.STACK_PANEL - "worlds_section/paragraph_1": T.PANEL - "worlds_section/padding_1": T.PANEL - "worlds_section/paragraph_2": T.PANEL - "worlds_section/padding_2": T.PANEL - "worlds_section/paragraph_3": T.PANEL - "worlds_section/padding_3": T.PANEL - "worlds_section/paragraph_4": T.PANEL - "worlds_section/padding_4": T.PANEL - "worlds_section/header_1": T.PANEL - "worlds_section/paragraph_5": T.PANEL - "worlds_section/padding_5": T.PANEL - "worlds_section/paragraph_6": T.PANEL - "worlds_section/padding_6": T.PANEL - "worlds_section/header_2": T.PANEL - "worlds_section/paragraph_7": T.PANEL - "worlds_section/padding_7": T.PANEL - "worlds_section/paragraph_8": T.PANEL - "worlds_section/padding_8": T.PANEL - "worlds_section/header_3": T.PANEL - "worlds_section/paragraph_9": T.PANEL - "worlds_section/padding_9": T.PANEL - "worlds_section/paragraph_10": T.PANEL - "worlds_section/padding_10": T.PANEL - "worlds_section/header_4": T.PANEL - "worlds_section/paragraph_11": T.PANEL - "worlds_section/padding_11": T.PANEL - "worlds_section/paragraph_12": T.PANEL - "worlds_section/padding_12": T.PANEL - textures_button: T.PANEL - textures_section: T.STACK_PANEL - "textures_section/paragraph_1": T.PANEL - skins_button: T.PANEL - skins_section: T.STACK_PANEL - "skins_section/paragraph_1": T.PANEL - mashups_button: T.PANEL - mashups_section: T.STACK_PANEL - "mashups_section/paragraph_1": T.PANEL + "encyclopedia_screen": T.SCREEN, + "encyclopedia_selector_stack_panel": T.STACK_PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane": T.STACK_PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/overworld_category": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/armor_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/armor_stand_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/banners_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/beacons_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/beds_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/blocks_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/book_and_quill_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/chests_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/conduits_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/dyes_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/farming_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/fireworks_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/fishing_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/jigsaw_blocks_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/mounts_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/navigation_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/nether_portals_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/pets_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/raids_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/ranching_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/scaffolding_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/structure_blocks_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/tools_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/transportation_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/trading_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/weapons_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/stands_and_tables_category": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/anvil_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/brewing_stand_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/cauldron_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/crafting_table_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/enchanting_table_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/furnace_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/loom_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/smithing_table_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/redstone_engineering_category": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/droppers_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/dispensers_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/hoppers_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/jukebox_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/redstone_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/the_end_dimension_category": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/the_end_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/eye_of_ender_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/end_cities_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/elytra_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/shulker_boxes_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/options_and_cheats_category": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/game_settings_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/difficulty_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/adventure_mode_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/creative_mode_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/commands_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/host_and_player_options_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/command_blocks_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/realms_category": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/realms_stories_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/marketplace_category": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/minecoins_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/addons_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/worlds_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/textures_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/skins_button": T.PANEL, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/mashups_button": T.PANEL, + "encyclopedia_section_content_panels": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/section_contents_header": T.INPUT_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/armor_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/armor_stand_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/banners_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/beacons_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/beds_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/blocks_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/book_and_quill_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/chests_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/conduits_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/dyes_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/farming_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/fireworks_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/fishing_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/jigsaw": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/mounts_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/navigation_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/nether_portals_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/pets_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/raids_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/ranching_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/scaffolding_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/structure_blocks_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/tools_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/transportation_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/trading_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/weapons_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/anvil_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/brewing_stand_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/cauldron_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/crafting_table_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/enchanting_table_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/furnace_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/loom_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/smithing_table_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/droppers_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/dispensers_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/hoppers_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/jukebox_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/redstone_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/the_end_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/eye_of_ender_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/end_cities_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/elytra_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/shulker_boxes_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/game_settings_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/difficulty_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/adventure_mode_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/creative_mode_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/commands_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/host_and_player_options_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/command_blocks_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/realms_stories_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/minecoins_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/addons_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/worlds_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/textures_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/skins_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/mashups_section": T.STACK_PANEL, + "encyclopedia_section_content_panels/general_tips_sections/section_contents_footer": T.INPUT_PANEL, + "adventure_mode_button": T.PANEL, + "adventure_mode_section": T.STACK_PANEL, + "adventure_mode_section/paragraph_1": T.PANEL, + "adventure_mode_section/padding_1": T.PANEL, + "adventure_mode_section/paragraph_2": T.PANEL, + "anvil_button": T.PANEL, + "anvil_section": T.STACK_PANEL, + "anvil_section/paragraph_1": T.PANEL, + "anvil_section/padding_1": T.PANEL, + "anvil_section/header_1": T.PANEL, + "anvil_section/paragraph_2": T.PANEL, + "anvil_section/padding_2": T.PANEL, + "anvil_section/header_2": T.PANEL, + "anvil_section/paragraph_3": T.PANEL, + "anvil_section/padding_3": T.PANEL, + "anvil_section/paragraph_4": T.PANEL, + "anvil_section/padding_4": T.PANEL, + "anvil_section/paragraph_5": T.PANEL, + "armor_button": T.PANEL, + "armor_section": T.STACK_PANEL, + "armor_section/paragraph_1": T.PANEL, + "armor_section/padding_1": T.PANEL, + "armor_section/header_1": T.PANEL, + "armor_section/paragraph_2": T.PANEL, + "armor_section/padding_2": T.PANEL, + "armor_section/paragraph_3": T.PANEL, + "armor_section/padding_3": T.PANEL, + "armor_section/paragraph_4": T.PANEL, + "armor_section/padding_4": T.PANEL, + "armor_section/header_2": T.PANEL, + "armor_section/paragraph_5_keyboard": T.PANEL, + "armor_section/paragraph_5_gamepad": T.PANEL, + "armor_section/paragraph_5a_touch": T.PANEL, + "armor_section/padding_5a_touch": T.PANEL, + "armor_section/paragraph_5b_touch": T.PANEL, + "armor_section/padding_5b_touch": T.PANEL, + "armor_section/paragraph_5c_touch": T.PANEL, + "armor_section/padding_5": T.PANEL, + "armor_section/paragraph_6": T.PANEL, + "armor_section/padding_6": T.PANEL, + "armor_section/header_3": T.PANEL, + "armor_section/paragraph_7": T.PANEL, + "armor_stand_button": T.PANEL, + "armor_stand_section": T.STACK_PANEL, + "armor_stand_section/paragraph_1": T.PANEL, + "armor_stand_section/padding_1": T.PANEL, + "armor_stand_section/header_1": T.PANEL, + "armor_stand_section/paragraph_2_keyboard": T.PANEL, + "armor_stand_section/paragraph_2_gamepad": T.PANEL, + "armor_stand_section/paragraph_2_touch": T.PANEL, + "armor_stand_section/padding_2": T.PANEL, + "armor_stand_section/paragraph_3_keyboard": T.PANEL, + "armor_stand_section/paragraph_3_gamepad": T.PANEL, + "armor_stand_section/paragraph_3_touch": T.PANEL, + "armor_stand_section/padding_3": T.PANEL, + "armor_stand_section/header_2": T.PANEL, + "armor_stand_section/paragraph_4_keyboard": T.PANEL, + "armor_stand_section/paragraph_4_gamepad": T.PANEL, + "armor_stand_section/paragraph_4_touch": T.PANEL, + "armor_stand_section/padding_4": T.PANEL, + "armor_stand_section/header_3": T.PANEL, + "armor_stand_section/paragraph_5": T.PANEL, + "banners_button": T.PANEL, + "banners_section": T.STACK_PANEL, + "banners_section/paragraph_1": T.PANEL, + "banners_section/padding_1": T.PANEL, + "banners_section/paragraph_2": T.PANEL, + "banners_section/padding_2": T.PANEL, + "banners_section/header_1": T.PANEL, + "banners_section/paragraph_3": T.PANEL, + "banners_section/padding_3": T.PANEL, + "banners_section/paragraph_4": T.PANEL, + "banners_section/padding_4": T.PANEL, + "banners_section/paragraph_5": T.PANEL, + "banners_section/padding_5": T.PANEL, + "banners_section/paragraph_6": T.PANEL, + "banners_section/padding_6": T.PANEL, + "banners_section/paragraph_7": T.PANEL, + "banners_section/padding_7": T.PANEL, + "banners_section/header_2": T.PANEL, + "banners_section/paragraph_8": T.PANEL, + "banners_section/padding_8": T.PANEL, + "banners_section/header_3": T.PANEL, + "banners_section/paragraph_9": T.PANEL, + "beacons_button": T.PANEL, + "beacons_section": T.STACK_PANEL, + "beacons_section/paragraph_1": T.PANEL, + "beacons_section/padding_1": T.PANEL, + "beacons_section/paragraph_2": T.PANEL, + "beacons_section/padding_2": T.PANEL, + "beacons_section/header_1": T.PANEL, + "beacons_section/paragraph_3": T.PANEL, + "beacons_section/padding_3": T.PANEL, + "beacons_section/paragraph_4": T.PANEL, + "beacons_section/padding_4": T.PANEL, + "beacons_section/header_2": T.PANEL, + "beacons_section/paragraph_5": T.PANEL, + "beacons_section/padding_5": T.PANEL, + "beacons_section/paragraph_6": T.PANEL, + "beacons_section/padding_6": T.PANEL, + "beacons_section/paragraph_7": T.PANEL, + "beacons_section/padding_7": T.PANEL, + "beacons_section/paragraph_8": T.PANEL, + "conduits_button": T.PANEL, + "conduits_section": T.STACK_PANEL, + "conduits_section/paragraph_1": T.PANEL, + "conduits_section/padding_1": T.PANEL, + "conduits_section/paragraph_2": T.PANEL, + "conduits_section/padding_2": T.PANEL, + "conduits_section/header_1": T.PANEL, + "conduits_section/paragraph_3": T.PANEL, + "conduits_section/padding_3": T.PANEL, + "conduits_section/paragraph_4": T.PANEL, + "beds_button": T.PANEL, + "beds_section": T.STACK_PANEL, + "beds_section/paragraph_1": T.PANEL, + "beds_section/padding_1": T.PANEL, + "beds_section/paragraph_2_keyboard": T.PANEL, + "beds_section/paragraph_2_gamepad": T.PANEL, + "beds_section/paragraph_2_touch": T.PANEL, + "beds_section/padding_2": T.PANEL, + "beds_section/paragraph_3": T.PANEL, + "beds_section/padding_3": T.PANEL, + "beds_section/paragraph_4": T.PANEL, + "beds_section/padding_4": T.PANEL, + "beds_section/paragraph_5": T.PANEL, + "blocks_button": T.PANEL, + "blocks_section": T.STACK_PANEL, + "blocks_section/paragraph_1": T.PANEL, + "blocks_section/padding_1": T.PANEL, + "blocks_section/paragraph_2": T.PANEL, + "blocks_section/padding_2": T.PANEL, + "blocks_section/header_1": T.PANEL, + "blocks_section/paragraph_3": T.PANEL, + "blocks_section/padding_3": T.PANEL, + "blocks_section/header_2": T.PANEL, + "blocks_section/paragraph_4": T.PANEL, + "blocks_section/padding_4": T.PANEL, + "blocks_section/paragraph_5": T.PANEL, + "blocks_section/padding_5": T.PANEL, + "blocks_section/paragraph_6": T.PANEL, + "blocks_section/padding_6": T.PANEL, + "blocks_section/paragraph_7": T.PANEL, + "blocks_section/padding_7": T.PANEL, + "blocks_section/paragraph_8": T.PANEL, + "blocks_section/padding_8": T.PANEL, + "blocks_section/paragraph_9": T.PANEL, + "book_and_quill_button": T.PANEL, + "book_and_quill_section": T.STACK_PANEL, + "book_and_quill_section/paragraph_1": T.PANEL, + "brewing_stand_button": T.PANEL, + "brewing_stand_section": T.STACK_PANEL, + "brewing_stand_section/paragraph_1": T.PANEL, + "brewing_stand_section/padding_1": T.PANEL, + "brewing_stand_section/header_1": T.PANEL, + "brewing_stand_section/paragraph_2": T.PANEL, + "brewing_stand_section/padding_2": T.PANEL, + "brewing_stand_section/header_2": T.PANEL, + "brewing_stand_section/paragraph_3": T.PANEL, + "brewing_stand_section/padding_3": T.PANEL, + "brewing_stand_section/paragraph_4": T.PANEL, + "cauldron_button": T.PANEL, + "cauldron_section": T.STACK_PANEL, + "cauldron_section/paragraph_1": T.PANEL, + "cauldron_section/padding_1": T.PANEL, + "cauldron_section/header_1": T.PANEL, + "cauldron_section/paragraph_2_keyboard": T.PANEL, + "cauldron_section/paragraph_2_gamepad": T.PANEL, + "cauldron_section/paragraph_2_touch": T.PANEL, + "cauldron_section/padding_2": T.PANEL, + "cauldron_section/paragraph_3": T.PANEL, + "cauldron_section/padding_3": T.PANEL, + "cauldron_section/header_2": T.PANEL, + "cauldron_section/paragraph_4_keyboard": T.PANEL, + "cauldron_section/paragraph_4_gamepad": T.PANEL, + "cauldron_section/paragraph_4_touch": T.PANEL, + "cauldron_section/padding_4": T.PANEL, + "cauldron_section/header_3": T.PANEL, + "cauldron_section/paragraph_5_keyboard": T.PANEL, + "cauldron_section/paragraph_5_gamepad": T.PANEL, + "cauldron_section/paragraph_5_touch": T.PANEL, + "cauldron_section/padding_5": T.PANEL, + "cauldron_section/paragraph_6": T.PANEL, + "chests_button": T.PANEL, + "chests_section": T.STACK_PANEL, + "chests_section/paragraph_1_keyboard": T.PANEL, + "chests_section/paragraph_1_gamepad": T.PANEL, + "chests_section/paragraph_1_touch": T.PANEL, + "chests_section/padding_1": T.PANEL, + "chests_section/paragraph_2": T.PANEL, + "chests_section/padding_2": T.PANEL, + "chests_section/paragraph_3": T.PANEL, + "command_blocks_button": T.PANEL, + "command_blocks_section": T.STACK_PANEL, + "command_blocks_section/paragraph_1": T.PANEL, + "command_blocks_section/padding_1": T.PANEL, + "command_blocks_section/paragraph_2": T.PANEL, + "command_blocks_section/padding_2": T.PANEL, + "command_blocks_section/paragraph_3": T.PANEL, + "command_blocks_section/padding_3": T.PANEL, + "command_blocks_section/paragraph_4": T.PANEL, + "command_blocks_section/padding_4": T.PANEL, + "command_blocks_section/paragraph_5": T.PANEL, + "command_blocks_section/paragraph_5_1": T.PANEL, + "command_blocks_section/paragraph_5_2": T.PANEL, + "command_blocks_section/paragraph_5_3": T.PANEL, + "command_blocks_section/padding_5": T.PANEL, + "command_blocks_section/paragraph_6": T.PANEL, + "command_blocks_section/paragraph_6_1": T.PANEL, + "command_blocks_section/paragraph_6_2": T.PANEL, + "command_blocks_section/padding_6": T.PANEL, + "command_blocks_section/paragraph_7": T.PANEL, + "command_blocks_section/paragraph_7_1": T.PANEL, + "command_blocks_section/paragraph_7_2": T.PANEL, + "command_blocks_section/padding_7": T.PANEL, + "command_blocks_section/paragraph_8": T.PANEL, + "commands_button": T.PANEL, + "commands_section": T.STACK_PANEL, + "commands_section/paragraph_1": T.PANEL, + "commands_section/padding_1": T.PANEL, + "commands_section/paragraph_2": T.PANEL, + "crafting_table_button": T.PANEL, + "crafting_table_section": T.STACK_PANEL, + "crafting_table_section/paragraph_1": T.PANEL, + "crafting_table_section/padding_1": T.PANEL, + "crafting_table_section/paragraph_2_keyboard": T.PANEL, + "crafting_table_section/paragraph_2_gamepad": T.PANEL, + "crafting_table_section/paragraph_2_touch": T.PANEL, + "creative_mode_button": T.PANEL, + "creative_mode_section": T.STACK_PANEL, + "creative_mode_section/paragraph_1": T.PANEL, + "creative_mode_section/padding_1": T.PANEL, + "creative_mode_section/header_1": T.PANEL, + "creative_mode_section/paragraph_2": T.PANEL, + "creative_mode_section/padding_2": T.PANEL, + "creative_mode_section/paragraph_3": T.PANEL, + "creative_mode_section/padding_3": T.PANEL, + "creative_mode_section/header_2": T.PANEL, + "creative_mode_section/paragraph_4_keyboard": T.PANEL, + "creative_mode_section/paragraph_4_gamepad": T.PANEL, + "creative_mode_section/paragraph_4a_touch_joystick_tap": T.PANEL, + "creative_mode_section/paragraph_4a_touch_classic_dpad": T.PANEL, + "creative_mode_section/paragraph_4a_touch_joystick_crosshair": T.PANEL, + "creative_mode_section/padding_4a_touch": T.PANEL, + "creative_mode_section/paragraph_4b_touch_joystick_tap": T.PANEL, + "creative_mode_section/paragraph_4b_touch_classic_dpad": T.PANEL, + "creative_mode_section/paragraph_4b_touch_joystick_crosshair": T.PANEL, + "difficulty_button": T.PANEL, + "difficulty_section": T.STACK_PANEL, + "difficulty_section/paragraph_1": T.PANEL, + "difficulty_section/padding_1": T.PANEL, + "difficulty_section/header_1": T.PANEL, + "difficulty_section/paragraph_2": T.PANEL, + "difficulty_section/padding_2": T.PANEL, + "difficulty_section/header_2": T.PANEL, + "difficulty_section/paragraph_3": T.PANEL, + "difficulty_section/padding_3": T.PANEL, + "difficulty_section/header_3": T.PANEL, + "difficulty_section/paragraph_4": T.PANEL, + "difficulty_section/padding_4": T.PANEL, + "difficulty_section/header_4": T.PANEL, + "difficulty_section/paragraph_5": T.PANEL, + "dispensers_button": T.PANEL, + "dispensers_section": T.STACK_PANEL, + "dispensers_section/paragraph_1": T.PANEL, + "dispensers_section/padding_1": T.PANEL, + "dispensers_section/paragraph_2_keyboard": T.PANEL, + "dispensers_section/paragraph_2_gamepad": T.PANEL, + "dispensers_section/paragraph_2_touch": T.PANEL, + "dispensers_section/padding_2": T.PANEL, + "dispensers_section/header_1": T.PANEL, + "dispensers_section/paragraph_3": T.PANEL, + "dispensers_section/padding_3": T.PANEL, + "dispensers_section/paragraph_4": T.PANEL, + "droppers_button": T.PANEL, + "droppers_section": T.STACK_PANEL, + "droppers_section/paragraph_1_keyboard": T.PANEL, + "droppers_section/paragraph_1_gamepad": T.PANEL, + "droppers_section/paragraph_1_touch": T.PANEL, + "droppers_section/padding_1": T.PANEL, + "droppers_section/header_1": T.PANEL, + "droppers_section/paragraph_2": T.PANEL, + "dyes_button": T.PANEL, + "dyes_section": T.STACK_PANEL, + "dyes_section/paragraph_1": T.PANEL, + "dyes_section/padding_1": T.PANEL, + "dyes_section/paragraph_2": T.PANEL, + "dyes_section/padding_2": T.PANEL, + "dyes_section/paragraph_3": T.PANEL, + "dyes_section/padding_3": T.PANEL, + "dyes_section/paragraph_4": T.PANEL, + "dyes_section/padding_4": T.PANEL, + "dyes_section/paragraph_5": T.PANEL, + "dyes_section/padding_5": T.PANEL, + "dyes_section/paragraph_6": T.PANEL, + "dyes_section/padding_6": T.PANEL, + "dyes_section/paragraph_7": T.PANEL, + "elytra_button": T.PANEL, + "elytra_section": T.STACK_PANEL, + "elytra_section/paragraph_1": T.PANEL, + "elytra_section/padding_1": T.PANEL, + "elytra_section/paragraph_2": T.PANEL, + "elytra_section/padding_2": T.PANEL, + "elytra_section/header_1": T.PANEL, + "elytra_section/paragraph_3_keyboard": T.PANEL, + "elytra_section/paragraph_3_gamepad": T.PANEL, + "elytra_section/paragraph_3_touch": T.PANEL, + "elytra_section/padding_3": T.PANEL, + "elytra_section/paragraph_4": T.PANEL, + "elytra_section/paragraph_4_touch": T.PANEL, + "elytra_section/padding_4": T.PANEL, + "elytra_section/paragraph_5": T.PANEL, + "elytra_section/padding_5": T.PANEL, + "elytra_section/header_2": T.PANEL, + "elytra_section/paragraph_6": T.PANEL, + "enchanting_table_button": T.PANEL, + "enchanting_table_section": T.STACK_PANEL, + "enchanting_table_section/paragraph_1": T.PANEL, + "enchanting_table_section/padding_1": T.PANEL, + "enchanting_table_section/header_1": T.PANEL, + "enchanting_table_section/paragraph_2": T.PANEL, + "enchanting_table_section/padding_2": T.PANEL, + "enchanting_table_section/paragraph_3": T.PANEL, + "enchanting_table_section/padding_3": T.PANEL, + "enchanting_table_section/header_2": T.PANEL, + "enchanting_table_section/paragraph_4": T.PANEL, + "enchanting_table_section/padding_4": T.PANEL, + "enchanting_table_section/header_3": T.PANEL, + "enchanting_table_section/paragraph_5": T.PANEL, + "end_cities_button": T.PANEL, + "end_cities_section": T.STACK_PANEL, + "end_cities_section/paragraph_1": T.PANEL, + "end_cities_section/padding_1": T.PANEL, + "end_cities_section/paragraph_2": T.PANEL, + "eye_of_ender_button": T.PANEL, + "eye_of_ender_section": T.STACK_PANEL, + "eye_of_ender_section/paragraph_1": T.PANEL, + "eye_of_ender_section/padding_1": T.PANEL, + "eye_of_ender_section/paragraph_2": T.PANEL, + "farming_button": T.PANEL, + "farming_section": T.STACK_PANEL, + "farming_section/paragraph_1": T.PANEL, + "farming_section/padding_1": T.PANEL, + "farming_section/header_1": T.PANEL, + "farming_section/paragraph_2": T.PANEL, + "farming_section/padding_2": T.PANEL, + "farming_section/paragraph_3": T.PANEL, + "farming_section/padding_3": T.PANEL, + "farming_section/header_2": T.PANEL, + "farming_section/paragraph_4": T.PANEL, + "farming_section/padding_4": T.PANEL, + "farming_section/paragraph_5": T.PANEL, + "farming_section/padding_5": T.PANEL, + "farming_section/paragraph_6": T.PANEL, + "farming_section/padding_6": T.PANEL, + "farming_section/paragraph_7": T.PANEL, + "fireworks_button": T.PANEL, + "fireworks_section": T.STACK_PANEL, + "fireworks_section/paragraph_1": T.PANEL, + "fireworks_section/padding_1": T.PANEL, + "fireworks_section/paragraph_2": T.PANEL, + "fireworks_section/padding_2": T.PANEL, + "fireworks_section/header_1": T.PANEL, + "fireworks_section/paragraph_3_keyboard": T.PANEL, + "fireworks_section/paragraph_3_gamepad": T.PANEL, + "fireworks_section/paragraph_3_touch": T.PANEL, + "fireworks_section/padding_3": T.PANEL, + "fireworks_section/paragraph_4": T.PANEL, + "fireworks_section/padding_4": T.PANEL, + "fireworks_section/header_2": T.PANEL, + "fireworks_section/paragraph_5": T.PANEL, + "fireworks_section/padding_5": T.PANEL, + "fireworks_section/paragraph_6": T.PANEL, + "fireworks_section/padding_5a": T.PANEL, + "fireworks_section/paragraph_6_1": T.PANEL, + "fireworks_section/padding_5b": T.PANEL, + "fireworks_section/paragraph_6_2": T.PANEL, + "fireworks_section/padding_5c": T.PANEL, + "fireworks_section/paragraph_6_3": T.PANEL, + "fireworks_section/padding_5d": T.PANEL, + "fireworks_section/paragraph_6_4": T.PANEL, + "fireworks_section/padding_5e": T.PANEL, + "fireworks_section/paragraph_6_5": T.PANEL, + "fireworks_section/padding_5f": T.PANEL, + "fireworks_section/paragraph_6_6": T.PANEL, + "fireworks_section/padding_6": T.PANEL, + "fireworks_section/header_3": T.PANEL, + "fireworks_section/paragraph_7": T.PANEL, + "jigsaw_blocks_button": T.PANEL, + "jigsaw_blocks_section": T.STACK_PANEL, + "jigsaw_blocks_section/paragraph_1": T.PANEL, + "jigsaw_blocks_section/padding_1": T.PANEL, + "jigsaw_blocks_section/header_1": T.PANEL, + "jigsaw_blocks_section/paragraph_2": T.PANEL, + "jigsaw_blocks_section/padding_2": T.PANEL, + "jigsaw_blocks_section/header_2": T.PANEL, + "jigsaw_blocks_section/paragraph_3": T.PANEL, + "jigsaw_blocks_section/padding_3": T.PANEL, + "jigsaw_blocks_section/paragraph_4": T.PANEL, + "jigsaw_blocks_section/padding_4": T.PANEL, + "jigsaw_blocks_section/paragraph_5": T.PANEL, + "jigsaw_blocks_section/padding_5": T.PANEL, + "jigsaw_blocks_section/paragraph_6": T.PANEL, + "jigsaw_blocks_section/padding_6": T.PANEL, + "jigsaw_blocks_section/paragraph_7": T.PANEL, + "jigsaw_blocks_section/padding_7": T.PANEL, + "jigsaw_blocks_section/paragraph_8": T.PANEL, + "jigsaw_blocks_section/padding_8": T.PANEL, + "jigsaw_blocks_section/paragraph_9": T.PANEL, + "fishing_button": T.PANEL, + "fishing_section": T.STACK_PANEL, + "fishing_section/paragraph_1": T.PANEL, + "fishing_section/padding_1": T.PANEL, + "fishing_section/header_1": T.PANEL, + "fishing_section/paragraph_2_keyboard": T.PANEL, + "fishing_section/paragraph_2_gamepad": T.PANEL, + "fishing_section/paragraph_2_touch": T.PANEL, + "fishing_section/padding_2": T.PANEL, + "fishing_section/header_2": T.PANEL, + "fishing_section/paragraph_3": T.PANEL, + "fishing_section/padding_3": T.PANEL, + "fishing_section/paragraph_4_keyboard": T.PANEL, + "fishing_section/paragraph_4_gamepad": T.PANEL, + "fishing_section/paragraph_4_touch": T.PANEL, + "furnace_button": T.PANEL, + "furnace_section": T.STACK_PANEL, + "furnace_section/paragraph_1": T.PANEL, + "furnace_section/padding_1": T.PANEL, + "furnace_section/paragraph_2_keyboard": T.PANEL, + "furnace_section/paragraph_2_gamepad": T.PANEL, + "furnace_section/paragraph_2_touch": T.PANEL, + "furnace_section/padding_2": T.PANEL, + "furnace_section/paragraph_3": T.PANEL, + "game_settings_button": T.PANEL, + "game_settings_section": T.STACK_PANEL, + "game_settings_section/paragraph_1": T.PANEL, + "game_settings_section/padding_1": T.PANEL, + "game_settings_section/paragraph_2": T.PANEL, + "game_settings_section/padding_2": T.PANEL, + "game_settings_section/paragraph_3": T.PANEL, + "game_settings_section/padding_3": T.PANEL, + "game_settings_section/paragraph_4": T.PANEL, + "game_settings_section/padding_4": T.PANEL, + "game_settings_section/header_1": T.PANEL, + "game_settings_section/paragraph_5": T.PANEL, + "game_settings_section/padding_5": T.PANEL, + "game_settings_section/paragraph_6": T.PANEL, + "game_settings_section/padding_6": T.PANEL, + "game_settings_section/paragraph_7": T.PANEL, + "game_settings_section/paragraph_7_1": T.PANEL, + "game_settings_section/paragraph_7_2": T.PANEL, + "game_settings_section/padding_7": T.PANEL, + "game_settings_section/paragraph_8": T.PANEL, + "game_settings_section/padding_8": T.PANEL, + "game_settings_section/header_2": T.PANEL, + "game_settings_section/paragraph_9": T.PANEL, + "game_settings_section/padding_9": T.PANEL, + "game_settings_section/paragraph_10": T.PANEL, + "game_settings_section/padding_10": T.PANEL, + "game_settings_section/paragraph_11": T.PANEL, + "game_settings_section/padding_11": T.PANEL, + "game_settings_section/paragraph_12": T.PANEL, + "game_settings_section/padding_12": T.PANEL, + "game_settings_section/paragraph_13": T.PANEL, + "game_settings_section/padding_13": T.PANEL, + "game_settings_section/paragraph_14": T.PANEL, + "game_settings_section/padding_14": T.PANEL, + "game_settings_section/paragraph_15": T.PANEL, + "game_settings_section/padding_15": T.PANEL, + "game_settings_section/paragraph_16": T.PANEL, + "game_settings_section/padding_16": T.PANEL, + "game_settings_section/paragraph_17": T.PANEL, + "hoppers_button": T.PANEL, + "hoppers_section": T.STACK_PANEL, + "hoppers_section/paragraph_1": T.PANEL, + "hoppers_section/padding_1": T.PANEL, + "hoppers_section/paragraph_2": T.PANEL, + "hoppers_section/padding_2": T.PANEL, + "hoppers_section/header_1": T.PANEL, + "hoppers_section/paragraph_3": T.PANEL, + "hoppers_section/padding_3": T.PANEL, + "hoppers_section/paragraph_4": T.PANEL, + "host_and_player_options_button": T.PANEL, + "host_and_player_options_section": T.STACK_PANEL, + "host_and_player_options_section/paragraph_1_not_touch": T.PANEL, + "host_and_player_options_section/paragraph_1_touch": T.PANEL, + "jukebox_button": T.PANEL, + "jukebox_section": T.STACK_PANEL, + "jukebox_section/paragraph_1": T.PANEL, + "jukebox_section/padding_1": T.PANEL, + "jukebox_section/header_1": T.PANEL, + "jukebox_section/paragraph_2_not_touch": T.PANEL, + "jukebox_section/paragraph_2_touch": T.PANEL, + "jukebox_section/padding_2": T.PANEL, + "jukebox_section/header_2": T.PANEL, + "jukebox_section/paragraph_3": T.PANEL, + "jukebox_section/padding_3": T.PANEL, + "jukebox_section/paragraph_4": T.PANEL, + "jukebox_section/padding_4": T.PANEL, + "jukebox_section/paragraph_5": T.PANEL, + "jukebox_section/padding_5": T.PANEL, + "jukebox_section/paragraph_6": T.PANEL, + "jukebox_section/padding_6": T.PANEL, + "jukebox_section/header_3": T.PANEL, + "jukebox_section/paragraph_7": T.PANEL, + "jukebox_section/padding_7": T.PANEL, + "jukebox_section/paragraph_8": T.PANEL, + "loom_button": T.PANEL, + "loom_section": T.STACK_PANEL, + "loom_section/paragraph_1": T.PANEL, + "loom_section/padding_1": T.PANEL, + "loom_section/header_1": T.PANEL, + "loom_section/paragraph_2": T.PANEL, + "loom_section/padding_2": T.PANEL, + "loom_section/paragraph_3": T.PANEL, + "loom_section/padding_3": T.PANEL, + "loom_section/header_2": T.PANEL, + "loom_section/paragraph_4": T.PANEL, + "realms_stories_button": T.PANEL, + "realms_stories_section": T.STACK_PANEL, + "realms_stories_section/paragraph_1": T.PANEL, + "realms_stories_section/padding_1": T.PANEL, + "realms_stories_section/header_1": T.PANEL, + "realms_stories_section/paragraph_2": T.PANEL, + "realms_stories_section/padding_2": T.PANEL, + "realms_stories_section/header_2": T.PANEL, + "realms_stories_section/paragraph_3": T.PANEL, + "realms_stories_section/padding_3": T.PANEL, + "realms_stories_section/header_3": T.PANEL, + "realms_stories_section/paragraph_4": T.PANEL, + "realms_stories_section/padding_4": T.PANEL, + "realms_stories_section/header_4": T.PANEL, + "realms_stories_section/paragraph_5": T.PANEL, + "realms_stories_section/padding_5": T.PANEL, + "realms_stories_section/header_5": T.PANEL, + "realms_stories_section/paragraph_6": T.PANEL, + "smithing_table_button": T.PANEL, + "smithing_table_section": T.STACK_PANEL, + "smithing_table_section/paragraph_1": T.PANEL, + "smithing_table_section/padding_1": T.PANEL, + "smithing_table_section/paragraph_2": T.PANEL, + "smithing_table_section/padding_2": T.PANEL, + "smithing_table_section/header_1": T.PANEL, + "smithing_table_section/paragraph_3": T.PANEL, + "smithing_table_section/padding_3": T.PANEL, + "smithing_table_section/paragraph_4": T.PANEL, + "smithing_table_section/padding_4": T.PANEL, + "smithing_table_section/paragraph_5": T.PANEL, + "smithing_table_section/padding_5": T.PANEL, + "smithing_table_section/paragraph_6": T.PANEL, + "smithing_table_section/padding_6": T.PANEL, + "smithing_table_section/header_2": T.PANEL, + "smithing_table_section/paragraph_7": T.PANEL, + "smithing_table_section/padding_7": T.PANEL, + "smithing_table_section/paragraph_8": T.PANEL, + "smithing_table_section/padding_8": T.PANEL, + "smithing_table_section/paragraph_9": T.PANEL, + "mounts_button": T.PANEL, + "mounts_section": T.STACK_PANEL, + "mounts_section/paragraph_1": T.PANEL, + "mounts_section/padding_1": T.PANEL, + "mounts_section/paragraph_2": T.PANEL, + "mounts_section/padding_2": T.PANEL, + "mounts_section/header_1": T.PANEL, + "mounts_section/paragraph_3_not_touch": T.PANEL, + "mounts_section/paragraph_3_touch": T.PANEL, + "mounts_section/padding_3": T.PANEL, + "mounts_section/paragraph_4": T.PANEL, + "mounts_section/padding_4": T.PANEL, + "mounts_section/header_2": T.PANEL, + "mounts_section/paragraph_5": T.PANEL, + "mounts_section/padding_5": T.PANEL, + "mounts_section/paragraph_6": T.PANEL, + "mounts_section/padding_6": T.PANEL, + "mounts_section/paragraph_6b": T.PANEL, + "mounts_section/padding_6b": T.PANEL, + "mounts_section/paragraph_7": T.PANEL, + "mounts_section/padding_7": T.PANEL, + "mounts_section/paragraph_8": T.PANEL, + "mounts_section/padding_8": T.PANEL, + "mounts_section/header_3": T.PANEL, + "mounts_section/paragraph_9": T.PANEL, + "mounts_section/padding_9": T.PANEL, + "mounts_section/paragraph_10": T.PANEL, + "mounts_section/padding_10": T.PANEL, + "mounts_section/paragraph_11": T.PANEL, + "mounts_section/padding_11": T.PANEL, + "mounts_section/paragraph_12": T.PANEL, + "mounts_section/padding_12": T.PANEL, + "mounts_section/header_4": T.PANEL, + "mounts_section/paragraph_13": T.PANEL, + "mounts_section/padding_13": T.PANEL, + "mounts_section/paragraph_14": T.PANEL, + "mounts_section/padding_14": T.PANEL, + "mounts_section/header_5": T.PANEL, + "mounts_section/paragraph_15_not_touch": T.PANEL, + "mounts_section/paragraph_15a_touch": T.PANEL, + "mounts_section/padding_15": T.PANEL, + "mounts_section/paragraph_15b_touch": T.PANEL, + "navigation_button": T.PANEL, + "navigation_section": T.STACK_PANEL, + "navigation_section/paragraph_1": T.PANEL, + "navigation_section/padding_1": T.PANEL, + "navigation_section/paragraph_2": T.PANEL, + "navigation_section/padding_2": T.PANEL, + "navigation_section/header_1": T.PANEL, + "navigation_section/paragraph_3": T.PANEL, + "navigation_section/padding_3": T.PANEL, + "navigation_section/paragraph_4": T.PANEL, + "navigation_section/padding_4": T.PANEL, + "navigation_section/paragraph_5": T.PANEL, + "navigation_section/padding_5": T.PANEL, + "navigation_section/paragraph_6": T.PANEL, + "navigation_section/padding_6": T.PANEL, + "navigation_section/paragraph_7": T.PANEL, + "navigation_section/padding_7": T.PANEL, + "navigation_section/header_2": T.PANEL, + "navigation_section/paragraph_8": T.PANEL, + "navigation_section/padding_8": T.PANEL, + "navigation_section/paragraph_9": T.PANEL, + "navigation_section/padding_9": T.PANEL, + "navigation_section/header_3": T.PANEL, + "navigation_section/paragraph_10": T.PANEL, + "nether_portals_button": T.PANEL, + "nether_portals_section": T.STACK_PANEL, + "nether_portals_section/paragraph_1": T.PANEL, + "nether_portals_section/padding_1": T.PANEL, + "nether_portals_section/paragraph_2": T.PANEL, + "nether_portals_section/padding_2": T.PANEL, + "nether_portals_section/paragraph_3": T.PANEL, + "nether_portals_section/padding_3": T.PANEL, + "nether_portals_section/image_1": T.IMAGE, + "pets_button": T.PANEL, + "pets_section": T.STACK_PANEL, + "pets_section/header_1": T.PANEL, + "pets_section/paragraph_1_not_touch": T.PANEL, + "pets_section/paragraph_1_touch": T.PANEL, + "pets_section/padding_1": T.PANEL, + "pets_section/header_2": T.PANEL, + "pets_section/paragraph_2": T.PANEL, + "pets_section/padding_2": T.PANEL, + "pets_section/header_3": T.PANEL, + "pets_section/paragraph_3": T.PANEL, + "pets_section/padding_3": T.PANEL, + "pets_section/header_4": T.PANEL, + "pets_section/paragraph_4": T.PANEL, + "raids_button": T.PANEL, + "raids_section": T.STACK_PANEL, + "raids_section/paragraph_1": T.PANEL, + "raids_section/padding_1": T.PANEL, + "raids_section/paragraph_2": T.PANEL, + "raids_section/padding_2": T.PANEL, + "raids_section/header_1": T.PANEL, + "raids_section/paragraph_3": T.PANEL, + "ranching_button": T.PANEL, + "ranching_section": T.STACK_PANEL, + "ranching_section/paragraph_1": T.PANEL, + "ranching_section/padding_1": T.PANEL, + "ranching_section/header_1": T.PANEL, + "ranching_section/paragraph_2": T.PANEL, + "ranching_section/padding_2": T.PANEL, + "ranching_section/paragraph_3": T.PANEL, + "ranching_section/padding_3": T.PANEL, + "ranching_section/header_2": T.PANEL, + "ranching_section/paragraph_4": T.PANEL, + "ranching_section/padding_4": T.PANEL, + "ranching_section/paragraph_5": T.PANEL, + "redstone_button": T.PANEL, + "redstone_section": T.STACK_PANEL, + "redstone_section/paragraph_1": T.PANEL, + "redstone_section/padding_1": T.PANEL, + "redstone_section/header_1": T.PANEL, + "redstone_section/paragraph_2": T.PANEL, + "redstone_section/padding_2": T.PANEL, + "redstone_section/paragraph_3": T.PANEL, + "redstone_section/padding_3": T.PANEL, + "redstone_section/paragraph_4": T.PANEL, + "redstone_section/padding_4": T.PANEL, + "redstone_section/paragraph_5": T.PANEL, + "scaffolding_button": T.PANEL, + "scaffolding_section": T.STACK_PANEL, + "scaffolding_section/header_1": T.PANEL, + "scaffolding_section/paragraph_1_keyboard": T.PANEL, + "scaffolding_section/paragraph_1_gamepad": T.PANEL, + "scaffolding_section/paragraph_1a_touch": T.PANEL, + "scaffolding_section/padding_1a_touch": T.PANEL, + "scaffolding_section/paragraph_1b_touch": T.PANEL, + "scaffolding_section/padding_1b_touch": T.PANEL, + "scaffolding_section/paragraph_1c_touch": T.PANEL, + "scaffolding_section/padding_1": T.PANEL, + "scaffolding_section/header_2": T.PANEL, + "scaffolding_section/paragraph_2": T.PANEL, + "scaffolding_section/image_1": T.IMAGE, + "scaffolding_section/padding_2": T.PANEL, + "scaffolding_section/header_3": T.PANEL, + "scaffolding_section/paragraph_3": T.PANEL, + "scaffolding_section/padding_3": T.PANEL, + "structure_blocks_button": T.PANEL, + "structure_blocks_section": T.STACK_PANEL, + "structure_blocks_section/paragraph_1": T.PANEL, + "structure_blocks_section/padding_1": T.PANEL, + "structure_blocks_section/header_1": T.PANEL, + "structure_blocks_section/paragraph_2": T.PANEL, + "structure_blocks_section/padding_2": T.PANEL, + "structure_blocks_section/header_2": T.PANEL, + "structure_blocks_section/paragraph_3": T.PANEL, + "structure_blocks_section/padding_3": T.PANEL, + "structure_blocks_section/paragraph_4": T.PANEL, + "structure_blocks_section/padding_4": T.PANEL, + "structure_blocks_section/paragraph_5": T.PANEL, + "structure_blocks_section/padding_5": T.PANEL, + "structure_blocks_section/paragraph_6": T.PANEL, + "structure_blocks_section/padding_6": T.PANEL, + "structure_blocks_section/paragraph_7": T.PANEL, + "structure_blocks_section/padding_7": T.PANEL, + "structure_blocks_section/header_3": T.PANEL, + "structure_blocks_section/paragraph_8": T.PANEL, + "structure_blocks_section/padding_8": T.PANEL, + "structure_blocks_section/paragraph_9_keyboard": T.PANEL, + "structure_blocks_section/paragraph_9_gamepad": T.PANEL, + "structure_blocks_section/paragraph_9_touch": T.PANEL, + "structure_blocks_section/padding_9": T.PANEL, + "structure_blocks_section/header_4": T.PANEL, + "structure_blocks_section/paragraph_10": T.PANEL, + "structure_blocks_section/padding_10": T.PANEL, + "structure_blocks_section/header_5": T.PANEL, + "structure_blocks_section/paragraph_11": T.PANEL, + "structure_blocks_section/padding_11": T.PANEL, + "structure_blocks_section/paragraph_12": T.PANEL, + "structure_blocks_section/padding_12": T.PANEL, + "structure_blocks_section/paragraph_13": T.PANEL, + "structure_blocks_section/padding_13": T.PANEL, + "structure_blocks_section/header_6": T.PANEL, + "structure_blocks_section/paragraph_14": T.PANEL, + "structure_blocks_section/padding_14": T.PANEL, + "structure_blocks_section/paragraph_15": T.PANEL, + "structure_blocks_section/padding_15": T.PANEL, + "structure_blocks_section/header_7": T.PANEL, + "structure_blocks_section/paragraph_16": T.PANEL, + "structure_blocks_section/padding_16": T.PANEL, + "structure_blocks_section/paragraph_17": T.PANEL, + "shulker_boxes_button": T.PANEL, + "shulker_boxes_section": T.STACK_PANEL, + "shulker_boxes_section/paragraph_1": T.PANEL, + "the_end_button": T.PANEL, + "the_end_section": T.STACK_PANEL, + "the_end_section/paragraph_1": T.PANEL, + "the_end_section/padding_1": T.PANEL, + "the_end_section/paragraph_2": T.PANEL, + "the_end_section/padding_2": T.PANEL, + "the_end_section/header_1": T.PANEL, + "the_end_section/paragraph_3": T.PANEL, + "the_end_section/padding_3": T.PANEL, + "the_end_section/paragraph_4": T.PANEL, + "the_end_section/padding_4": T.PANEL, + "the_end_section/paragraph_5": T.PANEL, + "tools_button": T.PANEL, + "tools_section": T.STACK_PANEL, + "tools_section/paragraph_1": T.PANEL, + "tools_section/padding_1": T.PANEL, + "tools_section/paragraph_2": T.PANEL, + "tools_section/padding_2": T.PANEL, + "tools_section/header_1": T.PANEL, + "tools_section/paragraph_3": T.PANEL, + "tools_section/padding_3": T.PANEL, + "tools_section/paragraph_4": T.PANEL, + "tools_section/padding_4": T.PANEL, + "tools_section/paragraph_5_not_touch": T.PANEL, + "tools_section/paragraph_5_touch": T.PANEL, + "tools_section/padding_5": T.PANEL, + "tools_section/paragraph_6_not_touch": T.PANEL, + "tools_section/paragraph_6_touch": T.PANEL, + "tools_section/padding_6": T.PANEL, + "tools_section/paragraph_7": T.PANEL, + "tools_section/padding_7": T.PANEL, + "tools_section/header_2": T.PANEL, + "tools_section/paragraph_8": T.PANEL, + "tools_section/padding_8": T.PANEL, + "tools_section/paragraph_9": T.PANEL, + "tools_section/padding_9": T.PANEL, + "tools_section/paragraph_10": T.PANEL, + "tools_section/padding_10": T.PANEL, + "tools_section/paragraph_11": T.PANEL, + "tools_section/padding_11": T.PANEL, + "tools_section/paragraph_12": T.PANEL, + "trading_button": T.PANEL, + "trading_section": T.STACK_PANEL, + "trading_section/paragraph_1": T.PANEL, + "trading_section/padding_1": T.PANEL, + "trading_section/header_1": T.PANEL, + "trading_section/paragraph_2": T.PANEL, + "trading_section/padding_2": T.PANEL, + "trading_section/paragraph_3": T.PANEL, + "trading_section/padding_3": T.PANEL, + "trading_section/paragraph_4": T.PANEL, + "transportation_button": T.PANEL, + "transportation_section": T.STACK_PANEL, + "transportation_section/paragraph_1": T.PANEL, + "transportation_section/padding_1": T.PANEL, + "transportation_section/header_1": T.PANEL, + "transportation_section/paragraph_2": T.PANEL, + "transportation_section/paragraph_2_touch": T.PANEL, + "transportation_section/padding_2": T.PANEL, + "transportation_section/paragraph_3_keyboard": T.PANEL, + "transportation_section/paragraph_3_gamepad": T.PANEL, + "transportation_section/paragraph_3a_touch": T.PANEL, + "transportation_section/padding_3a": T.PANEL, + "transportation_section/paragraph_3b_touch": T.PANEL, + "transportation_section/padding_3b": T.PANEL, + "transportation_section/paragraph_3c_touch": T.PANEL, + "transportation_section/padding_3": T.PANEL, + "transportation_section/header_2": T.PANEL, + "transportation_section/paragraph_4": T.PANEL, + "transportation_section/paragraph_4_touch": T.PANEL, + "transportation_section/padding_4": T.PANEL, + "transportation_section/paragraph_5_keyboard": T.PANEL, + "transportation_section/paragraph_5_gamepad": T.PANEL, + "transportation_section/paragraph_5a_touch": T.PANEL, + "transportation_section/padding_5a": T.PANEL, + "transportation_section/paragraph_5b_touch": T.PANEL, + "transportation_section/padding_5b": T.PANEL, + "transportation_section/paragraph_5c_touch": T.PANEL, + "weapons_button": T.PANEL, + "weapons_section": T.STACK_PANEL, + "weapons_section/header_1": T.PANEL, + "weapons_section/paragraph_1": T.PANEL, + "weapons_section/padding_1": T.PANEL, + "weapons_section/paragraph_2_not_touch": T.PANEL, + "weapons_section/paragraph_2_touch": T.PANEL, + "weapons_section/padding_2": T.PANEL, + "weapons_section/header_2": T.PANEL, + "weapons_section/paragraph_3_not_touch": T.PANEL, + "weapons_section/paragraph_3_touch": T.PANEL, + "weapons_section/padding_3": T.PANEL, + "weapons_section/paragraph_4": T.PANEL, + "weapons_section/padding_5": T.PANEL, + "weapons_section/header_3": T.PANEL, + "weapons_section/paragraph_5_not_touch": T.PANEL, + "weapons_section/paragraph_5a_touch": T.PANEL, + "weapons_section/padding_5a_touch": T.PANEL, + "weapons_section/paragraph_5b_touch": T.PANEL, + "weapons_section/padding_5b_touch": T.PANEL, + "weapons_section/paragraph_5c_touch": T.PANEL, + "weapons_section/padding_5c_touch": T.PANEL, + "weapons_section/paragraph_5d_touch": T.PANEL, + "weapons_section/padding_6": T.PANEL, + "weapons_section/header_4": T.PANEL, + "weapons_section/paragraph_6_not_touch": T.PANEL, + "weapons_section/paragraph_6_touch": T.PANEL, + "weapons_section/padding_7": T.PANEL, + "weapons_section/header_5": T.PANEL, + "weapons_section/paragraph_7": T.PANEL, + "minecoins_button": T.PANEL, + "minecoins_section": T.STACK_PANEL, + "minecoins_section/paragraph_1": T.PANEL, + "minecoins_section/padding_1": T.PANEL, + "minecoins_section/paragraph_2": T.PANEL, + "minecoins_section/padding_2": T.PANEL, + "minecoins_section/get_minecoins_button": T.BUTTON, + "minecoins_section/padding_3": T.PANEL, + "minecoins_section/header_1": T.PANEL, + "minecoins_section/paragraph_3": T.PANEL, + "addons_button": T.PANEL, + "addons_section": T.STACK_PANEL, + "addons_section/paragraph_1": T.PANEL, + "addons_section/padding_1": T.PANEL, + "addons_section/paragraph_2": T.PANEL, + "addons_section/padding_2": T.PANEL, + "addons_section/header_1": T.PANEL, + "addons_section/paragraph_3": T.PANEL, + "addons_section/padding_3": T.PANEL, + "addons_section/paragraph_4": T.PANEL, + "addons_section/padding_4": T.PANEL, + "addons_section/paragraph_5": T.PANEL, + "addons_section/addons_faq_button": T.BUTTON, + "worlds_button": T.PANEL, + "worlds_section": T.STACK_PANEL, + "worlds_section/paragraph_1": T.PANEL, + "worlds_section/padding_1": T.PANEL, + "worlds_section/paragraph_2": T.PANEL, + "worlds_section/padding_2": T.PANEL, + "worlds_section/paragraph_3": T.PANEL, + "worlds_section/padding_3": T.PANEL, + "worlds_section/paragraph_4": T.PANEL, + "worlds_section/padding_4": T.PANEL, + "worlds_section/header_1": T.PANEL, + "worlds_section/paragraph_5": T.PANEL, + "worlds_section/padding_5": T.PANEL, + "worlds_section/paragraph_6": T.PANEL, + "worlds_section/padding_6": T.PANEL, + "worlds_section/header_2": T.PANEL, + "worlds_section/paragraph_7": T.PANEL, + "worlds_section/padding_7": T.PANEL, + "worlds_section/paragraph_8": T.PANEL, + "worlds_section/padding_8": T.PANEL, + "worlds_section/header_3": T.PANEL, + "worlds_section/paragraph_9": T.PANEL, + "worlds_section/padding_9": T.PANEL, + "worlds_section/paragraph_10": T.PANEL, + "worlds_section/padding_10": T.PANEL, + "worlds_section/header_4": T.PANEL, + "worlds_section/paragraph_11": T.PANEL, + "worlds_section/padding_11": T.PANEL, + "worlds_section/paragraph_12": T.PANEL, + "worlds_section/padding_12": T.PANEL, + "textures_button": T.PANEL, + "textures_section": T.STACK_PANEL, + "textures_section/paragraph_1": T.PANEL, + "skins_button": T.PANEL, + "skins_section": T.STACK_PANEL, + "skins_section/paragraph_1": T.PANEL, + "mashups_button": T.PANEL, + "mashups_section": T.STACK_PANEL, + "mashups_section/paragraph_1": T.PANEL, } export type ExpandedSkinPackType = { - banner_fill: T.IMAGE - title_label: T.LABEL - label: T.LABEL - undo_image: T.IMAGE - lock_icon: T.IMAGE - skin_button: T.BUTTON - "skin_button/hover": T.IMAGE - "skin_button/pressed": T.IMAGE - skin_rotation_arrows: T.IMAGE - skin_viewer_panel: T.INPUT_PANEL - "skin_viewer_panel/skin_model_panel": T.PANEL - "skin_viewer_panel/skin_model_panel/skin_model": T.CUSTOM - "skin_viewer_panel/lock": T.IMAGE - undo_skin_button: T.BUTTON - confirm_skin_button: T.BUTTON - stack_item: T.PANEL - accept_skin_panel: T.STACK_PANEL - "accept_skin_panel/stack_item_0": T.PANEL - "accept_skin_panel/stack_item_0/undo_btn": T.BUTTON - "accept_skin_panel/stack_item_1": T.PANEL - "accept_skin_panel/stack_item_1/confirm_button": T.BUTTON - preview_skin_panel: T.PANEL - "preview_skin_panel/preview": T.INPUT_PANEL - "preview_skin_panel/button_frame": T.STACK_PANEL - "preview_skin_panel/button_frame/stack_item_0": T.PANEL - "preview_skin_panel/button_frame/stack_item_0/rotation": T.IMAGE - "preview_skin_panel/button_frame/stack_item_1": T.PANEL - "preview_skin_panel/button_frame/stack_item_1/accept": T.STACK_PANEL - skin_model: T.CUSTOM - scrolling_content: T.STACK_PANEL - "scrolling_content/padding_0": T.PANEL - "scrolling_content/pack_info_panel": T.PANEL - "scrolling_content/pack_info_panel/pack_info_panel": T.STACK_PANEL - "scrolling_content/skin_grid_panel": T.PANEL - "scrolling_content/skin_grid_panel/skins_grid": T.GRID - pack_info_panel: T.STACK_PANEL - "pack_info_panel/lock_icon_panel": T.PANEL - "pack_info_panel/lock_icon_panel/lock_icon": T.IMAGE - "pack_info_panel/pack_info_panel": T.STACK_PANEL - "pack_info_panel/pack_info_panel/pack_name": T.LABEL - "pack_info_panel/pack_info_panel/creator_name": T.LABEL - skins_grid_item: T.PANEL - "skins_grid_item/clip": T.PANEL - "skins_grid_item/clip/model": T.CUSTOM - "skins_grid_item/lock": T.IMAGE - "skins_grid_item/button": T.BUTTON - skins_grid: T.GRID - select_skin_button: T.BUTTON - "select_skin_button/default": T.PANEL - "select_skin_button/hover": T.IMAGE - "select_skin_button/pressed": T.IMAGE - all_skins_content: T.INPUT_PANEL - "all_skins_content/scrolling_frame": T.PANEL - "all_skins_content/scrolling_frame/change_skin_scroll": T.PANEL - all_skins_frame: T.PANEL - "all_skins_frame/all_skins_content": T.INPUT_PANEL - title_bar: T.STACK_PANEL - "title_bar/padding_0": T.PANEL - "title_bar/fill_panel": T.PANEL - "title_bar/fill_panel/title_holder": T.PANEL - "title_bar/fill_panel/title_holder/change_skin_title": T.LABEL - "title_bar/padding_1": T.PANEL - "title_bar/skin_name_holder": T.PANEL - "title_bar/skin_name_holder/preview_skin_name": T.LABEL - "title_bar/padding_2": T.PANEL - content: T.PANEL - "content/title": T.STACK_PANEL - "content/selector_area": T.INPUT_PANEL - "content/content_area": T.INPUT_PANEL - "content/section_divider": T.IMAGE - expanded_skin_pack_screen: T.SCREEN - skin_picker_screen_content: T.PANEL - "skin_picker_screen_content/bg": T.STACK_PANEL - "skin_picker_screen_content/container": T.PANEL - "skin_picker_screen_content/container/content": T.PANEL - scrollable_selector_area_content: T.PANEL - selector_area: T.INPUT_PANEL - "selector_area/all_skins": T.PANEL - "selector_area/inactive_modal_pane_fade": T.IMAGE - content_area: T.INPUT_PANEL - "content_area/preview_skin": T.PANEL - "content_area/inactive_modal_pane_fade": T.IMAGE - section_divider: T.IMAGE + "banner_fill": T.IMAGE, + "title_label": T.LABEL, + "label": T.LABEL, + "undo_image": T.IMAGE, + "lock_icon": T.IMAGE, + "skin_button": T.BUTTON, + "skin_button/hover": T.IMAGE, + "skin_button/pressed": T.IMAGE, + "skin_rotation_arrows": T.IMAGE, + "skin_viewer_panel": T.INPUT_PANEL, + "skin_viewer_panel/skin_model_panel": T.PANEL, + "skin_viewer_panel/skin_model_panel/skin_model": T.CUSTOM, + "skin_viewer_panel/lock": T.IMAGE, + "undo_skin_button": T.BUTTON, + "confirm_skin_button": T.BUTTON, + "stack_item": T.PANEL, + "accept_skin_panel": T.STACK_PANEL, + "accept_skin_panel/stack_item_0": T.PANEL, + "accept_skin_panel/stack_item_0/undo_btn": T.BUTTON, + "accept_skin_panel/stack_item_1": T.PANEL, + "accept_skin_panel/stack_item_1/confirm_button": T.BUTTON, + "preview_skin_panel": T.PANEL, + "preview_skin_panel/preview": T.INPUT_PANEL, + "preview_skin_panel/button_frame": T.STACK_PANEL, + "preview_skin_panel/button_frame/stack_item_0": T.PANEL, + "preview_skin_panel/button_frame/stack_item_0/rotation": T.IMAGE, + "preview_skin_panel/button_frame/stack_item_1": T.PANEL, + "preview_skin_panel/button_frame/stack_item_1/accept": T.STACK_PANEL, + "skin_model": T.CUSTOM, + "scrolling_content": T.STACK_PANEL, + "scrolling_content/padding_0": T.PANEL, + "scrolling_content/pack_info_panel": T.PANEL, + "scrolling_content/pack_info_panel/pack_info_panel": T.STACK_PANEL, + "scrolling_content/skin_grid_panel": T.PANEL, + "scrolling_content/skin_grid_panel/skins_grid": T.GRID, + "pack_info_panel": T.STACK_PANEL, + "pack_info_panel/lock_icon_panel": T.PANEL, + "pack_info_panel/lock_icon_panel/lock_icon": T.IMAGE, + "pack_info_panel/pack_info_panel": T.STACK_PANEL, + "pack_info_panel/pack_info_panel/pack_name": T.LABEL, + "pack_info_panel/pack_info_panel/creator_name": T.LABEL, + "skins_grid_item": T.PANEL, + "skins_grid_item/clip": T.PANEL, + "skins_grid_item/clip/model": T.CUSTOM, + "skins_grid_item/lock": T.IMAGE, + "skins_grid_item/button": T.BUTTON, + "skins_grid": T.GRID, + "select_skin_button": T.BUTTON, + "select_skin_button/default": T.PANEL, + "select_skin_button/hover": T.IMAGE, + "select_skin_button/pressed": T.IMAGE, + "all_skins_content": T.INPUT_PANEL, + "all_skins_content/scrolling_frame": T.PANEL, + "all_skins_content/scrolling_frame/change_skin_scroll": T.PANEL, + "all_skins_frame": T.PANEL, + "all_skins_frame/all_skins_content": T.INPUT_PANEL, + "title_bar": T.STACK_PANEL, + "title_bar/padding_0": T.PANEL, + "title_bar/fill_panel": T.PANEL, + "title_bar/fill_panel/title_holder": T.PANEL, + "title_bar/fill_panel/title_holder/change_skin_title": T.LABEL, + "title_bar/padding_1": T.PANEL, + "title_bar/skin_name_holder": T.PANEL, + "title_bar/skin_name_holder/preview_skin_name": T.LABEL, + "title_bar/padding_2": T.PANEL, + "content": T.PANEL, + "content/title": T.STACK_PANEL, + "content/selector_area": T.INPUT_PANEL, + "content/content_area": T.INPUT_PANEL, + "content/section_divider": T.IMAGE, + "expanded_skin_pack_screen": T.SCREEN, + "skin_picker_screen_content": T.PANEL, + "skin_picker_screen_content/bg": T.STACK_PANEL, + "skin_picker_screen_content/container": T.PANEL, + "skin_picker_screen_content/container/content": T.PANEL, + "scrollable_selector_area_content": T.PANEL, + "selector_area": T.INPUT_PANEL, + "selector_area/all_skins": T.PANEL, + "selector_area/inactive_modal_pane_fade": T.IMAGE, + "content_area": T.INPUT_PANEL, + "content_area/preview_skin": T.PANEL, + "content_area/inactive_modal_pane_fade": T.IMAGE, + "section_divider": T.IMAGE, } export type FeedCommonType = { - top_bar_gradient: T.CUSTOM - label: T.LABEL - smooth_label: T.LABEL - share_label: T.LABEL - title_label: T.LABEL - feed_label: T.LABEL - item_label: T.LABEL - return_label: T.LABEL - prev_label: T.LABEL - next_label: T.LABEL - delete_label: T.LABEL - report_to_club_label: T.LABEL - report_to_xbox_label: T.LABEL - new_post_header_text: T.LABEL - feed_button: T.BUTTON - return_button: T.BUTTON - prev_button: T.BUTTON - prev_panel: T.STACK_PANEL - "prev_panel/padding_1": T.PANEL - "prev_panel/lab_panel": T.STACK_PANEL - "prev_panel/lab_panel/vert_pad": T.PANEL - "prev_panel/lab_panel/prevlab": T.LABEL - next_button: T.BUTTON - next_panel: T.STACK_PANEL - "next_panel/lab_panel2": T.STACK_PANEL - "next_panel/lab_panel2/vert_pad2": T.PANEL - "next_panel/lab_panel2/nextlab": T.LABEL - "next_panel/padding_2": T.PANEL - like_button: T.BUTTON - delete_button: T.BUTTON - report_to_xbox_button: T.BUTTON - report_to_club_button: T.BUTTON - options_button: T.BUTTON - options_close_button_high_contrast: T.BUTTON - "options_close_button_high_contrast/background": T.IMAGE - "options_close_button_high_contrast/default": T.PANEL - "options_close_button_high_contrast/hover": T.PANEL - "options_close_button_high_contrast/pressed": T.PANEL - share_button: T.BUTTON - spacing_gap: T.PANEL - platform_icon: T.IMAGE - platform_icon_panel: T.PANEL - "platform_icon_panel/platform_icon": T.IMAGE - account_link_image: T.IMAGE - account_link_icon: T.STACK_PANEL - "account_link_icon/space_01": T.PANEL - "account_link_icon/account_link_image": T.IMAGE - "account_link_icon/space_02": T.PANEL - player_pic_bevel: T.IMAGE - no_feed_item_content: T.LABEL - gamepad_helpers: T.STACK_PANEL - share_text_box: T.EDIT_BOX - progress_loading_bars: T.IMAGE - popup_dialog_bg: T.IMAGE - pagination_panel: T.PANEL - "pagination_panel/prev_button": T.BUTTON - "pagination_panel/page_text": T.LABEL - "pagination_panel/next_button": T.BUTTON - pagination_panel_gamepad: T.PANEL - "pagination_panel_gamepad/prev_panel": T.STACK_PANEL - "pagination_panel_gamepad/page_text": T.LABEL - "pagination_panel_gamepad/next_panel": T.STACK_PANEL - like_image: T.IMAGE - like_image_default: T.IMAGE - like_image_panel: T.PANEL - "like_image_panel/like_image_instance": T.IMAGE - "like_image_panel/like_image_default": T.IMAGE - feed_like_content_panel: T.STACK_PANEL - "feed_like_content_panel/like_image_panel": T.PANEL - "feed_like_content_panel/like_label": T.LABEL - white_banner: T.IMAGE - page_text: T.LABEL - options_icon: T.IMAGE - transparent_background: T.IMAGE - black_arrow: T.IMAGE - faded_background_image: T.IMAGE - unviewed_post_badge: T.IMAGE - "unviewed_post_badge/unviewed_post_text": T.LABEL + "top_bar_gradient": T.CUSTOM, + "label": T.LABEL, + "smooth_label": T.LABEL, + "share_label": T.LABEL, + "title_label": T.LABEL, + "feed_label": T.LABEL, + "item_label": T.LABEL, + "return_label": T.LABEL, + "prev_label": T.LABEL, + "next_label": T.LABEL, + "delete_label": T.LABEL, + "report_to_club_label": T.LABEL, + "report_to_xbox_label": T.LABEL, + "new_post_header_text": T.LABEL, + "feed_button": T.BUTTON, + "return_button": T.BUTTON, + "prev_button": T.BUTTON, + "prev_panel": T.STACK_PANEL, + "prev_panel/padding_1": T.PANEL, + "prev_panel/lab_panel": T.STACK_PANEL, + "prev_panel/lab_panel/vert_pad": T.PANEL, + "prev_panel/lab_panel/prevlab": T.LABEL, + "next_button": T.BUTTON, + "next_panel": T.STACK_PANEL, + "next_panel/lab_panel2": T.STACK_PANEL, + "next_panel/lab_panel2/vert_pad2": T.PANEL, + "next_panel/lab_panel2/nextlab": T.LABEL, + "next_panel/padding_2": T.PANEL, + "like_button": T.BUTTON, + "delete_button": T.BUTTON, + "report_to_xbox_button": T.BUTTON, + "report_to_club_button": T.BUTTON, + "options_button": T.BUTTON, + "options_close_button_high_contrast": T.BUTTON, + "options_close_button_high_contrast/background": T.IMAGE, + "options_close_button_high_contrast/default": T.PANEL, + "options_close_button_high_contrast/hover": T.PANEL, + "options_close_button_high_contrast/pressed": T.PANEL, + "share_button": T.BUTTON, + "spacing_gap": T.PANEL, + "platform_icon": T.IMAGE, + "platform_icon_panel": T.PANEL, + "platform_icon_panel/platform_icon": T.IMAGE, + "account_link_image": T.IMAGE, + "account_link_icon": T.STACK_PANEL, + "account_link_icon/space_01": T.PANEL, + "account_link_icon/account_link_image": T.IMAGE, + "account_link_icon/space_02": T.PANEL, + "player_pic_bevel": T.IMAGE, + "no_feed_item_content": T.LABEL, + "gamepad_helpers": T.STACK_PANEL, + "share_text_box": T.EDIT_BOX, + "progress_loading_bars": T.IMAGE, + "popup_dialog_bg": T.IMAGE, + "pagination_panel": T.PANEL, + "pagination_panel/prev_button": T.BUTTON, + "pagination_panel/page_text": T.LABEL, + "pagination_panel/next_button": T.BUTTON, + "pagination_panel_gamepad": T.PANEL, + "pagination_panel_gamepad/prev_panel": T.STACK_PANEL, + "pagination_panel_gamepad/page_text": T.LABEL, + "pagination_panel_gamepad/next_panel": T.STACK_PANEL, + "like_image": T.IMAGE, + "like_image_default": T.IMAGE, + "like_image_panel": T.PANEL, + "like_image_panel/like_image_instance": T.IMAGE, + "like_image_panel/like_image_default": T.IMAGE, + "feed_like_content_panel": T.STACK_PANEL, + "feed_like_content_panel/like_image_panel": T.PANEL, + "feed_like_content_panel/like_label": T.LABEL, + "white_banner": T.IMAGE, + "page_text": T.LABEL, + "options_icon": T.IMAGE, + "transparent_background": T.IMAGE, + "black_arrow": T.IMAGE, + "faded_background_image": T.IMAGE, + "unviewed_post_badge": T.IMAGE, + "unviewed_post_badge/unviewed_post_text": T.LABEL, } export type FileUploadType = { - empty_progress_bar_icon: T.IMAGE - full_progress_bar_icon: T.IMAGE - progress_bar_nub: T.IMAGE - progress_bar_icon: T.PANEL - "progress_bar_icon/empty_progress_bar_icon": T.IMAGE - "progress_bar_icon/progress_percent_panel": T.PANEL - "progress_bar_icon/progress_percent_panel/full_progress_bar_icon": T.IMAGE - "progress_bar_icon/progress_percent_panel/progress_bar_nub": T.IMAGE - common_label: T.LABEL - progress_text_panel: T.PANEL - "progress_text_panel/progress": T.LABEL - "progress_text_panel/total": T.LABEL - message_text_panel: T.PANEL - "message_text_panel/message_text": T.LABEL - button_common: T.BUTTON - lets_go_button: T.BUTTON - cancel_button: T.BUTTON - continue_button: T.BUTTON - continue_or_cancel_button: T.PANEL - "continue_or_cancel_button/continue": T.BUTTON - "continue_or_cancel_button/cancel": T.BUTTON - single_title_panel: T.PANEL - "single_title_panel/center": T.LABEL - dual_title_panel: T.PANEL - "dual_title_panel/left": T.LABEL - "dual_title_panel/right": T.LABEL - upload_title_panel: T.PANEL - "upload_title_panel/single_label": T.PANEL - "upload_title_panel/dual_label": T.PANEL - content_panel: T.PANEL - "content_panel/stack_panel_0": T.STACK_PANEL - "content_panel/stack_panel_1": T.PANEL - content_stack_panel: T.STACK_PANEL - "content_stack_panel/message": T.PANEL - "content_stack_panel/description": T.PANEL - "content_stack_panel/progress": T.PANEL - warning_content_panel: T.PANEL - "warning_content_panel/message": T.LABEL - button_panel: T.PANEL - "button_panel/play": T.BUTTON - "button_panel/cancel": T.BUTTON - "button_panel/continue_cancel": T.PANEL - file_upload_content: T.PANEL - "file_upload_content/title_panel_content": T.PANEL - "file_upload_content/content": T.PANEL - "file_upload_content/content/background": T.PANEL - "file_upload_content/content/title": T.PANEL - "file_upload_content/content/content": T.PANEL - "file_upload_content/content/buttons": T.PANEL - file_transmission_screen: T.SCREEN + "empty_progress_bar_icon": T.IMAGE, + "full_progress_bar_icon": T.IMAGE, + "progress_bar_nub": T.IMAGE, + "progress_bar_icon": T.PANEL, + "progress_bar_icon/empty_progress_bar_icon": T.IMAGE, + "progress_bar_icon/progress_percent_panel": T.PANEL, + "progress_bar_icon/progress_percent_panel/full_progress_bar_icon": T.IMAGE, + "progress_bar_icon/progress_percent_panel/progress_bar_nub": T.IMAGE, + "common_label": T.LABEL, + "progress_text_panel": T.PANEL, + "progress_text_panel/progress": T.LABEL, + "progress_text_panel/total": T.LABEL, + "message_text_panel": T.PANEL, + "message_text_panel/message_text": T.LABEL, + "button_common": T.BUTTON, + "lets_go_button": T.BUTTON, + "cancel_button": T.BUTTON, + "continue_button": T.BUTTON, + "continue_or_cancel_button": T.PANEL, + "continue_or_cancel_button/continue": T.BUTTON, + "continue_or_cancel_button/cancel": T.BUTTON, + "single_title_panel": T.PANEL, + "single_title_panel/center": T.LABEL, + "dual_title_panel": T.PANEL, + "dual_title_panel/left": T.LABEL, + "dual_title_panel/right": T.LABEL, + "upload_title_panel": T.PANEL, + "upload_title_panel/single_label": T.PANEL, + "upload_title_panel/dual_label": T.PANEL, + "content_panel": T.PANEL, + "content_panel/stack_panel_0": T.STACK_PANEL, + "content_panel/stack_panel_1": T.PANEL, + "content_stack_panel": T.STACK_PANEL, + "content_stack_panel/message": T.PANEL, + "content_stack_panel/description": T.PANEL, + "content_stack_panel/progress": T.PANEL, + "warning_content_panel": T.PANEL, + "warning_content_panel/message": T.LABEL, + "button_panel": T.PANEL, + "button_panel/play": T.BUTTON, + "button_panel/cancel": T.BUTTON, + "button_panel/continue_cancel": T.PANEL, + "file_upload_content": T.PANEL, + "file_upload_content/title_panel_content": T.PANEL, + "file_upload_content/content": T.PANEL, + "file_upload_content/content/background": T.PANEL, + "file_upload_content/content/title": T.PANEL, + "file_upload_content/content/content": T.PANEL, + "file_upload_content/content/buttons": T.PANEL, + "file_transmission_screen": T.SCREEN, } export type FurnaceType = { - flame_panel: T.PANEL - "flame_panel/flame_empty_image": T.IMAGE - "flame_panel/flame_full_image": T.IMAGE - furnace_arrow_empty_image: T.IMAGE - furnace_arrow_full_image: T.IMAGE - flame_empty_image: T.IMAGE - flame_full_image: T.IMAGE - furnace_label: T.LABEL - furnace_input_panel: T.PANEL - "furnace_input_panel/panel": T.PANEL - "furnace_input_panel/panel/furnace_ingredient_panel": T.PANEL - "furnace_input_panel/panel/flame_panel": T.PANEL - "furnace_input_panel/panel/furnace_fuel_panel": T.PANEL - furnace_ingredient_panel: T.PANEL - "furnace_ingredient_panel/ingredient_item": T.INPUT_PANEL - furnace_fuel_panel: T.PANEL - "furnace_fuel_panel/fuel_item": T.INPUT_PANEL - furnace_output_panel: T.PANEL - "furnace_output_panel/output_item": T.INPUT_PANEL - furnace_panel_top_half: T.PANEL - "furnace_panel_top_half/furnace_label": T.LABEL - "furnace_panel_top_half/input": T.PANEL - "furnace_panel_top_half/furnace_arrow_empty_image": T.IMAGE - "furnace_panel_top_half/furnace_arrow_full_image": T.IMAGE - "furnace_panel_top_half/output": T.PANEL - furnace_panel: T.PANEL - "furnace_panel/container_gamepad_helpers": T.STACK_PANEL - "furnace_panel/selected_item_details_factory": T.FACTORY - "furnace_panel/item_lock_notification_factory": T.FACTORY - "furnace_panel/root_panel": T.INPUT_PANEL - "furnace_panel/root_panel/common_panel": T.PANEL - "furnace_panel/root_panel/furnace_screen_inventory": T.PANEL - "furnace_panel/root_panel/furnace_screen_inventory/furnace_panel_top_half": T.PANEL - "furnace_panel/root_panel/furnace_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL - "furnace_panel/root_panel/furnace_screen_inventory/hotbar_grid": T.GRID - "furnace_panel/root_panel/furnace_screen_inventory/inventory_take_progress_icon_button": T.BUTTON - "furnace_panel/root_panel/inventory_selected_icon_button": T.BUTTON - "furnace_panel/root_panel/gamepad_cursor": T.BUTTON - "furnace_panel/flying_item_renderer": T.CUSTOM - furnace_screen: T.SCREEN + "flame_panel": T.PANEL, + "flame_panel/flame_empty_image": T.IMAGE, + "flame_panel/flame_full_image": T.IMAGE, + "furnace_arrow_empty_image": T.IMAGE, + "furnace_arrow_full_image": T.IMAGE, + "flame_empty_image": T.IMAGE, + "flame_full_image": T.IMAGE, + "furnace_label": T.LABEL, + "furnace_input_panel": T.PANEL, + "furnace_input_panel/panel": T.PANEL, + "furnace_input_panel/panel/furnace_ingredient_panel": T.PANEL, + "furnace_input_panel/panel/flame_panel": T.PANEL, + "furnace_input_panel/panel/furnace_fuel_panel": T.PANEL, + "furnace_ingredient_panel": T.PANEL, + "furnace_ingredient_panel/ingredient_item": T.INPUT_PANEL, + "furnace_fuel_panel": T.PANEL, + "furnace_fuel_panel/fuel_item": T.INPUT_PANEL, + "furnace_output_panel": T.PANEL, + "furnace_output_panel/output_item": T.INPUT_PANEL, + "furnace_panel_top_half": T.PANEL, + "furnace_panel_top_half/furnace_label": T.LABEL, + "furnace_panel_top_half/input": T.PANEL, + "furnace_panel_top_half/furnace_arrow_empty_image": T.IMAGE, + "furnace_panel_top_half/furnace_arrow_full_image": T.IMAGE, + "furnace_panel_top_half/output": T.PANEL, + "furnace_panel": T.PANEL, + "furnace_panel/container_gamepad_helpers": T.STACK_PANEL, + "furnace_panel/selected_item_details_factory": T.FACTORY, + "furnace_panel/item_lock_notification_factory": T.FACTORY, + "furnace_panel/root_panel": T.INPUT_PANEL, + "furnace_panel/root_panel/common_panel": T.PANEL, + "furnace_panel/root_panel/furnace_screen_inventory": T.PANEL, + "furnace_panel/root_panel/furnace_screen_inventory/furnace_panel_top_half": T.PANEL, + "furnace_panel/root_panel/furnace_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL, + "furnace_panel/root_panel/furnace_screen_inventory/hotbar_grid": T.GRID, + "furnace_panel/root_panel/furnace_screen_inventory/inventory_take_progress_icon_button": T.BUTTON, + "furnace_panel/root_panel/inventory_selected_icon_button": T.BUTTON, + "furnace_panel/root_panel/gamepad_cursor": T.BUTTON, + "furnace_panel/flying_item_renderer": T.CUSTOM, + "furnace_screen": T.SCREEN, } export type FurnacePocketType = { - generic_label: T.LABEL - background_image: T.IMAGE - empty_arrow: T.IMAGE - full_arrow: T.IMAGE - flame_empty: T.IMAGE - flame_full: T.IMAGE - input_label: T.LABEL - fuel_label: T.LABEL - result_label: T.LABEL - result_name_label: T.LABEL - furnace_content: T.PANEL - "furnace_content/input_panel": T.PANEL - "furnace_content/input_panel/input_label": T.LABEL - "furnace_content/input_panel/ingredient_item": T.INPUT_PANEL - "furnace_content/flame_empty": T.IMAGE - "furnace_content/flame_full": T.IMAGE - "furnace_content/fuel_panel": T.PANEL - "furnace_content/fuel_panel/fuel_label": T.LABEL - "furnace_content/fuel_panel/fuel_item": T.INPUT_PANEL - "furnace_content/empty_arrow": T.IMAGE - "furnace_content/full_arrow": T.IMAGE - "furnace_content/output_panel": T.PANEL - "furnace_content/output_panel/result_label": T.LABEL - "furnace_content/output_panel/result_name_label": T.LABEL - "furnace_content/output_panel/output_item": T.INPUT_PANEL - inventory_grid: T.GRID - inventory_content: T.PANEL - "inventory_content/scrolling_panel": T.PANEL - header: T.PANEL - "header/header_background": T.IMAGE - "header/close_button": T.BUTTON - "header/panel": T.PANEL - "header/panel/title_label": T.LABEL - inventory_and_furnace_panel: T.PANEL - "inventory_and_furnace_panel/inventory_half_screen": T.PANEL - "inventory_and_furnace_panel/inventory_half_screen/inventory_content": T.PANEL - "inventory_and_furnace_panel/furnace_half_screen": T.PANEL - "inventory_and_furnace_panel/furnace_half_screen/furnace_content": T.PANEL - header_and_content_stack_panel: T.STACK_PANEL - "header_and_content_stack_panel/header": T.PANEL - "header_and_content_stack_panel/inventory_and_furnace_panel": T.PANEL - furnace_panel: T.PANEL - "furnace_panel/bg": T.IMAGE - "furnace_panel/root_panel": T.INPUT_PANEL - "furnace_panel/header_and_content_stack_panel": T.STACK_PANEL - "furnace_panel/container_gamepad_helpers": T.STACK_PANEL - "furnace_panel/inventory_selected_icon_button": T.BUTTON - "furnace_panel/hold_icon": T.BUTTON - "furnace_panel/selected_item_details_factory": T.FACTORY - "furnace_panel/item_lock_notification_factory": T.FACTORY - "furnace_panel/flying_item_renderer": T.CUSTOM + "generic_label": T.LABEL, + "background_image": T.IMAGE, + "empty_arrow": T.IMAGE, + "full_arrow": T.IMAGE, + "flame_empty": T.IMAGE, + "flame_full": T.IMAGE, + "input_label": T.LABEL, + "fuel_label": T.LABEL, + "result_label": T.LABEL, + "result_name_label": T.LABEL, + "furnace_content": T.PANEL, + "furnace_content/input_panel": T.PANEL, + "furnace_content/input_panel/input_label": T.LABEL, + "furnace_content/input_panel/ingredient_item": T.INPUT_PANEL, + "furnace_content/flame_empty": T.IMAGE, + "furnace_content/flame_full": T.IMAGE, + "furnace_content/fuel_panel": T.PANEL, + "furnace_content/fuel_panel/fuel_label": T.LABEL, + "furnace_content/fuel_panel/fuel_item": T.INPUT_PANEL, + "furnace_content/empty_arrow": T.IMAGE, + "furnace_content/full_arrow": T.IMAGE, + "furnace_content/output_panel": T.PANEL, + "furnace_content/output_panel/result_label": T.LABEL, + "furnace_content/output_panel/result_name_label": T.LABEL, + "furnace_content/output_panel/output_item": T.INPUT_PANEL, + "inventory_grid": T.GRID, + "inventory_content": T.PANEL, + "inventory_content/scrolling_panel": T.PANEL, + "header": T.PANEL, + "header/header_background": T.IMAGE, + "header/close_button": T.BUTTON, + "header/panel": T.PANEL, + "header/panel/title_label": T.LABEL, + "inventory_and_furnace_panel": T.PANEL, + "inventory_and_furnace_panel/inventory_half_screen": T.PANEL, + "inventory_and_furnace_panel/inventory_half_screen/inventory_content": T.PANEL, + "inventory_and_furnace_panel/furnace_half_screen": T.PANEL, + "inventory_and_furnace_panel/furnace_half_screen/furnace_content": T.PANEL, + "header_and_content_stack_panel": T.STACK_PANEL, + "header_and_content_stack_panel/header": T.PANEL, + "header_and_content_stack_panel/inventory_and_furnace_panel": T.PANEL, + "furnace_panel": T.PANEL, + "furnace_panel/bg": T.IMAGE, + "furnace_panel/root_panel": T.INPUT_PANEL, + "furnace_panel/header_and_content_stack_panel": T.STACK_PANEL, + "furnace_panel/container_gamepad_helpers": T.STACK_PANEL, + "furnace_panel/inventory_selected_icon_button": T.BUTTON, + "furnace_panel/hold_icon": T.BUTTON, + "furnace_panel/selected_item_details_factory": T.FACTORY, + "furnace_panel/item_lock_notification_factory": T.FACTORY, + "furnace_panel/flying_item_renderer": T.CUSTOM, } export type GameTipType = { - game_tip_animation: T.IMAGE - game_tip_animation_panel: T.PANEL - "game_tip_animation_panel/animated_icon": T.IMAGE - game_tip_label: T.LABEL - game_tip_text_panel: T.STACK_PANEL - "game_tip_text_panel/upper_padding": T.PANEL - "game_tip_text_panel/label": T.LABEL - "game_tip_text_panel/lower_padding": T.PANEL - game_tip_arrow_image: T.IMAGE - game_tip_arrow_panel: T.PANEL - "game_tip_arrow_panel/tip_arrow": T.IMAGE - game_tip_panel: T.STACK_PANEL - "game_tip_panel/animated_panel": T.PANEL - "game_tip_panel/middle_padding": T.PANEL - "game_tip_panel/label": T.STACK_PANEL - "game_tip_panel/right_padding": T.PANEL - game_tip_item_background: T.IMAGE - "game_tip_item_background/horizontal_container": T.STACK_PANEL - "game_tip_item_background/arrow_panel": T.PANEL - chat_stack_game_tip_panel: T.STACK_PANEL - "chat_stack_game_tip_panel/top_padding": T.PANEL - "chat_stack_game_tip_panel/game_tip_background": T.IMAGE - game_tip_factory: T.PANEL - game_tip_chat_stack_factory: T.PANEL + "game_tip_animation": T.IMAGE, + "game_tip_animation_panel": T.PANEL, + "game_tip_animation_panel/animated_icon": T.IMAGE, + "game_tip_label": T.LABEL, + "game_tip_text_panel": T.STACK_PANEL, + "game_tip_text_panel/upper_padding": T.PANEL, + "game_tip_text_panel/label": T.LABEL, + "game_tip_text_panel/lower_padding": T.PANEL, + "game_tip_arrow_image": T.IMAGE, + "game_tip_arrow_panel": T.PANEL, + "game_tip_arrow_panel/tip_arrow": T.IMAGE, + "game_tip_panel": T.STACK_PANEL, + "game_tip_panel/animated_panel": T.PANEL, + "game_tip_panel/middle_padding": T.PANEL, + "game_tip_panel/label": T.STACK_PANEL, + "game_tip_panel/right_padding": T.PANEL, + "game_tip_item_background": T.IMAGE, + "game_tip_item_background/horizontal_container": T.STACK_PANEL, + "game_tip_item_background/arrow_panel": T.PANEL, + "chat_stack_game_tip_panel": T.STACK_PANEL, + "chat_stack_game_tip_panel/top_padding": T.PANEL, + "chat_stack_game_tip_panel/game_tip_background": T.IMAGE, + "game_tip_factory": T.PANEL, + "game_tip_chat_stack_factory": T.PANEL, } export type GamepadDisconnectedType = { - gamepad_disconnected_modal: T.PANEL - "gamepad_disconnected_modal/dialog_background_hollow_3": T.IMAGE - "gamepad_disconnected_modal/dialog_background_hollow_3/control": T.IMAGE - "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel": T.STACK_PANEL - "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/padding_0": T.PANEL - "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/title": T.LABEL - "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/padding_1": T.PANEL - "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/description": T.LABEL - gamepad_disconnected_screen: T.SCREEN + "gamepad_disconnected_modal": T.PANEL, + "gamepad_disconnected_modal/dialog_background_hollow_3": T.IMAGE, + "gamepad_disconnected_modal/dialog_background_hollow_3/control": T.IMAGE, + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel": T.STACK_PANEL, + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/padding_0": T.PANEL, + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/title": T.LABEL, + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/padding_1": T.PANEL, + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/description": T.LABEL, + "gamepad_disconnected_screen": T.SCREEN, } export type GameplayType = { - bundle_selected_item_icon: T.CUSTOM - bundle_open_icon_back: T.CUSTOM - bundle_open_icon_front: T.CUSTOM - bundle_selected_item_background: T.PANEL - "bundle_selected_item_background/bundle_selected_item_background_colour_green": T.IMAGE - "bundle_selected_item_background/bundle_selected_item_background_colour": T.IMAGE - "bundle_selected_item_background/bundle_selected_item_frame": T.IMAGE - bundle_selected_item_panel: T.PANEL - "bundle_selected_item_panel/bundle_selected_item_background": T.PANEL - "bundle_selected_item_panel/bundle_open_icon_back": T.CUSTOM - "bundle_selected_item_panel/bundle_selected_item_icon": T.CUSTOM - "bundle_selected_item_panel/bundle_open_icon_front": T.CUSTOM - "bundle_selected_item_panel/storage_bar": T.CUSTOM - bundle_slot_panel: T.PANEL - "bundle_slot_panel/bundle_selected_item_panel": T.PANEL - bundle_cell_image: T.PANEL - "bundle_cell_image/background_panel": T.PANEL - "bundle_cell_image/background_panel/item_background": T.IMAGE - "bundle_cell_image/highlight_panel": T.PANEL - "bundle_cell_image/highlight_panel/bundle_selected_item_background_colour_green": T.IMAGE - "bundle_cell_image/highlight_panel/bundle_selected_item_background_border_white": T.IMAGE - "bundle_cell_image/highlight_panel/bundle_selected_item_background_colour_blue": T.IMAGE - bundle_tooltip_slot_button: T.BUTTON - bundle_tooltip_slot_pocket: T.PANEL - "bundle_tooltip_slot_pocket/item_in_bundle_tooltip_pocket": T.INPUT_PANEL - "bundle_tooltip_slot_pocket/more_hidden_items_label": T.LABEL - bundle_tooltip_slot_classic: T.PANEL - "bundle_tooltip_slot_classic/item_in_bundle_tooltip_pocket": T.INPUT_PANEL - "bundle_tooltip_slot_classic/more_hidden_items_label": T.LABEL - bundle_tooltip: T.PANEL - "bundle_tooltip/background": T.IMAGE - "bundle_tooltip/background/empty_button": T.BUTTON - "bundle_tooltip/background/empty_button/default": T.PANEL - "bundle_tooltip/background/empty_button/hover": T.PANEL - "bundle_tooltip/background/empty_button/pressed": T.PANEL - "bundle_tooltip/background/selected_item_tooltip": T.IMAGE - "bundle_tooltip/background/selected_item_tooltip/item_text_label": T.LABEL - "bundle_tooltip/header_stack": T.STACK_PANEL - "bundle_tooltip/header_stack/bundle_label": T.LABEL - "bundle_tooltip/header_stack/close_button": T.BUTTON - "bundle_tooltip/header_stack/close_button/default": T.PANEL - "bundle_tooltip/header_stack/close_button/hover": T.PANEL - "bundle_tooltip/header_stack/close_button/pressed": T.PANEL - "bundle_tooltip/wrapper": T.PANEL - "bundle_tooltip/wrapper/vertical_layout_stack": T.STACK_PANEL - "bundle_tooltip/wrapper/vertical_layout_stack/header_padding": T.PANEL - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack": T.STACK_PANEL - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/left_padding": T.PANEL - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack": T.STACK_PANEL - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/item_grid": T.GRID - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/info_message": T.LABEL - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel": T.PANEL - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar": T.PANEL - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/empty_message": T.LABEL - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_fill": T.IMAGE - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_full": T.IMAGE - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_full/full_label": T.LABEL - "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_border": T.IMAGE - bundle_touch_tooltip: T.PANEL - bundle_tooltip_factory_wrapper: T.PANEL - "bundle_tooltip_factory_wrapper/bundle_cursor_tooltip": T.CUSTOM - bundle_cursor_tooltip: T.CUSTOM - "bundle_cursor_tooltip/tooltip": T.PANEL + "bundle_selected_item_icon": T.CUSTOM, + "bundle_open_icon_back": T.CUSTOM, + "bundle_open_icon_front": T.CUSTOM, + "bundle_selected_item_background": T.PANEL, + "bundle_selected_item_background/bundle_selected_item_background_colour_green": T.IMAGE, + "bundle_selected_item_background/bundle_selected_item_background_colour": T.IMAGE, + "bundle_selected_item_background/bundle_selected_item_frame": T.IMAGE, + "bundle_selected_item_panel": T.PANEL, + "bundle_selected_item_panel/bundle_selected_item_background": T.PANEL, + "bundle_selected_item_panel/bundle_open_icon_back": T.CUSTOM, + "bundle_selected_item_panel/bundle_selected_item_icon": T.CUSTOM, + "bundle_selected_item_panel/bundle_open_icon_front": T.CUSTOM, + "bundle_selected_item_panel/storage_bar": T.CUSTOM, + "bundle_slot_panel": T.PANEL, + "bundle_slot_panel/bundle_selected_item_panel": T.PANEL, + "bundle_cell_image": T.PANEL, + "bundle_cell_image/background_panel": T.PANEL, + "bundle_cell_image/background_panel/item_background": T.IMAGE, + "bundle_cell_image/highlight_panel": T.PANEL, + "bundle_cell_image/highlight_panel/bundle_selected_item_background_colour_green": T.IMAGE, + "bundle_cell_image/highlight_panel/bundle_selected_item_background_border_white": T.IMAGE, + "bundle_cell_image/highlight_panel/bundle_selected_item_background_colour_blue": T.IMAGE, + "bundle_tooltip_slot_button": T.BUTTON, + "bundle_tooltip_slot_pocket": T.PANEL, + "bundle_tooltip_slot_pocket/item_in_bundle_tooltip_pocket": T.INPUT_PANEL, + "bundle_tooltip_slot_pocket/more_hidden_items_label": T.LABEL, + "bundle_tooltip_slot_classic": T.PANEL, + "bundle_tooltip_slot_classic/item_in_bundle_tooltip_pocket": T.INPUT_PANEL, + "bundle_tooltip_slot_classic/more_hidden_items_label": T.LABEL, + "bundle_tooltip": T.PANEL, + "bundle_tooltip/background": T.IMAGE, + "bundle_tooltip/background/empty_button": T.BUTTON, + "bundle_tooltip/background/empty_button/default": T.PANEL, + "bundle_tooltip/background/empty_button/hover": T.PANEL, + "bundle_tooltip/background/empty_button/pressed": T.PANEL, + "bundle_tooltip/background/selected_item_tooltip": T.IMAGE, + "bundle_tooltip/background/selected_item_tooltip/item_text_label": T.LABEL, + "bundle_tooltip/header_stack": T.STACK_PANEL, + "bundle_tooltip/header_stack/bundle_label": T.LABEL, + "bundle_tooltip/header_stack/close_button": T.BUTTON, + "bundle_tooltip/header_stack/close_button/default": T.PANEL, + "bundle_tooltip/header_stack/close_button/hover": T.PANEL, + "bundle_tooltip/header_stack/close_button/pressed": T.PANEL, + "bundle_tooltip/wrapper": T.PANEL, + "bundle_tooltip/wrapper/vertical_layout_stack": T.STACK_PANEL, + "bundle_tooltip/wrapper/vertical_layout_stack/header_padding": T.PANEL, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack": T.STACK_PANEL, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/left_padding": T.PANEL, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack": T.STACK_PANEL, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/item_grid": T.GRID, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/info_message": T.LABEL, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel": T.PANEL, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar": T.PANEL, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/empty_message": T.LABEL, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_fill": T.IMAGE, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_full": T.IMAGE, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_full/full_label": T.LABEL, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_border": T.IMAGE, + "bundle_touch_tooltip": T.PANEL, + "bundle_tooltip_factory_wrapper": T.PANEL, + "bundle_tooltip_factory_wrapper/bundle_cursor_tooltip": T.CUSTOM, + "bundle_cursor_tooltip": T.CUSTOM, + "bundle_cursor_tooltip/tooltip": T.PANEL, } export type GatheringInfoType = { - gathering_info_screen: T.SCREEN - info_content: T.PANEL - "info_content/header": T.STACK_PANEL - "info_content/left_panel": T.PANEL - "info_content/left_panel/stack": T.STACK_PANEL - "info_content/left_panel/stack/event_image": T.IMAGE - "info_content/left_panel/stack/pad_2": T.PANEL - "info_content/left_panel/stack/button_and_caption": T.PANEL - "info_content/left_panel/stack/button_and_caption/caption": T.IMAGE - "info_content/left_panel/stack/button_and_caption/action_button": T.BUTTON - "info_content/left_panel/stack/pad_3": T.PANEL - "info_content/left_panel/stack/info_button": T.BUTTON - "info_content/left_panel/stack/pad_4": T.PANEL - "info_content/left_panel/stack/gamepad_helper_panel": T.PANEL - "info_content/left_panel/stack/gamepad_helper_panel/gamepad_helpers": T.STACK_PANEL - "info_content/left_panel/stack/pad_fill": T.PANEL - "info_content/left_panel/stack/gathering_id_label": T.LABEL - "info_content/left_panel/stack/pad_5": T.PANEL - "info_content/section_divider": T.IMAGE - "info_content/right_panel": T.PANEL - "info_content/right_panel/scroll": T.PANEL - right_panel_content: T.STACK_PANEL - "right_panel_content/pad": T.PANEL - "right_panel_content/sign_in_panel": T.STACK_PANEL - "right_panel_content/sign_in_panel/sign_in_image": T.IMAGE - "right_panel_content/sign_in_panel/horizontal_pad": T.PANEL - "right_panel_content/sign_in_panel/text_stack": T.STACK_PANEL - "right_panel_content/sign_in_panel/text_stack/sign_in_title": T.PANEL - "right_panel_content/sign_in_panel/text_stack/text_pad": T.PANEL - "right_panel_content/sign_in_panel/text_stack/sign_in_body": T.PANEL - "right_panel_content/sign_in_pad": T.PANEL - "right_panel_content/qr_panel": T.STACK_PANEL - "right_panel_content/qr_panel/qr_background": T.IMAGE - "right_panel_content/qr_panel/qr_background/qr_image": T.IMAGE - "right_panel_content/qr_panel/horizontal_pad": T.PANEL - "right_panel_content/qr_panel/text_stack": T.STACK_PANEL - "right_panel_content/qr_panel/text_stack/qr_title": T.PANEL - "right_panel_content/qr_panel/text_stack/text_pad": T.PANEL - "right_panel_content/qr_panel/text_stack/qr_body": T.PANEL - "right_panel_content/qr_pad": T.PANEL - "right_panel_content/title": T.PANEL - "right_panel_content/pad_1": T.PANEL - "right_panel_content/body": T.PANEL - "right_panel_content/pad_2": T.PANEL - "right_panel_content/body_image": T.IMAGE - "right_panel_content/footer": T.INPUT_PANEL - tts_label: T.PANEL - tts_label_title: T.PANEL - sign_in_title: T.LABEL - sign_in_body: T.LABEL - qr_title: T.LABEL - qr_body: T.LABEL - title_panel: T.LABEL - body_panel: T.LABEL - section_divider: T.IMAGE - gamepad_helpers: T.STACK_PANEL - "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL - "gamepad_helpers/gamepad_helper_b": T.STACK_PANEL + "gathering_info_screen": T.SCREEN, + "info_content": T.PANEL, + "info_content/header": T.STACK_PANEL, + "info_content/left_panel": T.PANEL, + "info_content/left_panel/stack": T.STACK_PANEL, + "info_content/left_panel/stack/event_image": T.IMAGE, + "info_content/left_panel/stack/pad_2": T.PANEL, + "info_content/left_panel/stack/button_and_caption": T.PANEL, + "info_content/left_panel/stack/button_and_caption/caption": T.IMAGE, + "info_content/left_panel/stack/button_and_caption/action_button": T.BUTTON, + "info_content/left_panel/stack/pad_3": T.PANEL, + "info_content/left_panel/stack/info_button": T.BUTTON, + "info_content/left_panel/stack/pad_4": T.PANEL, + "info_content/left_panel/stack/gamepad_helper_panel": T.PANEL, + "info_content/left_panel/stack/gamepad_helper_panel/gamepad_helpers": T.STACK_PANEL, + "info_content/left_panel/stack/pad_fill": T.PANEL, + "info_content/left_panel/stack/gathering_id_label": T.LABEL, + "info_content/left_panel/stack/pad_5": T.PANEL, + "info_content/section_divider": T.IMAGE, + "info_content/right_panel": T.PANEL, + "info_content/right_panel/scroll": T.PANEL, + "right_panel_content": T.STACK_PANEL, + "right_panel_content/pad": T.PANEL, + "right_panel_content/sign_in_panel": T.STACK_PANEL, + "right_panel_content/sign_in_panel/sign_in_image": T.IMAGE, + "right_panel_content/sign_in_panel/horizontal_pad": T.PANEL, + "right_panel_content/sign_in_panel/text_stack": T.STACK_PANEL, + "right_panel_content/sign_in_panel/text_stack/sign_in_title": T.PANEL, + "right_panel_content/sign_in_panel/text_stack/text_pad": T.PANEL, + "right_panel_content/sign_in_panel/text_stack/sign_in_body": T.PANEL, + "right_panel_content/sign_in_pad": T.PANEL, + "right_panel_content/qr_panel": T.STACK_PANEL, + "right_panel_content/qr_panel/qr_background": T.IMAGE, + "right_panel_content/qr_panel/qr_background/qr_image": T.IMAGE, + "right_panel_content/qr_panel/horizontal_pad": T.PANEL, + "right_panel_content/qr_panel/text_stack": T.STACK_PANEL, + "right_panel_content/qr_panel/text_stack/qr_title": T.PANEL, + "right_panel_content/qr_panel/text_stack/text_pad": T.PANEL, + "right_panel_content/qr_panel/text_stack/qr_body": T.PANEL, + "right_panel_content/qr_pad": T.PANEL, + "right_panel_content/title": T.PANEL, + "right_panel_content/pad_1": T.PANEL, + "right_panel_content/body": T.PANEL, + "right_panel_content/pad_2": T.PANEL, + "right_panel_content/body_image": T.IMAGE, + "right_panel_content/footer": T.INPUT_PANEL, + "tts_label": T.PANEL, + "tts_label_title": T.PANEL, + "sign_in_title": T.LABEL, + "sign_in_body": T.LABEL, + "qr_title": T.LABEL, + "qr_body": T.LABEL, + "title_panel": T.LABEL, + "body_panel": T.LABEL, + "section_divider": T.IMAGE, + "gamepad_helpers": T.STACK_PANEL, + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL, + "gamepad_helpers/gamepad_helper_b": T.STACK_PANEL, } export type GlobalpauseType = { - message: T.LABEL - quit_button: T.BUTTON - globalpause_screen: T.SCREEN - pause_screen_content: T.PANEL - "pause_screen_content/transparentFill": T.IMAGE - "pause_screen_content/message": T.LABEL - "pause_screen_content/quit_button": T.BUTTON + "message": T.LABEL, + "quit_button": T.BUTTON, + "globalpause_screen": T.SCREEN, + "pause_screen_content": T.PANEL, + "pause_screen_content/transparentFill": T.IMAGE, + "pause_screen_content/message": T.LABEL, + "pause_screen_content/quit_button": T.BUTTON, } export type GrindstoneType = { - title_label: T.LABEL - arrow_icon: T.IMAGE - cross_out_icon: T.IMAGE - grindstone_output_slot_button: T.BUTTON - grindstone_item_slot: T.PANEL - "grindstone_item_slot/container_item": T.INPUT_PANEL - grindstone_middle_panel: T.PANEL - "grindstone_middle_panel/input_item_slot": T.PANEL - "grindstone_middle_panel/additional_item_slot": T.PANEL - grindstone_slots_panel: T.PANEL - "grindstone_slots_panel/grindstone_middle_panel": T.PANEL - "grindstone_slots_panel/yields": T.PANEL - "grindstone_slots_panel/yields/arrow_icon": T.IMAGE - "grindstone_slots_panel/yields/cross_out_icon": T.IMAGE - "grindstone_slots_panel/result_item_slot": T.PANEL - top_half_panel: T.PANEL - "top_half_panel/title_label": T.LABEL - "top_half_panel/grindstone_slots_panel": T.PANEL - grindstone_panel: T.PANEL - "grindstone_panel/container_gamepad_helpers": T.STACK_PANEL - "grindstone_panel/selected_item_details_factory": T.FACTORY - "grindstone_panel/item_lock_notification_factory": T.FACTORY - "grindstone_panel/root_panel": T.INPUT_PANEL - "grindstone_panel/root_panel/common_panel": T.PANEL - "grindstone_panel/root_panel/grindstone_screen_inventory": T.PANEL - "grindstone_panel/root_panel/grindstone_screen_inventory/top_half_panel": T.PANEL - "grindstone_panel/root_panel/grindstone_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL - "grindstone_panel/root_panel/grindstone_screen_inventory/hotbar_grid": T.GRID - "grindstone_panel/root_panel/grindstone_screen_inventory/inventory_take_progress_icon_button": T.BUTTON - "grindstone_panel/root_panel/inventory_selected_icon_button": T.BUTTON - "grindstone_panel/root_panel/gamepad_cursor": T.BUTTON - "grindstone_panel/flying_item_renderer": T.CUSTOM - grindstone_screen: T.SCREEN + "title_label": T.LABEL, + "arrow_icon": T.IMAGE, + "cross_out_icon": T.IMAGE, + "grindstone_output_slot_button": T.BUTTON, + "grindstone_item_slot": T.PANEL, + "grindstone_item_slot/container_item": T.INPUT_PANEL, + "grindstone_middle_panel": T.PANEL, + "grindstone_middle_panel/input_item_slot": T.PANEL, + "grindstone_middle_panel/additional_item_slot": T.PANEL, + "grindstone_slots_panel": T.PANEL, + "grindstone_slots_panel/grindstone_middle_panel": T.PANEL, + "grindstone_slots_panel/yields": T.PANEL, + "grindstone_slots_panel/yields/arrow_icon": T.IMAGE, + "grindstone_slots_panel/yields/cross_out_icon": T.IMAGE, + "grindstone_slots_panel/result_item_slot": T.PANEL, + "top_half_panel": T.PANEL, + "top_half_panel/title_label": T.LABEL, + "top_half_panel/grindstone_slots_panel": T.PANEL, + "grindstone_panel": T.PANEL, + "grindstone_panel/container_gamepad_helpers": T.STACK_PANEL, + "grindstone_panel/selected_item_details_factory": T.FACTORY, + "grindstone_panel/item_lock_notification_factory": T.FACTORY, + "grindstone_panel/root_panel": T.INPUT_PANEL, + "grindstone_panel/root_panel/common_panel": T.PANEL, + "grindstone_panel/root_panel/grindstone_screen_inventory": T.PANEL, + "grindstone_panel/root_panel/grindstone_screen_inventory/top_half_panel": T.PANEL, + "grindstone_panel/root_panel/grindstone_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL, + "grindstone_panel/root_panel/grindstone_screen_inventory/hotbar_grid": T.GRID, + "grindstone_panel/root_panel/grindstone_screen_inventory/inventory_take_progress_icon_button": T.BUTTON, + "grindstone_panel/root_panel/inventory_selected_icon_button": T.BUTTON, + "grindstone_panel/root_panel/gamepad_cursor": T.BUTTON, + "grindstone_panel/flying_item_renderer": T.CUSTOM, + "grindstone_screen": T.SCREEN, } export type GrindstonePocketType = { - background_image: T.IMAGE - repair_title_label: T.LABEL - grindstone_middle_panel: T.PANEL - "grindstone_middle_panel/input_slot": T.INPUT_PANEL - "grindstone_middle_panel/additional_slot": T.INPUT_PANEL - slots_panel: T.PANEL - "slots_panel/grindstone_middle_panel": T.PANEL - "slots_panel/arrow": T.IMAGE - "slots_panel/arrow/cross_out": T.IMAGE - "slots_panel/result_slot": T.INPUT_PANEL - grindstone_contents_panel: T.PANEL - "grindstone_contents_panel/repair_title_label": T.LABEL - "grindstone_contents_panel/slots_panel": T.PANEL - inventory_grid: T.GRID - inventory_content: T.PANEL - "inventory_content/scrolling_panel": T.PANEL - header: T.PANEL - "header/header_background": T.IMAGE - "header/legacy_pocket_close_button": T.BUTTON - "header/panel": T.PANEL - "header/panel/title_label": T.LABEL - inventory_and_grindstone_panel: T.PANEL - "inventory_and_grindstone_panel/inventory_half_screen": T.PANEL - "inventory_and_grindstone_panel/inventory_half_screen/inventory_content": T.PANEL - "inventory_and_grindstone_panel/grindstone_half_screen": T.PANEL - "inventory_and_grindstone_panel/grindstone_half_screen/grindstone_content": T.PANEL - header_and_content_stack_panel: T.STACK_PANEL - "header_and_content_stack_panel/header": T.PANEL - "header_and_content_stack_panel/inventory_and_grindstone_panel": T.PANEL - grindstone_panel: T.PANEL - "grindstone_panel/bg": T.IMAGE - "grindstone_panel/root_panel": T.INPUT_PANEL - "grindstone_panel/header_and_content_stack_panel": T.STACK_PANEL - "grindstone_panel/container_gamepad_helpers": T.STACK_PANEL - "grindstone_panel/inventory_selected_icon_button": T.BUTTON - "grindstone_panel/hold_icon": T.BUTTON - "grindstone_panel/selected_item_details_factory": T.FACTORY - "grindstone_panel/item_lock_notification_factory": T.FACTORY - "grindstone_panel/flying_item_renderer": T.CUSTOM + "background_image": T.IMAGE, + "repair_title_label": T.LABEL, + "grindstone_middle_panel": T.PANEL, + "grindstone_middle_panel/input_slot": T.INPUT_PANEL, + "grindstone_middle_panel/additional_slot": T.INPUT_PANEL, + "slots_panel": T.PANEL, + "slots_panel/grindstone_middle_panel": T.PANEL, + "slots_panel/arrow": T.IMAGE, + "slots_panel/arrow/cross_out": T.IMAGE, + "slots_panel/result_slot": T.INPUT_PANEL, + "grindstone_contents_panel": T.PANEL, + "grindstone_contents_panel/repair_title_label": T.LABEL, + "grindstone_contents_panel/slots_panel": T.PANEL, + "inventory_grid": T.GRID, + "inventory_content": T.PANEL, + "inventory_content/scrolling_panel": T.PANEL, + "header": T.PANEL, + "header/header_background": T.IMAGE, + "header/legacy_pocket_close_button": T.BUTTON, + "header/panel": T.PANEL, + "header/panel/title_label": T.LABEL, + "inventory_and_grindstone_panel": T.PANEL, + "inventory_and_grindstone_panel/inventory_half_screen": T.PANEL, + "inventory_and_grindstone_panel/inventory_half_screen/inventory_content": T.PANEL, + "inventory_and_grindstone_panel/grindstone_half_screen": T.PANEL, + "inventory_and_grindstone_panel/grindstone_half_screen/grindstone_content": T.PANEL, + "header_and_content_stack_panel": T.STACK_PANEL, + "header_and_content_stack_panel/header": T.PANEL, + "header_and_content_stack_panel/inventory_and_grindstone_panel": T.PANEL, + "grindstone_panel": T.PANEL, + "grindstone_panel/bg": T.IMAGE, + "grindstone_panel/root_panel": T.INPUT_PANEL, + "grindstone_panel/header_and_content_stack_panel": T.STACK_PANEL, + "grindstone_panel/container_gamepad_helpers": T.STACK_PANEL, + "grindstone_panel/inventory_selected_icon_button": T.BUTTON, + "grindstone_panel/hold_icon": T.BUTTON, + "grindstone_panel/selected_item_details_factory": T.FACTORY, + "grindstone_panel/item_lock_notification_factory": T.FACTORY, + "grindstone_panel/flying_item_renderer": T.CUSTOM, } export type GammaCalibrationType = { - stack_panel_centering_panel: T.PANEL - "stack_panel_centering_panel/child": T.UNKNOWN - stack_panel_align_left_panel: T.PANEL - "stack_panel_align_left_panel/child": T.UNKNOWN - stack_panel_align_right_panel: T.PANEL - "stack_panel_align_right_panel/child": T.UNKNOWN - image_panel: T.STACK_PANEL - "image_panel/padding": T.PANEL - "image_panel/image": T.IMAGE - horizontal_padding: T.PANEL - image_stack: T.STACK_PANEL - "image_stack/not_visible_image": T.STACK_PANEL - "image_stack/padding_0": T.PANEL - "image_stack/barely_visible_image": T.STACK_PANEL - "image_stack/padding_1": T.PANEL - "image_stack/easily_visible_image": T.STACK_PANEL - button_stack: T.STACK_PANEL - "button_stack/continue_button_panel": T.PANEL - "button_stack/padding": T.PANEL - "button_stack/reset_button_panel": T.PANEL - message_panel: T.PANEL - "message_panel/message_label": T.LABEL - calibration_slider: T.PANEL - "calibration_slider/slider": T.PANEL - continue_button: T.BUTTON - reset_button: T.BUTTON - main_panel: T.STACK_PANEL - "main_panel/hdr_message_panel": T.PANEL - "main_panel/image_stack_panel": T.PANEL - "main_panel/padding_0": T.PANEL - "main_panel/slider_panel": T.PANEL - "main_panel/padding_1": T.PANEL - "main_panel/button_stack_panel": T.PANEL - gamma_calibration_screen: T.SCREEN + "stack_panel_centering_panel": T.PANEL, + "stack_panel_centering_panel/child": T.UNKNOWN, + "stack_panel_align_left_panel": T.PANEL, + "stack_panel_align_left_panel/child": T.UNKNOWN, + "stack_panel_align_right_panel": T.PANEL, + "stack_panel_align_right_panel/child": T.UNKNOWN, + "image_panel": T.STACK_PANEL, + "image_panel/padding": T.PANEL, + "image_panel/image": T.IMAGE, + "horizontal_padding": T.PANEL, + "image_stack": T.STACK_PANEL, + "image_stack/not_visible_image": T.STACK_PANEL, + "image_stack/padding_0": T.PANEL, + "image_stack/barely_visible_image": T.STACK_PANEL, + "image_stack/padding_1": T.PANEL, + "image_stack/easily_visible_image": T.STACK_PANEL, + "button_stack": T.STACK_PANEL, + "button_stack/continue_button_panel": T.PANEL, + "button_stack/padding": T.PANEL, + "button_stack/reset_button_panel": T.PANEL, + "message_panel": T.PANEL, + "message_panel/message_label": T.LABEL, + "calibration_slider": T.PANEL, + "calibration_slider/slider": T.PANEL, + "continue_button": T.BUTTON, + "reset_button": T.BUTTON, + "main_panel": T.STACK_PANEL, + "main_panel/hdr_message_panel": T.PANEL, + "main_panel/image_stack_panel": T.PANEL, + "main_panel/padding_0": T.PANEL, + "main_panel/slider_panel": T.PANEL, + "main_panel/padding_1": T.PANEL, + "main_panel/button_stack_panel": T.PANEL, + "gamma_calibration_screen": T.SCREEN, } export type HorseType = { - renderer_bg: T.IMAGE - overlay_image: T.IMAGE - saddle_image: T.IMAGE - horse_armor_image: T.IMAGE - carpet_image: T.IMAGE - nautilus_armor_image: T.IMAGE - horse_label: T.LABEL - equip_grid: T.GRID - inv_grid: T.GRID - inv_bg_panel: T.PANEL - "inv_bg_panel/cell_image": T.IMAGE - equip_panel: T.PANEL - "equip_panel/equip_grid": T.GRID - "equip_panel/saddle": T.IMAGE - "equip_panel/horse_armor_0": T.IMAGE - "equip_panel/carpet_0": T.IMAGE - "equip_panel/nautilus_armor_0": T.IMAGE - "equip_panel/horse_armor_1": T.IMAGE - "equip_panel/carpet_1": T.IMAGE - "equip_panel/nautilus_armor_1": T.IMAGE - inv_panel: T.PANEL - "inv_panel/inv_bg_panel": T.PANEL - "inv_panel/inv_grid": T.GRID - horse_renderer: T.PANEL - "horse_renderer/renderer_bg": T.IMAGE - "horse_renderer/horse_custom_panel": T.PANEL - "horse_renderer/horse_custom_panel/horse_custom": T.CUSTOM - horse_panel: T.PANEL - "horse_panel/container_gamepad_helpers": T.STACK_PANEL - "horse_panel/selected_item_details_factory": T.FACTORY - "horse_panel/item_lock_notification_factory": T.FACTORY - "horse_panel/root_panel": T.INPUT_PANEL - "horse_panel/root_panel/common_panel": T.PANEL - "horse_panel/root_panel/horse_section_label": T.LABEL - "horse_panel/root_panel/inv_panel": T.PANEL - "horse_panel/root_panel/equipment": T.PANEL - "horse_panel/root_panel/renderer": T.PANEL - "horse_panel/root_panel/inventory_panel_bottom_half_with_label": T.PANEL - "horse_panel/root_panel/hotbar_grid_template": T.GRID - "horse_panel/root_panel/inventory_selected_icon_button": T.BUTTON - "horse_panel/root_panel/gamepad_cursor": T.BUTTON - "horse_panel/flying_item_renderer": T.CUSTOM - horse_screen: T.SCREEN + "renderer_bg": T.IMAGE, + "overlay_image": T.IMAGE, + "saddle_image": T.IMAGE, + "horse_armor_image": T.IMAGE, + "carpet_image": T.IMAGE, + "nautilus_armor_image": T.IMAGE, + "horse_label": T.LABEL, + "equip_grid": T.GRID, + "inv_grid": T.GRID, + "inv_bg_panel": T.PANEL, + "inv_bg_panel/cell_image": T.IMAGE, + "equip_panel": T.PANEL, + "equip_panel/equip_grid": T.GRID, + "equip_panel/saddle": T.IMAGE, + "equip_panel/horse_armor_0": T.IMAGE, + "equip_panel/carpet_0": T.IMAGE, + "equip_panel/nautilus_armor_0": T.IMAGE, + "equip_panel/horse_armor_1": T.IMAGE, + "equip_panel/carpet_1": T.IMAGE, + "equip_panel/nautilus_armor_1": T.IMAGE, + "inv_panel": T.PANEL, + "inv_panel/inv_bg_panel": T.PANEL, + "inv_panel/inv_grid": T.GRID, + "horse_renderer": T.PANEL, + "horse_renderer/renderer_bg": T.IMAGE, + "horse_renderer/horse_custom_panel": T.PANEL, + "horse_renderer/horse_custom_panel/horse_custom": T.CUSTOM, + "horse_panel": T.PANEL, + "horse_panel/container_gamepad_helpers": T.STACK_PANEL, + "horse_panel/selected_item_details_factory": T.FACTORY, + "horse_panel/item_lock_notification_factory": T.FACTORY, + "horse_panel/root_panel": T.INPUT_PANEL, + "horse_panel/root_panel/common_panel": T.PANEL, + "horse_panel/root_panel/horse_section_label": T.LABEL, + "horse_panel/root_panel/inv_panel": T.PANEL, + "horse_panel/root_panel/equipment": T.PANEL, + "horse_panel/root_panel/renderer": T.PANEL, + "horse_panel/root_panel/inventory_panel_bottom_half_with_label": T.PANEL, + "horse_panel/root_panel/hotbar_grid_template": T.GRID, + "horse_panel/root_panel/inventory_selected_icon_button": T.BUTTON, + "horse_panel/root_panel/gamepad_cursor": T.BUTTON, + "horse_panel/flying_item_renderer": T.CUSTOM, + "horse_screen": T.SCREEN, } export type HorsePocketType = { - horse_panel: T.PANEL - "horse_panel/gamepad_helpers": T.STACK_PANEL - "horse_panel/inventory_selected_icon_button": T.BUTTON - "horse_panel/gamepad_cursor": T.BUTTON - "horse_panel/selected_item_details_factory": T.FACTORY - "horse_panel/item_lock_notification_factory": T.FACTORY - "horse_panel/base_panel": T.PANEL - "horse_panel/base_panel/root_panel": T.INPUT_PANEL - "horse_panel/base_panel/hold_icon": T.BUTTON - "horse_panel/base_panel/bg": T.PANEL - "horse_panel/base_panel/interactive_tabs": T.PANEL - "horse_panel/base_panel/close_button": T.BUTTON - "horse_panel/base_panel/inventory": T.PANEL - "horse_panel/base_panel/equipment": T.PANEL - "horse_panel/base_panel/chest_tab": T.PANEL - "horse_panel/base_panel/chest_tab/visual_tabs_chest": T.PANEL - "horse_panel/base_panel/chest_tab/chest": T.PANEL - "horse_panel/base_panel/renderer_tab": T.PANEL - "horse_panel/base_panel/renderer_tab/visual_tabs_equip": T.PANEL - "horse_panel/base_panel/renderer_tab/renderer": T.PANEL - "horse_panel/flying_item_renderer": T.CUSTOM - background_image: T.IMAGE - dark_bg: T.IMAGE - renderer_bg: T.IMAGE - saddle_image: T.IMAGE - horse_armor_image: T.IMAGE - carpet_image: T.IMAGE - nautilus_armor_image: T.IMAGE - panel_outline: T.IMAGE - close_button_default: T.IMAGE - close_button_pressed: T.IMAGE - close_button: T.BUTTON - "close_button/default": T.IMAGE - "close_button/hover": T.IMAGE - "close_button/pressed": T.IMAGE - base_grid: T.GRID - inventory_grid: T.GRID - chest_grid: T.GRID - base_grid_panel: T.PANEL - "base_grid_panel/panel_outline": T.IMAGE - "base_grid_panel/dark_bg": T.IMAGE - "base_grid_panel/scrolling_panel": T.PANEL - inventory_panel: T.PANEL - chest_panel: T.PANEL - half_screen: T.PANEL - middle_screen: T.PANEL - half_screen_inventory: T.PANEL - "half_screen_inventory/inventory_panel": T.PANEL - half_screen_chest: T.PANEL - "half_screen_chest/chest_panel": T.PANEL - horse_renderer: T.PANEL - "horse_renderer/horse_custom": T.CUSTOM - half_screen_renderer: T.PANEL - "half_screen_renderer/renderer_bg": T.IMAGE - "half_screen_renderer/horse_custom_panel": T.PANEL - "half_screen_renderer/camel_custom_panel": T.PANEL - equip_item_panel: T.PANEL - "equip_item_panel/equip_container_item": T.INPUT_PANEL - equip_grid: T.GRID - equip_middle_screen: T.PANEL - "equip_middle_screen/equip_grid_panel": T.PANEL - "equip_middle_screen/equip_grid_panel/equip_grid": T.GRID - "equip_middle_screen/equip_grid_panel/centered_0": T.IMAGE - "equip_middle_screen/equip_grid_panel/offset": T.IMAGE - "equip_middle_screen/equip_grid_panel/centered_1": T.IMAGE - "equip_middle_screen/equip_grid_panel/centered_2": T.IMAGE - "equip_middle_screen/equip_grid_panel/horse_armor_image": T.IMAGE - "equip_middle_screen/equip_grid_panel/carpet_image": T.IMAGE - horse_screen_tab_toggle: T.TOGGLE - interactive_tabs: T.PANEL - "interactive_tabs/renderer_tab_interactive": T.TOGGLE - "interactive_tabs/chest_tab_interactive": T.TOGGLE - tab_front: T.IMAGE - tab_back: T.IMAGE - close_tab: T.IMAGE - item_icon_renderer: T.CUSTOM - saddle_icon_front: T.CUSTOM - chest_icon_front: T.CUSTOM - visual_tabs_equip: T.PANEL - "visual_tabs_equip/close_tab": T.IMAGE - "visual_tabs_equip/close_tab/nodrop_zone": T.INPUT_PANEL - "visual_tabs_equip/chest": T.IMAGE - "visual_tabs_equip/chest/chest_icon": T.CUSTOM - "visual_tabs_equip/equip": T.IMAGE - "visual_tabs_equip/equip/equip_icon": T.CUSTOM - visual_tabs_chest: T.PANEL - "visual_tabs_chest/close_tab": T.IMAGE - "visual_tabs_chest/chest": T.IMAGE - "visual_tabs_chest/chest/chest_icon": T.CUSTOM - "visual_tabs_chest/equip": T.IMAGE - "visual_tabs_chest/equip/equip_icon": T.CUSTOM + "horse_panel": T.PANEL, + "horse_panel/gamepad_helpers": T.STACK_PANEL, + "horse_panel/inventory_selected_icon_button": T.BUTTON, + "horse_panel/gamepad_cursor": T.BUTTON, + "horse_panel/selected_item_details_factory": T.FACTORY, + "horse_panel/item_lock_notification_factory": T.FACTORY, + "horse_panel/base_panel": T.PANEL, + "horse_panel/base_panel/root_panel": T.INPUT_PANEL, + "horse_panel/base_panel/hold_icon": T.BUTTON, + "horse_panel/base_panel/bg": T.PANEL, + "horse_panel/base_panel/interactive_tabs": T.PANEL, + "horse_panel/base_panel/close_button": T.BUTTON, + "horse_panel/base_panel/inventory": T.PANEL, + "horse_panel/base_panel/equipment": T.PANEL, + "horse_panel/base_panel/chest_tab": T.PANEL, + "horse_panel/base_panel/chest_tab/visual_tabs_chest": T.PANEL, + "horse_panel/base_panel/chest_tab/chest": T.PANEL, + "horse_panel/base_panel/renderer_tab": T.PANEL, + "horse_panel/base_panel/renderer_tab/visual_tabs_equip": T.PANEL, + "horse_panel/base_panel/renderer_tab/renderer": T.PANEL, + "horse_panel/flying_item_renderer": T.CUSTOM, + "background_image": T.IMAGE, + "dark_bg": T.IMAGE, + "renderer_bg": T.IMAGE, + "saddle_image": T.IMAGE, + "horse_armor_image": T.IMAGE, + "carpet_image": T.IMAGE, + "nautilus_armor_image": T.IMAGE, + "panel_outline": T.IMAGE, + "close_button_default": T.IMAGE, + "close_button_pressed": T.IMAGE, + "close_button": T.BUTTON, + "close_button/default": T.IMAGE, + "close_button/hover": T.IMAGE, + "close_button/pressed": T.IMAGE, + "base_grid": T.GRID, + "inventory_grid": T.GRID, + "chest_grid": T.GRID, + "base_grid_panel": T.PANEL, + "base_grid_panel/panel_outline": T.IMAGE, + "base_grid_panel/dark_bg": T.IMAGE, + "base_grid_panel/scrolling_panel": T.PANEL, + "inventory_panel": T.PANEL, + "chest_panel": T.PANEL, + "half_screen": T.PANEL, + "middle_screen": T.PANEL, + "half_screen_inventory": T.PANEL, + "half_screen_inventory/inventory_panel": T.PANEL, + "half_screen_chest": T.PANEL, + "half_screen_chest/chest_panel": T.PANEL, + "horse_renderer": T.PANEL, + "horse_renderer/horse_custom": T.CUSTOM, + "half_screen_renderer": T.PANEL, + "half_screen_renderer/renderer_bg": T.IMAGE, + "half_screen_renderer/horse_custom_panel": T.PANEL, + "half_screen_renderer/camel_custom_panel": T.PANEL, + "equip_item_panel": T.PANEL, + "equip_item_panel/equip_container_item": T.INPUT_PANEL, + "equip_grid": T.GRID, + "equip_middle_screen": T.PANEL, + "equip_middle_screen/equip_grid_panel": T.PANEL, + "equip_middle_screen/equip_grid_panel/equip_grid": T.GRID, + "equip_middle_screen/equip_grid_panel/centered_0": T.IMAGE, + "equip_middle_screen/equip_grid_panel/offset": T.IMAGE, + "equip_middle_screen/equip_grid_panel/centered_1": T.IMAGE, + "equip_middle_screen/equip_grid_panel/centered_2": T.IMAGE, + "equip_middle_screen/equip_grid_panel/horse_armor_image": T.IMAGE, + "equip_middle_screen/equip_grid_panel/carpet_image": T.IMAGE, + "horse_screen_tab_toggle": T.TOGGLE, + "interactive_tabs": T.PANEL, + "interactive_tabs/renderer_tab_interactive": T.TOGGLE, + "interactive_tabs/chest_tab_interactive": T.TOGGLE, + "tab_front": T.IMAGE, + "tab_back": T.IMAGE, + "close_tab": T.IMAGE, + "item_icon_renderer": T.CUSTOM, + "saddle_icon_front": T.CUSTOM, + "chest_icon_front": T.CUSTOM, + "visual_tabs_equip": T.PANEL, + "visual_tabs_equip/close_tab": T.IMAGE, + "visual_tabs_equip/close_tab/nodrop_zone": T.INPUT_PANEL, + "visual_tabs_equip/chest": T.IMAGE, + "visual_tabs_equip/chest/chest_icon": T.CUSTOM, + "visual_tabs_equip/equip": T.IMAGE, + "visual_tabs_equip/equip/equip_icon": T.CUSTOM, + "visual_tabs_chest": T.PANEL, + "visual_tabs_chest/close_tab": T.IMAGE, + "visual_tabs_chest/chest": T.IMAGE, + "visual_tabs_chest/chest/chest_icon": T.CUSTOM, + "visual_tabs_chest/equip": T.IMAGE, + "visual_tabs_chest/equip/equip_icon": T.CUSTOM, } export type HowToPlayCommonType = { - dynamic_dialog_screen: T.SCREEN - screen_background: T.IMAGE - top_bar: T.IMAGE - button_panel: T.LABEL - light_text_button: T.BUTTON - action_button: T.BUTTON - topic_category: T.PANEL - "topic_category/top_padding": T.PANEL - "topic_category/category_text": T.LABEL - toggle_button_control: T.PANEL - "toggle_button_control/tab_button_text": T.LABEL - glyph_button_control: T.PANEL - "glyph_button_control/tab_button_text": T.LABEL - "glyph_button_control/glyph": T.IMAGE - section_toggle_button: T.PANEL - "section_toggle_button/section_toggle_button": T.PANEL - edu_section_toggle_button: T.PANEL - padding: T.PANEL - touch_padding: T.PANEL - small_padding: T.PANEL - large_padding: T.PANEL - section_contents_header: T.INPUT_PANEL - section_contents_footer: T.INPUT_PANEL - main_sections: T.STACK_PANEL - splitscreen_only_content: T.STACK_PANEL - "splitscreen_only_content/0": T.UNKNOWN - tts_focus_border: T.BUTTON - header_tts_focus_border: T.BUTTON - header_background: T.IMAGE - "header_background/header_label": T.LABEL - "header_background/focus_border": T.BUTTON - header: T.PANEL - "header/header": T.IMAGE - paragraph_panel: T.PANEL - paragraph_label: T.LABEL - paragraph_tts_focus_border: T.BUTTON - paragraph: T.PANEL - "paragraph/label": T.LABEL - "paragraph/focus_border": T.BUTTON - paragraph_with_icons: T.PANEL - "paragraph_with_icons/label": T.LABEL - "paragraph_with_icons/focus_border": T.BUTTON - input_conditional_paragraph: T.PANEL - input_conditional_paragraph_with_icons: T.PANEL - paragraph_keyboard: T.PANEL - paragraph_gamepad: T.PANEL - paragraph_gamepad_no_icons: T.PANEL - paragraph_touch: T.PANEL - paragraph_touch_classic_dpad_spacing: T.PANEL - paragraph_touch_no_icons: T.PANEL - paragraph_touch_joystick_tap: T.PANEL - paragraph_touch_classic_dpad: T.PANEL - paragraph_touch_joystick_crosshair: T.PANEL - paragraph_not_touch: T.PANEL - image: T.IMAGE - how_to_play_header: T.PANEL - "how_to_play_header/top_bar": T.IMAGE - "how_to_play_header/top_bar/back_button": T.STACK_PANEL - "how_to_play_header/top_bar/how_to_play_title": T.PANEL - "how_to_play_header/top_bar/gamepad_bumper_helpers": T.STACK_PANEL - how_to_play_content: T.PANEL - "how_to_play_content/header": T.PANEL - "how_to_play_content/container": T.PANEL - dialog_content: T.PANEL - "dialog_content/selector_area": T.PANEL - "dialog_content/content_area": T.PANEL - "dialog_content/section_divider": T.IMAGE - scrollable_selector_area_content: T.PANEL - selector_area: T.PANEL - "selector_area/scrolling_panel": T.PANEL - section_divider: T.IMAGE - content_area_wrapper: T.PANEL - "content_area_wrapper/content_area": T.PANEL - content_area: T.PANEL - "content_area/control": T.STACK_PANEL - "content_area/control/scrolling_panel": T.PANEL - screen_base: T.SCREEN - gamepad_bumper_helper_description: T.LABEL - gamepad_bumper_helpers: T.STACK_PANEL - "gamepad_bumper_helpers/gamepad_helper_left_bumper": T.STACK_PANEL - "gamepad_bumper_helpers/padding": T.PANEL - "gamepad_bumper_helpers/gamepad_helper_right_bumper": T.STACK_PANEL + "dynamic_dialog_screen": T.SCREEN, + "screen_background": T.IMAGE, + "top_bar": T.IMAGE, + "button_panel": T.LABEL, + "light_text_button": T.BUTTON, + "action_button": T.BUTTON, + "topic_category": T.PANEL, + "topic_category/top_padding": T.PANEL, + "topic_category/category_text": T.LABEL, + "toggle_button_control": T.PANEL, + "toggle_button_control/tab_button_text": T.LABEL, + "glyph_button_control": T.PANEL, + "glyph_button_control/tab_button_text": T.LABEL, + "glyph_button_control/glyph": T.IMAGE, + "section_toggle_button": T.PANEL, + "section_toggle_button/section_toggle_button": T.PANEL, + "edu_section_toggle_button": T.PANEL, + "padding": T.PANEL, + "touch_padding": T.PANEL, + "small_padding": T.PANEL, + "large_padding": T.PANEL, + "section_contents_header": T.INPUT_PANEL, + "section_contents_footer": T.INPUT_PANEL, + "main_sections": T.STACK_PANEL, + "splitscreen_only_content": T.STACK_PANEL, + "splitscreen_only_content/0": T.UNKNOWN, + "tts_focus_border": T.BUTTON, + "header_tts_focus_border": T.BUTTON, + "header_background": T.IMAGE, + "header_background/header_label": T.LABEL, + "header_background/focus_border": T.BUTTON, + "header": T.PANEL, + "header/header": T.IMAGE, + "paragraph_panel": T.PANEL, + "paragraph_label": T.LABEL, + "paragraph_tts_focus_border": T.BUTTON, + "paragraph": T.PANEL, + "paragraph/label": T.LABEL, + "paragraph/focus_border": T.BUTTON, + "paragraph_with_icons": T.PANEL, + "paragraph_with_icons/label": T.LABEL, + "paragraph_with_icons/focus_border": T.BUTTON, + "input_conditional_paragraph": T.PANEL, + "input_conditional_paragraph_with_icons": T.PANEL, + "paragraph_keyboard": T.PANEL, + "paragraph_gamepad": T.PANEL, + "paragraph_gamepad_no_icons": T.PANEL, + "paragraph_touch": T.PANEL, + "paragraph_touch_classic_dpad_spacing": T.PANEL, + "paragraph_touch_no_icons": T.PANEL, + "paragraph_touch_joystick_tap": T.PANEL, + "paragraph_touch_classic_dpad": T.PANEL, + "paragraph_touch_joystick_crosshair": T.PANEL, + "paragraph_not_touch": T.PANEL, + "image": T.IMAGE, + "how_to_play_header": T.PANEL, + "how_to_play_header/top_bar": T.IMAGE, + "how_to_play_header/top_bar/back_button": T.STACK_PANEL, + "how_to_play_header/top_bar/how_to_play_title": T.PANEL, + "how_to_play_header/top_bar/gamepad_bumper_helpers": T.STACK_PANEL, + "how_to_play_content": T.PANEL, + "how_to_play_content/header": T.PANEL, + "how_to_play_content/container": T.PANEL, + "dialog_content": T.PANEL, + "dialog_content/selector_area": T.PANEL, + "dialog_content/content_area": T.PANEL, + "dialog_content/section_divider": T.IMAGE, + "scrollable_selector_area_content": T.PANEL, + "selector_area": T.PANEL, + "selector_area/scrolling_panel": T.PANEL, + "section_divider": T.IMAGE, + "content_area_wrapper": T.PANEL, + "content_area_wrapper/content_area": T.PANEL, + "content_area": T.PANEL, + "content_area/control": T.STACK_PANEL, + "content_area/control/scrolling_panel": T.PANEL, + "screen_base": T.SCREEN, + "gamepad_bumper_helper_description": T.LABEL, + "gamepad_bumper_helpers": T.STACK_PANEL, + "gamepad_bumper_helpers/gamepad_helper_left_bumper": T.STACK_PANEL, + "gamepad_bumper_helpers/padding": T.PANEL, + "gamepad_bumper_helpers/gamepad_helper_right_bumper": T.STACK_PANEL, } export type HowToPlayType = { - how_to_play_screen: T.SCREEN - how_to_play_selector_stack_panel: T.STACK_PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane": T.STACK_PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/getting_started_category": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/moving_around_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/gathering_resources_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/selecting_items_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/placing_blocks_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/inventory_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/preparing_for_the_night_category": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/your_first_craft_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/recipe_book_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/the_crafting_table_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/crafting_a_tool_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/mining_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/surviving_the_first_night_category": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/nightfall_new_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/building_a_shelter_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/death_and_respawn_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/getting_settled_category": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/food_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/beds_new_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/improved_tools_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/education_category": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/world_builder_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/permission_blocks_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/chalkboard_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/chemistry_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/npc_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/camera_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/portfolio_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/classroom_mode_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/code_builder_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/padding_1": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/playing_together_button": T.PANEL - "how_to_play_selector_stack_panel/how_to_play_selector_pane/encyclopedia_button": T.PANEL - how_to_play_section_content_panels: T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/section_contents_header": T.INPUT_PANEL - "how_to_play_section_content_panels/general_tips_sections/moving_around_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/gathering_resources_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/selecting_items_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/placing_blocks_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/inventory_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/your_first_craft_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/recipe_book_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/the_crafting_table_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/crafting_a_tool_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/mining_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/nightfall_new_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/building_a_shelter_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/death_and_respawn_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/food_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/beds_new_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/improved_tools_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/world_builder_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/permission_blocks_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/chalkboard_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/chemistry_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/npc_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/camera_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/portfolio_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/classroom_mode_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/code_builder_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/playing_together_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/encyclopedia_section": T.STACK_PANEL - "how_to_play_section_content_panels/general_tips_sections/section_contents_footer": T.INPUT_PANEL - moving_around_button: T.PANEL - moving_around_section: T.STACK_PANEL - "moving_around_section/paragraph_1": T.PANEL - "moving_around_section/padding_1": T.PANEL - "moving_around_section/paragraph_2_keyboard": T.PANEL - "moving_around_section/paragraph_2_gamepad": T.PANEL - "moving_around_section/paragraph_touch_joystick_tap": T.PANEL - "moving_around_section/padding_2": T.PANEL - "moving_around_section/paragraph_3a_keyboard": T.PANEL - "moving_around_section/paragraph_3b_keyboard": T.PANEL - "moving_around_section/paragraph_3a_gamepad": T.PANEL - "moving_around_section/paragraph_3b_gamepad": T.PANEL - "moving_around_section/paragraph_3_touch_joystick_tap": T.PANEL - "moving_around_section/paragraph_3a_touch_classic_dpad": T.PANEL - "moving_around_section/paragraph_3b_touch_classic_dpad": T.PANEL - "moving_around_section/paragraph_3c_touch_classic_dpad": T.PANEL - "moving_around_section/paragraph_3d_touch_classic_dpad": T.PANEL - "moving_around_section/paragraph_3e_touch_classic_dpad": T.PANEL - "moving_around_section/paragraph_3_touch_joystick_crosshair": T.PANEL - "moving_around_section/image_1": T.IMAGE - gathering_resources_button: T.PANEL - gathering_resources_section: T.STACK_PANEL - "gathering_resources_section/paragraph_1": T.PANEL - "gathering_resources_section/padding_1": T.PANEL - "gathering_resources_section/paragraph_2_keyboard": T.PANEL - "gathering_resources_section/paragraph_2_gamepad": T.PANEL - "gathering_resources_section/paragraph_2_touch_joystick_tap": T.PANEL - "gathering_resources_section/paragraph_2_touch_classic_dpad": T.PANEL - "gathering_resources_section/paragraph_2_touch_joystick_crosshair": T.PANEL - "gathering_resources_section/padding_2": T.PANEL - "gathering_resources_section/paragraph_3": T.PANEL - selecting_items_button: T.PANEL - selecting_items_section: T.STACK_PANEL - "selecting_items_section/paragraph_1": T.PANEL - "selecting_items_section/padding_1": T.PANEL - "selecting_items_section/paragraph_2_keyboard": T.PANEL - "selecting_items_section/paragraph_2_gamepad": T.PANEL - "selecting_items_section/paragraph_touch_joystick_tap": T.PANEL - "selecting_items_section/padding_2": T.PANEL - "selecting_items_section/paragraph_3_keyboard": T.PANEL - "selecting_items_section/paragraph_3_gamepad": T.PANEL - "selecting_items_section/paragraph_3_touch_joystick_tap": T.PANEL - "selecting_items_section/paragraph_3_touch_classic_dpad": T.PANEL - "selecting_items_section/paragraph_3_touch_joystick_crosshair": T.PANEL - "selecting_items_section/padding_3": T.PANEL - "selecting_items_section/header_1": T.PANEL - "selecting_items_section/image_1_not_touch": T.IMAGE - "selecting_items_section/image_1_touch": T.IMAGE - placing_blocks_button: T.PANEL - placing_blocks_section: T.STACK_PANEL - "placing_blocks_section/paragraph_1": T.PANEL - "placing_blocks_section/padding_1": T.PANEL - "placing_blocks_section/paragraph_2_keyboard": T.PANEL - "placing_blocks_section/paragraph_2_gamepad": T.PANEL - "placing_blocks_section/paragraph_2_touch_joystick_tap": T.PANEL - "placing_blocks_section/paragraph_2_touch_classic_dpad": T.PANEL - "placing_blocks_section/paragraph_2_touch_joystick_crosshair": T.PANEL - "placing_blocks_section/padding_2": T.PANEL - "placing_blocks_section/paragraph_3": T.PANEL - inventory_button: T.PANEL - inventory_section: T.STACK_PANEL - "inventory_section/image_1_not_touch": T.IMAGE - "inventory_section/image_1_touch": T.IMAGE - "inventory_section/header_1": T.PANEL - "inventory_section/paragraph_1_keyboard": T.PANEL - "inventory_section/paragraph_1_gamepad": T.PANEL - "inventory_section/paragraph_1_touch": T.PANEL - "inventory_section/padding_2": T.PANEL - "inventory_section/header_2": T.PANEL - "inventory_section/paragraph_2_keyboard": T.PANEL - "inventory_section/paragraph_2_gamepad": T.PANEL - "inventory_section/paragraph_2_touch": T.PANEL - your_first_craft_button: T.PANEL - your_first_craft_section: T.STACK_PANEL - "your_first_craft_section/image_1_not_touch": T.IMAGE - "your_first_craft_section/image_1_touch": T.IMAGE - "your_first_craft_section/header_1": T.PANEL - "your_first_craft_section/paragraph_1": T.PANEL - "your_first_craft_section/padding_2": T.PANEL - "your_first_craft_section/paragraph_2": T.PANEL - "your_first_craft_section/padding_3": T.PANEL - "your_first_craft_section/paragraph_3_touch": T.PANEL - "your_first_craft_section/paragraph_3_keyboard": T.PANEL - "your_first_craft_section/paragraph_3_gamepad": T.PANEL - "your_first_craft_section/padding_4": T.PANEL - "your_first_craft_section/header_2": T.PANEL - "your_first_craft_section/paragraph_4": T.PANEL - "your_first_craft_section/padding_5": T.PANEL - "your_first_craft_section/paragraph_5": T.PANEL - recipe_book_button: T.PANEL - recipe_book_section: T.STACK_PANEL - "recipe_book_section/paragraph_1_keyboard": T.PANEL - "recipe_book_section/paragraph_1_gamepad": T.PANEL - "recipe_book_section/paragraph_1_touch": T.PANEL - "recipe_book_section/padding_1": T.PANEL - "recipe_book_section/paragraph_2_keyboard": T.PANEL - "recipe_book_section/paragraph_2_gamepad": T.PANEL - "recipe_book_section/paragraph_2_touch": T.PANEL - the_crafting_table_button: T.PANEL - the_crafting_table_section: T.STACK_PANEL - "the_crafting_table_section/image_1": T.IMAGE - "the_crafting_table_section/paragraph_1": T.PANEL - "the_crafting_table_section/padding_2": T.PANEL - "the_crafting_table_section/paragraph_2_keyboard": T.PANEL - "the_crafting_table_section/paragraph_2_gamepad": T.PANEL - "the_crafting_table_section/paragraph_2_touch": T.PANEL - crafting_a_tool_button: T.PANEL - crafting_a_tool_section: T.STACK_PANEL - "crafting_a_tool_section/paragraph_1": T.PANEL - "crafting_a_tool_section/padding_1": T.PANEL - "crafting_a_tool_section/paragraph_2_keyboard": T.PANEL - "crafting_a_tool_section/paragraph_2_gamepad": T.PANEL - "crafting_a_tool_section/paragraph_2_touch": T.PANEL - mining_button: T.PANEL - mining_section: T.STACK_PANEL - "mining_section/image_1": T.IMAGE - "mining_section/paragraph_1": T.PANEL - "mining_section/padding_2": T.PANEL - "mining_section/paragraph_2": T.PANEL - "mining_section/padding_3": T.PANEL - "mining_section/paragraph_3": T.PANEL - nightfall_new_button: T.PANEL - nightfall_new_section: T.STACK_PANEL - "nightfall_new_section/paragraph_1": T.PANEL - "nightfall_new_section/padding_1": T.PANEL - "nightfall_new_section/paragraph_2": T.PANEL - "nightfall_new_section/padding_2": T.PANEL - "nightfall_new_section/paragraph_3": T.PANEL - "nightfall_new_section/padding_3": T.PANEL - "nightfall_new_section/paragraph_4_keyboard": T.PANEL - "nightfall_new_section/paragraph_4_gamepad": T.PANEL - "nightfall_new_section/paragraph_4_touch_joystick_tap": T.PANEL - "nightfall_new_section/paragraph_4_touch_classic_dpad": T.PANEL - "nightfall_new_section/paragraph_4_touch_joystick_crosshair": T.PANEL - building_a_shelter_button: T.PANEL - building_a_shelter_section: T.STACK_PANEL - "building_a_shelter_section/image_1": T.IMAGE - "building_a_shelter_section/paragraph_1": T.PANEL - "building_a_shelter_section/padding_2": T.PANEL - "building_a_shelter_section/paragraph_2": T.PANEL - "building_a_shelter_section/padding_3": T.PANEL - "building_a_shelter_section/paragraph_3": T.PANEL - death_and_respawn_button: T.PANEL - death_and_respawn_section: T.STACK_PANEL - "death_and_respawn_section/paragraph_1": T.PANEL - "death_and_respawn_section/padding_1": T.PANEL - "death_and_respawn_section/paragraph_2": T.PANEL - food_button: T.PANEL - food_section: T.STACK_PANEL - "food_section/paragraph_1": T.PANEL - "food_section/padding_1": T.PANEL - "food_section/paragraph_2_keyboard": T.PANEL - "food_section/paragraph_2_gamepad": T.PANEL - "food_section/paragraph_2_touch": T.PANEL - "food_section/padding_2": T.PANEL - "food_section/paragraph_3": T.PANEL - beds_new_button: T.PANEL - beds_new_section: T.STACK_PANEL - "beds_new_section/paragraph_1": T.PANEL - "beds_new_section/padding_1": T.PANEL - "beds_new_section/paragraph_2": T.PANEL - "beds_new_section/padding_2": T.PANEL - "beds_new_section/paragraph_3": T.PANEL - improved_tools_button: T.PANEL - improved_tools_section: T.STACK_PANEL - "improved_tools_section/paragraph_1": T.PANEL - "improved_tools_section/padding_1": T.PANEL - "improved_tools_section/paragraph_2": T.PANEL - world_builder_button: T.PANEL - world_builder_section: T.STACK_PANEL - "world_builder_section/paragraph_1": T.PANEL - "world_builder_section/padding_1": T.PANEL - "world_builder_section/paragraph_2": T.PANEL - "world_builder_section/padding_2": T.PANEL - "world_builder_section/paragraph_3": T.PANEL - "world_builder_section/padding_3": T.PANEL - "world_builder_section/paragraph_4": T.PANEL - "world_builder_section/padding_4": T.PANEL - "world_builder_section/paragraph_5": T.PANEL - "world_builder_section/padding_5": T.PANEL - "world_builder_section/paragraph_6": T.PANEL - "world_builder_section/paragraph_7": T.PANEL - "world_builder_section/padding_7": T.PANEL - "world_builder_section/paragraph_8": T.PANEL - "world_builder_section/padding_8": T.PANEL - "world_builder_section/paragraph_9": T.PANEL - permission_blocks_button: T.PANEL - permission_blocks_section: T.STACK_PANEL - "permission_blocks_section/paragraph_1": T.PANEL - "permission_blocks_section/padding_1": T.PANEL - "permission_blocks_section/header_1": T.PANEL - "permission_blocks_section/paragraph_2": T.PANEL - "permission_blocks_section/padding_3": T.PANEL - "permission_blocks_section/paragraph_3": T.PANEL - "permission_blocks_section/padding_4": T.PANEL - "permission_blocks_section/paragraph_4": T.PANEL - "permission_blocks_section/padding_5": T.PANEL - "permission_blocks_section/paragraph_5": T.PANEL - "permission_blocks_section/padding_7": T.PANEL - "permission_blocks_section/header_2": T.PANEL - "permission_blocks_section/paragraph_6": T.PANEL - chalkboard_button: T.PANEL - chalkboard_section: T.STACK_PANEL - "chalkboard_section/paragraph_1_keyboard": T.PANEL - "chalkboard_section/paragraph_1_gamepad": T.PANEL - "chalkboard_section/paragraph_1_touch": T.PANEL - chemistry_button: T.PANEL - chemistry_section: T.STACK_PANEL - "chemistry_section/paragraph_1": T.PANEL - "chemistry_section/padding_1": T.PANEL - "chemistry_section/paragraph_2": T.PANEL - npc_button: T.PANEL - npc_section: T.STACK_PANEL - "npc_section/paragraph_1": T.PANEL - "npc_section/padding_1": T.PANEL - "npc_section/paragraph_2": T.PANEL - "npc_section/padding_2": T.PANEL - "npc_section/paragraph_3": T.PANEL - camera_button: T.PANEL - camera_section: T.STACK_PANEL - "camera_section/paragraph_1": T.PANEL - "camera_section/padding_1": T.PANEL - "camera_section/paragraph_2_keyboard": T.PANEL - "camera_section/paragraph_2_gamepad": T.PANEL - "camera_section/paragraph_2_touch": T.PANEL - "camera_section/padding_2": T.PANEL - "camera_section/paragraph_3_keyboard": T.PANEL - "camera_section/paragraph_3_gamepad": T.PANEL - "camera_section/paragraph_3_touch": T.PANEL - "camera_section/padding_3": T.PANEL - "camera_section/paragraph_4": T.PANEL - portfolio_button: T.PANEL - portfolio_section: T.STACK_PANEL - "portfolio_section/paragraph_1_keyboard": T.PANEL - "portfolio_section/paragraph_1_gamepad": T.PANEL - "portfolio_section/paragraph_1_touch": T.PANEL - classroom_mode_button: T.PANEL - classroom_mode_section: T.STACK_PANEL - "classroom_mode_section/paragraph_1": T.PANEL - "classroom_mode_section/padding_1": T.PANEL - "classroom_mode_section/paragraph_2": T.PANEL - code_builder_button: T.PANEL - code_builder_section: T.STACK_PANEL - "code_builder_section/paragraph_1": T.PANEL - "code_builder_section/padding_1": T.PANEL - "code_builder_section/paragraph_2_keyboard": T.PANEL - "code_builder_section/paragraph_2_gamepad": T.PANEL - "code_builder_section/paragraph_2_touch": T.PANEL - playing_together_button: T.PANEL - playing_together_section: T.STACK_PANEL - "playing_together_section/paragraph_1": T.PANEL - "playing_together_section/padding_1": T.PANEL - "playing_together_section/header_1": T.PANEL - "playing_together_section/paragraph_2": T.PANEL - "playing_together_section/padding_2": T.PANEL - "playing_together_section/header_2": T.PANEL - "playing_together_section/paragraph_3": T.PANEL - "playing_together_section/padding_3": T.PANEL - "playing_together_section/paragraph_4": T.PANEL - "playing_together_section/padding_4": T.PANEL - "playing_together_section/paragraph_5": T.PANEL - "playing_together_section/padding_5": T.PANEL - "playing_together_section/header_3": T.PANEL - "playing_together_section/paragraph_6": T.PANEL - "playing_together_section/padding_6": T.PANEL - "playing_together_section/paragraph_7": T.PANEL - "playing_together_section/padding_7": T.PANEL - "playing_together_section/paragraph_8": T.PANEL - "playing_together_section/realms_button": T.BUTTON - "playing_together_section/sign_in_button": T.BUTTON - "playing_together_section/padding_8": T.PANEL - "playing_together_section/header_4": T.PANEL - "playing_together_section/paragraph_9": T.PANEL - "playing_together_section/padding_9": T.PANEL - "playing_together_section/paragraph_10": T.PANEL - try_realms_action_button: T.BUTTON - encyclopedia_button: T.PANEL - encyclopedia_section: T.STACK_PANEL - "encyclopedia_section/paragraph_1": T.PANEL + "how_to_play_screen": T.SCREEN, + "how_to_play_selector_stack_panel": T.STACK_PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane": T.STACK_PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/getting_started_category": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/moving_around_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/gathering_resources_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/selecting_items_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/placing_blocks_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/inventory_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/preparing_for_the_night_category": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/your_first_craft_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/recipe_book_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/the_crafting_table_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/crafting_a_tool_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/mining_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/surviving_the_first_night_category": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/nightfall_new_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/building_a_shelter_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/death_and_respawn_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/getting_settled_category": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/food_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/beds_new_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/improved_tools_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/education_category": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/world_builder_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/permission_blocks_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/chalkboard_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/chemistry_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/npc_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/camera_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/portfolio_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/classroom_mode_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/code_builder_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/padding_1": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/playing_together_button": T.PANEL, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/encyclopedia_button": T.PANEL, + "how_to_play_section_content_panels": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/section_contents_header": T.INPUT_PANEL, + "how_to_play_section_content_panels/general_tips_sections/moving_around_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/gathering_resources_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/selecting_items_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/placing_blocks_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/inventory_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/your_first_craft_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/recipe_book_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/the_crafting_table_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/crafting_a_tool_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/mining_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/nightfall_new_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/building_a_shelter_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/death_and_respawn_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/food_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/beds_new_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/improved_tools_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/world_builder_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/permission_blocks_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/chalkboard_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/chemistry_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/npc_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/camera_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/portfolio_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/classroom_mode_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/code_builder_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/playing_together_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/encyclopedia_section": T.STACK_PANEL, + "how_to_play_section_content_panels/general_tips_sections/section_contents_footer": T.INPUT_PANEL, + "moving_around_button": T.PANEL, + "moving_around_section": T.STACK_PANEL, + "moving_around_section/paragraph_1": T.PANEL, + "moving_around_section/padding_1": T.PANEL, + "moving_around_section/paragraph_2_keyboard": T.PANEL, + "moving_around_section/paragraph_2_gamepad": T.PANEL, + "moving_around_section/paragraph_touch_joystick_tap": T.PANEL, + "moving_around_section/padding_2": T.PANEL, + "moving_around_section/paragraph_3a_keyboard": T.PANEL, + "moving_around_section/paragraph_3b_keyboard": T.PANEL, + "moving_around_section/paragraph_3a_gamepad": T.PANEL, + "moving_around_section/paragraph_3b_gamepad": T.PANEL, + "moving_around_section/paragraph_3_touch_joystick_tap": T.PANEL, + "moving_around_section/paragraph_3a_touch_classic_dpad": T.PANEL, + "moving_around_section/paragraph_3b_touch_classic_dpad": T.PANEL, + "moving_around_section/paragraph_3c_touch_classic_dpad": T.PANEL, + "moving_around_section/paragraph_3d_touch_classic_dpad": T.PANEL, + "moving_around_section/paragraph_3e_touch_classic_dpad": T.PANEL, + "moving_around_section/paragraph_3_touch_joystick_crosshair": T.PANEL, + "moving_around_section/image_1": T.IMAGE, + "gathering_resources_button": T.PANEL, + "gathering_resources_section": T.STACK_PANEL, + "gathering_resources_section/paragraph_1": T.PANEL, + "gathering_resources_section/padding_1": T.PANEL, + "gathering_resources_section/paragraph_2_keyboard": T.PANEL, + "gathering_resources_section/paragraph_2_gamepad": T.PANEL, + "gathering_resources_section/paragraph_2_touch_joystick_tap": T.PANEL, + "gathering_resources_section/paragraph_2_touch_classic_dpad": T.PANEL, + "gathering_resources_section/paragraph_2_touch_joystick_crosshair": T.PANEL, + "gathering_resources_section/padding_2": T.PANEL, + "gathering_resources_section/paragraph_3": T.PANEL, + "selecting_items_button": T.PANEL, + "selecting_items_section": T.STACK_PANEL, + "selecting_items_section/paragraph_1": T.PANEL, + "selecting_items_section/padding_1": T.PANEL, + "selecting_items_section/paragraph_2_keyboard": T.PANEL, + "selecting_items_section/paragraph_2_gamepad": T.PANEL, + "selecting_items_section/paragraph_touch_joystick_tap": T.PANEL, + "selecting_items_section/padding_2": T.PANEL, + "selecting_items_section/paragraph_3_keyboard": T.PANEL, + "selecting_items_section/paragraph_3_gamepad": T.PANEL, + "selecting_items_section/paragraph_3_touch_joystick_tap": T.PANEL, + "selecting_items_section/paragraph_3_touch_classic_dpad": T.PANEL, + "selecting_items_section/paragraph_3_touch_joystick_crosshair": T.PANEL, + "selecting_items_section/padding_3": T.PANEL, + "selecting_items_section/header_1": T.PANEL, + "selecting_items_section/image_1_not_touch": T.IMAGE, + "selecting_items_section/image_1_touch": T.IMAGE, + "placing_blocks_button": T.PANEL, + "placing_blocks_section": T.STACK_PANEL, + "placing_blocks_section/paragraph_1": T.PANEL, + "placing_blocks_section/padding_1": T.PANEL, + "placing_blocks_section/paragraph_2_keyboard": T.PANEL, + "placing_blocks_section/paragraph_2_gamepad": T.PANEL, + "placing_blocks_section/paragraph_2_touch_joystick_tap": T.PANEL, + "placing_blocks_section/paragraph_2_touch_classic_dpad": T.PANEL, + "placing_blocks_section/paragraph_2_touch_joystick_crosshair": T.PANEL, + "placing_blocks_section/padding_2": T.PANEL, + "placing_blocks_section/paragraph_3": T.PANEL, + "inventory_button": T.PANEL, + "inventory_section": T.STACK_PANEL, + "inventory_section/image_1_not_touch": T.IMAGE, + "inventory_section/image_1_touch": T.IMAGE, + "inventory_section/header_1": T.PANEL, + "inventory_section/paragraph_1_keyboard": T.PANEL, + "inventory_section/paragraph_1_gamepad": T.PANEL, + "inventory_section/paragraph_1_touch": T.PANEL, + "inventory_section/padding_2": T.PANEL, + "inventory_section/header_2": T.PANEL, + "inventory_section/paragraph_2_keyboard": T.PANEL, + "inventory_section/paragraph_2_gamepad": T.PANEL, + "inventory_section/paragraph_2_touch": T.PANEL, + "your_first_craft_button": T.PANEL, + "your_first_craft_section": T.STACK_PANEL, + "your_first_craft_section/image_1_not_touch": T.IMAGE, + "your_first_craft_section/image_1_touch": T.IMAGE, + "your_first_craft_section/header_1": T.PANEL, + "your_first_craft_section/paragraph_1": T.PANEL, + "your_first_craft_section/padding_2": T.PANEL, + "your_first_craft_section/paragraph_2": T.PANEL, + "your_first_craft_section/padding_3": T.PANEL, + "your_first_craft_section/paragraph_3_touch": T.PANEL, + "your_first_craft_section/paragraph_3_keyboard": T.PANEL, + "your_first_craft_section/paragraph_3_gamepad": T.PANEL, + "your_first_craft_section/padding_4": T.PANEL, + "your_first_craft_section/header_2": T.PANEL, + "your_first_craft_section/paragraph_4": T.PANEL, + "your_first_craft_section/padding_5": T.PANEL, + "your_first_craft_section/paragraph_5": T.PANEL, + "recipe_book_button": T.PANEL, + "recipe_book_section": T.STACK_PANEL, + "recipe_book_section/paragraph_1_keyboard": T.PANEL, + "recipe_book_section/paragraph_1_gamepad": T.PANEL, + "recipe_book_section/paragraph_1_touch": T.PANEL, + "recipe_book_section/padding_1": T.PANEL, + "recipe_book_section/paragraph_2_keyboard": T.PANEL, + "recipe_book_section/paragraph_2_gamepad": T.PANEL, + "recipe_book_section/paragraph_2_touch": T.PANEL, + "the_crafting_table_button": T.PANEL, + "the_crafting_table_section": T.STACK_PANEL, + "the_crafting_table_section/image_1": T.IMAGE, + "the_crafting_table_section/paragraph_1": T.PANEL, + "the_crafting_table_section/padding_2": T.PANEL, + "the_crafting_table_section/paragraph_2_keyboard": T.PANEL, + "the_crafting_table_section/paragraph_2_gamepad": T.PANEL, + "the_crafting_table_section/paragraph_2_touch": T.PANEL, + "crafting_a_tool_button": T.PANEL, + "crafting_a_tool_section": T.STACK_PANEL, + "crafting_a_tool_section/paragraph_1": T.PANEL, + "crafting_a_tool_section/padding_1": T.PANEL, + "crafting_a_tool_section/paragraph_2_keyboard": T.PANEL, + "crafting_a_tool_section/paragraph_2_gamepad": T.PANEL, + "crafting_a_tool_section/paragraph_2_touch": T.PANEL, + "mining_button": T.PANEL, + "mining_section": T.STACK_PANEL, + "mining_section/image_1": T.IMAGE, + "mining_section/paragraph_1": T.PANEL, + "mining_section/padding_2": T.PANEL, + "mining_section/paragraph_2": T.PANEL, + "mining_section/padding_3": T.PANEL, + "mining_section/paragraph_3": T.PANEL, + "nightfall_new_button": T.PANEL, + "nightfall_new_section": T.STACK_PANEL, + "nightfall_new_section/paragraph_1": T.PANEL, + "nightfall_new_section/padding_1": T.PANEL, + "nightfall_new_section/paragraph_2": T.PANEL, + "nightfall_new_section/padding_2": T.PANEL, + "nightfall_new_section/paragraph_3": T.PANEL, + "nightfall_new_section/padding_3": T.PANEL, + "nightfall_new_section/paragraph_4_keyboard": T.PANEL, + "nightfall_new_section/paragraph_4_gamepad": T.PANEL, + "nightfall_new_section/paragraph_4_touch_joystick_tap": T.PANEL, + "nightfall_new_section/paragraph_4_touch_classic_dpad": T.PANEL, + "nightfall_new_section/paragraph_4_touch_joystick_crosshair": T.PANEL, + "building_a_shelter_button": T.PANEL, + "building_a_shelter_section": T.STACK_PANEL, + "building_a_shelter_section/image_1": T.IMAGE, + "building_a_shelter_section/paragraph_1": T.PANEL, + "building_a_shelter_section/padding_2": T.PANEL, + "building_a_shelter_section/paragraph_2": T.PANEL, + "building_a_shelter_section/padding_3": T.PANEL, + "building_a_shelter_section/paragraph_3": T.PANEL, + "death_and_respawn_button": T.PANEL, + "death_and_respawn_section": T.STACK_PANEL, + "death_and_respawn_section/paragraph_1": T.PANEL, + "death_and_respawn_section/padding_1": T.PANEL, + "death_and_respawn_section/paragraph_2": T.PANEL, + "food_button": T.PANEL, + "food_section": T.STACK_PANEL, + "food_section/paragraph_1": T.PANEL, + "food_section/padding_1": T.PANEL, + "food_section/paragraph_2_keyboard": T.PANEL, + "food_section/paragraph_2_gamepad": T.PANEL, + "food_section/paragraph_2_touch": T.PANEL, + "food_section/padding_2": T.PANEL, + "food_section/paragraph_3": T.PANEL, + "beds_new_button": T.PANEL, + "beds_new_section": T.STACK_PANEL, + "beds_new_section/paragraph_1": T.PANEL, + "beds_new_section/padding_1": T.PANEL, + "beds_new_section/paragraph_2": T.PANEL, + "beds_new_section/padding_2": T.PANEL, + "beds_new_section/paragraph_3": T.PANEL, + "improved_tools_button": T.PANEL, + "improved_tools_section": T.STACK_PANEL, + "improved_tools_section/paragraph_1": T.PANEL, + "improved_tools_section/padding_1": T.PANEL, + "improved_tools_section/paragraph_2": T.PANEL, + "world_builder_button": T.PANEL, + "world_builder_section": T.STACK_PANEL, + "world_builder_section/paragraph_1": T.PANEL, + "world_builder_section/padding_1": T.PANEL, + "world_builder_section/paragraph_2": T.PANEL, + "world_builder_section/padding_2": T.PANEL, + "world_builder_section/paragraph_3": T.PANEL, + "world_builder_section/padding_3": T.PANEL, + "world_builder_section/paragraph_4": T.PANEL, + "world_builder_section/padding_4": T.PANEL, + "world_builder_section/paragraph_5": T.PANEL, + "world_builder_section/padding_5": T.PANEL, + "world_builder_section/paragraph_6": T.PANEL, + "world_builder_section/paragraph_7": T.PANEL, + "world_builder_section/padding_7": T.PANEL, + "world_builder_section/paragraph_8": T.PANEL, + "world_builder_section/padding_8": T.PANEL, + "world_builder_section/paragraph_9": T.PANEL, + "permission_blocks_button": T.PANEL, + "permission_blocks_section": T.STACK_PANEL, + "permission_blocks_section/paragraph_1": T.PANEL, + "permission_blocks_section/padding_1": T.PANEL, + "permission_blocks_section/header_1": T.PANEL, + "permission_blocks_section/paragraph_2": T.PANEL, + "permission_blocks_section/padding_3": T.PANEL, + "permission_blocks_section/paragraph_3": T.PANEL, + "permission_blocks_section/padding_4": T.PANEL, + "permission_blocks_section/paragraph_4": T.PANEL, + "permission_blocks_section/padding_5": T.PANEL, + "permission_blocks_section/paragraph_5": T.PANEL, + "permission_blocks_section/padding_7": T.PANEL, + "permission_blocks_section/header_2": T.PANEL, + "permission_blocks_section/paragraph_6": T.PANEL, + "chalkboard_button": T.PANEL, + "chalkboard_section": T.STACK_PANEL, + "chalkboard_section/paragraph_1_keyboard": T.PANEL, + "chalkboard_section/paragraph_1_gamepad": T.PANEL, + "chalkboard_section/paragraph_1_touch": T.PANEL, + "chemistry_button": T.PANEL, + "chemistry_section": T.STACK_PANEL, + "chemistry_section/paragraph_1": T.PANEL, + "chemistry_section/padding_1": T.PANEL, + "chemistry_section/paragraph_2": T.PANEL, + "npc_button": T.PANEL, + "npc_section": T.STACK_PANEL, + "npc_section/paragraph_1": T.PANEL, + "npc_section/padding_1": T.PANEL, + "npc_section/paragraph_2": T.PANEL, + "npc_section/padding_2": T.PANEL, + "npc_section/paragraph_3": T.PANEL, + "camera_button": T.PANEL, + "camera_section": T.STACK_PANEL, + "camera_section/paragraph_1": T.PANEL, + "camera_section/padding_1": T.PANEL, + "camera_section/paragraph_2_keyboard": T.PANEL, + "camera_section/paragraph_2_gamepad": T.PANEL, + "camera_section/paragraph_2_touch": T.PANEL, + "camera_section/padding_2": T.PANEL, + "camera_section/paragraph_3_keyboard": T.PANEL, + "camera_section/paragraph_3_gamepad": T.PANEL, + "camera_section/paragraph_3_touch": T.PANEL, + "camera_section/padding_3": T.PANEL, + "camera_section/paragraph_4": T.PANEL, + "portfolio_button": T.PANEL, + "portfolio_section": T.STACK_PANEL, + "portfolio_section/paragraph_1_keyboard": T.PANEL, + "portfolio_section/paragraph_1_gamepad": T.PANEL, + "portfolio_section/paragraph_1_touch": T.PANEL, + "classroom_mode_button": T.PANEL, + "classroom_mode_section": T.STACK_PANEL, + "classroom_mode_section/paragraph_1": T.PANEL, + "classroom_mode_section/padding_1": T.PANEL, + "classroom_mode_section/paragraph_2": T.PANEL, + "code_builder_button": T.PANEL, + "code_builder_section": T.STACK_PANEL, + "code_builder_section/paragraph_1": T.PANEL, + "code_builder_section/padding_1": T.PANEL, + "code_builder_section/paragraph_2_keyboard": T.PANEL, + "code_builder_section/paragraph_2_gamepad": T.PANEL, + "code_builder_section/paragraph_2_touch": T.PANEL, + "playing_together_button": T.PANEL, + "playing_together_section": T.STACK_PANEL, + "playing_together_section/paragraph_1": T.PANEL, + "playing_together_section/padding_1": T.PANEL, + "playing_together_section/header_1": T.PANEL, + "playing_together_section/paragraph_2": T.PANEL, + "playing_together_section/padding_2": T.PANEL, + "playing_together_section/header_2": T.PANEL, + "playing_together_section/paragraph_3": T.PANEL, + "playing_together_section/padding_3": T.PANEL, + "playing_together_section/paragraph_4": T.PANEL, + "playing_together_section/padding_4": T.PANEL, + "playing_together_section/paragraph_5": T.PANEL, + "playing_together_section/padding_5": T.PANEL, + "playing_together_section/header_3": T.PANEL, + "playing_together_section/paragraph_6": T.PANEL, + "playing_together_section/padding_6": T.PANEL, + "playing_together_section/paragraph_7": T.PANEL, + "playing_together_section/padding_7": T.PANEL, + "playing_together_section/paragraph_8": T.PANEL, + "playing_together_section/realms_button": T.BUTTON, + "playing_together_section/sign_in_button": T.BUTTON, + "playing_together_section/padding_8": T.PANEL, + "playing_together_section/header_4": T.PANEL, + "playing_together_section/paragraph_9": T.PANEL, + "playing_together_section/padding_9": T.PANEL, + "playing_together_section/paragraph_10": T.PANEL, + "try_realms_action_button": T.BUTTON, + "encyclopedia_button": T.PANEL, + "encyclopedia_section": T.STACK_PANEL, + "encyclopedia_section/paragraph_1": T.PANEL, } export type HudType = { - hud_player_renderer: T.PANEL - "hud_player_renderer/hud_player": T.CUSTOM - hotbar_renderer: T.CUSTOM - "hotbar_renderer/hotbar_slot_image": T.IMAGE - cooldown_renderer: T.CUSTOM - heart_renderer: T.CUSTOM - horse_heart_renderer: T.CUSTOM - armor_renderer: T.CUSTOM - exp_progress_bar_and_hotbar: T.PANEL - "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar": T.PANEL - "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar": T.IMAGE - "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar": T.IMAGE - "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub": T.IMAGE - "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub/horse_jump_rend": T.CUSTOM - "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub/horse_jump_rend/dash_rend": T.CUSTOM - "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub/horse_jump_rend/dash_rend/hotbar": T.PANEL - "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/progress_text_label": T.LABEL - "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar": T.PANEL - "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend": T.CUSTOM - "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend/dash_rend": T.CUSTOM - "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend/dash_rend/hotbar": T.PANEL - "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar": T.PANEL - "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner": T.PANEL - "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner/hotbar": T.PANEL - "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner/size_without_hotbar": T.PANEL - "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/horse_jump_rend": T.CUSTOM - "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/dash_rend": T.CUSTOM - "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/locator_bar": T.CUSTOM - "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/progress_text_label": T.LABEL - "exp_progress_bar_and_hotbar/item_text_factory": T.FACTORY - exp_progress_bar_and_hotbar_pocket: T.PANEL - "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar": T.PANEL - "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar": T.IMAGE - "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar": T.IMAGE - "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub": T.IMAGE - "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/progress_text_label": T.LABEL - "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar": T.PANEL - "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar/locator_bar": T.CUSTOM - "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar/progress_text_label": T.LABEL - "exp_progress_bar_and_hotbar_pocket/hotbar_panel": T.STACK_PANEL - "exp_progress_bar_and_hotbar_pocket/item_text": T.PANEL - "exp_progress_bar_and_hotbar_pocket/item_text/item_text_factory": T.FACTORY - "exp_progress_bar_and_hotbar_pocket/horse_jump_rend": T.CUSTOM - "exp_progress_bar_and_hotbar_pocket/dash_rend": T.CUSTOM - full_progress_bar: T.IMAGE - empty_progress_bar: T.IMAGE - progress_bar_nub: T.IMAGE - progress_text_label: T.LABEL - horse_jump_renderer: T.CUSTOM - dash_renderer: T.CUSTOM - locator_bar: T.CUSTOM - hunger_renderer: T.CUSTOM - bubbles_renderer: T.CUSTOM - mob_effects_renderer: T.CUSTOM - vignette_renderer: T.CUSTOM - editor_gizmo_renderer: T.CUSTOM - cursor_renderer: T.CUSTOM - progress_indicator_renderer: T.CUSTOM - camera_renderer: T.CUSTOM - editor_volume_highlight_renderer: T.CUSTOM - editor_compass_renderer: T.CUSTOM - hotbar_hud_item_icon: T.CUSTOM - elipses_image: T.IMAGE - bound_button_label: T.UNKNOWN - default_borderless_button_layout: T.IMAGE - hover_borderless_button_layout: T.IMAGE - pressed_borderless_button_layout: T.IMAGE - borderless_button: T.BUTTON - "borderless_button/default": T.IMAGE - "borderless_button/hover": T.IMAGE - "borderless_button/pressed": T.IMAGE - "borderless_button/elipses": T.IMAGE - hotbar_elipses_button: T.BUTTON - start_cap_image: T.IMAGE - end_cap_image: T.IMAGE - hotbar_start_cap: T.PANEL - "hotbar_start_cap/start_cap_image": T.IMAGE - hotbar_end_cap: T.PANEL - "hotbar_end_cap/end_cap_image": T.IMAGE - heart_image: T.IMAGE - hotbar_slot_image: T.IMAGE - hotbar_slot_selected_image: T.IMAGE - gui_hotbar_slot_button_prototype: T.BUTTON - player_position: T.IMAGE - "player_position/player_position_text": T.LABEL - number_of_days_played: T.IMAGE - "number_of_days_played/number_of_days_played_text": T.LABEL - chat_label: T.LABEL - chat_grid_item: T.PANEL - "chat_grid_item/chat_background": T.IMAGE - "chat_grid_item/chat_background/chat_text": T.LABEL - chat_panel: T.PANEL - "chat_panel/stack_panel": T.STACK_PANEL - item_durability: T.CUSTOM - item_storage: T.CUSTOM - container_item_lock_overlay: T.PANEL - item_lock_cell_image: T.IMAGE - gui_hotbar_grid_item: T.PANEL - "gui_hotbar_grid_item/hotbar_slot_selected_image": T.IMAGE - "gui_hotbar_grid_item/hotbar_renderer": T.CUSTOM - "gui_hotbar_grid_item/hotbar_parent": T.PANEL - "gui_hotbar_grid_item/hotbar_parent/item_icon": T.CUSTOM - "gui_hotbar_grid_item/hotbar_parent/item_count": T.LABEL - "gui_hotbar_grid_item/hotbar_parent/hotbar_hint": T.PANEL - "gui_hotbar_grid_item/hotbar_parent/item_dura": T.CUSTOM - "gui_hotbar_grid_item/hotbar_parent/item_store": T.CUSTOM - "gui_hotbar_grid_item/hotbar_parent/container_item_lock_overlay": T.PANEL - "gui_hotbar_grid_item/cooldown_renderer": T.CUSTOM - "gui_hotbar_grid_item/hotbar_slot_button": T.BUTTON - gui_hotbar_grid_item_pocket: T.PANEL - "gui_hotbar_grid_item_pocket/hotbar_slot_selected_image": T.IMAGE - "gui_hotbar_grid_item_pocket/hotbar_renderer": T.CUSTOM - "gui_hotbar_grid_item_pocket/hotbar_parent": T.PANEL - "gui_hotbar_grid_item_pocket/hotbar_parent/item_icon": T.CUSTOM - "gui_hotbar_grid_item_pocket/hotbar_parent/item_count": T.LABEL - "gui_hotbar_grid_item_pocket/hotbar_parent/item_dura": T.CUSTOM - "gui_hotbar_grid_item_pocket/hotbar_parent/item_store": T.CUSTOM - "gui_hotbar_grid_item_pocket/hotbar_parent/container_item_lock_overlay": T.PANEL - "gui_hotbar_grid_item_pocket/cooldown_renderer": T.CUSTOM - "gui_hotbar_grid_item_pocket/hotbar_slot_button": T.BUTTON - centered_gui_elements: T.PANEL - "centered_gui_elements/hud_player_rend_desktop": T.PANEL - centered_gui_elements_at_bottom_middle: T.PANEL - "centered_gui_elements_at_bottom_middle/heart_rend": T.CUSTOM - "centered_gui_elements_at_bottom_middle/horse_heart_rend_0": T.CUSTOM - "centered_gui_elements_at_bottom_middle/horse_heart_rend_1": T.CUSTOM - "centered_gui_elements_at_bottom_middle/armor_rend": T.CUSTOM - "centered_gui_elements_at_bottom_middle/hunger_rend": T.CUSTOM - "centered_gui_elements_at_bottom_middle/bubbles_rend_0": T.CUSTOM - "centered_gui_elements_at_bottom_middle/bubbles_rend_1": T.CUSTOM - "centered_gui_elements_at_bottom_middle/exp_rend": T.PANEL - centered_gui_elements_at_bottom_middle_touch: T.PANEL - "centered_gui_elements_at_bottom_middle_touch/heart_rend": T.CUSTOM - "centered_gui_elements_at_bottom_middle_touch/horse_heart_rend_0": T.CUSTOM - "centered_gui_elements_at_bottom_middle_touch/horse_heart_rend_1": T.CUSTOM - "centered_gui_elements_at_bottom_middle_touch/armor_rend": T.CUSTOM - "centered_gui_elements_at_bottom_middle_touch/hunger_rend": T.CUSTOM - "centered_gui_elements_at_bottom_middle_touch/bubbles_rend_0": T.CUSTOM - "centered_gui_elements_at_bottom_middle_touch/bubbles_rend_1": T.CUSTOM - "centered_gui_elements_at_bottom_middle_touch/exp_rend": T.PANEL - not_centered_gui_elements: T.PANEL - "not_centered_gui_elements/heart_rend": T.CUSTOM - "not_centered_gui_elements/horse_heart_rend": T.CUSTOM - "not_centered_gui_elements/hunger_rend": T.CUSTOM - "not_centered_gui_elements/armor_rend": T.CUSTOM - "not_centered_gui_elements/hud_player_rend_pocket": T.PANEL - "not_centered_gui_elements/bubbles_rend_0": T.CUSTOM - "not_centered_gui_elements/bubbles_rend_1": T.CUSTOM - hotbar_chooser: T.PANEL - "hotbar_chooser/desktop_hotbar": T.STACK_PANEL - "hotbar_chooser/pocket_hotbar": T.STACK_PANEL - hotbar_elipses_panel_right_content: T.STACK_PANEL - "hotbar_elipses_panel_right_content/elipses_content": T.PANEL - hotbar_elipses_panel_right_art: T.PANEL - "hotbar_elipses_panel_right_art/slot": T.IMAGE - "hotbar_elipses_panel_right_art/button": T.BUTTON - hotbar_elipses_panel_left_content: T.STACK_PANEL - "hotbar_elipses_panel_left_content/button": T.PANEL - hotbar_elipses_panel_left_art: T.PANEL - "hotbar_elipses_panel_left_art/slot": T.IMAGE - "hotbar_elipses_panel_left_art/button": T.BUTTON - hotbar_panel: T.STACK_PANEL - "hotbar_panel/hotbar_start_cap": T.PANEL - "hotbar_panel/hotbar_elipses_panel_left": T.STACK_PANEL - "hotbar_panel/hotbar_grid": T.GRID - "hotbar_panel/hotbar_elipses_panel_right": T.STACK_PANEL - "hotbar_panel/hotbar_end_cap": T.PANEL - hotbar_panel_pocket: T.STACK_PANEL - "hotbar_panel_pocket/hotbar_start_cap_frame": T.PANEL - "hotbar_panel_pocket/hotbar_start_cap_frame/hotbar_start_cap": T.PANEL - "hotbar_panel_pocket/hotbar_elipses_panel_left": T.PANEL - "hotbar_panel_pocket/hotbar_elipses_panel_left/hotbar_elipses_panel_left": T.PANEL - "hotbar_panel_pocket/hotbar_grid": T.GRID - "hotbar_panel_pocket/hotbar_elipses_panel_right": T.PANEL - "hotbar_panel_pocket/hotbar_elipses_panel_right/hotbar_elipses_panel_right": T.PANEL - "hotbar_panel_pocket/hotbar_end_cap_frame": T.PANEL - "hotbar_panel_pocket/hotbar_end_cap_frame/hotbar_end_cap": T.PANEL - hotbar_grid: T.GRID - edu_hotbar_grid: T.GRID - item_name_text_root: T.PANEL - "item_name_text_root/item_text_aligner": T.STACK_PANEL - "item_name_text_root/item_text_aligner/item_text_control": T.PANEL - "item_name_text_root/item_text_aligner/item_text_control/item_text_background": T.IMAGE - "item_name_text_root/item_text_aligner/item_text_control/item_text_label": T.LABEL - "item_name_text_root/item_text_aligner/interact_padding": T.PANEL - "item_name_text_root/item_text_aligner/survival_buffer": T.PANEL - item_name_text: T.PANEL - jukebox_popup_text: T.PANEL - hud_tip_text: T.IMAGE - "hud_tip_text/item_text_label": T.LABEL - auto_save: T.IMAGE - hud_actionbar_text: T.IMAGE - "hud_actionbar_text/actionbar_message": T.LABEL - hud_title_text: T.STACK_PANEL - "hud_title_text/title_frame": T.PANEL - "hud_title_text/title_frame/title_background": T.IMAGE - "hud_title_text/title_frame/title": T.LABEL - "hud_title_text/subtitle_frame": T.PANEL - "hud_title_text/subtitle_frame/subtitle_background": T.IMAGE - "hud_title_text/subtitle_frame/subtitle": T.LABEL - boss_name_panel: T.PANEL - "boss_name_panel/boss_name": T.LABEL - tooltip_helper_icon_description: T.LABEL - "tooltip_helper_icon_description/label_background": T.IMAGE - tooltip_helper: T.STACK_PANEL - "tooltip_helper/icon": T.UNKNOWN - "tooltip_helper/padding": T.PANEL - "tooltip_helper/centerer": T.PANEL - "tooltip_helper/centerer/desc": T.LABEL - tooltip_helper_form_fitting: T.STACK_PANEL - "tooltip_helper_form_fitting/icon": T.UNKNOWN - "tooltip_helper_form_fitting/padding": T.PANEL - "tooltip_helper_form_fitting/centerer": T.PANEL - "tooltip_helper_form_fitting/centerer/desc": T.LABEL - keyboard_tooltip_helper: T.STACK_PANEL - keyboard_tooltip_helper_form_fitting: T.STACK_PANEL - mixed_tooltip_helper: T.PANEL - "mixed_tooltip_helper/gamepad_tooltip": T.STACK_PANEL - "mixed_tooltip_helper/keyboard_tooltip": T.STACK_PANEL - mixed_tooltip_helper_form_fitting: T.PANEL - "mixed_tooltip_helper_form_fitting/gamepad_tooltip": T.STACK_PANEL - "mixed_tooltip_helper_form_fitting/keyboard_tooltip": T.STACK_PANEL - base_icon_image: T.STACK_PANEL - "base_icon_image/icon": T.IMAGE - "base_icon_image/postfix_label_wrapper": T.PANEL - "base_icon_image/postfix_label_wrapper/label": T.LABEL - base_keyboard_icon: T.PANEL - "base_keyboard_icon/icon": T.PANEL - "base_keyboard_icon/icon/key_backing": T.IMAGE - "base_keyboard_icon/icon/key_backing/key_label": T.LABEL - "base_keyboard_icon/icon/mouse_buttons": T.LABEL - left_helpers_edu: T.STACK_PANEL - "left_helpers_edu/tip_window": T.IMAGE - "left_helpers_edu/tip_window/stack_panel": T.STACK_PANEL - "left_helpers_edu/tip_paddding": T.PANEL - "left_helpers_edu/controls_toggle_label": T.PANEL - "left_helpers_edu/controls_toggle_label/tip": T.PANEL - "left_helpers_edu/controls_inventory_label": T.PANEL - "left_helpers_edu/controls_inventory_label/tip": T.PANEL - "left_helpers_edu/controls_menu_label": T.PANEL - "left_helpers_edu/controls_menu_label/tip": T.PANEL - left_helpers: T.PANEL - "left_helpers/stack_panel": T.STACK_PANEL - emote_label_background: T.IMAGE - emote_tip: T.IMAGE - "emote_tip/emote_keyboard_centerer": T.PANEL - "emote_tip/emote_keyboard_centerer/emote_keyboard_helper": T.STACK_PANEL - "emote_tip/emote_gamepad_helper": T.UNKNOWN - emote_expediate_helpers: T.PANEL - "emote_expediate_helpers/stack_panel": T.STACK_PANEL - "emote_expediate_helpers/stack_panel/emote_tip_0": T.IMAGE - "emote_expediate_helpers/stack_panel/emote_tip_1": T.IMAGE - "emote_expediate_helpers/stack_panel/emote_tip_2": T.IMAGE - "emote_expediate_helpers/stack_panel/emote_tip_3": T.IMAGE - right_helpers: T.PANEL - "right_helpers/stack_panel": T.STACK_PANEL - boss_health_panel: T.PANEL - "boss_health_panel/boss_name": T.PANEL - "boss_health_panel/progress_bar_for_collections": T.PANEL - boss_health_grid: T.GRID - wysiwyg_reset_modal_ok: T.BUTTON - wysiwyg_reset_modal_cancel: T.BUTTON - wysiwyg_close_without_saving_modal_ok: T.BUTTON - wysiwyg_close_without_saving_modal_cancel: T.BUTTON - root_panel: T.PANEL - "root_panel/layout_customization_reset": T.IMAGE - "root_panel/layout_customization_reset/layout_customization_reset_modal": T.PANEL - "root_panel/layout_customization_close_without_saving": T.IMAGE - "root_panel/layout_customization_close_without_saving/layout_customization_close_without_saving_modal": T.PANEL - "root_panel/layout_customization_main_panel": T.PANEL - "root_panel/layout_customization_sub_panel": T.PANEL - "root_panel/layout_customization_hint_drag_frame": T.IMAGE - "root_panel/layout_customization_hint_drag_frame/layout_customization_hint_drag": T.LABEL - "root_panel/layout_customization_hint_deselect_frame": T.IMAGE - "root_panel/layout_customization_hint_deselect_frame/layout_customization_hint_deselect": T.LABEL - "root_panel/layout_customization_hint_saved": T.IMAGE - "root_panel/layout_customization_hint_saved/layout_customization_hint_saved": T.LABEL - "root_panel/left_helpers": T.UNKNOWN - "root_panel/right_helpers": T.PANEL - "root_panel/emote_expediate_helpers": T.PANEL - "root_panel/centered_gui_elements": T.PANEL - "root_panel/centered_gui_elements_at_bottom_middle": T.PANEL - "root_panel/centered_gui_elements_at_bottom_middle_touch": T.PANEL - "root_panel/not_centered_gui_elements": T.PANEL - "root_panel/gamertag_label_for_splitscreen": T.LABEL - "root_panel/exp_rend": T.PANEL - "root_panel/exp_rend_resizable": T.PANEL - "root_panel/hud_tip_text_factory": T.FACTORY - "root_panel/hud_actionbar_text_area": T.PANEL - "root_panel/hud_title_text_area": T.PANEL - "root_panel/mob_effects_renderer": T.CUSTOM - "root_panel/vignette_rend": T.CUSTOM - "root_panel/curor_rend": T.CUSTOM - "root_panel/game_tip": T.PANEL - "root_panel/sidebar": T.PANEL - "root_panel/progress_rend": T.CUSTOM - "root_panel/chat_stack": T.STACK_PANEL - "root_panel/chat_stack/paper_doll_padding": T.PANEL - "root_panel/chat_stack/non_centered_gui_padding": T.PANEL - "root_panel/chat_stack/player_position": T.IMAGE - "root_panel/chat_stack/number_of_days_played": T.IMAGE - "root_panel/chat_stack/game_tip": T.PANEL - "root_panel/chat_stack/chat_panel": T.PANEL - "root_panel/boss_health_panel": T.STACK_PANEL - "root_panel/boss_health_panel/boss_hud_padding": T.PANEL - "root_panel/boss_health_panel/boss_hud_touch_padding": T.PANEL - "root_panel/boss_health_panel/boss_hud_panel": T.PANEL - "root_panel/boss_health_panel/boss_hud_panel/boss_health_grid": T.GRID - "root_panel/save_icon": T.IMAGE - hud_screen: T.SCREEN - hud_content: T.PANEL - "hud_content/root_panel": T.PANEL - "hud_content/editor_gizmo_renderer": T.CUSTOM - "hud_content/editor_compass_renderer": T.CUSTOM - "hud_content/editor_volume_highlight_renderer": T.CUSTOM - "hud_content/camera_renderer": T.CUSTOM - layout_customization_main_panel_button: T.PANEL - "layout_customization_main_panel_button/button": T.BUTTON - layout_customization_main_panel: T.PANEL - "layout_customization_main_panel/main_panel_frame": T.IMAGE - "layout_customization_main_panel/main_panel_frame/main_panel_content": T.STACK_PANEL - "layout_customization_main_panel/main_panel_frame/main_panel_content/reset_button": T.PANEL - "layout_customization_main_panel/main_panel_frame/main_panel_content/exit_button": T.PANEL - "layout_customization_main_panel/main_panel_frame/main_panel_content/opacity_button": T.PANEL - "layout_customization_main_panel/main_panel_frame/main_panel_content/size_button": T.PANEL - layout_customization_option_slider: T.STACK_PANEL - "layout_customization_option_slider/slider": T.PANEL - "layout_customization_option_slider/reset": T.PANEL - "layout_customization_option_slider/reset/reset_button": T.BUTTON - "layout_customization_option_slider/reset/reset_button/default": T.IMAGE - "layout_customization_option_slider/reset/reset_button/hover": T.IMAGE - "layout_customization_option_slider/reset/reset_button/pressed": T.IMAGE - layout_customization_option_content: T.PANEL - "layout_customization_option_content/scale_option": T.STACK_PANEL - "layout_customization_option_content/opacity_option": T.STACK_PANEL - "layout_customization_option_content/apply_to_all_toggle": T.STACK_PANEL - "layout_customization_option_content/apply_to_all_toggle/checkbox_frame": T.PANEL - "layout_customization_option_content/apply_to_all_toggle/checkbox_frame/checkbox_unchecked": T.IMAGE - "layout_customization_option_content/apply_to_all_toggle/checkbox_frame/checkbox_checked": T.IMAGE - "layout_customization_option_content/apply_to_all_toggle/caption_frame": T.PANEL - "layout_customization_option_content/apply_to_all_toggle/caption_frame/caption": T.LABEL - layout_customization_option: T.PANEL - "layout_customization_option/content": T.PANEL - layout_customization_sub_panel: T.PANEL - "layout_customization_sub_panel/background": T.IMAGE - "layout_customization_sub_panel/background/sub_panel_content": T.GRID + "hud_player_renderer": T.PANEL, + "hud_player_renderer/hud_player": T.CUSTOM, + "hotbar_renderer": T.CUSTOM, + "hotbar_renderer/hotbar_slot_image": T.IMAGE, + "cooldown_renderer": T.CUSTOM, + "heart_renderer": T.CUSTOM, + "horse_heart_renderer": T.CUSTOM, + "armor_renderer": T.CUSTOM, + "exp_progress_bar_and_hotbar": T.PANEL, + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar": T.PANEL, + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar": T.IMAGE, + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar": T.IMAGE, + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub": T.IMAGE, + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub/horse_jump_rend": T.CUSTOM, + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub/horse_jump_rend/dash_rend": T.CUSTOM, + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub/horse_jump_rend/dash_rend/hotbar": T.PANEL, + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/progress_text_label": T.LABEL, + "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar": T.PANEL, + "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend": T.CUSTOM, + "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend/dash_rend": T.CUSTOM, + "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend/dash_rend/hotbar": T.PANEL, + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar": T.PANEL, + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner": T.PANEL, + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner/hotbar": T.PANEL, + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner/size_without_hotbar": T.PANEL, + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/horse_jump_rend": T.CUSTOM, + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/dash_rend": T.CUSTOM, + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/locator_bar": T.CUSTOM, + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/progress_text_label": T.LABEL, + "exp_progress_bar_and_hotbar/item_text_factory": T.FACTORY, + "exp_progress_bar_and_hotbar_pocket": T.PANEL, + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar": T.PANEL, + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar": T.IMAGE, + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar": T.IMAGE, + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub": T.IMAGE, + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/progress_text_label": T.LABEL, + "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar": T.PANEL, + "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar/locator_bar": T.CUSTOM, + "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar/progress_text_label": T.LABEL, + "exp_progress_bar_and_hotbar_pocket/hotbar_panel": T.STACK_PANEL, + "exp_progress_bar_and_hotbar_pocket/item_text": T.PANEL, + "exp_progress_bar_and_hotbar_pocket/item_text/item_text_factory": T.FACTORY, + "exp_progress_bar_and_hotbar_pocket/horse_jump_rend": T.CUSTOM, + "exp_progress_bar_and_hotbar_pocket/dash_rend": T.CUSTOM, + "full_progress_bar": T.IMAGE, + "empty_progress_bar": T.IMAGE, + "progress_bar_nub": T.IMAGE, + "progress_text_label": T.LABEL, + "horse_jump_renderer": T.CUSTOM, + "dash_renderer": T.CUSTOM, + "locator_bar": T.CUSTOM, + "hunger_renderer": T.CUSTOM, + "bubbles_renderer": T.CUSTOM, + "mob_effects_renderer": T.CUSTOM, + "vignette_renderer": T.CUSTOM, + "editor_gizmo_renderer": T.CUSTOM, + "cursor_renderer": T.CUSTOM, + "progress_indicator_renderer": T.CUSTOM, + "camera_renderer": T.CUSTOM, + "editor_volume_highlight_renderer": T.CUSTOM, + "editor_compass_renderer": T.CUSTOM, + "hotbar_hud_item_icon": T.CUSTOM, + "elipses_image": T.IMAGE, + "bound_button_label": T.UNKNOWN, + "default_borderless_button_layout": T.IMAGE, + "hover_borderless_button_layout": T.IMAGE, + "pressed_borderless_button_layout": T.IMAGE, + "borderless_button": T.BUTTON, + "borderless_button/default": T.IMAGE, + "borderless_button/hover": T.IMAGE, + "borderless_button/pressed": T.IMAGE, + "borderless_button/elipses": T.IMAGE, + "hotbar_elipses_button": T.BUTTON, + "start_cap_image": T.IMAGE, + "end_cap_image": T.IMAGE, + "hotbar_start_cap": T.PANEL, + "hotbar_start_cap/start_cap_image": T.IMAGE, + "hotbar_end_cap": T.PANEL, + "hotbar_end_cap/end_cap_image": T.IMAGE, + "heart_image": T.IMAGE, + "hotbar_slot_image": T.IMAGE, + "hotbar_slot_selected_image": T.IMAGE, + "gui_hotbar_slot_button_prototype": T.BUTTON, + "player_position": T.IMAGE, + "player_position/player_position_text": T.LABEL, + "number_of_days_played": T.IMAGE, + "number_of_days_played/number_of_days_played_text": T.LABEL, + "chat_label": T.LABEL, + "chat_grid_item": T.PANEL, + "chat_grid_item/chat_background": T.IMAGE, + "chat_grid_item/chat_background/chat_text": T.LABEL, + "chat_panel": T.PANEL, + "chat_panel/stack_panel": T.STACK_PANEL, + "item_durability": T.CUSTOM, + "item_storage": T.CUSTOM, + "container_item_lock_overlay": T.PANEL, + "item_lock_cell_image": T.IMAGE, + "gui_hotbar_grid_item": T.PANEL, + "gui_hotbar_grid_item/hotbar_slot_selected_image": T.IMAGE, + "gui_hotbar_grid_item/hotbar_renderer": T.CUSTOM, + "gui_hotbar_grid_item/hotbar_parent": T.PANEL, + "gui_hotbar_grid_item/hotbar_parent/item_icon": T.CUSTOM, + "gui_hotbar_grid_item/hotbar_parent/item_count": T.LABEL, + "gui_hotbar_grid_item/hotbar_parent/hotbar_hint": T.PANEL, + "gui_hotbar_grid_item/hotbar_parent/item_dura": T.CUSTOM, + "gui_hotbar_grid_item/hotbar_parent/item_store": T.CUSTOM, + "gui_hotbar_grid_item/hotbar_parent/container_item_lock_overlay": T.PANEL, + "gui_hotbar_grid_item/cooldown_renderer": T.CUSTOM, + "gui_hotbar_grid_item/hotbar_slot_button": T.BUTTON, + "gui_hotbar_grid_item_pocket": T.PANEL, + "gui_hotbar_grid_item_pocket/hotbar_slot_selected_image": T.IMAGE, + "gui_hotbar_grid_item_pocket/hotbar_renderer": T.CUSTOM, + "gui_hotbar_grid_item_pocket/hotbar_parent": T.PANEL, + "gui_hotbar_grid_item_pocket/hotbar_parent/item_icon": T.CUSTOM, + "gui_hotbar_grid_item_pocket/hotbar_parent/item_count": T.LABEL, + "gui_hotbar_grid_item_pocket/hotbar_parent/item_dura": T.CUSTOM, + "gui_hotbar_grid_item_pocket/hotbar_parent/item_store": T.CUSTOM, + "gui_hotbar_grid_item_pocket/hotbar_parent/container_item_lock_overlay": T.PANEL, + "gui_hotbar_grid_item_pocket/cooldown_renderer": T.CUSTOM, + "gui_hotbar_grid_item_pocket/hotbar_slot_button": T.BUTTON, + "centered_gui_elements": T.PANEL, + "centered_gui_elements/hud_player_rend_desktop": T.PANEL, + "centered_gui_elements_at_bottom_middle": T.PANEL, + "centered_gui_elements_at_bottom_middle/heart_rend": T.CUSTOM, + "centered_gui_elements_at_bottom_middle/horse_heart_rend_0": T.CUSTOM, + "centered_gui_elements_at_bottom_middle/horse_heart_rend_1": T.CUSTOM, + "centered_gui_elements_at_bottom_middle/armor_rend": T.CUSTOM, + "centered_gui_elements_at_bottom_middle/hunger_rend": T.CUSTOM, + "centered_gui_elements_at_bottom_middle/bubbles_rend_0": T.CUSTOM, + "centered_gui_elements_at_bottom_middle/bubbles_rend_1": T.CUSTOM, + "centered_gui_elements_at_bottom_middle/exp_rend": T.PANEL, + "centered_gui_elements_at_bottom_middle_touch": T.PANEL, + "centered_gui_elements_at_bottom_middle_touch/heart_rend": T.CUSTOM, + "centered_gui_elements_at_bottom_middle_touch/horse_heart_rend_0": T.CUSTOM, + "centered_gui_elements_at_bottom_middle_touch/horse_heart_rend_1": T.CUSTOM, + "centered_gui_elements_at_bottom_middle_touch/armor_rend": T.CUSTOM, + "centered_gui_elements_at_bottom_middle_touch/hunger_rend": T.CUSTOM, + "centered_gui_elements_at_bottom_middle_touch/bubbles_rend_0": T.CUSTOM, + "centered_gui_elements_at_bottom_middle_touch/bubbles_rend_1": T.CUSTOM, + "centered_gui_elements_at_bottom_middle_touch/exp_rend": T.PANEL, + "not_centered_gui_elements": T.PANEL, + "not_centered_gui_elements/heart_rend": T.CUSTOM, + "not_centered_gui_elements/horse_heart_rend": T.CUSTOM, + "not_centered_gui_elements/hunger_rend": T.CUSTOM, + "not_centered_gui_elements/armor_rend": T.CUSTOM, + "not_centered_gui_elements/hud_player_rend_pocket": T.PANEL, + "not_centered_gui_elements/bubbles_rend_0": T.CUSTOM, + "not_centered_gui_elements/bubbles_rend_1": T.CUSTOM, + "hotbar_chooser": T.PANEL, + "hotbar_chooser/desktop_hotbar": T.STACK_PANEL, + "hotbar_chooser/pocket_hotbar": T.STACK_PANEL, + "hotbar_elipses_panel_right_content": T.STACK_PANEL, + "hotbar_elipses_panel_right_content/elipses_content": T.PANEL, + "hotbar_elipses_panel_right_art": T.PANEL, + "hotbar_elipses_panel_right_art/slot": T.IMAGE, + "hotbar_elipses_panel_right_art/button": T.BUTTON, + "hotbar_elipses_panel_left_content": T.STACK_PANEL, + "hotbar_elipses_panel_left_content/button": T.PANEL, + "hotbar_elipses_panel_left_art": T.PANEL, + "hotbar_elipses_panel_left_art/slot": T.IMAGE, + "hotbar_elipses_panel_left_art/button": T.BUTTON, + "hotbar_panel": T.STACK_PANEL, + "hotbar_panel/hotbar_start_cap": T.PANEL, + "hotbar_panel/hotbar_elipses_panel_left": T.STACK_PANEL, + "hotbar_panel/hotbar_grid": T.GRID, + "hotbar_panel/hotbar_elipses_panel_right": T.STACK_PANEL, + "hotbar_panel/hotbar_end_cap": T.PANEL, + "hotbar_panel_pocket": T.STACK_PANEL, + "hotbar_panel_pocket/hotbar_start_cap_frame": T.PANEL, + "hotbar_panel_pocket/hotbar_start_cap_frame/hotbar_start_cap": T.PANEL, + "hotbar_panel_pocket/hotbar_elipses_panel_left": T.PANEL, + "hotbar_panel_pocket/hotbar_elipses_panel_left/hotbar_elipses_panel_left": T.PANEL, + "hotbar_panel_pocket/hotbar_grid": T.GRID, + "hotbar_panel_pocket/hotbar_elipses_panel_right": T.PANEL, + "hotbar_panel_pocket/hotbar_elipses_panel_right/hotbar_elipses_panel_right": T.PANEL, + "hotbar_panel_pocket/hotbar_end_cap_frame": T.PANEL, + "hotbar_panel_pocket/hotbar_end_cap_frame/hotbar_end_cap": T.PANEL, + "hotbar_grid": T.GRID, + "edu_hotbar_grid": T.GRID, + "item_name_text_root": T.PANEL, + "item_name_text_root/item_text_aligner": T.STACK_PANEL, + "item_name_text_root/item_text_aligner/item_text_control": T.PANEL, + "item_name_text_root/item_text_aligner/item_text_control/item_text_background": T.IMAGE, + "item_name_text_root/item_text_aligner/item_text_control/item_text_label": T.LABEL, + "item_name_text_root/item_text_aligner/interact_padding": T.PANEL, + "item_name_text_root/item_text_aligner/survival_buffer": T.PANEL, + "item_name_text": T.PANEL, + "jukebox_popup_text": T.PANEL, + "hud_tip_text": T.IMAGE, + "hud_tip_text/item_text_label": T.LABEL, + "auto_save": T.IMAGE, + "hud_actionbar_text": T.IMAGE, + "hud_actionbar_text/actionbar_message": T.LABEL, + "hud_title_text": T.STACK_PANEL, + "hud_title_text/title_frame": T.PANEL, + "hud_title_text/title_frame/title_background": T.IMAGE, + "hud_title_text/title_frame/title": T.LABEL, + "hud_title_text/subtitle_frame": T.PANEL, + "hud_title_text/subtitle_frame/subtitle_background": T.IMAGE, + "hud_title_text/subtitle_frame/subtitle": T.LABEL, + "boss_name_panel": T.PANEL, + "boss_name_panel/boss_name": T.LABEL, + "tooltip_helper_icon_description": T.LABEL, + "tooltip_helper_icon_description/label_background": T.IMAGE, + "tooltip_helper": T.STACK_PANEL, + "tooltip_helper/icon": T.UNKNOWN, + "tooltip_helper/padding": T.PANEL, + "tooltip_helper/centerer": T.PANEL, + "tooltip_helper/centerer/desc": T.LABEL, + "tooltip_helper_form_fitting": T.STACK_PANEL, + "tooltip_helper_form_fitting/icon": T.UNKNOWN, + "tooltip_helper_form_fitting/padding": T.PANEL, + "tooltip_helper_form_fitting/centerer": T.PANEL, + "tooltip_helper_form_fitting/centerer/desc": T.LABEL, + "keyboard_tooltip_helper": T.STACK_PANEL, + "keyboard_tooltip_helper_form_fitting": T.STACK_PANEL, + "mixed_tooltip_helper": T.PANEL, + "mixed_tooltip_helper/gamepad_tooltip": T.STACK_PANEL, + "mixed_tooltip_helper/keyboard_tooltip": T.STACK_PANEL, + "mixed_tooltip_helper_form_fitting": T.PANEL, + "mixed_tooltip_helper_form_fitting/gamepad_tooltip": T.STACK_PANEL, + "mixed_tooltip_helper_form_fitting/keyboard_tooltip": T.STACK_PANEL, + "base_icon_image": T.STACK_PANEL, + "base_icon_image/icon": T.IMAGE, + "base_icon_image/postfix_label_wrapper": T.PANEL, + "base_icon_image/postfix_label_wrapper/label": T.LABEL, + "base_keyboard_icon": T.PANEL, + "base_keyboard_icon/icon": T.PANEL, + "base_keyboard_icon/icon/key_backing": T.IMAGE, + "base_keyboard_icon/icon/key_backing/key_label": T.LABEL, + "base_keyboard_icon/icon/mouse_buttons": T.LABEL, + "left_helpers_edu": T.STACK_PANEL, + "left_helpers_edu/tip_window": T.IMAGE, + "left_helpers_edu/tip_window/stack_panel": T.STACK_PANEL, + "left_helpers_edu/tip_paddding": T.PANEL, + "left_helpers_edu/controls_toggle_label": T.PANEL, + "left_helpers_edu/controls_toggle_label/tip": T.PANEL, + "left_helpers_edu/controls_inventory_label": T.PANEL, + "left_helpers_edu/controls_inventory_label/tip": T.PANEL, + "left_helpers_edu/controls_menu_label": T.PANEL, + "left_helpers_edu/controls_menu_label/tip": T.PANEL, + "left_helpers": T.PANEL, + "left_helpers/stack_panel": T.STACK_PANEL, + "emote_label_background": T.IMAGE, + "emote_tip": T.IMAGE, + "emote_tip/emote_keyboard_centerer": T.PANEL, + "emote_tip/emote_keyboard_centerer/emote_keyboard_helper": T.STACK_PANEL, + "emote_tip/emote_gamepad_helper": T.UNKNOWN, + "emote_expediate_helpers": T.PANEL, + "emote_expediate_helpers/stack_panel": T.STACK_PANEL, + "emote_expediate_helpers/stack_panel/emote_tip_0": T.IMAGE, + "emote_expediate_helpers/stack_panel/emote_tip_1": T.IMAGE, + "emote_expediate_helpers/stack_panel/emote_tip_2": T.IMAGE, + "emote_expediate_helpers/stack_panel/emote_tip_3": T.IMAGE, + "right_helpers": T.PANEL, + "right_helpers/stack_panel": T.STACK_PANEL, + "boss_health_panel": T.PANEL, + "boss_health_panel/boss_name": T.PANEL, + "boss_health_panel/progress_bar_for_collections": T.PANEL, + "boss_health_grid": T.GRID, + "wysiwyg_reset_modal_ok": T.BUTTON, + "wysiwyg_reset_modal_cancel": T.BUTTON, + "wysiwyg_close_without_saving_modal_ok": T.BUTTON, + "wysiwyg_close_without_saving_modal_cancel": T.BUTTON, + "root_panel": T.PANEL, + "root_panel/layout_customization_reset": T.IMAGE, + "root_panel/layout_customization_reset/layout_customization_reset_modal": T.PANEL, + "root_panel/layout_customization_close_without_saving": T.IMAGE, + "root_panel/layout_customization_close_without_saving/layout_customization_close_without_saving_modal": T.PANEL, + "root_panel/layout_customization_main_panel": T.PANEL, + "root_panel/layout_customization_sub_panel": T.PANEL, + "root_panel/layout_customization_hint_drag_frame": T.IMAGE, + "root_panel/layout_customization_hint_drag_frame/layout_customization_hint_drag": T.LABEL, + "root_panel/layout_customization_hint_deselect_frame": T.IMAGE, + "root_panel/layout_customization_hint_deselect_frame/layout_customization_hint_deselect": T.LABEL, + "root_panel/layout_customization_hint_saved": T.IMAGE, + "root_panel/layout_customization_hint_saved/layout_customization_hint_saved": T.LABEL, + "root_panel/left_helpers": T.UNKNOWN, + "root_panel/right_helpers": T.PANEL, + "root_panel/emote_expediate_helpers": T.PANEL, + "root_panel/centered_gui_elements": T.PANEL, + "root_panel/centered_gui_elements_at_bottom_middle": T.PANEL, + "root_panel/centered_gui_elements_at_bottom_middle_touch": T.PANEL, + "root_panel/not_centered_gui_elements": T.PANEL, + "root_panel/gamertag_label_for_splitscreen": T.LABEL, + "root_panel/exp_rend": T.PANEL, + "root_panel/exp_rend_resizable": T.PANEL, + "root_panel/hud_tip_text_factory": T.FACTORY, + "root_panel/hud_actionbar_text_area": T.PANEL, + "root_panel/hud_title_text_area": T.PANEL, + "root_panel/mob_effects_renderer": T.CUSTOM, + "root_panel/vignette_rend": T.CUSTOM, + "root_panel/curor_rend": T.CUSTOM, + "root_panel/game_tip": T.PANEL, + "root_panel/sidebar": T.PANEL, + "root_panel/progress_rend": T.CUSTOM, + "root_panel/chat_stack": T.STACK_PANEL, + "root_panel/chat_stack/paper_doll_padding": T.PANEL, + "root_panel/chat_stack/non_centered_gui_padding": T.PANEL, + "root_panel/chat_stack/player_position": T.IMAGE, + "root_panel/chat_stack/number_of_days_played": T.IMAGE, + "root_panel/chat_stack/game_tip": T.PANEL, + "root_panel/chat_stack/chat_panel": T.PANEL, + "root_panel/boss_health_panel": T.STACK_PANEL, + "root_panel/boss_health_panel/boss_hud_padding": T.PANEL, + "root_panel/boss_health_panel/boss_hud_touch_padding": T.PANEL, + "root_panel/boss_health_panel/boss_hud_panel": T.PANEL, + "root_panel/boss_health_panel/boss_hud_panel/boss_health_grid": T.GRID, + "root_panel/save_icon": T.IMAGE, + "hud_screen": T.SCREEN, + "hud_content": T.PANEL, + "hud_content/root_panel": T.PANEL, + "hud_content/editor_gizmo_renderer": T.CUSTOM, + "hud_content/editor_compass_renderer": T.CUSTOM, + "hud_content/editor_volume_highlight_renderer": T.CUSTOM, + "hud_content/camera_renderer": T.CUSTOM, + "layout_customization_main_panel_button": T.PANEL, + "layout_customization_main_panel_button/button": T.BUTTON, + "layout_customization_main_panel": T.PANEL, + "layout_customization_main_panel/main_panel_frame": T.IMAGE, + "layout_customization_main_panel/main_panel_frame/main_panel_content": T.STACK_PANEL, + "layout_customization_main_panel/main_panel_frame/main_panel_content/reset_button": T.PANEL, + "layout_customization_main_panel/main_panel_frame/main_panel_content/exit_button": T.PANEL, + "layout_customization_main_panel/main_panel_frame/main_panel_content/opacity_button": T.PANEL, + "layout_customization_main_panel/main_panel_frame/main_panel_content/size_button": T.PANEL, + "layout_customization_option_slider": T.STACK_PANEL, + "layout_customization_option_slider/slider": T.PANEL, + "layout_customization_option_slider/reset": T.PANEL, + "layout_customization_option_slider/reset/reset_button": T.BUTTON, + "layout_customization_option_slider/reset/reset_button/default": T.IMAGE, + "layout_customization_option_slider/reset/reset_button/hover": T.IMAGE, + "layout_customization_option_slider/reset/reset_button/pressed": T.IMAGE, + "layout_customization_option_content": T.PANEL, + "layout_customization_option_content/scale_option": T.STACK_PANEL, + "layout_customization_option_content/opacity_option": T.STACK_PANEL, + "layout_customization_option_content/apply_to_all_toggle": T.STACK_PANEL, + "layout_customization_option_content/apply_to_all_toggle/checkbox_frame": T.PANEL, + "layout_customization_option_content/apply_to_all_toggle/checkbox_frame/checkbox_unchecked": T.IMAGE, + "layout_customization_option_content/apply_to_all_toggle/checkbox_frame/checkbox_checked": T.IMAGE, + "layout_customization_option_content/apply_to_all_toggle/caption_frame": T.PANEL, + "layout_customization_option_content/apply_to_all_toggle/caption_frame/caption": T.LABEL, + "layout_customization_option": T.PANEL, + "layout_customization_option/content": T.PANEL, + "layout_customization_sub_panel": T.PANEL, + "layout_customization_sub_panel/background": T.IMAGE, + "layout_customization_sub_panel/background/sub_panel_content": T.GRID, } export type HostOptionsType = { - button_label: T.LABEL - host_image_panel: T.PANEL - "host_image_panel/host_image": T.LABEL - host_glyph_panel: T.IMAGE - scrollable_selector_area: T.PANEL - host_main_button: T.BUTTON - scrolling_panel: T.PANEL - "scrolling_panel/background": T.IMAGE - "scrolling_panel/scrollable_tab": T.PANEL - button_content: T.PANEL - "button_content/button_label": T.LABEL - "button_content/image": T.IMAGE - main_light_button: T.BUTTON - main_dark_button: T.BUTTON - host_grid: T.GRID - host_sub_command_grid_item: T.PANEL - "host_sub_command_grid_item/host_option_banner": T.BUTTON - return_from_sub_command_button: T.BUTTON - platform_icon_panel: T.PANEL - gamertag_wrapper: T.PANEL - player_pic_panel: T.PANEL - "player_pic_panel/player_gamer_pic": T.IMAGE - "player_pic_panel/player_local_icon": T.IMAGE - player_button_content: T.STACK_PANEL - "player_button_content/player_pic_panel": T.PANEL - "player_button_content/player_gamertag": T.PANEL - "player_button_content/platform_icon": T.PANEL - player_grid_item: T.PANEL - "player_grid_item/player_banner": T.BUTTON - host_friends_tab: T.PANEL - "host_friends_tab/players_grid": T.GRID - host_teleport_grid_item: T.PANEL - "host_teleport_grid_item/host_option_toggle": T.PANEL - "host_teleport_grid_item/host_option_button": T.BUTTON - host_teleport_buttons: T.STACK_PANEL - "host_teleport_buttons/return": T.BUTTON - "host_teleport_buttons/sub_tab": T.PANEL - "host_teleport_buttons/sub_tab/host_main_grid": T.GRID - host_teleport_player_list_buttons: T.STACK_PANEL - "host_teleport_player_list_buttons/toggle": T.PANEL - "host_teleport_player_list_buttons/toggle/host_time_panel": T.PANEL - host_teleport_player_buttons: T.STACK_PANEL - host_time_buttons: T.STACK_PANEL - "host_time_buttons/return": T.BUTTON - "host_time_buttons/sub_tab": T.PANEL - "host_time_buttons/sub_tab/scrolli_scrolli_ravioli": T.PANEL - host_weather_buttons: T.STACK_PANEL - "host_weather_buttons/return": T.BUTTON - "host_weather_buttons/sub_tab": T.PANEL - "host_weather_buttons/sub_tab/host_main_grid": T.GRID - host_menu_grid_item: T.PANEL - "host_menu_grid_item/host_option_banner": T.BUTTON - host_main_buttons: T.STACK_PANEL - "host_main_buttons/host_main_grid": T.GRID - host_panel: T.PANEL - "host_panel/host_main_panel": T.STACK_PANEL - "host_panel/host_teleport_panel": T.STACK_PANEL - "host_panel/host_teleport_player_panel": T.STACK_PANEL - "host_panel/host_time_panel": T.STACK_PANEL - "host_panel/host_weather_panel": T.STACK_PANEL + "button_label": T.LABEL, + "host_image_panel": T.PANEL, + "host_image_panel/host_image": T.LABEL, + "host_glyph_panel": T.IMAGE, + "scrollable_selector_area": T.PANEL, + "host_main_button": T.BUTTON, + "scrolling_panel": T.PANEL, + "scrolling_panel/background": T.IMAGE, + "scrolling_panel/scrollable_tab": T.PANEL, + "button_content": T.PANEL, + "button_content/button_label": T.LABEL, + "button_content/image": T.IMAGE, + "main_light_button": T.BUTTON, + "main_dark_button": T.BUTTON, + "host_grid": T.GRID, + "host_sub_command_grid_item": T.PANEL, + "host_sub_command_grid_item/host_option_banner": T.BUTTON, + "return_from_sub_command_button": T.BUTTON, + "platform_icon_panel": T.PANEL, + "gamertag_wrapper": T.PANEL, + "player_pic_panel": T.PANEL, + "player_pic_panel/player_gamer_pic": T.IMAGE, + "player_pic_panel/player_local_icon": T.IMAGE, + "player_button_content": T.STACK_PANEL, + "player_button_content/player_pic_panel": T.PANEL, + "player_button_content/player_gamertag": T.PANEL, + "player_button_content/platform_icon": T.PANEL, + "player_grid_item": T.PANEL, + "player_grid_item/player_banner": T.BUTTON, + "host_friends_tab": T.PANEL, + "host_friends_tab/players_grid": T.GRID, + "host_teleport_grid_item": T.PANEL, + "host_teleport_grid_item/host_option_toggle": T.PANEL, + "host_teleport_grid_item/host_option_button": T.BUTTON, + "host_teleport_buttons": T.STACK_PANEL, + "host_teleport_buttons/return": T.BUTTON, + "host_teleport_buttons/sub_tab": T.PANEL, + "host_teleport_buttons/sub_tab/host_main_grid": T.GRID, + "host_teleport_player_list_buttons": T.STACK_PANEL, + "host_teleport_player_list_buttons/toggle": T.PANEL, + "host_teleport_player_list_buttons/toggle/host_time_panel": T.PANEL, + "host_teleport_player_buttons": T.STACK_PANEL, + "host_time_buttons": T.STACK_PANEL, + "host_time_buttons/return": T.BUTTON, + "host_time_buttons/sub_tab": T.PANEL, + "host_time_buttons/sub_tab/scrolli_scrolli_ravioli": T.PANEL, + "host_weather_buttons": T.STACK_PANEL, + "host_weather_buttons/return": T.BUTTON, + "host_weather_buttons/sub_tab": T.PANEL, + "host_weather_buttons/sub_tab/host_main_grid": T.GRID, + "host_menu_grid_item": T.PANEL, + "host_menu_grid_item/host_option_banner": T.BUTTON, + "host_main_buttons": T.STACK_PANEL, + "host_main_buttons/host_main_grid": T.GRID, + "host_panel": T.PANEL, + "host_panel/host_main_panel": T.STACK_PANEL, + "host_panel/host_teleport_panel": T.STACK_PANEL, + "host_panel/host_teleport_player_panel": T.STACK_PANEL, + "host_panel/host_time_panel": T.STACK_PANEL, + "host_panel/host_weather_panel": T.STACK_PANEL, } export type BedType = { - in_bed_screen: T.SCREEN - in_bed_screen_content: T.PANEL - "in_bed_screen_content/wake_up_button_panel": T.STACK_PANEL - "in_bed_screen_content/wake_up_button_panel/wake_up_button": T.BUTTON - "in_bed_screen_content/wake_up_button_panel/spacer": T.PANEL - "in_bed_screen_content/wake_up_button_panel/chat_button": T.BUTTON - "in_bed_screen_content/wake_up_label_panel": T.LABEL - "in_bed_screen_content/select_button": T.PANEL - background: T.IMAGE + "in_bed_screen": T.SCREEN, + "in_bed_screen_content": T.PANEL, + "in_bed_screen_content/wake_up_button_panel": T.STACK_PANEL, + "in_bed_screen_content/wake_up_button_panel/wake_up_button": T.BUTTON, + "in_bed_screen_content/wake_up_button_panel/spacer": T.PANEL, + "in_bed_screen_content/wake_up_button_panel/chat_button": T.BUTTON, + "in_bed_screen_content/wake_up_label_panel": T.LABEL, + "in_bed_screen_content/select_button": T.PANEL, + "background": T.IMAGE, } export type ImReaderType = { - reader_button_contents: T.IMAGE - reader_button: T.BUTTON - webview: T.CUSTOM - loading: T.STACK_PANEL - "loading/animation_item": T.PANEL - "loading/animation_item/animation": T.IMAGE - "loading/loading_text_item": T.PANEL - "loading/loading_text_item/loading_text": T.LABEL - "loading/bottom_padding": T.PANEL - "loading/cancel_button": T.BUTTON - no_retry_error_button: T.BUTTON - retry_error_buttons: T.STACK_PANEL - "retry_error_buttons/try_again": T.BUTTON - "retry_error_buttons/middle_padding": T.PANEL - "retry_error_buttons/cancel": T.BUTTON - error: T.STACK_PANEL - "error/error_text": T.LABEL - "error/error_buttons": T.PANEL - "error/error_buttons/retry": T.STACK_PANEL - "error/error_buttons/no_retry": T.BUTTON - loading_and_error_panel: T.PANEL - "loading_and_error_panel/loading": T.STACK_PANEL - "loading_and_error_panel/error": T.STACK_PANEL - immersive_reader_screen_content: T.PANEL - "immersive_reader_screen_content/loading_and_error": T.PANEL - "immersive_reader_screen_content/webview": T.CUSTOM - immersive_reader_screen: T.SCREEN + "reader_button_contents": T.IMAGE, + "reader_button": T.BUTTON, + "webview": T.CUSTOM, + "loading": T.STACK_PANEL, + "loading/animation_item": T.PANEL, + "loading/animation_item/animation": T.IMAGE, + "loading/loading_text_item": T.PANEL, + "loading/loading_text_item/loading_text": T.LABEL, + "loading/bottom_padding": T.PANEL, + "loading/cancel_button": T.BUTTON, + "no_retry_error_button": T.BUTTON, + "retry_error_buttons": T.STACK_PANEL, + "retry_error_buttons/try_again": T.BUTTON, + "retry_error_buttons/middle_padding": T.PANEL, + "retry_error_buttons/cancel": T.BUTTON, + "error": T.STACK_PANEL, + "error/error_text": T.LABEL, + "error/error_buttons": T.PANEL, + "error/error_buttons/retry": T.STACK_PANEL, + "error/error_buttons/no_retry": T.BUTTON, + "loading_and_error_panel": T.PANEL, + "loading_and_error_panel/loading": T.STACK_PANEL, + "loading_and_error_panel/error": T.STACK_PANEL, + "immersive_reader_screen_content": T.PANEL, + "immersive_reader_screen_content/loading_and_error": T.PANEL, + "immersive_reader_screen_content/webview": T.CUSTOM, + "immersive_reader_screen": T.SCREEN, } export type CraftingType = { - inventory_x_gamepad_helper: T.STACK_PANEL - inventory_y_gamepad_helper: T.STACK_PANEL - inventory_a_gamepad_helper: T.STACK_PANEL - inventory_b_gamepad_helper: T.STACK_PANEL - gamepad_helper_bumpers: T.PANEL - "gamepad_helper_bumpers/gamepad_helper_left_bumper": T.STACK_PANEL - "gamepad_helper_bumpers/gamepad_helper_right_bumper": T.STACK_PANEL - gamepad_helper_left_trigger: T.STACK_PANEL - gamepad_helper_right_trigger: T.STACK_PANEL - container_gamepad_helpers_second_row: T.STACK_PANEL - "container_gamepad_helpers_second_row/buffer_panel_left": T.PANEL - "container_gamepad_helpers_second_row/left_thumbstick_visibility": T.PANEL - "container_gamepad_helpers_second_row/left_thumbstick_visibility/gamepad_helper_thumbstick_left": T.STACK_PANEL - "container_gamepad_helpers_second_row/fill_panel": T.PANEL - "container_gamepad_helpers_second_row/right_thumbstick_visibility": T.PANEL - "container_gamepad_helpers_second_row/right_thumbstick_visibility/gamepad_helper_thumbstick_right": T.STACK_PANEL - "container_gamepad_helpers_second_row/buffer_panel_right": T.PANEL - crafting_root_panel: T.INPUT_PANEL - drop_item_panel: T.INPUT_PANEL - inventory_container_slot_button: T.BUTTON - creative_hotbar_container_slot_button: T.BUTTON - no_coalesce_container_slot_button: T.BUTTON - creative_no_coalesce_container_slot_button: T.BUTTON - output_no_coalesce_container_slot_button: T.BUTTON - tab_image: T.IMAGE - item_renderer: T.CUSTOM - inventory_icon: T.IMAGE - recipe_book_icon: T.IMAGE - creative_icon: T.IMAGE - icon_image: T.IMAGE - tab_front: T.IMAGE - tab_back: T.IMAGE - equipment_icon: T.IMAGE - construction_icon: T.IMAGE - nature_icon: T.IMAGE - search_icon: T.IMAGE - miscellaneous_icon: T.IMAGE - empty_tab_panel: T.PANEL - "empty_tab_panel/img": T.UNKNOWN - top_tab: T.PANEL - search_tab: T.PANEL - construction_tab: T.PANEL - equipment_tab: T.PANEL - nature_tab: T.PANEL - items_tab: T.PANEL - tab_navigation_panel_layout: T.STACK_PANEL - "tab_navigation_panel_layout/navigation_tabs": T.PANEL - "tab_navigation_panel_layout/navigation_tabs/content": T.STACK_PANEL - "tab_navigation_panel_layout/navigation_tabs/content/construction_tab_panel": T.PANEL - "tab_navigation_panel_layout/navigation_tabs/content/construction_tab_panel/construction_tab_factory": T.FACTORY - "tab_navigation_panel_layout/navigation_tabs/content/equipment_tab_panel": T.PANEL - "tab_navigation_panel_layout/navigation_tabs/content/equipment_tab_panel/equipment_tab_factory": T.FACTORY - "tab_navigation_panel_layout/navigation_tabs/content/items_tab_panel": T.PANEL - "tab_navigation_panel_layout/navigation_tabs/content/items_tab_panel/items_tab_factory": T.FACTORY - "tab_navigation_panel_layout/navigation_tabs/content/nature_tab_panel": T.PANEL - "tab_navigation_panel_layout/navigation_tabs/content/nature_tab_panel/nature_tab_factory": T.FACTORY - "tab_navigation_panel_layout/navigation_tabs/content/fill_panel_0": T.PANEL - "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder": T.PANEL - "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_end_creative": T.PANEL - "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_creative": T.PANEL - "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_survival": T.PANEL - tab_content_padding: T.PANEL - tab_content: T.PANEL - "tab_content/tab_content_search_bar_panel": T.STACK_PANEL - "tab_content/tab_content_search_bar_panel/vertical_padding_1": T.PANEL - "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder": T.STACK_PANEL - "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/padding_1": T.PANEL - "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/creative_label": T.LABEL - "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/padding_2": T.PANEL - "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/filter_toggle_holder": T.PANEL - "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/filter_toggle_holder/filter_toggle": T.PANEL - "tab_content/tab_content_search_bar_panel/vertical_padding_2": T.PANEL - "tab_content/tab_content_search_bar_panel/search_and_filter_panel": T.STACK_PANEL - "tab_content/tab_content_search_bar_panel/search_and_filter_panel/text_edit_control": T.EDIT_BOX - "tab_content/tab_content_search_bar_panel/search_and_filter_panel/padding_1": T.PANEL - "tab_content/tab_content_search_bar_panel/search_and_filter_panel/filter_toggle_holder": T.PANEL - "tab_content/tab_content_search_bar_panel/search_and_filter_panel/filter_toggle_holder/filter_toggle": T.PANEL - "tab_content/tab_content_search_bar_panel/vertical_padding_3": T.PANEL - "tab_content/tab_content_search_bar_panel/scroll_pane": T.UNKNOWN - "tab_content/nodrop_zone": T.INPUT_PANEL - armor_overlay: T.IMAGE - offhand_overlay: T.IMAGE - armor_overlay_helmet: T.IMAGE - armor_overlay_chest: T.IMAGE - armor_overlay_legs: T.IMAGE - armor_image_feet: T.IMAGE - armor_overlay_shield: T.IMAGE - player_armor_panel: T.PANEL - "player_armor_panel/player_bg": T.IMAGE - "player_armor_panel/player_bg/player_renderer_panel": T.PANEL - "player_armor_panel/player_bg/player_renderer_panel/player_renderer": T.CUSTOM - "player_armor_panel/player_preview_border": T.IMAGE - "player_armor_panel/armor_grid": T.GRID - "player_armor_panel/armor_grid/head_grid_item": T.INPUT_PANEL - "player_armor_panel/armor_grid/chest_grid_item": T.INPUT_PANEL - "player_armor_panel/armor_grid/legs_grid_item": T.INPUT_PANEL - "player_armor_panel/armor_grid/feet_grid_item": T.INPUT_PANEL - "player_armor_panel/offhand_grid": T.GRID - "player_armor_panel/offhand_grid/offhand_grid_item": T.INPUT_PANEL - crafting_label: T.LABEL - inventory_label: T.LABEL - crafting_arrow: T.IMAGE - crafting_arrow_large: T.IMAGE - crafting_input_grid_item: T.INPUT_PANEL - crafting_grid_3x3: T.GRID - "crafting_grid_3x3/crafting_input_item_top_left": T.INPUT_PANEL - "crafting_grid_3x3/crafting_input_item_top_mid": T.INPUT_PANEL - "crafting_grid_3x3/crafting_input_item_top_right": T.INPUT_PANEL - "crafting_grid_3x3/crafting_input_item_mid_left": T.INPUT_PANEL - "crafting_grid_3x3/crafting_input_item_middle": T.INPUT_PANEL - "crafting_grid_3x3/crafting_input_item_mid_right": T.INPUT_PANEL - "crafting_grid_3x3/crafting_input_item_bot_left": T.INPUT_PANEL - "crafting_grid_3x3/crafting_input_item_bot_mid": T.INPUT_PANEL - "crafting_grid_3x3/crafting_input_item_bot_right": T.INPUT_PANEL - crafting_grid_2x2: T.GRID - "crafting_grid_2x2/crafting_input_item_top_left": T.INPUT_PANEL - "crafting_grid_2x2/crafting_input_item_top_right": T.INPUT_PANEL - "crafting_grid_2x2/crafting_input_item_bot_left": T.INPUT_PANEL - "crafting_grid_2x2/crafting_input_item_bot_right": T.INPUT_PANEL - output_grid_3x3: T.GRID - "output_grid_3x3/work_bench_output": T.INPUT_PANEL - output_grid_2x2: T.GRID - "output_grid_2x2/work_bench_output": T.INPUT_PANEL - work_bench_panel_3x3: T.PANEL - "work_bench_panel_3x3/inventory_label": T.LABEL - "work_bench_panel_3x3/crafting_arrow_large": T.IMAGE - "work_bench_panel_3x3/crafting_grid_3x3_with_label_0": T.PANEL - "work_bench_panel_3x3/work_bench_output_grid": T.GRID - crafting_grid_3x3_with_label: T.PANEL - "crafting_grid_3x3_with_label/crafting_label": T.LABEL - "crafting_grid_3x3_with_label/crafting_grid_3x3": T.GRID - crafting_grid_2x2_with_label: T.PANEL - "crafting_grid_2x2_with_label/crafting_label": T.LABEL - "crafting_grid_2x2_with_label/crafting_grid_2x2": T.GRID - crafting_panel_2x2: T.PANEL - "crafting_panel_2x2/crafting_arrow": T.IMAGE - "crafting_panel_2x2/crafting_table": T.CUSTOM - "crafting_panel_2x2/crafting_grid_2x2": T.PANEL - "crafting_panel_2x2/survival_crafting_output_grid": T.GRID - survival_panel_top_half: T.PANEL - "survival_panel_top_half/player_armor_panel": T.PANEL - "survival_panel_top_half/crafting_panel": T.PANEL - crafting_panel_top_half: T.PANEL - "crafting_panel_top_half/crafting_panel": T.PANEL - recipe_container_cell_images: T.IMAGE - cell_image_recipe_default: T.IMAGE - cell_image_recipe_group_head_collapsed: T.IMAGE - cell_image_recipe_group_head_expanded: T.IMAGE - cell_image_recipe_group_item: T.IMAGE - cell_image_recipe_selected: T.IMAGE - cell_image_recipe_default_red: T.IMAGE - container_cell_images: T.PANEL - "container_cell_images/cell_classic": T.IMAGE - "container_cell_images/cell_normal": T.IMAGE - "container_cell_images/cell_invert": T.IMAGE - "container_cell_images/cell_red": T.IMAGE - "container_cell_images/cell_selected": T.IMAGE - "container_cell_images/cell_darkgrey": T.IMAGE - crafting_container_cell_images: T.PANEL - cell_image: T.IMAGE - cell_image_classic: T.IMAGE - cell_image_normal: T.IMAGE - cell_image_invert: T.IMAGE - cell_image_red: T.IMAGE - cell_image_selected: T.IMAGE - cell_image_darkgrey: T.IMAGE - container_overlay_images: T.PANEL - "container_overlay_images/expand": T.IMAGE - "container_overlay_images/contract": T.IMAGE - item_overlay_image: T.IMAGE - item_overlay_contract: T.IMAGE - item_overlay_expand: T.IMAGE - inventory_container_item: T.INPUT_PANEL - "inventory_container_item/item_cell": T.PANEL - "inventory_container_item/item_cell/item": T.PANEL - "inventory_container_item/item_cell/item/stack_count_label": T.LABEL - "inventory_container_item/item_cell/durability_bar": T.CUSTOM - "inventory_container_item/item_cell/storage_bar": T.CUSTOM - "inventory_container_item/item_cell_overlay_ref": T.UNKNOWN - "inventory_container_item/item_selected_image": T.IMAGE - "inventory_container_item/item_button_ref": T.UNKNOWN - "inventory_container_item/container_item_lock_overlay": T.PANEL - "inventory_container_item/item_lock_cell_image": T.IMAGE - "inventory_container_item/bundle_slot_panel": T.PANEL - grid_item_for_recipe_book: T.INPUT_PANEL - scroll_grid_panel: T.INPUT_PANEL - "scroll_grid_panel/grid": T.GRID - scroll_grid: T.GRID - scroll_panel: T.PANEL - recipe_book_scroll_panel: T.PANEL - creative_label: T.LABEL - filter_toggle: T.PANEL - toolbar_background: T.IMAGE - layout_toggle_content: T.PANEL - "layout_toggle_content/image": T.UNKNOWN - "layout_toggle_content/icon": T.UNKNOWN - layout_template_toggle: T.TOGGLE - layout_toggle: T.PANEL - creative_layout_toggle: T.PANEL - recipe_book_layout_toggle: T.PANEL - survival_layout_toggle: T.PANEL - help_button: T.BUTTON - "help_button/default": T.IMAGE - "help_button/hover": T.IMAGE - "help_button/pressed": T.IMAGE - player_inventory: T.INPUT_PANEL - "player_inventory/common_panel": T.PANEL - "player_inventory/inventory_panel_top_half": T.UNKNOWN - "player_inventory/inventory_panel_bottom_half": T.PANEL - "player_inventory/hotbar_grid": T.GRID - recipe_book: T.INPUT_PANEL - "recipe_book/gamepad_helper_bumpers": T.PANEL - "recipe_book/tab_navigation_panel": T.STACK_PANEL - "recipe_book/bg": T.PANEL - "recipe_book/tab_content_panel": T.PANEL - "recipe_book/creative_hotbar_panel": T.INPUT_PANEL - creative_hotbar_panel: T.INPUT_PANEL - "creative_hotbar_panel/creative_hotbar_background": T.IMAGE - "creative_hotbar_panel/creative_hotbar_background/hotbar_grid": T.GRID - center_fold: T.INPUT_PANEL - "center_fold/center_bg": T.IMAGE - toolbar_panel: T.INPUT_PANEL - "toolbar_panel/toolbar_background": T.IMAGE - "toolbar_panel/toolbar_background/toolbar_stack_panel": T.STACK_PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/left_trigger_anchor": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/left_trigger_anchor/gamepad_helper_left_trigger": T.STACK_PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_0": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel/creative_layout_toggle": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_survival": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_survival/recipe_book_layout_toggle": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_creative": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_creative/recipe_book_layout_toggle": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel/survival_layout_toggle": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_3": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": T.BUTTON - "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": T.BUTTON - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_4": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/right_trigger_anchor": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/right_trigger_anchor/gamepad_helper_right_trigger": T.STACK_PANEL - inventory_screen_base: T.SCREEN - crafting_screen: T.SCREEN - inventory_screen: T.SCREEN - recipe_book_toggle_image: T.IMAGE - recipe_inventory_screen_content: T.PANEL - "recipe_inventory_screen_content/content_stack_panel": T.STACK_PANEL - "recipe_inventory_screen_content/content_stack_panel/recipe_book": T.INPUT_PANEL - "recipe_inventory_screen_content/content_stack_panel/center_fold": T.INPUT_PANEL - "recipe_inventory_screen_content/content_stack_panel/survival_padding": T.PANEL - "recipe_inventory_screen_content/content_stack_panel/player_inventory": T.INPUT_PANEL - "recipe_inventory_screen_content/content_stack_panel/toolbar_anchor": T.PANEL - "recipe_inventory_screen_content/content_stack_panel/toolbar_anchor/toolbar_panel": T.INPUT_PANEL - "recipe_inventory_screen_content/inventory_take_progress_icon_button": T.BUTTON - "recipe_inventory_screen_content/inventory_selected_icon_button": T.BUTTON - "recipe_inventory_screen_content/hold_icon": T.BUTTON - "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel": T.STACK_PANEL - "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel/container_gamepad_helpers_second_row": T.STACK_PANEL - "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel/container_gamepad_helpers": T.STACK_PANEL - "recipe_inventory_screen_content/selected_item_details_factory": T.FACTORY - "recipe_inventory_screen_content/item_lock_notification_factory": T.FACTORY - "recipe_inventory_screen_content/flying_item_renderer": T.CUSTOM + "inventory_x_gamepad_helper": T.STACK_PANEL, + "inventory_y_gamepad_helper": T.STACK_PANEL, + "inventory_a_gamepad_helper": T.STACK_PANEL, + "inventory_b_gamepad_helper": T.STACK_PANEL, + "gamepad_helper_bumpers": T.PANEL, + "gamepad_helper_bumpers/gamepad_helper_left_bumper": T.STACK_PANEL, + "gamepad_helper_bumpers/gamepad_helper_right_bumper": T.STACK_PANEL, + "gamepad_helper_left_trigger": T.STACK_PANEL, + "gamepad_helper_right_trigger": T.STACK_PANEL, + "container_gamepad_helpers_second_row": T.STACK_PANEL, + "container_gamepad_helpers_second_row/buffer_panel_left": T.PANEL, + "container_gamepad_helpers_second_row/left_thumbstick_visibility": T.PANEL, + "container_gamepad_helpers_second_row/left_thumbstick_visibility/gamepad_helper_thumbstick_left": T.STACK_PANEL, + "container_gamepad_helpers_second_row/fill_panel": T.PANEL, + "container_gamepad_helpers_second_row/right_thumbstick_visibility": T.PANEL, + "container_gamepad_helpers_second_row/right_thumbstick_visibility/gamepad_helper_thumbstick_right": T.STACK_PANEL, + "container_gamepad_helpers_second_row/buffer_panel_right": T.PANEL, + "crafting_root_panel": T.INPUT_PANEL, + "drop_item_panel": T.INPUT_PANEL, + "inventory_container_slot_button": T.BUTTON, + "creative_hotbar_container_slot_button": T.BUTTON, + "no_coalesce_container_slot_button": T.BUTTON, + "creative_no_coalesce_container_slot_button": T.BUTTON, + "output_no_coalesce_container_slot_button": T.BUTTON, + "tab_image": T.IMAGE, + "item_renderer": T.CUSTOM, + "inventory_icon": T.IMAGE, + "recipe_book_icon": T.IMAGE, + "creative_icon": T.IMAGE, + "icon_image": T.IMAGE, + "tab_front": T.IMAGE, + "tab_back": T.IMAGE, + "equipment_icon": T.IMAGE, + "construction_icon": T.IMAGE, + "nature_icon": T.IMAGE, + "search_icon": T.IMAGE, + "miscellaneous_icon": T.IMAGE, + "empty_tab_panel": T.PANEL, + "empty_tab_panel/img": T.UNKNOWN, + "top_tab": T.PANEL, + "search_tab": T.PANEL, + "construction_tab": T.PANEL, + "equipment_tab": T.PANEL, + "nature_tab": T.PANEL, + "items_tab": T.PANEL, + "tab_navigation_panel_layout": T.STACK_PANEL, + "tab_navigation_panel_layout/navigation_tabs": T.PANEL, + "tab_navigation_panel_layout/navigation_tabs/content": T.STACK_PANEL, + "tab_navigation_panel_layout/navigation_tabs/content/construction_tab_panel": T.PANEL, + "tab_navigation_panel_layout/navigation_tabs/content/construction_tab_panel/construction_tab_factory": T.FACTORY, + "tab_navigation_panel_layout/navigation_tabs/content/equipment_tab_panel": T.PANEL, + "tab_navigation_panel_layout/navigation_tabs/content/equipment_tab_panel/equipment_tab_factory": T.FACTORY, + "tab_navigation_panel_layout/navigation_tabs/content/items_tab_panel": T.PANEL, + "tab_navigation_panel_layout/navigation_tabs/content/items_tab_panel/items_tab_factory": T.FACTORY, + "tab_navigation_panel_layout/navigation_tabs/content/nature_tab_panel": T.PANEL, + "tab_navigation_panel_layout/navigation_tabs/content/nature_tab_panel/nature_tab_factory": T.FACTORY, + "tab_navigation_panel_layout/navigation_tabs/content/fill_panel_0": T.PANEL, + "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder": T.PANEL, + "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_end_creative": T.PANEL, + "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_creative": T.PANEL, + "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_survival": T.PANEL, + "tab_content_padding": T.PANEL, + "tab_content": T.PANEL, + "tab_content/tab_content_search_bar_panel": T.STACK_PANEL, + "tab_content/tab_content_search_bar_panel/vertical_padding_1": T.PANEL, + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder": T.STACK_PANEL, + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/padding_1": T.PANEL, + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/creative_label": T.LABEL, + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/padding_2": T.PANEL, + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/filter_toggle_holder": T.PANEL, + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/filter_toggle_holder/filter_toggle": T.PANEL, + "tab_content/tab_content_search_bar_panel/vertical_padding_2": T.PANEL, + "tab_content/tab_content_search_bar_panel/search_and_filter_panel": T.STACK_PANEL, + "tab_content/tab_content_search_bar_panel/search_and_filter_panel/text_edit_control": T.EDIT_BOX, + "tab_content/tab_content_search_bar_panel/search_and_filter_panel/padding_1": T.PANEL, + "tab_content/tab_content_search_bar_panel/search_and_filter_panel/filter_toggle_holder": T.PANEL, + "tab_content/tab_content_search_bar_panel/search_and_filter_panel/filter_toggle_holder/filter_toggle": T.PANEL, + "tab_content/tab_content_search_bar_panel/vertical_padding_3": T.PANEL, + "tab_content/tab_content_search_bar_panel/scroll_pane": T.UNKNOWN, + "tab_content/nodrop_zone": T.INPUT_PANEL, + "armor_overlay": T.IMAGE, + "offhand_overlay": T.IMAGE, + "armor_overlay_helmet": T.IMAGE, + "armor_overlay_chest": T.IMAGE, + "armor_overlay_legs": T.IMAGE, + "armor_image_feet": T.IMAGE, + "armor_overlay_shield": T.IMAGE, + "player_armor_panel": T.PANEL, + "player_armor_panel/player_bg": T.IMAGE, + "player_armor_panel/player_bg/player_renderer_panel": T.PANEL, + "player_armor_panel/player_bg/player_renderer_panel/player_renderer": T.CUSTOM, + "player_armor_panel/player_preview_border": T.IMAGE, + "player_armor_panel/armor_grid": T.GRID, + "player_armor_panel/armor_grid/head_grid_item": T.INPUT_PANEL, + "player_armor_panel/armor_grid/chest_grid_item": T.INPUT_PANEL, + "player_armor_panel/armor_grid/legs_grid_item": T.INPUT_PANEL, + "player_armor_panel/armor_grid/feet_grid_item": T.INPUT_PANEL, + "player_armor_panel/offhand_grid": T.GRID, + "player_armor_panel/offhand_grid/offhand_grid_item": T.INPUT_PANEL, + "crafting_label": T.LABEL, + "inventory_label": T.LABEL, + "crafting_arrow": T.IMAGE, + "crafting_arrow_large": T.IMAGE, + "crafting_input_grid_item": T.INPUT_PANEL, + "crafting_grid_3x3": T.GRID, + "crafting_grid_3x3/crafting_input_item_top_left": T.INPUT_PANEL, + "crafting_grid_3x3/crafting_input_item_top_mid": T.INPUT_PANEL, + "crafting_grid_3x3/crafting_input_item_top_right": T.INPUT_PANEL, + "crafting_grid_3x3/crafting_input_item_mid_left": T.INPUT_PANEL, + "crafting_grid_3x3/crafting_input_item_middle": T.INPUT_PANEL, + "crafting_grid_3x3/crafting_input_item_mid_right": T.INPUT_PANEL, + "crafting_grid_3x3/crafting_input_item_bot_left": T.INPUT_PANEL, + "crafting_grid_3x3/crafting_input_item_bot_mid": T.INPUT_PANEL, + "crafting_grid_3x3/crafting_input_item_bot_right": T.INPUT_PANEL, + "crafting_grid_2x2": T.GRID, + "crafting_grid_2x2/crafting_input_item_top_left": T.INPUT_PANEL, + "crafting_grid_2x2/crafting_input_item_top_right": T.INPUT_PANEL, + "crafting_grid_2x2/crafting_input_item_bot_left": T.INPUT_PANEL, + "crafting_grid_2x2/crafting_input_item_bot_right": T.INPUT_PANEL, + "output_grid_3x3": T.GRID, + "output_grid_3x3/work_bench_output": T.INPUT_PANEL, + "output_grid_2x2": T.GRID, + "output_grid_2x2/work_bench_output": T.INPUT_PANEL, + "work_bench_panel_3x3": T.PANEL, + "work_bench_panel_3x3/inventory_label": T.LABEL, + "work_bench_panel_3x3/crafting_arrow_large": T.IMAGE, + "work_bench_panel_3x3/crafting_grid_3x3_with_label_0": T.PANEL, + "work_bench_panel_3x3/work_bench_output_grid": T.GRID, + "crafting_grid_3x3_with_label": T.PANEL, + "crafting_grid_3x3_with_label/crafting_label": T.LABEL, + "crafting_grid_3x3_with_label/crafting_grid_3x3": T.GRID, + "crafting_grid_2x2_with_label": T.PANEL, + "crafting_grid_2x2_with_label/crafting_label": T.LABEL, + "crafting_grid_2x2_with_label/crafting_grid_2x2": T.GRID, + "crafting_panel_2x2": T.PANEL, + "crafting_panel_2x2/crafting_arrow": T.IMAGE, + "crafting_panel_2x2/crafting_table": T.CUSTOM, + "crafting_panel_2x2/crafting_grid_2x2": T.PANEL, + "crafting_panel_2x2/survival_crafting_output_grid": T.GRID, + "survival_panel_top_half": T.PANEL, + "survival_panel_top_half/player_armor_panel": T.PANEL, + "survival_panel_top_half/crafting_panel": T.PANEL, + "crafting_panel_top_half": T.PANEL, + "crafting_panel_top_half/crafting_panel": T.PANEL, + "recipe_container_cell_images": T.IMAGE, + "cell_image_recipe_default": T.IMAGE, + "cell_image_recipe_group_head_collapsed": T.IMAGE, + "cell_image_recipe_group_head_expanded": T.IMAGE, + "cell_image_recipe_group_item": T.IMAGE, + "cell_image_recipe_selected": T.IMAGE, + "cell_image_recipe_default_red": T.IMAGE, + "container_cell_images": T.PANEL, + "container_cell_images/cell_classic": T.IMAGE, + "container_cell_images/cell_normal": T.IMAGE, + "container_cell_images/cell_invert": T.IMAGE, + "container_cell_images/cell_red": T.IMAGE, + "container_cell_images/cell_selected": T.IMAGE, + "container_cell_images/cell_darkgrey": T.IMAGE, + "crafting_container_cell_images": T.PANEL, + "cell_image": T.IMAGE, + "cell_image_classic": T.IMAGE, + "cell_image_normal": T.IMAGE, + "cell_image_invert": T.IMAGE, + "cell_image_red": T.IMAGE, + "cell_image_selected": T.IMAGE, + "cell_image_darkgrey": T.IMAGE, + "container_overlay_images": T.PANEL, + "container_overlay_images/expand": T.IMAGE, + "container_overlay_images/contract": T.IMAGE, + "item_overlay_image": T.IMAGE, + "item_overlay_contract": T.IMAGE, + "item_overlay_expand": T.IMAGE, + "inventory_container_item": T.INPUT_PANEL, + "inventory_container_item/item_cell": T.PANEL, + "inventory_container_item/item_cell/item": T.PANEL, + "inventory_container_item/item_cell/item/stack_count_label": T.LABEL, + "inventory_container_item/item_cell/durability_bar": T.CUSTOM, + "inventory_container_item/item_cell/storage_bar": T.CUSTOM, + "inventory_container_item/item_cell_overlay_ref": T.UNKNOWN, + "inventory_container_item/item_selected_image": T.IMAGE, + "inventory_container_item/item_button_ref": T.UNKNOWN, + "inventory_container_item/container_item_lock_overlay": T.PANEL, + "inventory_container_item/item_lock_cell_image": T.IMAGE, + "inventory_container_item/bundle_slot_panel": T.PANEL, + "grid_item_for_recipe_book": T.INPUT_PANEL, + "scroll_grid_panel": T.INPUT_PANEL, + "scroll_grid_panel/grid": T.GRID, + "scroll_grid": T.GRID, + "scroll_panel": T.PANEL, + "recipe_book_scroll_panel": T.PANEL, + "creative_label": T.LABEL, + "filter_toggle": T.PANEL, + "toolbar_background": T.IMAGE, + "layout_toggle_content": T.PANEL, + "layout_toggle_content/image": T.UNKNOWN, + "layout_toggle_content/icon": T.UNKNOWN, + "layout_template_toggle": T.TOGGLE, + "layout_toggle": T.PANEL, + "creative_layout_toggle": T.PANEL, + "recipe_book_layout_toggle": T.PANEL, + "survival_layout_toggle": T.PANEL, + "help_button": T.BUTTON, + "help_button/default": T.IMAGE, + "help_button/hover": T.IMAGE, + "help_button/pressed": T.IMAGE, + "player_inventory": T.INPUT_PANEL, + "player_inventory/common_panel": T.PANEL, + "player_inventory/inventory_panel_top_half": T.UNKNOWN, + "player_inventory/inventory_panel_bottom_half": T.PANEL, + "player_inventory/hotbar_grid": T.GRID, + "recipe_book": T.INPUT_PANEL, + "recipe_book/gamepad_helper_bumpers": T.PANEL, + "recipe_book/tab_navigation_panel": T.STACK_PANEL, + "recipe_book/bg": T.PANEL, + "recipe_book/tab_content_panel": T.PANEL, + "recipe_book/creative_hotbar_panel": T.INPUT_PANEL, + "creative_hotbar_panel": T.INPUT_PANEL, + "creative_hotbar_panel/creative_hotbar_background": T.IMAGE, + "creative_hotbar_panel/creative_hotbar_background/hotbar_grid": T.GRID, + "center_fold": T.INPUT_PANEL, + "center_fold/center_bg": T.IMAGE, + "toolbar_panel": T.INPUT_PANEL, + "toolbar_panel/toolbar_background": T.IMAGE, + "toolbar_panel/toolbar_background/toolbar_stack_panel": T.STACK_PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/left_trigger_anchor": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/left_trigger_anchor/gamepad_helper_left_trigger": T.STACK_PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_0": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel/creative_layout_toggle": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_survival": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_survival/recipe_book_layout_toggle": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_creative": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_creative/recipe_book_layout_toggle": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel/survival_layout_toggle": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_3": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": T.BUTTON, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": T.BUTTON, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_4": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/right_trigger_anchor": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/right_trigger_anchor/gamepad_helper_right_trigger": T.STACK_PANEL, + "inventory_screen_base": T.SCREEN, + "crafting_screen": T.SCREEN, + "inventory_screen": T.SCREEN, + "recipe_book_toggle_image": T.IMAGE, + "recipe_inventory_screen_content": T.PANEL, + "recipe_inventory_screen_content/content_stack_panel": T.STACK_PANEL, + "recipe_inventory_screen_content/content_stack_panel/recipe_book": T.INPUT_PANEL, + "recipe_inventory_screen_content/content_stack_panel/center_fold": T.INPUT_PANEL, + "recipe_inventory_screen_content/content_stack_panel/survival_padding": T.PANEL, + "recipe_inventory_screen_content/content_stack_panel/player_inventory": T.INPUT_PANEL, + "recipe_inventory_screen_content/content_stack_panel/toolbar_anchor": T.PANEL, + "recipe_inventory_screen_content/content_stack_panel/toolbar_anchor/toolbar_panel": T.INPUT_PANEL, + "recipe_inventory_screen_content/inventory_take_progress_icon_button": T.BUTTON, + "recipe_inventory_screen_content/inventory_selected_icon_button": T.BUTTON, + "recipe_inventory_screen_content/hold_icon": T.BUTTON, + "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel": T.STACK_PANEL, + "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel/container_gamepad_helpers_second_row": T.STACK_PANEL, + "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel/container_gamepad_helpers": T.STACK_PANEL, + "recipe_inventory_screen_content/selected_item_details_factory": T.FACTORY, + "recipe_inventory_screen_content/item_lock_notification_factory": T.FACTORY, + "recipe_inventory_screen_content/flying_item_renderer": T.CUSTOM, } export type CraftingPocketType = { - survival_icon: T.CUSTOM - full_screen_icon: T.IMAGE - crafting_icon: T.IMAGE - armor_icon: T.IMAGE - crafting_arrow_down: T.IMAGE - empty_tab_panel: T.PANEL - left_tab: T.PANEL - right_tab: T.PANEL - full_screen_tab: T.PANEL - crafting_tab: T.PANEL - armor_tab: T.PANEL - search_tab: T.PANEL - construction_tab: T.PANEL - equipment_tab: T.PANEL - items_tab: T.PANEL - nature_tab: T.PANEL - inventory_tab: T.PANEL - left_tab_navigation_panel_pocket: T.PANEL - "left_tab_navigation_panel_pocket/content": T.STACK_PANEL - "left_tab_navigation_panel_pocket/content/search_tab_panel": T.PANEL - "left_tab_navigation_panel_pocket/content/search_tab_panel/search_tab": T.PANEL - "left_tab_navigation_panel_pocket/content/construction_tab_panel": T.PANEL - "left_tab_navigation_panel_pocket/content/construction_tab_panel/construction_tab_factory": T.FACTORY - "left_tab_navigation_panel_pocket/content/equipment_tab_panel": T.PANEL - "left_tab_navigation_panel_pocket/content/equipment_tab_panel/equipment_tab_factory": T.FACTORY - "left_tab_navigation_panel_pocket/content/items_tab_panel": T.PANEL - "left_tab_navigation_panel_pocket/content/items_tab_panel/items_tab_factory": T.FACTORY - "left_tab_navigation_panel_pocket/content/nature_tab_panel": T.PANEL - "left_tab_navigation_panel_pocket/content/nature_tab_panel/nature_tab_factory": T.FACTORY - "left_tab_navigation_panel_pocket/content/fill": T.PANEL - "left_tab_navigation_panel_pocket/content/inventory_tab": T.PANEL - right_tab_navigation_panel_pocket: T.PANEL - "right_tab_navigation_panel_pocket/content": T.STACK_PANEL - "right_tab_navigation_panel_pocket/content/close": T.IMAGE - "right_tab_navigation_panel_pocket/content/close/nodrop_zone": T.INPUT_PANEL - "right_tab_navigation_panel_pocket/content/close/close_button": T.BUTTON - "right_tab_navigation_panel_pocket/content/fill": T.PANEL - "right_tab_navigation_panel_pocket/content/full_screen_tab": T.PANEL - "right_tab_navigation_panel_pocket/content/crafting_tab": T.PANEL - "right_tab_navigation_panel_pocket/content/armor_tab": T.PANEL - recipe_book_tab_content: T.PANEL - inventory_tab_content: T.PANEL - right_tab_content: T.PANEL - "right_tab_content/bg": T.PANEL - "right_tab_content/content": T.UNKNOWN - crafting_input_grid_item: T.INPUT_PANEL - crafting_grid_3x3: T.GRID - crafting_grid_2x2: T.GRID - output_grid_and_label: T.PANEL - "output_grid_and_label/recipe_item_label": T.LABEL - "output_grid_and_label/output_grid": T.GRID - output_grid: T.GRID - "output_grid/work_bench_output": T.INPUT_PANEL - crafting_grid_3x3_with_label: T.PANEL - "crafting_grid_3x3_with_label/crafting_label": T.LABEL - "crafting_grid_3x3_with_label/crafting_grid_3x3": T.GRID - crafting_grid_2x2_with_label: T.PANEL - "crafting_grid_2x2_with_label/crafting_label": T.LABEL - "crafting_grid_2x2_with_label/crafting_grid_2x2": T.GRID - scroll_background_image: T.IMAGE - grid_item_for_inventory: T.INPUT_PANEL - survival_inventory_grid: T.INPUT_PANEL - scroll_panel_pocket: T.PANEL - recipe_book_scroll_panel_pocket: T.PANEL - survival_scroll_panel: T.PANEL - pocket_armor_tab_content: T.STACK_PANEL - "pocket_armor_tab_content/label_and_renderer": T.PANEL - "pocket_armor_tab_content/label_and_renderer/label_panel": T.PANEL - "pocket_armor_tab_content/label_and_renderer/label_panel/armor_label": T.LABEL - "pocket_armor_tab_content/label_and_renderer/renderer_panel": T.PANEL - "pocket_armor_tab_content/label_and_renderer/renderer_panel/armor_renderer": T.CUSTOM - "pocket_armor_tab_content/equipment_and_renderer": T.STACK_PANEL - "pocket_armor_tab_content/equipment_and_renderer/equipment": T.STACK_PANEL - "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid": T.GRID - "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/head_grid_item": T.INPUT_PANEL - "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/chest_grid_item": T.INPUT_PANEL - "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/legs_grid_item": T.INPUT_PANEL - "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/feet_grid_item": T.INPUT_PANEL - "pocket_armor_tab_content/equipment_and_renderer/equipment/offhand_grid": T.GRID - "pocket_armor_tab_content/equipment_and_renderer/equipment/offhand_grid/offhand_grid_item": T.INPUT_PANEL - "pocket_armor_tab_content/equipment_and_renderer/armor_panel": T.PANEL - "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player": T.PANEL - "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border": T.IMAGE - "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg": T.IMAGE - "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg/player_renderer_panel": T.PANEL - "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg/player_renderer_panel/player_renderer": T.CUSTOM - hotbar_panel: T.INPUT_PANEL - "hotbar_panel/bg": T.PANEL - "hotbar_panel/hotbar_grid": T.GRID - hotbar_grid_item: T.INPUT_PANEL - survival_panel_pocket: T.PANEL - "survival_panel_pocket/crafting_panel": T.PANEL - "survival_panel_pocket/crafting_arrow_down": T.IMAGE - "survival_panel_pocket/crafting_table": T.CUSTOM - "survival_panel_pocket/output": T.PANEL - survival_panel_crafting_pocket: T.PANEL - "survival_panel_crafting_pocket/crafting_panel": T.PANEL - "survival_panel_crafting_pocket/crafting_arrow_down": T.IMAGE - "survival_panel_crafting_pocket/output": T.PANEL - inventory_screen_pocket_base: T.SCREEN - crafting_screen_pocket: T.SCREEN - inventory_screen_pocket: T.SCREEN - left_panel: T.PANEL - "left_panel/left_background": T.PANEL - "left_panel/recipe_book_tab_content": T.PANEL - "left_panel/inventory_tab_content": T.PANEL - right_panel: T.INPUT_PANEL - "right_panel/right_background": T.PANEL - "right_panel/help_button": T.BUTTON - "right_panel/crafting_tab_content": T.PANEL - "right_panel/armor_tab_content": T.PANEL - both_panels: T.STACK_PANEL - "both_panels/left_tab_navigation_panel_pocket": T.PANEL - "both_panels/left_panel": T.PANEL - "both_panels/offset_panel": T.PANEL - "both_panels/offset_panel/center_bg": T.IMAGE - "both_panels/right_panel": T.INPUT_PANEL - "both_panels/right_tab_navigation_panel_pocket": T.PANEL - gamepad_helper_border: T.STACK_PANEL - "gamepad_helper_border/left_gamepad_panel": T.PANEL - "gamepad_helper_border/left_gamepad_panel/gamepad_helper_left_bumper": T.STACK_PANEL - "gamepad_helper_border/left_gamepad_panel/gamepad_helper_left_trigger": T.STACK_PANEL - "gamepad_helper_border/both_panels": T.STACK_PANEL - "gamepad_helper_border/right_gamepad_panel": T.PANEL - "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_bumper_creative": T.STACK_PANEL - "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_bumper": T.STACK_PANEL - "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_trigger": T.STACK_PANEL - hotbar_and_panels: T.STACK_PANEL - "hotbar_and_panels/padding_1": T.PANEL - "hotbar_and_panels/gamepad_helper_border": T.STACK_PANEL - "hotbar_and_panels/hotbar_section_panel": T.INPUT_PANEL - "hotbar_and_panels/hotbar_section_panel/hotbar": T.INPUT_PANEL - recipe_inventory_screen_content_pocket: T.INPUT_PANEL - "recipe_inventory_screen_content_pocket/container_gamepad_helpers_pocket": T.STACK_PANEL - "recipe_inventory_screen_content_pocket/toast_screen_content": T.PANEL - "recipe_inventory_screen_content_pocket/selected_item_details_factory": T.FACTORY - "recipe_inventory_screen_content_pocket/item_lock_notification_factory": T.FACTORY - "recipe_inventory_screen_content_pocket/base_panel": T.PANEL - "recipe_inventory_screen_content_pocket/base_panel/root_panel": T.INPUT_PANEL - "recipe_inventory_screen_content_pocket/base_panel/inventory_selected_icon_button": T.BUTTON - "recipe_inventory_screen_content_pocket/base_panel/gamepad_cursor": T.BUTTON - "recipe_inventory_screen_content_pocket/base_panel/hold_icon": T.BUTTON - "recipe_inventory_screen_content_pocket/base_panel/hotbar_and_panels": T.STACK_PANEL - "recipe_inventory_screen_content_pocket/flying_item_renderer": T.CUSTOM + "survival_icon": T.CUSTOM, + "full_screen_icon": T.IMAGE, + "crafting_icon": T.IMAGE, + "armor_icon": T.IMAGE, + "crafting_arrow_down": T.IMAGE, + "empty_tab_panel": T.PANEL, + "left_tab": T.PANEL, + "right_tab": T.PANEL, + "full_screen_tab": T.PANEL, + "crafting_tab": T.PANEL, + "armor_tab": T.PANEL, + "search_tab": T.PANEL, + "construction_tab": T.PANEL, + "equipment_tab": T.PANEL, + "items_tab": T.PANEL, + "nature_tab": T.PANEL, + "inventory_tab": T.PANEL, + "left_tab_navigation_panel_pocket": T.PANEL, + "left_tab_navigation_panel_pocket/content": T.STACK_PANEL, + "left_tab_navigation_panel_pocket/content/search_tab_panel": T.PANEL, + "left_tab_navigation_panel_pocket/content/search_tab_panel/search_tab": T.PANEL, + "left_tab_navigation_panel_pocket/content/construction_tab_panel": T.PANEL, + "left_tab_navigation_panel_pocket/content/construction_tab_panel/construction_tab_factory": T.FACTORY, + "left_tab_navigation_panel_pocket/content/equipment_tab_panel": T.PANEL, + "left_tab_navigation_panel_pocket/content/equipment_tab_panel/equipment_tab_factory": T.FACTORY, + "left_tab_navigation_panel_pocket/content/items_tab_panel": T.PANEL, + "left_tab_navigation_panel_pocket/content/items_tab_panel/items_tab_factory": T.FACTORY, + "left_tab_navigation_panel_pocket/content/nature_tab_panel": T.PANEL, + "left_tab_navigation_panel_pocket/content/nature_tab_panel/nature_tab_factory": T.FACTORY, + "left_tab_navigation_panel_pocket/content/fill": T.PANEL, + "left_tab_navigation_panel_pocket/content/inventory_tab": T.PANEL, + "right_tab_navigation_panel_pocket": T.PANEL, + "right_tab_navigation_panel_pocket/content": T.STACK_PANEL, + "right_tab_navigation_panel_pocket/content/close": T.IMAGE, + "right_tab_navigation_panel_pocket/content/close/nodrop_zone": T.INPUT_PANEL, + "right_tab_navigation_panel_pocket/content/close/close_button": T.BUTTON, + "right_tab_navigation_panel_pocket/content/fill": T.PANEL, + "right_tab_navigation_panel_pocket/content/full_screen_tab": T.PANEL, + "right_tab_navigation_panel_pocket/content/crafting_tab": T.PANEL, + "right_tab_navigation_panel_pocket/content/armor_tab": T.PANEL, + "recipe_book_tab_content": T.PANEL, + "inventory_tab_content": T.PANEL, + "right_tab_content": T.PANEL, + "right_tab_content/bg": T.PANEL, + "right_tab_content/content": T.UNKNOWN, + "crafting_input_grid_item": T.INPUT_PANEL, + "crafting_grid_3x3": T.GRID, + "crafting_grid_2x2": T.GRID, + "output_grid_and_label": T.PANEL, + "output_grid_and_label/recipe_item_label": T.LABEL, + "output_grid_and_label/output_grid": T.GRID, + "output_grid": T.GRID, + "output_grid/work_bench_output": T.INPUT_PANEL, + "crafting_grid_3x3_with_label": T.PANEL, + "crafting_grid_3x3_with_label/crafting_label": T.LABEL, + "crafting_grid_3x3_with_label/crafting_grid_3x3": T.GRID, + "crafting_grid_2x2_with_label": T.PANEL, + "crafting_grid_2x2_with_label/crafting_label": T.LABEL, + "crafting_grid_2x2_with_label/crafting_grid_2x2": T.GRID, + "scroll_background_image": T.IMAGE, + "grid_item_for_inventory": T.INPUT_PANEL, + "survival_inventory_grid": T.INPUT_PANEL, + "scroll_panel_pocket": T.PANEL, + "recipe_book_scroll_panel_pocket": T.PANEL, + "survival_scroll_panel": T.PANEL, + "pocket_armor_tab_content": T.STACK_PANEL, + "pocket_armor_tab_content/label_and_renderer": T.PANEL, + "pocket_armor_tab_content/label_and_renderer/label_panel": T.PANEL, + "pocket_armor_tab_content/label_and_renderer/label_panel/armor_label": T.LABEL, + "pocket_armor_tab_content/label_and_renderer/renderer_panel": T.PANEL, + "pocket_armor_tab_content/label_and_renderer/renderer_panel/armor_renderer": T.CUSTOM, + "pocket_armor_tab_content/equipment_and_renderer": T.STACK_PANEL, + "pocket_armor_tab_content/equipment_and_renderer/equipment": T.STACK_PANEL, + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid": T.GRID, + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/head_grid_item": T.INPUT_PANEL, + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/chest_grid_item": T.INPUT_PANEL, + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/legs_grid_item": T.INPUT_PANEL, + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/feet_grid_item": T.INPUT_PANEL, + "pocket_armor_tab_content/equipment_and_renderer/equipment/offhand_grid": T.GRID, + "pocket_armor_tab_content/equipment_and_renderer/equipment/offhand_grid/offhand_grid_item": T.INPUT_PANEL, + "pocket_armor_tab_content/equipment_and_renderer/armor_panel": T.PANEL, + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player": T.PANEL, + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border": T.IMAGE, + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg": T.IMAGE, + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg/player_renderer_panel": T.PANEL, + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg/player_renderer_panel/player_renderer": T.CUSTOM, + "hotbar_panel": T.INPUT_PANEL, + "hotbar_panel/bg": T.PANEL, + "hotbar_panel/hotbar_grid": T.GRID, + "hotbar_grid_item": T.INPUT_PANEL, + "survival_panel_pocket": T.PANEL, + "survival_panel_pocket/crafting_panel": T.PANEL, + "survival_panel_pocket/crafting_arrow_down": T.IMAGE, + "survival_panel_pocket/crafting_table": T.CUSTOM, + "survival_panel_pocket/output": T.PANEL, + "survival_panel_crafting_pocket": T.PANEL, + "survival_panel_crafting_pocket/crafting_panel": T.PANEL, + "survival_panel_crafting_pocket/crafting_arrow_down": T.IMAGE, + "survival_panel_crafting_pocket/output": T.PANEL, + "inventory_screen_pocket_base": T.SCREEN, + "crafting_screen_pocket": T.SCREEN, + "inventory_screen_pocket": T.SCREEN, + "left_panel": T.PANEL, + "left_panel/left_background": T.PANEL, + "left_panel/recipe_book_tab_content": T.PANEL, + "left_panel/inventory_tab_content": T.PANEL, + "right_panel": T.INPUT_PANEL, + "right_panel/right_background": T.PANEL, + "right_panel/help_button": T.BUTTON, + "right_panel/crafting_tab_content": T.PANEL, + "right_panel/armor_tab_content": T.PANEL, + "both_panels": T.STACK_PANEL, + "both_panels/left_tab_navigation_panel_pocket": T.PANEL, + "both_panels/left_panel": T.PANEL, + "both_panels/offset_panel": T.PANEL, + "both_panels/offset_panel/center_bg": T.IMAGE, + "both_panels/right_panel": T.INPUT_PANEL, + "both_panels/right_tab_navigation_panel_pocket": T.PANEL, + "gamepad_helper_border": T.STACK_PANEL, + "gamepad_helper_border/left_gamepad_panel": T.PANEL, + "gamepad_helper_border/left_gamepad_panel/gamepad_helper_left_bumper": T.STACK_PANEL, + "gamepad_helper_border/left_gamepad_panel/gamepad_helper_left_trigger": T.STACK_PANEL, + "gamepad_helper_border/both_panels": T.STACK_PANEL, + "gamepad_helper_border/right_gamepad_panel": T.PANEL, + "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_bumper_creative": T.STACK_PANEL, + "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_bumper": T.STACK_PANEL, + "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_trigger": T.STACK_PANEL, + "hotbar_and_panels": T.STACK_PANEL, + "hotbar_and_panels/padding_1": T.PANEL, + "hotbar_and_panels/gamepad_helper_border": T.STACK_PANEL, + "hotbar_and_panels/hotbar_section_panel": T.INPUT_PANEL, + "hotbar_and_panels/hotbar_section_panel/hotbar": T.INPUT_PANEL, + "recipe_inventory_screen_content_pocket": T.INPUT_PANEL, + "recipe_inventory_screen_content_pocket/container_gamepad_helpers_pocket": T.STACK_PANEL, + "recipe_inventory_screen_content_pocket/toast_screen_content": T.PANEL, + "recipe_inventory_screen_content_pocket/selected_item_details_factory": T.FACTORY, + "recipe_inventory_screen_content_pocket/item_lock_notification_factory": T.FACTORY, + "recipe_inventory_screen_content_pocket/base_panel": T.PANEL, + "recipe_inventory_screen_content_pocket/base_panel/root_panel": T.INPUT_PANEL, + "recipe_inventory_screen_content_pocket/base_panel/inventory_selected_icon_button": T.BUTTON, + "recipe_inventory_screen_content_pocket/base_panel/gamepad_cursor": T.BUTTON, + "recipe_inventory_screen_content_pocket/base_panel/hold_icon": T.BUTTON, + "recipe_inventory_screen_content_pocket/base_panel/hotbar_and_panels": T.STACK_PANEL, + "recipe_inventory_screen_content_pocket/flying_item_renderer": T.CUSTOM, } export type InviteType = { - black_border: T.IMAGE - black_border_hover: T.IMAGE - platform_icon: T.IMAGE - grey_borderless_locked: T.IMAGE - checked_locked_image: T.IMAGE - unchecked_locked_image: T.IMAGE - left_arrow_image: T.IMAGE - right_arrow_image: T.IMAGE - account_link_image: T.IMAGE - panel_text: T.LABEL - loading_friends: T.LABEL - account_link_icon: T.STACK_PANEL - "account_link_icon/space_01": T.PANEL - "account_link_icon/account_link_image": T.IMAGE - "account_link_icon/space_03": T.PANEL - gamerpic: T.CUSTOM - third_party_profile_pic: T.IMAGE - gamerpic_panel: T.PANEL - "gamerpic_panel/black_border": T.IMAGE - "gamerpic_panel/gamerpic": T.CUSTOM - "gamerpic_panel/online_indication_positioner": T.PANEL - "gamerpic_panel/online_indication_positioner/indicator_images": T.PANEL - third_party_profile_pic_panel: T.PANEL - "third_party_profile_pic_panel/black_border": T.IMAGE - "third_party_profile_pic_panel/third_party_profile_pic": T.IMAGE - platform_icon_panel: T.PANEL - "platform_icon_panel/platform_icon": T.IMAGE - status_image: T.IMAGE - online_image: T.IMAGE - offline_image: T.IMAGE - online_indicator: T.PANEL - "online_indicator/online_image": T.IMAGE - checkbox_panel: T.PANEL - checked_panel: T.PANEL - "checked_panel/checked_image": T.IMAGE - unchecked_panel: T.PANEL - "unchecked_panel/unchecked_image": T.IMAGE - checked_locked_panel: T.PANEL - "checked_locked_panel/checked_image": T.IMAGE - unchecked_locked_panel: T.PANEL - "unchecked_locked_panel/unchecked_image": T.IMAGE - checked_hover_panel: T.PANEL - "checked_hover_panel/checked_hover_image": T.IMAGE - unchecked_hover_panel: T.PANEL - "unchecked_hover_panel/unchecked_hover_image": T.IMAGE - friend_label: T.LABEL - friend_grid_xbl_gamertag: T.LABEL - friend_grid_current_game_label: T.LABEL - friend_grid_third_party_tag: T.LABEL - friend_background: T.IMAGE - friend_background_hover: T.IMAGE - friend_background_borderless: T.IMAGE - hover_friend_button: T.PANEL - "hover_friend_button/friend_button_layout": T.UNKNOWN - "hover_friend_button/hover_text": T.CUSTOM - linked_hover_friend_button: T.PANEL - "linked_hover_friend_button/hover_text": T.CUSTOM - msa_friend_button_layout: T.STACK_PANEL - "msa_friend_button_layout/spacer01": T.PANEL - "msa_friend_button_layout/platform_icon_spacer": T.PANEL - "msa_friend_button_layout/spacer_02": T.PANEL - "msa_friend_button_layout/friend_grid_label_layout": T.STACK_PANEL - "msa_friend_button_layout/friend_grid_label_layout/spacer_01": T.PANEL - "msa_friend_button_layout/friend_grid_label_layout/friend_grid_xbl_gamertag": T.LABEL - "msa_friend_button_layout/friend_grid_label_layout/friend_grid_current_game_label": T.LABEL - platform_friend_button_layout: T.STACK_PANEL - "platform_friend_button_layout/spacer01": T.PANEL - "platform_friend_button_layout/platform_icon_spacer": T.PANEL - "platform_friend_button_layout/third_party_pic_panel_positioner": T.PANEL - "platform_friend_button_layout/third_party_pic_panel_positioner/pp": T.PANEL - "platform_friend_button_layout/spacer_02": T.PANEL - "platform_friend_button_layout/friend_grid_label_layout": T.STACK_PANEL - "platform_friend_button_layout/friend_grid_label_layout/spacer_01": T.PANEL - "platform_friend_button_layout/friend_grid_label_layout/friend_grid_third_party_tag": T.LABEL - "platform_friend_button_layout/friend_grid_label_layout/friend_grid_current_game_label": T.LABEL - "platform_friend_button_layout/platform_icon_positioner": T.PANEL - "platform_friend_button_layout/platform_icon_positioner/platform_icon": T.PANEL - "platform_friend_button_layout/online_indication_positioner": T.PANEL - "platform_friend_button_layout/online_indication_positioner/indicator_images": T.PANEL - linked_friend_button_layout: T.STACK_PANEL - "linked_friend_button_layout/spacer01": T.PANEL - "linked_friend_button_layout/platform_icon_positioner": T.PANEL - "linked_friend_button_layout/platform_icon_positioner/platform_icon": T.PANEL - "linked_friend_button_layout/spacer02": T.PANEL - "linked_friend_button_layout/platform_profile_pictures": T.STACK_PANEL - "linked_friend_button_layout/platform_profile_pictures/spacer_01": T.PANEL - "linked_friend_button_layout/platform_profile_pictures/pp2": T.PANEL - "linked_friend_button_layout/platform_profile_pictures/account_link": T.STACK_PANEL - "linked_friend_button_layout/platform_profile_pictures/pp1": T.PANEL - "linked_friend_button_layout/platform_profile_pictures/spacer_03": T.PANEL - "linked_friend_button_layout/spacer03": T.PANEL - "linked_friend_button_layout/platform_profile_names": T.STACK_PANEL - "linked_friend_button_layout/platform_profile_names/spacer_01": T.PANEL - "linked_friend_button_layout/platform_profile_names/friend_grid_third_party_tag": T.LABEL - "linked_friend_button_layout/platform_profile_names/spacer_02": T.PANEL - "linked_friend_button_layout/platform_profile_names/friend_grid_xbl_gamertag": T.LABEL - "linked_friend_button_layout/platform_profile_names/friend_grid_current_game_label": T.LABEL - "linked_friend_button_layout/online_indication_positioner": T.PANEL - "linked_friend_button_layout/online_indication_positioner/indicator_images": T.PANEL - template_msa_friend_button_layout: T.PANEL - "template_msa_friend_button_layout/friend_background": T.IMAGE - "template_msa_friend_button_layout/friend_button_layout": T.STACK_PANEL - "template_msa_friend_button_layout/unchecked": T.UNKNOWN - template_platform_friend_button_layout: T.PANEL - "template_platform_friend_button_layout/friend_background": T.IMAGE - "template_platform_friend_button_layout/friend_button_layout": T.STACK_PANEL - "template_platform_friend_button_layout/unchecked": T.UNKNOWN - template_linked_friend_button_layout: T.PANEL - "template_linked_friend_button_layout/friend_background": T.IMAGE - "template_linked_friend_button_layout/horizontal_spacer_panel": T.STACK_PANEL - "template_linked_friend_button_layout/horizontal_spacer_panel/unchecked_locked": T.UNKNOWN - "template_linked_friend_button_layout/horizontal_spacer_panel/friend_button_layout": T.STACK_PANEL - msa_friend_button: T.TOGGLE - "msa_friend_button/checked": T.PANEL - "msa_friend_button/unchecked": T.PANEL - "msa_friend_button/checked_hover": T.PANEL - "msa_friend_button/unchecked_hover": T.PANEL - "msa_friend_button/checked_locked": T.PANEL - "msa_friend_button/unchecked_locked": T.PANEL - "msa_friend_button/checked_locked_hover": T.PANEL - "msa_friend_button/unchecked_locked_hover": T.PANEL - platform_friend_button: T.TOGGLE - "platform_friend_button/checked": T.PANEL - "platform_friend_button/unchecked": T.PANEL - "platform_friend_button/checked_hover": T.PANEL - "platform_friend_button/unchecked_hover": T.PANEL - "platform_friend_button/checked_locked": T.PANEL - "platform_friend_button/unchecked_locked": T.PANEL - "platform_friend_button/checked_locked_hover": T.PANEL - "platform_friend_button/unchecked_locked_hover": T.PANEL - linked_friend_button: T.TOGGLE - "linked_friend_button/checked": T.PANEL - "linked_friend_button/unchecked": T.PANEL - "linked_friend_button/checked_hover": T.PANEL - "linked_friend_button/unchecked_hover": T.PANEL - "linked_friend_button/checked_locked": T.PANEL - "linked_friend_button/unchecked_locked": T.PANEL - "linked_friend_button/checked_locked_hover": T.PANEL - "linked_friend_button/unchecked_locked_hover": T.PANEL - msa_friend_grid_item_template: T.STACK_PANEL - "msa_friend_grid_item_template/friend_button_Panel": T.PANEL - "msa_friend_grid_item_template/friend_button_Panel/gamerpic_panel_positioner": T.PANEL - "msa_friend_grid_item_template/friend_button_Panel/gamerpic_panel_positioner/pp": T.PANEL - "msa_friend_grid_item_template/friend_button_Panel/friend_button": T.TOGGLE - "msa_friend_grid_item_template/profile_button_pannel": T.PANEL - "msa_friend_grid_item_template/profile_button_pannel/view_profile_button": T.BUTTON - "msa_friend_grid_item_template/spacer_03": T.PANEL - platform_friend_grid_item_template: T.PANEL - "platform_friend_grid_item_template/friend_button": T.TOGGLE - friend_linked_account_grid_item_template: T.PANEL - "friend_linked_account_grid_item_template/friend_button": T.TOGGLE - online_xbox_live_friend_grid_item: T.STACK_PANEL - offline_xbox_live_friend_grid_item: T.STACK_PANEL - online_linked_account_friend_grid_item: T.PANEL - offline_linked_account_friend_grid_item: T.PANEL - online_platform_friend_grid_item: T.PANEL - offline_platform_friend_grid_item: T.PANEL - online_xbox_live_friend_list_grid: T.GRID - offline_xbox_live_friend_list_grid: T.GRID - online_platform_friend_list_grid: T.GRID - offline_platform_friend_list_grid: T.GRID - online_linked_account_friend_list_grid: T.GRID - offline_linked_account_friend_list_grid: T.GRID - friends_pagination_controls: T.STACK_PANEL - "friends_pagination_controls/previous_button": T.BUTTON - "friends_pagination_controls/center_panel": T.PANEL - "friends_pagination_controls/center_panel/page_counter": T.LABEL - "friends_pagination_controls/next_button": T.BUTTON - friends_category: T.STACK_PANEL - "friends_category/friends_grid": T.UNKNOWN - "friends_category/pagination_stack_panel": T.STACK_PANEL - "friends_category/pagination_stack_panel/padding_1": T.PANEL - "friends_category/pagination_stack_panel/pagination_controls": T.STACK_PANEL - "friends_category/pagination_stack_panel/padding_2": T.PANEL - "friends_category/pagination_stack_panel/divider": T.PANEL - "friends_category/padding": T.PANEL - frame_label: T.LABEL - friend_panel: T.PANEL - scrolling_content_stack: T.STACK_PANEL - "scrolling_content_stack/message": T.PANEL - "scrolling_content_stack/message/frame_label": T.LABEL - "scrolling_content_stack/online_platform": T.PANEL - "scrolling_content_stack/online_platform/frame_label": T.LABEL - "scrolling_content_stack/vertical_padding_0": T.PANEL - "scrolling_content_stack/online_platform_friend_list_category": T.STACK_PANEL - "scrolling_content_stack/crossplatform_disabled_panel": T.IMAGE - "scrolling_content_stack/crossplatform_disabled_panel/disable_text": T.LABEL - "scrolling_content_stack/crossplatform_disable_spacer": T.PANEL - "scrolling_content_stack/online_cross_platform": T.PANEL - "scrolling_content_stack/online_cross_platform/frame_label": T.LABEL - "scrolling_content_stack/vertical_padding_1": T.PANEL - "scrolling_content_stack/online_linked_account_friend_list_category": T.STACK_PANEL - "scrolling_content_stack/online_xbox_live_friend_list_category": T.STACK_PANEL - "scrolling_content_stack/offline_platform": T.PANEL - "scrolling_content_stack/offline_platform/frame_label": T.LABEL - "scrolling_content_stack/vertical_padding_2": T.PANEL - "scrolling_content_stack/offline_platform_friend_list_category": T.STACK_PANEL - "scrolling_content_stack/no_platform_friends": T.PANEL - "scrolling_content_stack/no_platform_friends/no_friends_tts_wrapper": T.PANEL - "scrolling_content_stack/offline_cross_platform": T.PANEL - "scrolling_content_stack/offline_cross_platform/frame_label": T.LABEL - "scrolling_content_stack/vertical_padding_3": T.PANEL - "scrolling_content_stack/offline_linked_account_friend_list_category": T.STACK_PANEL - "scrolling_content_stack/offline_xbox_live_friend_list_category": T.STACK_PANEL - "scrolling_content_stack/no_xbox_live_friends": T.PANEL - "scrolling_content_stack/no_xbox_live_friends/no_friends_tts_wrapper": T.PANEL - progress_bar_and_scrolling_content_panel: T.PANEL - "progress_bar_and_scrolling_content_panel/progress_loading_bars": T.IMAGE - "progress_bar_and_scrolling_content_panel/invite_scrolling_area": T.STACK_PANEL - no_xbox_live_friends_frame_label: T.LABEL - no_platform_friends_frame_label: T.LABEL - horizontal_invite_panel: T.PANEL - vertical_invite_panel: T.PANEL - scrolling_area: T.PANEL - invite_button_content: T.PANEL - "invite_button_content/gameplay_helper": T.UNKNOWN - "invite_button_content/button_label": T.LABEL - invite_button_content_hover: T.PANEL - invite_button_content_pressed: T.PANEL - invite_button_content_locked: T.PANEL - add_friend_button: T.BUTTON - profile_button_content: T.PANEL - "profile_button_content/button_label": T.LABEL - profile_button_content_hover: T.PANEL - profile_button_content_pressed: T.PANEL - profile_button_content_locked: T.PANEL - add_member_button: T.BUTTON - send_button: T.BUTTON - profile_button: T.BUTTON - horizontal_button_stack_panel: T.STACK_PANEL - "horizontal_button_stack_panel/add_friend_button": T.BUTTON - "horizontal_button_stack_panel/add_member_button": T.BUTTON - "horizontal_button_stack_panel/padding": T.PANEL - "horizontal_button_stack_panel/send_button": T.BUTTON - vertical_buttons_top_panel: T.PANEL - "vertical_buttons_top_panel/add_friend_button": T.BUTTON - "vertical_buttons_top_panel/add_member_button": T.BUTTON - vertical_buttons_bottom_panel: T.PANEL - "vertical_buttons_bottom_panel/send_button": T.BUTTON - gamepad_helpers: T.PANEL - "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL - invite_screen: T.SCREEN - invite_screen_content: T.PANEL - "invite_screen_content/gamepad_helpers": T.PANEL - "invite_screen_content/invite_panel": T.UNKNOWN + "black_border": T.IMAGE, + "black_border_hover": T.IMAGE, + "platform_icon": T.IMAGE, + "grey_borderless_locked": T.IMAGE, + "checked_locked_image": T.IMAGE, + "unchecked_locked_image": T.IMAGE, + "left_arrow_image": T.IMAGE, + "right_arrow_image": T.IMAGE, + "account_link_image": T.IMAGE, + "panel_text": T.LABEL, + "loading_friends": T.LABEL, + "account_link_icon": T.STACK_PANEL, + "account_link_icon/space_01": T.PANEL, + "account_link_icon/account_link_image": T.IMAGE, + "account_link_icon/space_03": T.PANEL, + "gamerpic": T.CUSTOM, + "third_party_profile_pic": T.IMAGE, + "gamerpic_panel": T.PANEL, + "gamerpic_panel/black_border": T.IMAGE, + "gamerpic_panel/gamerpic": T.CUSTOM, + "gamerpic_panel/online_indication_positioner": T.PANEL, + "gamerpic_panel/online_indication_positioner/indicator_images": T.PANEL, + "third_party_profile_pic_panel": T.PANEL, + "third_party_profile_pic_panel/black_border": T.IMAGE, + "third_party_profile_pic_panel/third_party_profile_pic": T.IMAGE, + "platform_icon_panel": T.PANEL, + "platform_icon_panel/platform_icon": T.IMAGE, + "status_image": T.IMAGE, + "online_image": T.IMAGE, + "offline_image": T.IMAGE, + "online_indicator": T.PANEL, + "online_indicator/online_image": T.IMAGE, + "checkbox_panel": T.PANEL, + "checked_panel": T.PANEL, + "checked_panel/checked_image": T.IMAGE, + "unchecked_panel": T.PANEL, + "unchecked_panel/unchecked_image": T.IMAGE, + "checked_locked_panel": T.PANEL, + "checked_locked_panel/checked_image": T.IMAGE, + "unchecked_locked_panel": T.PANEL, + "unchecked_locked_panel/unchecked_image": T.IMAGE, + "checked_hover_panel": T.PANEL, + "checked_hover_panel/checked_hover_image": T.IMAGE, + "unchecked_hover_panel": T.PANEL, + "unchecked_hover_panel/unchecked_hover_image": T.IMAGE, + "friend_label": T.LABEL, + "friend_grid_xbl_gamertag": T.LABEL, + "friend_grid_current_game_label": T.LABEL, + "friend_grid_third_party_tag": T.LABEL, + "friend_background": T.IMAGE, + "friend_background_hover": T.IMAGE, + "friend_background_borderless": T.IMAGE, + "hover_friend_button": T.PANEL, + "hover_friend_button/friend_button_layout": T.UNKNOWN, + "hover_friend_button/hover_text": T.CUSTOM, + "linked_hover_friend_button": T.PANEL, + "linked_hover_friend_button/hover_text": T.CUSTOM, + "msa_friend_button_layout": T.STACK_PANEL, + "msa_friend_button_layout/spacer01": T.PANEL, + "msa_friend_button_layout/platform_icon_spacer": T.PANEL, + "msa_friend_button_layout/spacer_02": T.PANEL, + "msa_friend_button_layout/friend_grid_label_layout": T.STACK_PANEL, + "msa_friend_button_layout/friend_grid_label_layout/spacer_01": T.PANEL, + "msa_friend_button_layout/friend_grid_label_layout/friend_grid_xbl_gamertag": T.LABEL, + "msa_friend_button_layout/friend_grid_label_layout/friend_grid_current_game_label": T.LABEL, + "platform_friend_button_layout": T.STACK_PANEL, + "platform_friend_button_layout/spacer01": T.PANEL, + "platform_friend_button_layout/platform_icon_spacer": T.PANEL, + "platform_friend_button_layout/third_party_pic_panel_positioner": T.PANEL, + "platform_friend_button_layout/third_party_pic_panel_positioner/pp": T.PANEL, + "platform_friend_button_layout/spacer_02": T.PANEL, + "platform_friend_button_layout/friend_grid_label_layout": T.STACK_PANEL, + "platform_friend_button_layout/friend_grid_label_layout/spacer_01": T.PANEL, + "platform_friend_button_layout/friend_grid_label_layout/friend_grid_third_party_tag": T.LABEL, + "platform_friend_button_layout/friend_grid_label_layout/friend_grid_current_game_label": T.LABEL, + "platform_friend_button_layout/platform_icon_positioner": T.PANEL, + "platform_friend_button_layout/platform_icon_positioner/platform_icon": T.PANEL, + "platform_friend_button_layout/online_indication_positioner": T.PANEL, + "platform_friend_button_layout/online_indication_positioner/indicator_images": T.PANEL, + "linked_friend_button_layout": T.STACK_PANEL, + "linked_friend_button_layout/spacer01": T.PANEL, + "linked_friend_button_layout/platform_icon_positioner": T.PANEL, + "linked_friend_button_layout/platform_icon_positioner/platform_icon": T.PANEL, + "linked_friend_button_layout/spacer02": T.PANEL, + "linked_friend_button_layout/platform_profile_pictures": T.STACK_PANEL, + "linked_friend_button_layout/platform_profile_pictures/spacer_01": T.PANEL, + "linked_friend_button_layout/platform_profile_pictures/pp2": T.PANEL, + "linked_friend_button_layout/platform_profile_pictures/account_link": T.STACK_PANEL, + "linked_friend_button_layout/platform_profile_pictures/pp1": T.PANEL, + "linked_friend_button_layout/platform_profile_pictures/spacer_03": T.PANEL, + "linked_friend_button_layout/spacer03": T.PANEL, + "linked_friend_button_layout/platform_profile_names": T.STACK_PANEL, + "linked_friend_button_layout/platform_profile_names/spacer_01": T.PANEL, + "linked_friend_button_layout/platform_profile_names/friend_grid_third_party_tag": T.LABEL, + "linked_friend_button_layout/platform_profile_names/spacer_02": T.PANEL, + "linked_friend_button_layout/platform_profile_names/friend_grid_xbl_gamertag": T.LABEL, + "linked_friend_button_layout/platform_profile_names/friend_grid_current_game_label": T.LABEL, + "linked_friend_button_layout/online_indication_positioner": T.PANEL, + "linked_friend_button_layout/online_indication_positioner/indicator_images": T.PANEL, + "template_msa_friend_button_layout": T.PANEL, + "template_msa_friend_button_layout/friend_background": T.IMAGE, + "template_msa_friend_button_layout/friend_button_layout": T.STACK_PANEL, + "template_msa_friend_button_layout/unchecked": T.UNKNOWN, + "template_platform_friend_button_layout": T.PANEL, + "template_platform_friend_button_layout/friend_background": T.IMAGE, + "template_platform_friend_button_layout/friend_button_layout": T.STACK_PANEL, + "template_platform_friend_button_layout/unchecked": T.UNKNOWN, + "template_linked_friend_button_layout": T.PANEL, + "template_linked_friend_button_layout/friend_background": T.IMAGE, + "template_linked_friend_button_layout/horizontal_spacer_panel": T.STACK_PANEL, + "template_linked_friend_button_layout/horizontal_spacer_panel/unchecked_locked": T.UNKNOWN, + "template_linked_friend_button_layout/horizontal_spacer_panel/friend_button_layout": T.STACK_PANEL, + "msa_friend_button": T.TOGGLE, + "msa_friend_button/checked": T.PANEL, + "msa_friend_button/unchecked": T.PANEL, + "msa_friend_button/checked_hover": T.PANEL, + "msa_friend_button/unchecked_hover": T.PANEL, + "msa_friend_button/checked_locked": T.PANEL, + "msa_friend_button/unchecked_locked": T.PANEL, + "msa_friend_button/checked_locked_hover": T.PANEL, + "msa_friend_button/unchecked_locked_hover": T.PANEL, + "platform_friend_button": T.TOGGLE, + "platform_friend_button/checked": T.PANEL, + "platform_friend_button/unchecked": T.PANEL, + "platform_friend_button/checked_hover": T.PANEL, + "platform_friend_button/unchecked_hover": T.PANEL, + "platform_friend_button/checked_locked": T.PANEL, + "platform_friend_button/unchecked_locked": T.PANEL, + "platform_friend_button/checked_locked_hover": T.PANEL, + "platform_friend_button/unchecked_locked_hover": T.PANEL, + "linked_friend_button": T.TOGGLE, + "linked_friend_button/checked": T.PANEL, + "linked_friend_button/unchecked": T.PANEL, + "linked_friend_button/checked_hover": T.PANEL, + "linked_friend_button/unchecked_hover": T.PANEL, + "linked_friend_button/checked_locked": T.PANEL, + "linked_friend_button/unchecked_locked": T.PANEL, + "linked_friend_button/checked_locked_hover": T.PANEL, + "linked_friend_button/unchecked_locked_hover": T.PANEL, + "msa_friend_grid_item_template": T.STACK_PANEL, + "msa_friend_grid_item_template/friend_button_Panel": T.PANEL, + "msa_friend_grid_item_template/friend_button_Panel/gamerpic_panel_positioner": T.PANEL, + "msa_friend_grid_item_template/friend_button_Panel/gamerpic_panel_positioner/pp": T.PANEL, + "msa_friend_grid_item_template/friend_button_Panel/friend_button": T.TOGGLE, + "msa_friend_grid_item_template/profile_button_pannel": T.PANEL, + "msa_friend_grid_item_template/profile_button_pannel/view_profile_button": T.BUTTON, + "msa_friend_grid_item_template/spacer_03": T.PANEL, + "platform_friend_grid_item_template": T.PANEL, + "platform_friend_grid_item_template/friend_button": T.TOGGLE, + "friend_linked_account_grid_item_template": T.PANEL, + "friend_linked_account_grid_item_template/friend_button": T.TOGGLE, + "online_xbox_live_friend_grid_item": T.STACK_PANEL, + "offline_xbox_live_friend_grid_item": T.STACK_PANEL, + "online_linked_account_friend_grid_item": T.PANEL, + "offline_linked_account_friend_grid_item": T.PANEL, + "online_platform_friend_grid_item": T.PANEL, + "offline_platform_friend_grid_item": T.PANEL, + "online_xbox_live_friend_list_grid": T.GRID, + "offline_xbox_live_friend_list_grid": T.GRID, + "online_platform_friend_list_grid": T.GRID, + "offline_platform_friend_list_grid": T.GRID, + "online_linked_account_friend_list_grid": T.GRID, + "offline_linked_account_friend_list_grid": T.GRID, + "friends_pagination_controls": T.STACK_PANEL, + "friends_pagination_controls/previous_button": T.BUTTON, + "friends_pagination_controls/center_panel": T.PANEL, + "friends_pagination_controls/center_panel/page_counter": T.LABEL, + "friends_pagination_controls/next_button": T.BUTTON, + "friends_category": T.STACK_PANEL, + "friends_category/friends_grid": T.UNKNOWN, + "friends_category/pagination_stack_panel": T.STACK_PANEL, + "friends_category/pagination_stack_panel/padding_1": T.PANEL, + "friends_category/pagination_stack_panel/pagination_controls": T.STACK_PANEL, + "friends_category/pagination_stack_panel/padding_2": T.PANEL, + "friends_category/pagination_stack_panel/divider": T.PANEL, + "friends_category/padding": T.PANEL, + "frame_label": T.LABEL, + "friend_panel": T.PANEL, + "scrolling_content_stack": T.STACK_PANEL, + "scrolling_content_stack/message": T.PANEL, + "scrolling_content_stack/message/frame_label": T.LABEL, + "scrolling_content_stack/online_platform": T.PANEL, + "scrolling_content_stack/online_platform/frame_label": T.LABEL, + "scrolling_content_stack/vertical_padding_0": T.PANEL, + "scrolling_content_stack/online_platform_friend_list_category": T.STACK_PANEL, + "scrolling_content_stack/crossplatform_disabled_panel": T.IMAGE, + "scrolling_content_stack/crossplatform_disabled_panel/disable_text": T.LABEL, + "scrolling_content_stack/crossplatform_disable_spacer": T.PANEL, + "scrolling_content_stack/online_cross_platform": T.PANEL, + "scrolling_content_stack/online_cross_platform/frame_label": T.LABEL, + "scrolling_content_stack/vertical_padding_1": T.PANEL, + "scrolling_content_stack/online_linked_account_friend_list_category": T.STACK_PANEL, + "scrolling_content_stack/online_xbox_live_friend_list_category": T.STACK_PANEL, + "scrolling_content_stack/offline_platform": T.PANEL, + "scrolling_content_stack/offline_platform/frame_label": T.LABEL, + "scrolling_content_stack/vertical_padding_2": T.PANEL, + "scrolling_content_stack/offline_platform_friend_list_category": T.STACK_PANEL, + "scrolling_content_stack/no_platform_friends": T.PANEL, + "scrolling_content_stack/no_platform_friends/no_friends_tts_wrapper": T.PANEL, + "scrolling_content_stack/offline_cross_platform": T.PANEL, + "scrolling_content_stack/offline_cross_platform/frame_label": T.LABEL, + "scrolling_content_stack/vertical_padding_3": T.PANEL, + "scrolling_content_stack/offline_linked_account_friend_list_category": T.STACK_PANEL, + "scrolling_content_stack/offline_xbox_live_friend_list_category": T.STACK_PANEL, + "scrolling_content_stack/no_xbox_live_friends": T.PANEL, + "scrolling_content_stack/no_xbox_live_friends/no_friends_tts_wrapper": T.PANEL, + "progress_bar_and_scrolling_content_panel": T.PANEL, + "progress_bar_and_scrolling_content_panel/progress_loading_bars": T.IMAGE, + "progress_bar_and_scrolling_content_panel/invite_scrolling_area": T.STACK_PANEL, + "no_xbox_live_friends_frame_label": T.LABEL, + "no_platform_friends_frame_label": T.LABEL, + "horizontal_invite_panel": T.PANEL, + "vertical_invite_panel": T.PANEL, + "scrolling_area": T.PANEL, + "invite_button_content": T.PANEL, + "invite_button_content/gameplay_helper": T.UNKNOWN, + "invite_button_content/button_label": T.LABEL, + "invite_button_content_hover": T.PANEL, + "invite_button_content_pressed": T.PANEL, + "invite_button_content_locked": T.PANEL, + "add_friend_button": T.BUTTON, + "profile_button_content": T.PANEL, + "profile_button_content/button_label": T.LABEL, + "profile_button_content_hover": T.PANEL, + "profile_button_content_pressed": T.PANEL, + "profile_button_content_locked": T.PANEL, + "add_member_button": T.BUTTON, + "send_button": T.BUTTON, + "profile_button": T.BUTTON, + "horizontal_button_stack_panel": T.STACK_PANEL, + "horizontal_button_stack_panel/add_friend_button": T.BUTTON, + "horizontal_button_stack_panel/add_member_button": T.BUTTON, + "horizontal_button_stack_panel/padding": T.PANEL, + "horizontal_button_stack_panel/send_button": T.BUTTON, + "vertical_buttons_top_panel": T.PANEL, + "vertical_buttons_top_panel/add_friend_button": T.BUTTON, + "vertical_buttons_top_panel/add_member_button": T.BUTTON, + "vertical_buttons_bottom_panel": T.PANEL, + "vertical_buttons_bottom_panel/send_button": T.BUTTON, + "gamepad_helpers": T.PANEL, + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL, + "invite_screen": T.SCREEN, + "invite_screen_content": T.PANEL, + "invite_screen_content/gamepad_helpers": T.PANEL, + "invite_screen_content/invite_panel": T.UNKNOWN, } export type JigsawEditorType = { - horizontal_buffer: T.PANEL - vertical_buffer: T.PANEL - common_text_label: T.LABEL - text_edit_box: T.EDIT_BOX - help_icon: T.IMAGE - toggle_with_label: T.STACK_PANEL - "toggle_with_label/toggle": T.TOGGLE - "toggle_with_label/toggle_label_padding": T.PANEL - "toggle_with_label/toggle_label_wrapper": T.PANEL - "toggle_with_label/toggle_label_wrapper/toggle_label": T.LABEL - "toggle_with_label/toggle_label_wrapper/toggle_label_disabled": T.LABEL - data_item_title_and_edit: T.STACK_PANEL - "data_item_title_and_edit/data_title": T.LABEL - "data_item_title_and_edit/data_text_edit": T.EDIT_BOX - data_item_title_and_edit_fill: T.STACK_PANEL - data_item_title_and_toggle: T.STACK_PANEL - "data_item_title_and_toggle/data_title": T.LABEL - "data_item_title_and_toggle/toggle": T.STACK_PANEL - exit_buttons: T.STACK_PANEL - "exit_buttons/done_button": T.BUTTON - "exit_buttons/buffer": T.PANEL - "exit_buttons/help_button": T.BUTTON - scrolling_panel_wrapper: T.IMAGE - "scrolling_panel_wrapper/scrolling_panel": T.PANEL - scrolling_panel: T.PANEL - scroll_panel_content: T.STACK_PANEL - "scroll_panel_content/target_pool_title_and_edit": T.STACK_PANEL - "scroll_panel_content/buffer_1": T.PANEL - "scroll_panel_content/name_title_and_edit": T.STACK_PANEL - "scroll_panel_content/buffer_2": T.PANEL - "scroll_panel_content/target_title_and_edit": T.STACK_PANEL - "scroll_panel_content/buffer_3": T.PANEL - "scroll_panel_content/final_block_title_and_edit": T.STACK_PANEL - "scroll_panel_content/buffer_4": T.PANEL - "scroll_panel_content/selection_and_placement_priority": T.STACK_PANEL - "scroll_panel_content/buffer_5": T.PANEL - "scroll_panel_content/joint_type_title_and_toggle": T.STACK_PANEL - "scroll_panel_content/buffer_6": T.PANEL - selection_and_placement_priority: T.STACK_PANEL - "selection_and_placement_priority/selection_priority_title_and_edit": T.STACK_PANEL - "selection_and_placement_priority/buffer_1": T.PANEL - "selection_and_placement_priority/placement_priority_title_and_edit": T.STACK_PANEL - button_panel_wrapper: T.IMAGE - "button_panel_wrapper/exit_buttons": T.STACK_PANEL - jigsaw_editor_panel: T.STACK_PANEL - "jigsaw_editor_panel/scrolling_panel": T.IMAGE - "jigsaw_editor_panel/button_wrapper": T.PANEL - "jigsaw_editor_panel/button_wrapper/buttons": T.IMAGE - jigsaw_editor_content: T.PANEL - "jigsaw_editor_content/background_panel": T.STACK_PANEL - "jigsaw_editor_content/title": T.LABEL - "jigsaw_editor_content/jigsaw_editor_panel": T.STACK_PANEL - jigsaw_editor_screen: T.SCREEN + "horizontal_buffer": T.PANEL, + "vertical_buffer": T.PANEL, + "common_text_label": T.LABEL, + "text_edit_box": T.EDIT_BOX, + "help_icon": T.IMAGE, + "toggle_with_label": T.STACK_PANEL, + "toggle_with_label/toggle": T.TOGGLE, + "toggle_with_label/toggle_label_padding": T.PANEL, + "toggle_with_label/toggle_label_wrapper": T.PANEL, + "toggle_with_label/toggle_label_wrapper/toggle_label": T.LABEL, + "toggle_with_label/toggle_label_wrapper/toggle_label_disabled": T.LABEL, + "data_item_title_and_edit": T.STACK_PANEL, + "data_item_title_and_edit/data_title": T.LABEL, + "data_item_title_and_edit/data_text_edit": T.EDIT_BOX, + "data_item_title_and_edit_fill": T.STACK_PANEL, + "data_item_title_and_toggle": T.STACK_PANEL, + "data_item_title_and_toggle/data_title": T.LABEL, + "data_item_title_and_toggle/toggle": T.STACK_PANEL, + "exit_buttons": T.STACK_PANEL, + "exit_buttons/done_button": T.BUTTON, + "exit_buttons/buffer": T.PANEL, + "exit_buttons/help_button": T.BUTTON, + "scrolling_panel_wrapper": T.IMAGE, + "scrolling_panel_wrapper/scrolling_panel": T.PANEL, + "scrolling_panel": T.PANEL, + "scroll_panel_content": T.STACK_PANEL, + "scroll_panel_content/target_pool_title_and_edit": T.STACK_PANEL, + "scroll_panel_content/buffer_1": T.PANEL, + "scroll_panel_content/name_title_and_edit": T.STACK_PANEL, + "scroll_panel_content/buffer_2": T.PANEL, + "scroll_panel_content/target_title_and_edit": T.STACK_PANEL, + "scroll_panel_content/buffer_3": T.PANEL, + "scroll_panel_content/final_block_title_and_edit": T.STACK_PANEL, + "scroll_panel_content/buffer_4": T.PANEL, + "scroll_panel_content/selection_and_placement_priority": T.STACK_PANEL, + "scroll_panel_content/buffer_5": T.PANEL, + "scroll_panel_content/joint_type_title_and_toggle": T.STACK_PANEL, + "scroll_panel_content/buffer_6": T.PANEL, + "selection_and_placement_priority": T.STACK_PANEL, + "selection_and_placement_priority/selection_priority_title_and_edit": T.STACK_PANEL, + "selection_and_placement_priority/buffer_1": T.PANEL, + "selection_and_placement_priority/placement_priority_title_and_edit": T.STACK_PANEL, + "button_panel_wrapper": T.IMAGE, + "button_panel_wrapper/exit_buttons": T.STACK_PANEL, + "jigsaw_editor_panel": T.STACK_PANEL, + "jigsaw_editor_panel/scrolling_panel": T.IMAGE, + "jigsaw_editor_panel/button_wrapper": T.PANEL, + "jigsaw_editor_panel/button_wrapper/buttons": T.IMAGE, + "jigsaw_editor_content": T.PANEL, + "jigsaw_editor_content/background_panel": T.STACK_PANEL, + "jigsaw_editor_content/title": T.LABEL, + "jigsaw_editor_content/jigsaw_editor_panel": T.STACK_PANEL, + "jigsaw_editor_screen": T.SCREEN, } export type LateJoinType = { - animation_panel: T.PANEL - "animation_panel/stacked_column": T.STACK_PANEL - "animation_panel/stacked_column/waiting_animating_text": T.LABEL - gamepad_helpers: T.STACK_PANEL - "gamepad_helpers/gamepad_helper_b_and_padding": T.PANEL - "gamepad_helpers/gamepad_helper_b_and_padding/gamepad_helper_b": T.STACK_PANEL - late_join_pregame_screen: T.SCREEN - late_join_screen_content: T.PANEL - "late_join_screen_content/animation_panel": T.PANEL - "late_join_screen_content/gamepad_helpers": T.STACK_PANEL + "animation_panel": T.PANEL, + "animation_panel/stacked_column": T.STACK_PANEL, + "animation_panel/stacked_column/waiting_animating_text": T.LABEL, + "gamepad_helpers": T.STACK_PANEL, + "gamepad_helpers/gamepad_helper_b_and_padding": T.PANEL, + "gamepad_helpers/gamepad_helper_b_and_padding/gamepad_helper_b": T.STACK_PANEL, + "late_join_pregame_screen": T.SCREEN, + "late_join_screen_content": T.PANEL, + "late_join_screen_content/animation_panel": T.PANEL, + "late_join_screen_content/gamepad_helpers": T.STACK_PANEL, } export type LibraryModalType = { - modal_button: T.BUTTON - modal_text_content: T.LABEL - modal_ok: T.BUTTON - modal_cancel: T.BUTTON - in_game_prompt: T.PANEL - fetch_error: T.PANEL - content: T.PANEL - "content/fetch": T.PANEL - "content/ingame": T.PANEL - content_wrapper: T.INPUT_PANEL - "content_wrapper/content": T.PANEL - background: T.IMAGE - library_modal_screen: T.SCREEN - text_panel: T.STACK_PANEL - edu_icon: T.IMAGE - continue_button: T.BUTTON - paragraph: T.LABEL - welcome_text_panel: T.STACK_PANEL - "welcome_text_panel/padding_1": T.PANEL - "welcome_text_panel/paragraph_1_wrapper": T.STACK_PANEL - "welcome_text_panel/paragraph_1_wrapper/edu_icon": T.IMAGE - "welcome_text_panel/paragraph_1_wrapper/stack_buffer1": T.PANEL - "welcome_text_panel/paragraph_1_wrapper/paragraph_1_panel": T.PANEL - "welcome_text_panel/paragraph_1_wrapper/paragraph_1_panel/paragraph_1": T.LABEL - "welcome_text_panel/padding_2": T.PANEL - "welcome_text_panel/paragraph_two": T.LABEL - "welcome_text_panel/padding_3": T.PANEL - "welcome_text_panel/paragraph_three": T.LABEL - welcome_scrolling_panel: T.PANEL - welcome_panel_content: T.PANEL - "welcome_panel_content/background_panel": T.PANEL - "welcome_panel_content/welcome_scrolling_panel": T.PANEL - "welcome_panel_content/continue_button": T.BUTTON - welcome_panel: T.INPUT_PANEL - "welcome_panel/welcome": T.PANEL + "modal_button": T.BUTTON, + "modal_text_content": T.LABEL, + "modal_ok": T.BUTTON, + "modal_cancel": T.BUTTON, + "in_game_prompt": T.PANEL, + "fetch_error": T.PANEL, + "content": T.PANEL, + "content/fetch": T.PANEL, + "content/ingame": T.PANEL, + "content_wrapper": T.INPUT_PANEL, + "content_wrapper/content": T.PANEL, + "background": T.IMAGE, + "library_modal_screen": T.SCREEN, + "text_panel": T.STACK_PANEL, + "edu_icon": T.IMAGE, + "continue_button": T.BUTTON, + "paragraph": T.LABEL, + "welcome_text_panel": T.STACK_PANEL, + "welcome_text_panel/padding_1": T.PANEL, + "welcome_text_panel/paragraph_1_wrapper": T.STACK_PANEL, + "welcome_text_panel/paragraph_1_wrapper/edu_icon": T.IMAGE, + "welcome_text_panel/paragraph_1_wrapper/stack_buffer1": T.PANEL, + "welcome_text_panel/paragraph_1_wrapper/paragraph_1_panel": T.PANEL, + "welcome_text_panel/paragraph_1_wrapper/paragraph_1_panel/paragraph_1": T.LABEL, + "welcome_text_panel/padding_2": T.PANEL, + "welcome_text_panel/paragraph_two": T.LABEL, + "welcome_text_panel/padding_3": T.PANEL, + "welcome_text_panel/paragraph_three": T.LABEL, + "welcome_scrolling_panel": T.PANEL, + "welcome_panel_content": T.PANEL, + "welcome_panel_content/background_panel": T.PANEL, + "welcome_panel_content/welcome_scrolling_panel": T.PANEL, + "welcome_panel_content/continue_button": T.BUTTON, + "welcome_panel": T.INPUT_PANEL, + "welcome_panel/welcome": T.PANEL, } export type LocalWorldPickerType = { - local_world_picker_screen: T.SCREEN - local_world_picker_content: T.PANEL - "local_world_picker_content/background": T.PANEL - "local_world_picker_content/panel_label": T.LABEL - "local_world_picker_content/content": T.INPUT_PANEL + "local_world_picker_screen": T.SCREEN, + "local_world_picker_content": T.PANEL, + "local_world_picker_content/background": T.PANEL, + "local_world_picker_content/panel_label": T.LABEL, + "local_world_picker_content/content": T.INPUT_PANEL, } export type LoomType = { - loom_label: T.LABEL - arrow_icon: T.IMAGE - pattern_cell_image: T.IMAGE - container_cell_image: T.IMAGE - banner_outline: T.IMAGE - item_empty_image: T.IMAGE - banner_empty_image: T.IMAGE - dye_empty_image: T.IMAGE - pattern_item_empty_image: T.IMAGE - toolbar_background: T.IMAGE - highlight_slot_panel: T.PANEL - "highlight_slot_panel/highlight": T.IMAGE - "highlight_slot_panel/white_border": T.IMAGE - pattern_slot_button: T.BUTTON - "pattern_slot_button/hover": T.UNKNOWN - banner_pattern: T.CUSTOM - pattern_button: T.INPUT_PANEL - "pattern_button/banner_pattern": T.UNKNOWN - "pattern_button/item_button_ref": T.UNKNOWN - scroll_grid: T.GRID - scroll_grid_panel: T.INPUT_PANEL - "scroll_grid_panel/grid": T.GRID - scroll_panel: T.PANEL - pattern_book_panel: T.INPUT_PANEL - "pattern_book_panel/bg": T.PANEL - "pattern_book_panel/scroll_panel": T.PANEL - result_slot_button: T.BUTTON - input_item_slot: T.INPUT_PANEL - dye_item_slot: T.INPUT_PANEL - material_item_slot: T.INPUT_PANEL - result_item_slot: T.INPUT_PANEL - input_slots_stack_panel: T.STACK_PANEL - "input_slots_stack_panel/input_item_slot": T.INPUT_PANEL - "input_slots_stack_panel/padding_1": T.PANEL - "input_slots_stack_panel/dye_item_slot": T.INPUT_PANEL - "input_slots_stack_panel/padding_2": T.PANEL - "input_slots_stack_panel/material_item_slot": T.INPUT_PANEL - result_banner_renderer: T.CUSTOM - top_half_stack_panel: T.STACK_PANEL - "top_half_stack_panel/input_slots_holder": T.PANEL - "top_half_stack_panel/input_slots_holder/input_slots_stack_panel": T.STACK_PANEL - "top_half_stack_panel/padding_1": T.PANEL - "top_half_stack_panel/arrow_holder": T.PANEL - "top_half_stack_panel/arrow_holder/arrow_icon": T.IMAGE - "top_half_stack_panel/padding_2": T.PANEL - "top_half_stack_panel/result_item_slot_holder": T.PANEL - "top_half_stack_panel/result_item_slot_holder/result_item_slot": T.INPUT_PANEL - "top_half_stack_panel/padding_3": T.PANEL - "top_half_stack_panel/result_banner_outline": T.IMAGE - "top_half_stack_panel/result_banner_outline/result_banner_renderer": T.CUSTOM - top_half_panel: T.PANEL - "top_half_panel/top_half_stack_panel": T.STACK_PANEL - right_panel: T.INPUT_PANEL - "right_panel/common_panel": T.PANEL - "right_panel/loom_screen_inventory": T.PANEL - "right_panel/loom_screen_inventory/loom_label": T.LABEL - "right_panel/loom_screen_inventory/top_half_panel": T.PANEL - "right_panel/loom_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL - "right_panel/loom_screen_inventory/hotbar_grid": T.GRID - help_button: T.BUTTON - toolbar_panel: T.INPUT_PANEL - "toolbar_panel/toolbar_background": T.IMAGE - "toolbar_panel/toolbar_background/toolbar_stack_panel": T.STACK_PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": T.BUTTON - "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": T.BUTTON - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": T.PANEL - toolbar_anchor: T.PANEL - "toolbar_anchor/toolbar_panel": T.INPUT_PANEL - center_fold: T.INPUT_PANEL - "center_fold/center_bg": T.IMAGE - screen_stack_panel: T.STACK_PANEL - "screen_stack_panel/pattern_book_panel": T.INPUT_PANEL - "screen_stack_panel/center_fold": T.INPUT_PANEL - "screen_stack_panel/right_panel": T.INPUT_PANEL - "screen_stack_panel/toolbar_anchor": T.PANEL - loom_panel: T.PANEL - "loom_panel/screen_stack_panel": T.STACK_PANEL - "loom_panel/container_gamepad_helpers": T.STACK_PANEL - "loom_panel/selected_item_details_factory": T.FACTORY - "loom_panel/item_lock_notification_factory": T.FACTORY - "loom_panel/inventory_selected_icon_button": T.BUTTON - "loom_panel/inventory_take_progress_icon_button": T.BUTTON - "loom_panel/flying_item_renderer": T.CUSTOM - loom_screen: T.SCREEN + "loom_label": T.LABEL, + "arrow_icon": T.IMAGE, + "pattern_cell_image": T.IMAGE, + "container_cell_image": T.IMAGE, + "banner_outline": T.IMAGE, + "item_empty_image": T.IMAGE, + "banner_empty_image": T.IMAGE, + "dye_empty_image": T.IMAGE, + "pattern_item_empty_image": T.IMAGE, + "toolbar_background": T.IMAGE, + "highlight_slot_panel": T.PANEL, + "highlight_slot_panel/highlight": T.IMAGE, + "highlight_slot_panel/white_border": T.IMAGE, + "pattern_slot_button": T.BUTTON, + "pattern_slot_button/hover": T.UNKNOWN, + "banner_pattern": T.CUSTOM, + "pattern_button": T.INPUT_PANEL, + "pattern_button/banner_pattern": T.UNKNOWN, + "pattern_button/item_button_ref": T.UNKNOWN, + "scroll_grid": T.GRID, + "scroll_grid_panel": T.INPUT_PANEL, + "scroll_grid_panel/grid": T.GRID, + "scroll_panel": T.PANEL, + "pattern_book_panel": T.INPUT_PANEL, + "pattern_book_panel/bg": T.PANEL, + "pattern_book_panel/scroll_panel": T.PANEL, + "result_slot_button": T.BUTTON, + "input_item_slot": T.INPUT_PANEL, + "dye_item_slot": T.INPUT_PANEL, + "material_item_slot": T.INPUT_PANEL, + "result_item_slot": T.INPUT_PANEL, + "input_slots_stack_panel": T.STACK_PANEL, + "input_slots_stack_panel/input_item_slot": T.INPUT_PANEL, + "input_slots_stack_panel/padding_1": T.PANEL, + "input_slots_stack_panel/dye_item_slot": T.INPUT_PANEL, + "input_slots_stack_panel/padding_2": T.PANEL, + "input_slots_stack_panel/material_item_slot": T.INPUT_PANEL, + "result_banner_renderer": T.CUSTOM, + "top_half_stack_panel": T.STACK_PANEL, + "top_half_stack_panel/input_slots_holder": T.PANEL, + "top_half_stack_panel/input_slots_holder/input_slots_stack_panel": T.STACK_PANEL, + "top_half_stack_panel/padding_1": T.PANEL, + "top_half_stack_panel/arrow_holder": T.PANEL, + "top_half_stack_panel/arrow_holder/arrow_icon": T.IMAGE, + "top_half_stack_panel/padding_2": T.PANEL, + "top_half_stack_panel/result_item_slot_holder": T.PANEL, + "top_half_stack_panel/result_item_slot_holder/result_item_slot": T.INPUT_PANEL, + "top_half_stack_panel/padding_3": T.PANEL, + "top_half_stack_panel/result_banner_outline": T.IMAGE, + "top_half_stack_panel/result_banner_outline/result_banner_renderer": T.CUSTOM, + "top_half_panel": T.PANEL, + "top_half_panel/top_half_stack_panel": T.STACK_PANEL, + "right_panel": T.INPUT_PANEL, + "right_panel/common_panel": T.PANEL, + "right_panel/loom_screen_inventory": T.PANEL, + "right_panel/loom_screen_inventory/loom_label": T.LABEL, + "right_panel/loom_screen_inventory/top_half_panel": T.PANEL, + "right_panel/loom_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL, + "right_panel/loom_screen_inventory/hotbar_grid": T.GRID, + "help_button": T.BUTTON, + "toolbar_panel": T.INPUT_PANEL, + "toolbar_panel/toolbar_background": T.IMAGE, + "toolbar_panel/toolbar_background/toolbar_stack_panel": T.STACK_PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": T.BUTTON, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": T.BUTTON, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": T.PANEL, + "toolbar_anchor": T.PANEL, + "toolbar_anchor/toolbar_panel": T.INPUT_PANEL, + "center_fold": T.INPUT_PANEL, + "center_fold/center_bg": T.IMAGE, + "screen_stack_panel": T.STACK_PANEL, + "screen_stack_panel/pattern_book_panel": T.INPUT_PANEL, + "screen_stack_panel/center_fold": T.INPUT_PANEL, + "screen_stack_panel/right_panel": T.INPUT_PANEL, + "screen_stack_panel/toolbar_anchor": T.PANEL, + "loom_panel": T.PANEL, + "loom_panel/screen_stack_panel": T.STACK_PANEL, + "loom_panel/container_gamepad_helpers": T.STACK_PANEL, + "loom_panel/selected_item_details_factory": T.FACTORY, + "loom_panel/item_lock_notification_factory": T.FACTORY, + "loom_panel/inventory_selected_icon_button": T.BUTTON, + "loom_panel/inventory_take_progress_icon_button": T.BUTTON, + "loom_panel/flying_item_renderer": T.CUSTOM, + "loom_screen": T.SCREEN, } export type LoomPocketType = { - vertical_arrow_icon: T.IMAGE - banner_empty_image: T.IMAGE - dye_empty_image: T.IMAGE - pattern_item_empty_image: T.IMAGE - chest_item_renderer: T.CUSTOM - banner_item_renderer: T.CUSTOM - loom_item_renderer: T.CUSTOM - input_item_slot: T.INPUT_PANEL - dye_item_slot: T.INPUT_PANEL - material_item_slot: T.INPUT_PANEL - result_item_slot: T.INPUT_PANEL - right_panel: T.STACK_PANEL - "right_panel/content": T.INPUT_PANEL - "right_panel/content/bg": T.PANEL - "right_panel/content/loom_content_stack_panel": T.STACK_PANEL - "right_panel/navigation_tabs_holder": T.PANEL - "right_panel/navigation_tabs_holder/right_navigation_tabs": T.STACK_PANEL - right_tab_loom: T.PANEL - right_navigation_tabs: T.STACK_PANEL - "right_navigation_tabs/pocket_tab_close_and_help_button": T.IMAGE - "right_navigation_tabs/fill": T.PANEL - "right_navigation_tabs/right_tab_loom": T.PANEL - input_slots_stack_panel: T.STACK_PANEL - "input_slots_stack_panel/input_item_slot": T.INPUT_PANEL - "input_slots_stack_panel/padding_1": T.PANEL - "input_slots_stack_panel/dye_item_slot": T.INPUT_PANEL - "input_slots_stack_panel/padding_2": T.PANEL - "input_slots_stack_panel/material_item_slot": T.INPUT_PANEL - result_banner_outline: T.IMAGE - "result_banner_outline/result_banner_renderer": T.CUSTOM - loom_content_stack_panel: T.STACK_PANEL - "loom_content_stack_panel/label_holder": T.PANEL - "loom_content_stack_panel/label_holder/loom_label": T.LABEL - "loom_content_stack_panel/padding_1": T.PANEL - "loom_content_stack_panel/input_slots_holder": T.PANEL - "loom_content_stack_panel/input_slots_holder/input_slots_stack_panel": T.STACK_PANEL - "loom_content_stack_panel/padding_2": T.PANEL - "loom_content_stack_panel/banner_pattern_holder": T.PANEL - "loom_content_stack_panel/banner_pattern_holder/result_banner_outline": T.IMAGE - "loom_content_stack_panel/padding_3": T.PANEL - "loom_content_stack_panel/arrow_holder": T.PANEL - "loom_content_stack_panel/arrow_holder/vertical_arrow_icon": T.IMAGE - "loom_content_stack_panel/padding_4": T.PANEL - "loom_content_stack_panel/result_item_slot_holder": T.PANEL - "loom_content_stack_panel/result_item_slot_holder/result_item_slot": T.INPUT_PANEL - "loom_content_stack_panel/padding_5": T.PANEL - inventory_scroll_panel: T.PANEL - pattern_button: T.INPUT_PANEL - banner_pattern: T.CUSTOM - pattern_scroll_panel: T.PANEL - left_panel: T.STACK_PANEL - "left_panel/gamepad_helpers_and_tabs_holder": T.PANEL - "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": T.PANEL - "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": T.PANEL - "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": T.STACK_PANEL - "left_panel/content": T.INPUT_PANEL - "left_panel/content/bg": T.PANEL - "left_panel/content/inventory_scroll_panel": T.PANEL - "left_panel/content/pattern_scroll_panel": T.PANEL - left_tab_patterns: T.PANEL - left_tab_inventory: T.PANEL - left_navigation_tabs: T.STACK_PANEL - "left_navigation_tabs/left_tab_patterns": T.PANEL - "left_navigation_tabs/padding": T.PANEL - "left_navigation_tabs/left_tab_inventory": T.PANEL - pocket_hotbar_and_content_panels: T.STACK_PANEL - loom_panel: T.PANEL - "loom_panel/pocket_hotbar_and_content_panels": T.STACK_PANEL - "loom_panel/container_gamepad_helpers": T.STACK_PANEL - "loom_panel/selected_item_details_factory": T.FACTORY - "loom_panel/item_lock_notification_factory": T.FACTORY - "loom_panel/inventory_selected_icon_button": T.BUTTON - "loom_panel/inventory_take_progress_icon_button": T.BUTTON - "loom_panel/flying_item_renderer": T.CUSTOM + "vertical_arrow_icon": T.IMAGE, + "banner_empty_image": T.IMAGE, + "dye_empty_image": T.IMAGE, + "pattern_item_empty_image": T.IMAGE, + "chest_item_renderer": T.CUSTOM, + "banner_item_renderer": T.CUSTOM, + "loom_item_renderer": T.CUSTOM, + "input_item_slot": T.INPUT_PANEL, + "dye_item_slot": T.INPUT_PANEL, + "material_item_slot": T.INPUT_PANEL, + "result_item_slot": T.INPUT_PANEL, + "right_panel": T.STACK_PANEL, + "right_panel/content": T.INPUT_PANEL, + "right_panel/content/bg": T.PANEL, + "right_panel/content/loom_content_stack_panel": T.STACK_PANEL, + "right_panel/navigation_tabs_holder": T.PANEL, + "right_panel/navigation_tabs_holder/right_navigation_tabs": T.STACK_PANEL, + "right_tab_loom": T.PANEL, + "right_navigation_tabs": T.STACK_PANEL, + "right_navigation_tabs/pocket_tab_close_and_help_button": T.IMAGE, + "right_navigation_tabs/fill": T.PANEL, + "right_navigation_tabs/right_tab_loom": T.PANEL, + "input_slots_stack_panel": T.STACK_PANEL, + "input_slots_stack_panel/input_item_slot": T.INPUT_PANEL, + "input_slots_stack_panel/padding_1": T.PANEL, + "input_slots_stack_panel/dye_item_slot": T.INPUT_PANEL, + "input_slots_stack_panel/padding_2": T.PANEL, + "input_slots_stack_panel/material_item_slot": T.INPUT_PANEL, + "result_banner_outline": T.IMAGE, + "result_banner_outline/result_banner_renderer": T.CUSTOM, + "loom_content_stack_panel": T.STACK_PANEL, + "loom_content_stack_panel/label_holder": T.PANEL, + "loom_content_stack_panel/label_holder/loom_label": T.LABEL, + "loom_content_stack_panel/padding_1": T.PANEL, + "loom_content_stack_panel/input_slots_holder": T.PANEL, + "loom_content_stack_panel/input_slots_holder/input_slots_stack_panel": T.STACK_PANEL, + "loom_content_stack_panel/padding_2": T.PANEL, + "loom_content_stack_panel/banner_pattern_holder": T.PANEL, + "loom_content_stack_panel/banner_pattern_holder/result_banner_outline": T.IMAGE, + "loom_content_stack_panel/padding_3": T.PANEL, + "loom_content_stack_panel/arrow_holder": T.PANEL, + "loom_content_stack_panel/arrow_holder/vertical_arrow_icon": T.IMAGE, + "loom_content_stack_panel/padding_4": T.PANEL, + "loom_content_stack_panel/result_item_slot_holder": T.PANEL, + "loom_content_stack_panel/result_item_slot_holder/result_item_slot": T.INPUT_PANEL, + "loom_content_stack_panel/padding_5": T.PANEL, + "inventory_scroll_panel": T.PANEL, + "pattern_button": T.INPUT_PANEL, + "banner_pattern": T.CUSTOM, + "pattern_scroll_panel": T.PANEL, + "left_panel": T.STACK_PANEL, + "left_panel/gamepad_helpers_and_tabs_holder": T.PANEL, + "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": T.PANEL, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": T.PANEL, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": T.STACK_PANEL, + "left_panel/content": T.INPUT_PANEL, + "left_panel/content/bg": T.PANEL, + "left_panel/content/inventory_scroll_panel": T.PANEL, + "left_panel/content/pattern_scroll_panel": T.PANEL, + "left_tab_patterns": T.PANEL, + "left_tab_inventory": T.PANEL, + "left_navigation_tabs": T.STACK_PANEL, + "left_navigation_tabs/left_tab_patterns": T.PANEL, + "left_navigation_tabs/padding": T.PANEL, + "left_navigation_tabs/left_tab_inventory": T.PANEL, + "pocket_hotbar_and_content_panels": T.STACK_PANEL, + "loom_panel": T.PANEL, + "loom_panel/pocket_hotbar_and_content_panels": T.STACK_PANEL, + "loom_panel/container_gamepad_helpers": T.STACK_PANEL, + "loom_panel/selected_item_details_factory": T.FACTORY, + "loom_panel/item_lock_notification_factory": T.FACTORY, + "loom_panel/inventory_selected_icon_button": T.BUTTON, + "loom_panel/inventory_take_progress_icon_button": T.BUTTON, + "loom_panel/flying_item_renderer": T.CUSTOM, } export type ManageFeedType = { - manage_feed_item_scrolling_panel: T.PANEL - "manage_feed_item_scrolling_panel/manage_feed_item_scrolling_panel_content": T.PANEL - manage_feed_item_scrolling_panel_content: T.PANEL - grid_panel: T.STACK_PANEL - "grid_panel/top_spacing_gap": T.PANEL - "grid_panel/manage_feed_loading_grid_item": T.PANEL - "grid_panel/manage_feed_grid": T.GRID - "grid_panel/spacing_gap2": T.PANEL - "grid_panel/pagination_panel": T.PANEL - pagination_panel: T.PANEL - manage_feed_grid: T.GRID - manage_feed_grid_item: T.PANEL - "manage_feed_grid_item/image_panel_instance": T.PANEL - "manage_feed_grid_item/manage_feed_buttons_panel": T.STACK_PANEL - "manage_feed_grid_item/manage_feed_text_instance": T.LABEL - "manage_feed_grid_item/feed_timesince_instance": T.LABEL - "manage_feed_grid_item/nr_of_reports": T.LABEL - "manage_feed_grid_item/manage_player_pic_panel": T.PANEL - "manage_feed_grid_item/manage_feed_gamertag_instance": T.LABEL - manage_feed_buttons_panel: T.STACK_PANEL - "manage_feed_buttons_panel/ignore_button": T.BUTTON - "manage_feed_buttons_panel/delete_button": T.BUTTON - manage_feed_loading_grid_item: T.PANEL - "manage_feed_loading_grid_item/loading_image_panel": T.PANEL - feed_buttons_panel_loading: T.STACK_PANEL - "feed_buttons_panel_loading/like_button_loading": T.UNKNOWN - "feed_buttons_panel_loading/spacing_gap1": T.PANEL - "feed_buttons_panel_loading/comment_button_loading": T.UNKNOWN - "feed_buttons_panel_loading/spacing_gap2": T.PANEL - "feed_buttons_panel_loading/options_button_loading": T.UNKNOWN - like_button_loading: T.IMAGE - comment_button_loading: T.IMAGE - options_button_loading: T.IMAGE - player_pic_panel_loading: T.PANEL - "player_pic_panel_loading/player_gamer_pic_loading": T.UNKNOWN - player_gamer_pic_loading: T.IMAGE - loading_image_panel: T.PANEL - "loading_image_panel/progress_loading_bars": T.IMAGE - "loading_image_panel/manage_feed_image_loading": T.IMAGE - "loading_image_panel/no_feed_item_content": T.LABEL - manage_feed_image_loading: T.IMAGE - ignore_button: T.BUTTON - ignore_content_panel: T.PANEL - "ignore_content_panel/ignore_label": T.LABEL - delete_button: T.BUTTON - delete_content_panel: T.PANEL - "delete_content_panel/delete_label": T.LABEL - manage_feed_image: T.IMAGE - manage_feed_image_content_panel: T.PANEL - "manage_feed_image_content_panel/manage_feed_image": T.IMAGE - "manage_feed_image_content_panel/textpost_content": T.LABEL - textpost_content: T.LABEL - image_panel: T.PANEL - "image_panel/manage_feed_image_content_panel": T.PANEL - manage_player_pic_panel: T.PANEL - "manage_player_pic_panel/manage_player_gamer_pic": T.CUSTOM - manage_player_gamer_pic: T.CUSTOM - content: T.PANEL - "content/top_bar_gradient": T.CUSTOM - "content/gamepad_helpers": T.STACK_PANEL - "content/return_button": T.BUTTON - "content/reported_items_label": T.LABEL - "content/manage_feed_item_scrolling_panel_instance": T.PANEL - manage_feed_screen: T.SCREEN - manage_feed_screen_content: T.PANEL - "manage_feed_screen_content/transparent_background": T.IMAGE - "manage_feed_screen_content/container": T.PANEL - "manage_feed_screen_content/container/content": T.PANEL + "manage_feed_item_scrolling_panel": T.PANEL, + "manage_feed_item_scrolling_panel/manage_feed_item_scrolling_panel_content": T.PANEL, + "manage_feed_item_scrolling_panel_content": T.PANEL, + "grid_panel": T.STACK_PANEL, + "grid_panel/top_spacing_gap": T.PANEL, + "grid_panel/manage_feed_loading_grid_item": T.PANEL, + "grid_panel/manage_feed_grid": T.GRID, + "grid_panel/spacing_gap2": T.PANEL, + "grid_panel/pagination_panel": T.PANEL, + "pagination_panel": T.PANEL, + "manage_feed_grid": T.GRID, + "manage_feed_grid_item": T.PANEL, + "manage_feed_grid_item/image_panel_instance": T.PANEL, + "manage_feed_grid_item/manage_feed_buttons_panel": T.STACK_PANEL, + "manage_feed_grid_item/manage_feed_text_instance": T.LABEL, + "manage_feed_grid_item/feed_timesince_instance": T.LABEL, + "manage_feed_grid_item/nr_of_reports": T.LABEL, + "manage_feed_grid_item/manage_player_pic_panel": T.PANEL, + "manage_feed_grid_item/manage_feed_gamertag_instance": T.LABEL, + "manage_feed_buttons_panel": T.STACK_PANEL, + "manage_feed_buttons_panel/ignore_button": T.BUTTON, + "manage_feed_buttons_panel/delete_button": T.BUTTON, + "manage_feed_loading_grid_item": T.PANEL, + "manage_feed_loading_grid_item/loading_image_panel": T.PANEL, + "feed_buttons_panel_loading": T.STACK_PANEL, + "feed_buttons_panel_loading/like_button_loading": T.UNKNOWN, + "feed_buttons_panel_loading/spacing_gap1": T.PANEL, + "feed_buttons_panel_loading/comment_button_loading": T.UNKNOWN, + "feed_buttons_panel_loading/spacing_gap2": T.PANEL, + "feed_buttons_panel_loading/options_button_loading": T.UNKNOWN, + "like_button_loading": T.IMAGE, + "comment_button_loading": T.IMAGE, + "options_button_loading": T.IMAGE, + "player_pic_panel_loading": T.PANEL, + "player_pic_panel_loading/player_gamer_pic_loading": T.UNKNOWN, + "player_gamer_pic_loading": T.IMAGE, + "loading_image_panel": T.PANEL, + "loading_image_panel/progress_loading_bars": T.IMAGE, + "loading_image_panel/manage_feed_image_loading": T.IMAGE, + "loading_image_panel/no_feed_item_content": T.LABEL, + "manage_feed_image_loading": T.IMAGE, + "ignore_button": T.BUTTON, + "ignore_content_panel": T.PANEL, + "ignore_content_panel/ignore_label": T.LABEL, + "delete_button": T.BUTTON, + "delete_content_panel": T.PANEL, + "delete_content_panel/delete_label": T.LABEL, + "manage_feed_image": T.IMAGE, + "manage_feed_image_content_panel": T.PANEL, + "manage_feed_image_content_panel/manage_feed_image": T.IMAGE, + "manage_feed_image_content_panel/textpost_content": T.LABEL, + "textpost_content": T.LABEL, + "image_panel": T.PANEL, + "image_panel/manage_feed_image_content_panel": T.PANEL, + "manage_player_pic_panel": T.PANEL, + "manage_player_pic_panel/manage_player_gamer_pic": T.CUSTOM, + "manage_player_gamer_pic": T.CUSTOM, + "content": T.PANEL, + "content/top_bar_gradient": T.CUSTOM, + "content/gamepad_helpers": T.STACK_PANEL, + "content/return_button": T.BUTTON, + "content/reported_items_label": T.LABEL, + "content/manage_feed_item_scrolling_panel_instance": T.PANEL, + "manage_feed_screen": T.SCREEN, + "manage_feed_screen_content": T.PANEL, + "manage_feed_screen_content/transparent_background": T.IMAGE, + "manage_feed_screen_content/container": T.PANEL, + "manage_feed_screen_content/container/content": T.PANEL, } export type ManifestValidationType = { - clipboard_icon: T.IMAGE - clipboard_icon_wrapper: T.PANEL - "clipboard_icon_wrapper/icon": T.IMAGE - trash_icon: T.IMAGE - trash_icon_wrapper: T.PANEL - "trash_icon_wrapper/icon": T.IMAGE - "trash_icon_wrapper/progress_loading_bars": T.IMAGE - refresh_icon: T.IMAGE - refresh_icon_wrapper: T.PANEL - "refresh_icon_wrapper/icon": T.IMAGE - "refresh_icon_wrapper/progress_loading_bars": T.IMAGE - section_divider: T.PANEL - "section_divider/divider_image": T.IMAGE - text_label: T.LABEL - icon_image: T.IMAGE - progress_loading_bars: T.IMAGE - background: T.IMAGE - black_background_fill: T.IMAGE - error_pack_secondary_layout: T.PANEL - "error_pack_secondary_layout/black": T.IMAGE - "error_pack_secondary_layout/black/stack_panel": T.PANEL - "error_pack_secondary_layout/black/stack_panel/stack_panel": T.STACK_PANEL - "error_pack_secondary_layout/black/stack_panel/stack_panel/icon_background": T.IMAGE - "error_pack_secondary_layout/black/stack_panel/stack_panel/icon_background/icon": T.IMAGE - "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info": T.PANEL - "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top": T.STACK_PANEL - "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/title": T.LABEL - "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/padding": T.PANEL - "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/pack_size": T.LABEL - "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom": T.STACK_PANEL - "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom/description": T.LABEL - "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom/padding": T.PANEL - "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel": T.STACK_PANEL - "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/top_pad": T.PANEL - "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/refresh": T.PANEL - "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/refresh/button": T.BUTTON - "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/pad": T.PANEL - "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/delete": T.PANEL - "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/delete/button": T.BUTTON - "error_pack_secondary_layout/black/stack_panel/stack_panel/pad": T.PANEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel": T.STACK_PANEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_0": T.PANEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel": T.STACK_PANEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/title_text": T.LABEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/space": T.PANEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/offset": T.PANEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/offset/title": T.LABEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/pad_0": T.PANEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_1": T.PANEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel": T.STACK_PANEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/version_text": T.LABEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/space": T.PANEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/offset": T.PANEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/offset/version": T.LABEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/pad_1": T.PANEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_2": T.PANEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel": T.STACK_PANEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/path_text": T.LABEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/space": T.PANEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/offset": T.PANEL - "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/offset/description": T.LABEL - error_pack_content_layout: T.PANEL - "error_pack_content_layout/black": T.IMAGE - "error_pack_content_layout/black/error_panel": T.STACK_PANEL - "error_pack_content_layout/black/error_panel/error_header_panel": T.PANEL - "error_pack_content_layout/black/error_panel/error_header_panel/error_type_panel": T.LABEL - "error_pack_content_layout/black/error_panel/error_header_panel/button": T.BUTTON - "error_pack_content_layout/black/error_panel/padding_0": T.PANEL - "error_pack_content_layout/black/error_panel/error_text_panel": T.STACK_PANEL - "error_pack_content_layout/black/error_panel/error_text_panel/error_text": T.LABEL - "error_pack_content_layout/black/error_panel/error_text_panel/space": T.PANEL - "error_pack_content_layout/black/error_panel/error_text_panel/offset": T.PANEL - "error_pack_content_layout/black/error_panel/error_text_panel/offset/error_label": T.LABEL - delete_button: T.BUTTON - delete_text_button: T.BUTTON - clipboard_button: T.BUTTON - refresh_button: T.BUTTON - refresh_text_button: T.BUTTON - pack_secondary_info: T.PANEL - "pack_secondary_info/layout": T.PANEL - error_content_grid: T.STACK_PANEL - pack_error_item: T.STACK_PANEL - "pack_error_item/secondary": T.PANEL - "pack_error_item/error_header": T.PANEL - "pack_error_item/error_header/error_text": T.LABEL - "pack_error_item/error": T.STACK_PANEL - pack_error_group: T.STACK_PANEL - "pack_error_group/top_padding": T.PANEL - "pack_error_group/errors": T.STACK_PANEL - "pack_error_group/padding": T.PANEL - common_scrolling_panel: T.PANEL - common_content: T.INPUT_PANEL - scrolling_offsets: T.PANEL - manifest_validation_scroll_content: T.INPUT_PANEL - "manifest_validation_scroll_content/scrolling_panel": T.PANEL - common_scroll_panel: T.PANEL - manifest_validation_scroll_panel: T.PANEL - "manifest_validation_scroll_panel/pack_error_group": T.STACK_PANEL - manifest_validation_screen: T.SCREEN - manifest_validation_screen_content: T.PANEL - "manifest_validation_screen_content/background": T.PANEL + "clipboard_icon": T.IMAGE, + "clipboard_icon_wrapper": T.PANEL, + "clipboard_icon_wrapper/icon": T.IMAGE, + "trash_icon": T.IMAGE, + "trash_icon_wrapper": T.PANEL, + "trash_icon_wrapper/icon": T.IMAGE, + "trash_icon_wrapper/progress_loading_bars": T.IMAGE, + "refresh_icon": T.IMAGE, + "refresh_icon_wrapper": T.PANEL, + "refresh_icon_wrapper/icon": T.IMAGE, + "refresh_icon_wrapper/progress_loading_bars": T.IMAGE, + "section_divider": T.PANEL, + "section_divider/divider_image": T.IMAGE, + "text_label": T.LABEL, + "icon_image": T.IMAGE, + "progress_loading_bars": T.IMAGE, + "background": T.IMAGE, + "black_background_fill": T.IMAGE, + "error_pack_secondary_layout": T.PANEL, + "error_pack_secondary_layout/black": T.IMAGE, + "error_pack_secondary_layout/black/stack_panel": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/stack_panel": T.STACK_PANEL, + "error_pack_secondary_layout/black/stack_panel/stack_panel/icon_background": T.IMAGE, + "error_pack_secondary_layout/black/stack_panel/stack_panel/icon_background/icon": T.IMAGE, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top": T.STACK_PANEL, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/title": T.LABEL, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/padding": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/pack_size": T.LABEL, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom": T.STACK_PANEL, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom/description": T.LABEL, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom/padding": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel": T.STACK_PANEL, + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/top_pad": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/refresh": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/refresh/button": T.BUTTON, + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/pad": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/delete": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/delete/button": T.BUTTON, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pad": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel": T.STACK_PANEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_0": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel": T.STACK_PANEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/title_text": T.LABEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/space": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/offset": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/offset/title": T.LABEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/pad_0": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_1": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel": T.STACK_PANEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/version_text": T.LABEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/space": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/offset": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/offset/version": T.LABEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/pad_1": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_2": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel": T.STACK_PANEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/path_text": T.LABEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/space": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/offset": T.PANEL, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/offset/description": T.LABEL, + "error_pack_content_layout": T.PANEL, + "error_pack_content_layout/black": T.IMAGE, + "error_pack_content_layout/black/error_panel": T.STACK_PANEL, + "error_pack_content_layout/black/error_panel/error_header_panel": T.PANEL, + "error_pack_content_layout/black/error_panel/error_header_panel/error_type_panel": T.LABEL, + "error_pack_content_layout/black/error_panel/error_header_panel/button": T.BUTTON, + "error_pack_content_layout/black/error_panel/padding_0": T.PANEL, + "error_pack_content_layout/black/error_panel/error_text_panel": T.STACK_PANEL, + "error_pack_content_layout/black/error_panel/error_text_panel/error_text": T.LABEL, + "error_pack_content_layout/black/error_panel/error_text_panel/space": T.PANEL, + "error_pack_content_layout/black/error_panel/error_text_panel/offset": T.PANEL, + "error_pack_content_layout/black/error_panel/error_text_panel/offset/error_label": T.LABEL, + "delete_button": T.BUTTON, + "delete_text_button": T.BUTTON, + "clipboard_button": T.BUTTON, + "refresh_button": T.BUTTON, + "refresh_text_button": T.BUTTON, + "pack_secondary_info": T.PANEL, + "pack_secondary_info/layout": T.PANEL, + "error_content_grid": T.STACK_PANEL, + "pack_error_item": T.STACK_PANEL, + "pack_error_item/secondary": T.PANEL, + "pack_error_item/error_header": T.PANEL, + "pack_error_item/error_header/error_text": T.LABEL, + "pack_error_item/error": T.STACK_PANEL, + "pack_error_group": T.STACK_PANEL, + "pack_error_group/top_padding": T.PANEL, + "pack_error_group/errors": T.STACK_PANEL, + "pack_error_group/padding": T.PANEL, + "common_scrolling_panel": T.PANEL, + "common_content": T.INPUT_PANEL, + "scrolling_offsets": T.PANEL, + "manifest_validation_scroll_content": T.INPUT_PANEL, + "manifest_validation_scroll_content/scrolling_panel": T.PANEL, + "common_scroll_panel": T.PANEL, + "manifest_validation_scroll_panel": T.PANEL, + "manifest_validation_scroll_panel/pack_error_group": T.STACK_PANEL, + "manifest_validation_screen": T.SCREEN, + "manifest_validation_screen_content": T.PANEL, + "manifest_validation_screen_content/background": T.PANEL, } export type SdlLabelType = { - sdl_label_factory: T.STACK_PANEL - sdl_label: T.LABEL - sdl_mc_ten_label: T.LABEL + "sdl_label_factory": T.STACK_PANEL, + "sdl_label": T.LABEL, + "sdl_mc_ten_label": T.LABEL, } export type SdlDropdownsType = { - sdl_dropdown_rows: T.PANEL - "sdl_dropdown_rows/container_panel": T.STACK_PANEL - "sdl_dropdown_rows/container_panel/toggle": T.PANEL - "sdl_dropdown_rows/container_panel/pad": T.PANEL - sdl_rows_toggle: T.PANEL + "sdl_dropdown_rows": T.PANEL, + "sdl_dropdown_rows/container_panel": T.STACK_PANEL, + "sdl_dropdown_rows/container_panel/toggle": T.PANEL, + "sdl_dropdown_rows/container_panel/pad": T.PANEL, + "sdl_rows_toggle": T.PANEL, } export type SdlImageRowType = { - image_row_factory: T.STACK_PANEL - buffer_panel: T.PANEL - single_image: T.PANEL - "single_image/image_with_border": T.PANEL - "single_image/image_with_border/screenshot_image": T.IMAGE - "single_image/image_with_border/dark_border": T.IMAGE - "single_image/image_with_border/progress_loading": T.PANEL - "single_image/image_selector": T.BUTTON - double_image: T.PANEL - triple_image_with_buffer: T.STACK_PANEL - "triple_image_with_buffer/buffer_panel_in_1": T.PANEL - "triple_image_with_buffer/buffer_panel_in_2": T.PANEL - "triple_image_with_buffer/triple_image": T.PANEL - "triple_image_with_buffer/buffer_panel_out_1": T.PANEL - "triple_image_with_buffer/buffer_panel_out_2": T.PANEL + "image_row_factory": T.STACK_PANEL, + "buffer_panel": T.PANEL, + "single_image": T.PANEL, + "single_image/image_with_border": T.PANEL, + "single_image/image_with_border/screenshot_image": T.IMAGE, + "single_image/image_with_border/dark_border": T.IMAGE, + "single_image/image_with_border/progress_loading": T.PANEL, + "single_image/image_selector": T.BUTTON, + "double_image": T.PANEL, + "triple_image_with_buffer": T.STACK_PANEL, + "triple_image_with_buffer/buffer_panel_in_1": T.PANEL, + "triple_image_with_buffer/buffer_panel_in_2": T.PANEL, + "triple_image_with_buffer/triple_image": T.PANEL, + "triple_image_with_buffer/buffer_panel_out_1": T.PANEL, + "triple_image_with_buffer/buffer_panel_out_2": T.PANEL, } export type SdlTextRowType = { - sdl_text_row_factory: T.STACK_PANEL - sdl_header_component_factory: T.STACK_PANEL - label_button: T.BUTTON - sdl_header_component_panel: T.PANEL - "sdl_header_component_panel/header_background": T.IMAGE - "sdl_header_component_panel/header_internals": T.BUTTON - "sdl_header_component_panel/header_highlight": T.IMAGE - "sdl_header_component_panel/text_row_header_text": T.STACK_PANEL - sdl_text_row_component_panel: T.PANEL - "sdl_text_row_component_panel/text_background": T.IMAGE - "sdl_text_row_component_panel/text_row_selector": T.BUTTON - "sdl_text_row_component_panel/text_row_background": T.IMAGE - "sdl_text_row_component_panel/text_row_component_text": T.STACK_PANEL - solo_text_row: T.STACK_PANEL - "solo_text_row/buffer_panel_front": T.PANEL - "solo_text_row/headercomp_and_textcomp_panel": T.STACK_PANEL - "solo_text_row/headercomp_and_textcomp_panel/text_row_header_text_panel": T.PANEL - "solo_text_row/headercomp_and_textcomp_panel/text_row_text_panel": T.PANEL - "solo_text_row/buffer_panel_back": T.PANEL + "sdl_text_row_factory": T.STACK_PANEL, + "sdl_header_component_factory": T.STACK_PANEL, + "label_button": T.BUTTON, + "sdl_header_component_panel": T.PANEL, + "sdl_header_component_panel/header_background": T.IMAGE, + "sdl_header_component_panel/header_internals": T.BUTTON, + "sdl_header_component_panel/header_highlight": T.IMAGE, + "sdl_header_component_panel/text_row_header_text": T.STACK_PANEL, + "sdl_text_row_component_panel": T.PANEL, + "sdl_text_row_component_panel/text_background": T.IMAGE, + "sdl_text_row_component_panel/text_row_selector": T.BUTTON, + "sdl_text_row_component_panel/text_row_background": T.IMAGE, + "sdl_text_row_component_panel/text_row_component_text": T.STACK_PANEL, + "solo_text_row": T.STACK_PANEL, + "solo_text_row/buffer_panel_front": T.PANEL, + "solo_text_row/headercomp_and_textcomp_panel": T.STACK_PANEL, + "solo_text_row/headercomp_and_textcomp_panel/text_row_header_text_panel": T.PANEL, + "solo_text_row/headercomp_and_textcomp_panel/text_row_text_panel": T.PANEL, + "solo_text_row/buffer_panel_back": T.PANEL, } export type MobEffectType = { - effect_background: T.IMAGE - main_background: T.IMAGE - button_background: T.IMAGE - effect_name: T.LABEL - effect_timer: T.LABEL - effect_icon: T.IMAGE - mob_effect_grid_panel: T.PANEL - "mob_effect_grid_panel/mob_effect_grid": T.GRID - mob_effect_grid: T.GRID - mob_effect_grid_item: T.PANEL - "mob_effect_grid_item/bg": T.IMAGE - "mob_effect_grid_item/name": T.LABEL - "mob_effect_grid_item/timer": T.LABEL - "mob_effect_grid_item/icon": T.IMAGE - mob_effect_list_content_panel: T.PANEL - "mob_effect_list_content_panel/scrolling_panel": T.PANEL - mob_effect_screen_close_button: T.BUTTON - close_button_panel: T.PANEL - "close_button_panel/bg": T.IMAGE - "close_button_panel/close_button": T.BUTTON - mob_effect_content: T.PANEL - "mob_effect_content/bg": T.IMAGE - "mob_effect_content/close_panel": T.PANEL - "mob_effect_content/content_panel": T.PANEL - main_screen: T.PANEL - "main_screen/main_screen": T.PANEL - mob_effect_screen: T.SCREEN + "effect_background": T.IMAGE, + "main_background": T.IMAGE, + "button_background": T.IMAGE, + "effect_name": T.LABEL, + "effect_timer": T.LABEL, + "effect_icon": T.IMAGE, + "mob_effect_grid_panel": T.PANEL, + "mob_effect_grid_panel/mob_effect_grid": T.GRID, + "mob_effect_grid": T.GRID, + "mob_effect_grid_item": T.PANEL, + "mob_effect_grid_item/bg": T.IMAGE, + "mob_effect_grid_item/name": T.LABEL, + "mob_effect_grid_item/timer": T.LABEL, + "mob_effect_grid_item/icon": T.IMAGE, + "mob_effect_list_content_panel": T.PANEL, + "mob_effect_list_content_panel/scrolling_panel": T.PANEL, + "mob_effect_screen_close_button": T.BUTTON, + "close_button_panel": T.PANEL, + "close_button_panel/bg": T.IMAGE, + "close_button_panel/close_button": T.BUTTON, + "mob_effect_content": T.PANEL, + "mob_effect_content/bg": T.IMAGE, + "mob_effect_content/close_panel": T.PANEL, + "mob_effect_content/content_panel": T.PANEL, + "main_screen": T.PANEL, + "main_screen/main_screen": T.PANEL, + "mob_effect_screen": T.SCREEN, } export type NonXblUserManagementType = { - black_tint_image: T.IMAGE - modal_title_text: T.LABEL - modal_label_text: T.STACK_PANEL - "modal_label_text/padding": T.PANEL - "modal_label_text/text": T.LABEL - modal_label_panel: T.PANEL - modal_left_button: T.BUTTON - modal_middle_button: T.BUTTON - modal_rightcancel_button: T.BUTTON - three_buttons_panel: T.PANEL - "three_buttons_panel/left": T.BUTTON - "three_buttons_panel/middle": T.BUTTON - "three_buttons_panel/right": T.BUTTON - two_buttons_panel: T.PANEL - "two_buttons_panel/left": T.BUTTON - "two_buttons_panel/right": T.BUTTON - single_button_panel: T.PANEL - "single_button_panel/left": T.BUTTON - modal_dialog_with_buttons: T.PANEL - "modal_dialog_with_buttons/background_with_buttons": T.PANEL - "modal_dialog_with_buttons/title": T.LABEL - "modal_dialog_with_buttons/text_with_buttons": T.PANEL - "modal_dialog_with_buttons/button_panel": T.UNKNOWN - modal_input_panel: T.INPUT_PANEL - "modal_input_panel/black_tint_image": T.IMAGE - user_confirm_dialog_screen_content: T.PANEL - "user_confirm_dialog_screen_content/modal_input": T.INPUT_PANEL - "user_confirm_dialog_screen_content/modal_input/modal_bg_buttons": T.PANEL - user_confirm_dialog_screen: T.SCREEN + "black_tint_image": T.IMAGE, + "modal_title_text": T.LABEL, + "modal_label_text": T.STACK_PANEL, + "modal_label_text/padding": T.PANEL, + "modal_label_text/text": T.LABEL, + "modal_label_panel": T.PANEL, + "modal_left_button": T.BUTTON, + "modal_middle_button": T.BUTTON, + "modal_rightcancel_button": T.BUTTON, + "three_buttons_panel": T.PANEL, + "three_buttons_panel/left": T.BUTTON, + "three_buttons_panel/middle": T.BUTTON, + "three_buttons_panel/right": T.BUTTON, + "two_buttons_panel": T.PANEL, + "two_buttons_panel/left": T.BUTTON, + "two_buttons_panel/right": T.BUTTON, + "single_button_panel": T.PANEL, + "single_button_panel/left": T.BUTTON, + "modal_dialog_with_buttons": T.PANEL, + "modal_dialog_with_buttons/background_with_buttons": T.PANEL, + "modal_dialog_with_buttons/title": T.LABEL, + "modal_dialog_with_buttons/text_with_buttons": T.PANEL, + "modal_dialog_with_buttons/button_panel": T.UNKNOWN, + "modal_input_panel": T.INPUT_PANEL, + "modal_input_panel/black_tint_image": T.IMAGE, + "user_confirm_dialog_screen_content": T.PANEL, + "user_confirm_dialog_screen_content/modal_input": T.INPUT_PANEL, + "user_confirm_dialog_screen_content/modal_input/modal_bg_buttons": T.PANEL, + "user_confirm_dialog_screen": T.SCREEN, } export type NpcInteractType = { - multiline_text_edit_control: T.EDIT_BOX - text_edit_control: T.EDIT_BOX - label_padding: T.PANEL - main_stack_panel: T.STACK_PANEL - skin_button: T.BUTTON - skin_model: T.CUSTOM - skin_model_clipper: T.PANEL - skins_grid_item: T.PANEL - "skins_grid_item/clip": T.PANEL - "skins_grid_item/clip/model": T.CUSTOM - "skins_grid_item/button": T.BUTTON - "skins_grid_item/selectFrame": T.IMAGE - skins_grid: T.GRID - cycle_pack_button: T.BUTTON - cycle_pack_left_button: T.BUTTON - cycle_pack_right_button: T.BUTTON - banner_fill: T.IMAGE - skin_picker: T.IMAGE - "skin_picker/left": T.BUTTON - "skin_picker/sg": T.GRID - "skin_picker/right": T.BUTTON - name_edit: T.EDIT_BOX - advanced_button: T.PANEL - "advanced_button/button": T.BUTTON - dialog_button: T.PANEL - "dialog_button/button": T.BUTTON - basic_stack_panel: T.STACK_PANEL - "basic_stack_panel/top_pad": T.PANEL - "basic_stack_panel/name_label": T.LABEL - "basic_stack_panel/name_padding": T.PANEL - "basic_stack_panel/name_edit": T.EDIT_BOX - "basic_stack_panel/dialog_pre_padding": T.PANEL - "basic_stack_panel/dialog_label": T.LABEL - "basic_stack_panel/dialog_post_padding": T.PANEL - "basic_stack_panel/dialog__padding": T.PANEL - "basic_stack_panel/dialog_button": T.PANEL - "basic_stack_panel/appearance_pre_padding": T.PANEL - "basic_stack_panel/appearance_label": T.LABEL - "basic_stack_panel/appearance_post_padding": T.PANEL - "basic_stack_panel/skins": T.IMAGE - "basic_stack_panel/advanced_button": T.PANEL - basic_content: T.PANEL - "basic_content/basic": T.STACK_PANEL - advanced_stack_panel: T.STACK_PANEL - "advanced_stack_panel/top_pad": T.PANEL - "advanced_stack_panel/add_help_text": T.STACK_PANEL - "advanced_stack_panel/middle_pad": T.PANEL - "advanced_stack_panel/actions": T.STACK_PANEL - "advanced_stack_panel/add_buttons": T.STACK_PANEL - "advanced_stack_panel/bottom_pad": T.PANEL - action_title: T.LABEL - plus_icon: T.IMAGE - plus_button: T.BUTTON - action_text_edit: T.EDIT_BOX - maximized_action_edit: T.EDIT_BOX - action_edit: T.STACK_PANEL - "action_edit/text_edit": T.EDIT_BOX - "action_edit/expand": T.BUTTON - button_name_edit: T.EDIT_BOX - command_toggle: T.TOGGLE - command_toggle_panel: T.PANEL - "command_toggle_panel/command_toggle": T.TOGGLE - "command_toggle_panel/toggle_label": T.LABEL - action_mode: T.STACK_PANEL - "action_mode/button_mode_toggle_panel": T.PANEL - "action_mode/on_enter_toggle_panel": T.PANEL - "action_mode/on_exit_toggle_panel": T.PANEL - button_name_label: T.LABEL - url_notifications: T.STACK_PANEL - "url_notifications/empty_uri_warning": T.IMAGE - "url_notifications/invalid_uri_warning": T.IMAGE - action_template: T.STACK_PANEL - "action_template/title": T.LABEL - "action_template/label_pad": T.PANEL - "action_template/edit": T.STACK_PANEL - "action_template/edit_pad": T.PANEL - "action_template/url_warning": T.STACK_PANEL - "action_template/url_pad": T.PANEL - "action_template/action_mode": T.STACK_PANEL - "action_template/mode_pad": T.PANEL - "action_template/button_name_label": T.LABEL - "action_template/button_name": T.EDIT_BOX - action_command: T.STACK_PANEL - action_url: T.STACK_PANEL - padded_action: T.STACK_PANEL - "padded_action/action": T.IMAGE - "padded_action/padding": T.PANEL - action: T.IMAGE - "action/trash": T.BUTTON - "action/command": T.STACK_PANEL - "action/url": T.STACK_PANEL - action_panel: T.STACK_PANEL - add_button: T.BUTTON - help_label: T.LABEL - add_help_section: T.STACK_PANEL - "add_help_section/text_url": T.PANEL - "add_help_section/text_url/tts_border": T.BUTTON - "add_help_section/text_url/wrapper_panel_url": T.STACK_PANEL - "add_help_section/text_url/wrapper_panel_url/text_url_a": T.LABEL - "add_help_section/text_url/wrapper_panel_url/padding": T.PANEL - "add_help_section/text_url/wrapper_panel_url/text_url_b": T.LABEL - "add_help_section/padding": T.PANEL - "add_help_section/text_command": T.PANEL - "add_help_section/text_command/tts_border": T.BUTTON - "add_help_section/text_command/wrapper_panel_command": T.STACK_PANEL - "add_help_section/text_command/wrapper_panel_command/text_command_a": T.LABEL - "add_help_section/text_command/wrapper_panel_command/padding": T.PANEL - "add_help_section/text_command/wrapper_panel_command/text_command_b": T.LABEL - add_help_text: T.STACK_PANEL - add_buttons: T.STACK_PANEL - "add_buttons/add_url": T.BUTTON - "add_buttons/padding": T.PANEL - "add_buttons/add_command": T.BUTTON - advanced_scrolling_panel: T.PANEL - advanced_scrolling_content: T.PANEL - "advanced_scrolling_content/advanced": T.STACK_PANEL - message_model: T.PANEL - "message_model/model": T.CUSTOM - clipped_message_model: T.PANEL - "clipped_message_model/model": T.PANEL - message_model_window: T.IMAGE - "message_model_window/model": T.PANEL - "message_model_window/immersive_reader_button": T.BUTTON - edit_box_background: T.PANEL - npc_message: T.EDIT_BOX - "npc_message/label": T.LABEL - "npc_message/visibility_panel": T.PANEL - "npc_message/visibility_panel/place_holder": T.LABEL - "npc_message/background": T.PANEL - text_scroll: T.PANEL - student_message_bubble: T.IMAGE - "student_message_bubble/dialog_panel": T.PANEL - "student_message_bubble/dialog_panel/text_scroll": T.PANEL - bubble_point: T.IMAGE - student_message_section: T.PANEL - "student_message_section/model": T.IMAGE - "student_message_section/point": T.IMAGE - "student_message_section/message": T.IMAGE - student_button_label: T.LABEL - student_button_label_panel: T.PANEL - "student_button_label_panel/url": T.LABEL - "student_button_label_panel/command": T.LABEL - student_button: T.PANEL - "student_button/button": T.BUTTON - student_buttons: T.PANEL - "student_buttons/buttons": T.STACK_PANEL - "student_buttons/buttons/actions": T.GRID - student_stack_panel: T.STACK_PANEL - "student_stack_panel/top_pad": T.PANEL - "student_stack_panel/message": T.PANEL - "student_stack_panel/message_pad": T.PANEL - "student_stack_panel/buttons": T.PANEL - student_view_content: T.PANEL - "student_view_content/student": T.STACK_PANEL - "student_view_content/close": T.PANEL - close_button_base: T.BUTTON - "close_button_base/default": T.PANEL - "close_button_base/hover": T.PANEL - "close_button_base/pressed": T.PANEL - x_close_button: T.BUTTON - ignorable_x_close_button: T.PANEL - "ignorable_x_close_button/button": T.BUTTON - close_button_holder: T.PANEL - "close_button_holder/close_basic": T.BUTTON - "close_button_holder/close_student_edit": T.PANEL - "close_button_holder/close_student": T.PANEL - "close_button_holder/close_maximized_action_edit": T.BUTTON - "close_button_holder/close_advanced": T.BUTTON - main_content: T.PANEL - "main_content/basic": T.PANEL - "main_content/advanced": T.PANEL - "main_content/maximized_action_edit": T.EDIT_BOX - "main_content/close": T.PANEL - root_panel: T.PANEL - gamepad_helper_exit_text: T.LABEL - close_text: T.STACK_PANEL - npc_screen_contents: T.PANEL - "npc_screen_contents/teacher": T.PANEL - "npc_screen_contents/student": T.PANEL - "npc_screen_contents/npc_screen_close": T.STACK_PANEL - npc_screen: T.SCREEN + "multiline_text_edit_control": T.EDIT_BOX, + "text_edit_control": T.EDIT_BOX, + "label_padding": T.PANEL, + "main_stack_panel": T.STACK_PANEL, + "skin_button": T.BUTTON, + "skin_model": T.CUSTOM, + "skin_model_clipper": T.PANEL, + "skins_grid_item": T.PANEL, + "skins_grid_item/clip": T.PANEL, + "skins_grid_item/clip/model": T.CUSTOM, + "skins_grid_item/button": T.BUTTON, + "skins_grid_item/selectFrame": T.IMAGE, + "skins_grid": T.GRID, + "cycle_pack_button": T.BUTTON, + "cycle_pack_left_button": T.BUTTON, + "cycle_pack_right_button": T.BUTTON, + "banner_fill": T.IMAGE, + "skin_picker": T.IMAGE, + "skin_picker/left": T.BUTTON, + "skin_picker/sg": T.GRID, + "skin_picker/right": T.BUTTON, + "name_edit": T.EDIT_BOX, + "advanced_button": T.PANEL, + "advanced_button/button": T.BUTTON, + "dialog_button": T.PANEL, + "dialog_button/button": T.BUTTON, + "basic_stack_panel": T.STACK_PANEL, + "basic_stack_panel/top_pad": T.PANEL, + "basic_stack_panel/name_label": T.LABEL, + "basic_stack_panel/name_padding": T.PANEL, + "basic_stack_panel/name_edit": T.EDIT_BOX, + "basic_stack_panel/dialog_pre_padding": T.PANEL, + "basic_stack_panel/dialog_label": T.LABEL, + "basic_stack_panel/dialog_post_padding": T.PANEL, + "basic_stack_panel/dialog__padding": T.PANEL, + "basic_stack_panel/dialog_button": T.PANEL, + "basic_stack_panel/appearance_pre_padding": T.PANEL, + "basic_stack_panel/appearance_label": T.LABEL, + "basic_stack_panel/appearance_post_padding": T.PANEL, + "basic_stack_panel/skins": T.IMAGE, + "basic_stack_panel/advanced_button": T.PANEL, + "basic_content": T.PANEL, + "basic_content/basic": T.STACK_PANEL, + "advanced_stack_panel": T.STACK_PANEL, + "advanced_stack_panel/top_pad": T.PANEL, + "advanced_stack_panel/add_help_text": T.STACK_PANEL, + "advanced_stack_panel/middle_pad": T.PANEL, + "advanced_stack_panel/actions": T.STACK_PANEL, + "advanced_stack_panel/add_buttons": T.STACK_PANEL, + "advanced_stack_panel/bottom_pad": T.PANEL, + "action_title": T.LABEL, + "plus_icon": T.IMAGE, + "plus_button": T.BUTTON, + "action_text_edit": T.EDIT_BOX, + "maximized_action_edit": T.EDIT_BOX, + "action_edit": T.STACK_PANEL, + "action_edit/text_edit": T.EDIT_BOX, + "action_edit/expand": T.BUTTON, + "button_name_edit": T.EDIT_BOX, + "command_toggle": T.TOGGLE, + "command_toggle_panel": T.PANEL, + "command_toggle_panel/command_toggle": T.TOGGLE, + "command_toggle_panel/toggle_label": T.LABEL, + "action_mode": T.STACK_PANEL, + "action_mode/button_mode_toggle_panel": T.PANEL, + "action_mode/on_enter_toggle_panel": T.PANEL, + "action_mode/on_exit_toggle_panel": T.PANEL, + "button_name_label": T.LABEL, + "url_notifications": T.STACK_PANEL, + "url_notifications/empty_uri_warning": T.IMAGE, + "url_notifications/invalid_uri_warning": T.IMAGE, + "action_template": T.STACK_PANEL, + "action_template/title": T.LABEL, + "action_template/label_pad": T.PANEL, + "action_template/edit": T.STACK_PANEL, + "action_template/edit_pad": T.PANEL, + "action_template/url_warning": T.STACK_PANEL, + "action_template/url_pad": T.PANEL, + "action_template/action_mode": T.STACK_PANEL, + "action_template/mode_pad": T.PANEL, + "action_template/button_name_label": T.LABEL, + "action_template/button_name": T.EDIT_BOX, + "action_command": T.STACK_PANEL, + "action_url": T.STACK_PANEL, + "padded_action": T.STACK_PANEL, + "padded_action/action": T.IMAGE, + "padded_action/padding": T.PANEL, + "action": T.IMAGE, + "action/trash": T.BUTTON, + "action/command": T.STACK_PANEL, + "action/url": T.STACK_PANEL, + "action_panel": T.STACK_PANEL, + "add_button": T.BUTTON, + "help_label": T.LABEL, + "add_help_section": T.STACK_PANEL, + "add_help_section/text_url": T.PANEL, + "add_help_section/text_url/tts_border": T.BUTTON, + "add_help_section/text_url/wrapper_panel_url": T.STACK_PANEL, + "add_help_section/text_url/wrapper_panel_url/text_url_a": T.LABEL, + "add_help_section/text_url/wrapper_panel_url/padding": T.PANEL, + "add_help_section/text_url/wrapper_panel_url/text_url_b": T.LABEL, + "add_help_section/padding": T.PANEL, + "add_help_section/text_command": T.PANEL, + "add_help_section/text_command/tts_border": T.BUTTON, + "add_help_section/text_command/wrapper_panel_command": T.STACK_PANEL, + "add_help_section/text_command/wrapper_panel_command/text_command_a": T.LABEL, + "add_help_section/text_command/wrapper_panel_command/padding": T.PANEL, + "add_help_section/text_command/wrapper_panel_command/text_command_b": T.LABEL, + "add_help_text": T.STACK_PANEL, + "add_buttons": T.STACK_PANEL, + "add_buttons/add_url": T.BUTTON, + "add_buttons/padding": T.PANEL, + "add_buttons/add_command": T.BUTTON, + "advanced_scrolling_panel": T.PANEL, + "advanced_scrolling_content": T.PANEL, + "advanced_scrolling_content/advanced": T.STACK_PANEL, + "message_model": T.PANEL, + "message_model/model": T.CUSTOM, + "clipped_message_model": T.PANEL, + "clipped_message_model/model": T.PANEL, + "message_model_window": T.IMAGE, + "message_model_window/model": T.PANEL, + "message_model_window/immersive_reader_button": T.BUTTON, + "edit_box_background": T.PANEL, + "npc_message": T.EDIT_BOX, + "npc_message/label": T.LABEL, + "npc_message/visibility_panel": T.PANEL, + "npc_message/visibility_panel/place_holder": T.LABEL, + "npc_message/background": T.PANEL, + "text_scroll": T.PANEL, + "student_message_bubble": T.IMAGE, + "student_message_bubble/dialog_panel": T.PANEL, + "student_message_bubble/dialog_panel/text_scroll": T.PANEL, + "bubble_point": T.IMAGE, + "student_message_section": T.PANEL, + "student_message_section/model": T.IMAGE, + "student_message_section/point": T.IMAGE, + "student_message_section/message": T.IMAGE, + "student_button_label": T.LABEL, + "student_button_label_panel": T.PANEL, + "student_button_label_panel/url": T.LABEL, + "student_button_label_panel/command": T.LABEL, + "student_button": T.PANEL, + "student_button/button": T.BUTTON, + "student_buttons": T.PANEL, + "student_buttons/buttons": T.STACK_PANEL, + "student_buttons/buttons/actions": T.GRID, + "student_stack_panel": T.STACK_PANEL, + "student_stack_panel/top_pad": T.PANEL, + "student_stack_panel/message": T.PANEL, + "student_stack_panel/message_pad": T.PANEL, + "student_stack_panel/buttons": T.PANEL, + "student_view_content": T.PANEL, + "student_view_content/student": T.STACK_PANEL, + "student_view_content/close": T.PANEL, + "close_button_base": T.BUTTON, + "close_button_base/default": T.PANEL, + "close_button_base/hover": T.PANEL, + "close_button_base/pressed": T.PANEL, + "x_close_button": T.BUTTON, + "ignorable_x_close_button": T.PANEL, + "ignorable_x_close_button/button": T.BUTTON, + "close_button_holder": T.PANEL, + "close_button_holder/close_basic": T.BUTTON, + "close_button_holder/close_student_edit": T.PANEL, + "close_button_holder/close_student": T.PANEL, + "close_button_holder/close_maximized_action_edit": T.BUTTON, + "close_button_holder/close_advanced": T.BUTTON, + "main_content": T.PANEL, + "main_content/basic": T.PANEL, + "main_content/advanced": T.PANEL, + "main_content/maximized_action_edit": T.EDIT_BOX, + "main_content/close": T.PANEL, + "root_panel": T.PANEL, + "gamepad_helper_exit_text": T.LABEL, + "close_text": T.STACK_PANEL, + "npc_screen_contents": T.PANEL, + "npc_screen_contents/teacher": T.PANEL, + "npc_screen_contents/student": T.PANEL, + "npc_screen_contents/npc_screen_close": T.STACK_PANEL, + "npc_screen": T.SCREEN, } export type OnlineSafetyType = { - online_safety_proceed_button: T.BUTTON - online_safety_back_button: T.BUTTON - online_safety_description: T.LABEL - ip_safety_description: T.LABEL - online_safety_label_panel: T.PANEL - ip_safety_label_panel: T.PANEL - do_not_show_checkbox: T.TOGGLE - "do_not_show_checkbox/header_description_stack_panel": T.STACK_PANEL - "do_not_show_checkbox/header_description_stack_panel/checkbox_visuals": T.PANEL - "do_not_show_checkbox/header_description_stack_panel/buffer_panel": T.PANEL - "do_not_show_checkbox/header_description_stack_panel/buffer_panel/label": T.LABEL - "do_not_show_checkbox/header_description_stack_panel/another_panel": T.PANEL - online_safety_dialog: T.PANEL - ip_safety_dialog: T.PANEL - gamepad_helpers: T.PANEL - "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL - online_safety_screen: T.SCREEN - online_safety_screen_content: T.PANEL - "online_safety_screen_content/online_safety_dialog": T.PANEL - "online_safety_screen_content/gamepad_helpers": T.PANEL - ip_safety_screen: T.SCREEN - ip_safety_screen_content: T.PANEL - "ip_safety_screen_content/ip_safety_dialog": T.PANEL - "ip_safety_screen_content/gamepad_helpers": T.PANEL + "online_safety_proceed_button": T.BUTTON, + "online_safety_back_button": T.BUTTON, + "online_safety_description": T.LABEL, + "ip_safety_description": T.LABEL, + "online_safety_label_panel": T.PANEL, + "ip_safety_label_panel": T.PANEL, + "do_not_show_checkbox": T.TOGGLE, + "do_not_show_checkbox/header_description_stack_panel": T.STACK_PANEL, + "do_not_show_checkbox/header_description_stack_panel/checkbox_visuals": T.PANEL, + "do_not_show_checkbox/header_description_stack_panel/buffer_panel": T.PANEL, + "do_not_show_checkbox/header_description_stack_panel/buffer_panel/label": T.LABEL, + "do_not_show_checkbox/header_description_stack_panel/another_panel": T.PANEL, + "online_safety_dialog": T.PANEL, + "ip_safety_dialog": T.PANEL, + "gamepad_helpers": T.PANEL, + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL, + "online_safety_screen": T.SCREEN, + "online_safety_screen_content": T.PANEL, + "online_safety_screen_content/online_safety_dialog": T.PANEL, + "online_safety_screen_content/gamepad_helpers": T.PANEL, + "ip_safety_screen": T.SCREEN, + "ip_safety_screen_content": T.PANEL, + "ip_safety_screen_content/ip_safety_dialog": T.PANEL, + "ip_safety_screen_content/gamepad_helpers": T.PANEL, } export type PackSettingsType = { - background: T.IMAGE - screen: T.SCREEN - main_screen_content: T.PANEL - pack_scroll_panel: T.PANEL - scrolling_content: T.STACK_PANEL - "scrolling_content/content_tiering_panel": T.STACK_PANEL - "scrolling_content/generated_form": T.STACK_PANEL - content_tiering_panel: T.STACK_PANEL - "content_tiering_panel/label_panel": T.PANEL - "content_tiering_panel/label_panel/content_tier_label": T.LABEL - "content_tiering_panel/label_panel/unsupported_content_tier_label": T.LABEL - "content_tiering_panel/slider_panel": T.PANEL - "content_tiering_panel/slider_panel/content_tier_slider": T.SLIDER - "content_tiering_panel/incompatible_label_panel": T.PANEL - "content_tiering_panel/incompatible_label_panel/label": T.LABEL + "background": T.IMAGE, + "screen": T.SCREEN, + "main_screen_content": T.PANEL, + "pack_scroll_panel": T.PANEL, + "scrolling_content": T.STACK_PANEL, + "scrolling_content/content_tiering_panel": T.STACK_PANEL, + "scrolling_content/generated_form": T.STACK_PANEL, + "content_tiering_panel": T.STACK_PANEL, + "content_tiering_panel/label_panel": T.PANEL, + "content_tiering_panel/label_panel/content_tier_label": T.LABEL, + "content_tiering_panel/label_panel/unsupported_content_tier_label": T.LABEL, + "content_tiering_panel/slider_panel": T.PANEL, + "content_tiering_panel/slider_panel/content_tier_slider": T.SLIDER, + "content_tiering_panel/incompatible_label_panel": T.PANEL, + "content_tiering_panel/incompatible_label_panel/label": T.LABEL, } export type PanoramaType = { - panorama_view: T.PANEL - "panorama_view/pan_left": T.BUTTON - "panorama_view/screenshot": T.INPUT_PANEL - "panorama_view/pan_right": T.BUTTON - panorama_input_panel: T.INPUT_PANEL - "panorama_input_panel/image_border": T.IMAGE - "panorama_input_panel/image_border/panorama_key_art": T.CUSTOM - "panorama_input_panel/image_border/progress_loading": T.PANEL - pan_left_button: T.BUTTON - pan_right_button: T.BUTTON + "panorama_view": T.PANEL, + "panorama_view/pan_left": T.BUTTON, + "panorama_view/screenshot": T.INPUT_PANEL, + "panorama_view/pan_right": T.BUTTON, + "panorama_input_panel": T.INPUT_PANEL, + "panorama_input_panel/image_border": T.IMAGE, + "panorama_input_panel/image_border/panorama_key_art": T.CUSTOM, + "panorama_input_panel/image_border/progress_loading": T.PANEL, + "pan_left_button": T.BUTTON, + "pan_right_button": T.BUTTON, } export type PatchNotesType = { - solid_texture: T.IMAGE - image_with_background: T.IMAGE - "image_with_background/image": T.UNKNOWN - "image_with_background/image/loading_animation": T.PANEL - white_image: T.IMAGE - patch_main_image: T.IMAGE - store_image: T.IMAGE - patch_notes_header_background: T.PANEL - "patch_notes_header_background/black_background": T.IMAGE - "patch_notes_header_background/black_background/content": T.UNKNOWN - button_label_panel: T.PANEL - "button_label_panel/text_label": T.LABEL - button_content: T.PANEL - "button_content/button_label2": T.PANEL - patch_image: T.IMAGE - patch_notes_header_content_without_offer: T.PANEL - "patch_notes_header_content_without_offer/patch_image": T.IMAGE - patch_notes_header_content_with_offer: T.STACK_PANEL - "patch_notes_header_content_with_offer/patch_image": T.IMAGE - "patch_notes_header_content_with_offer/padding": T.PANEL - "patch_notes_header_content_with_offer/store_item_section": T.STACK_PANEL - "patch_notes_header_content_with_offer/store_item_section/store_image": T.IMAGE - "patch_notes_header_content_with_offer/store_item_section/padding": T.PANEL - "patch_notes_header_content_with_offer/store_item_section/store_button": T.PANEL - store_button: T.PANEL - "store_button/store_button": T.BUTTON - "store_button/loading_animation": T.BUTTON - patch_notes_header: T.PANEL - "patch_notes_header/patch_notes_background": T.PANEL - scroll_content: T.STACK_PANEL - "scroll_content/padding_0": T.PANEL - "scroll_content/patch_notes_header": T.PANEL - "scroll_content/padding_1": T.PANEL - "scroll_content/tts_label_wrapper": T.PANEL - patch_notes_panel: T.PANEL - "patch_notes_panel/patch_notes_text": T.LABEL - "patch_notes_panel/patch_notes_text/loading_animation": T.PANEL - patch_notes_content: T.PANEL - "patch_notes_content/scrolling_panel": T.PANEL - continue_button: T.BUTTON - patch_notes_dialog: T.PANEL - patch_notes_screen: T.SCREEN - sunsetting_button_panel: T.STACK_PANEL - "sunsetting_button_panel/padding_0": T.PANEL - "sunsetting_button_panel/more_info_button": T.BUTTON - "sunsetting_button_panel/padding_1": T.PANEL - "sunsetting_button_panel/continue_button": T.BUTTON - "sunsetting_button_panel/padding_2": T.PANEL - "sunsetting_button_panel/sunsetting_toggle_panel": T.TOGGLE - "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel": T.STACK_PANEL - "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/checkbox_visuals": T.PANEL - "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/buffer_panel": T.PANEL - "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/buffer_panel/label": T.LABEL - "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/another_panel": T.PANEL - sunsetting_content: T.PANEL - "sunsetting_content/scrolling_panel": T.PANEL - sunsetting_dialog: T.PANEL - sunsetting_screen: T.SCREEN + "solid_texture": T.IMAGE, + "image_with_background": T.IMAGE, + "image_with_background/image": T.UNKNOWN, + "image_with_background/image/loading_animation": T.PANEL, + "white_image": T.IMAGE, + "patch_main_image": T.IMAGE, + "store_image": T.IMAGE, + "patch_notes_header_background": T.PANEL, + "patch_notes_header_background/black_background": T.IMAGE, + "patch_notes_header_background/black_background/content": T.UNKNOWN, + "button_label_panel": T.PANEL, + "button_label_panel/text_label": T.LABEL, + "button_content": T.PANEL, + "button_content/button_label2": T.PANEL, + "patch_image": T.IMAGE, + "patch_notes_header_content_without_offer": T.PANEL, + "patch_notes_header_content_without_offer/patch_image": T.IMAGE, + "patch_notes_header_content_with_offer": T.STACK_PANEL, + "patch_notes_header_content_with_offer/patch_image": T.IMAGE, + "patch_notes_header_content_with_offer/padding": T.PANEL, + "patch_notes_header_content_with_offer/store_item_section": T.STACK_PANEL, + "patch_notes_header_content_with_offer/store_item_section/store_image": T.IMAGE, + "patch_notes_header_content_with_offer/store_item_section/padding": T.PANEL, + "patch_notes_header_content_with_offer/store_item_section/store_button": T.PANEL, + "store_button": T.PANEL, + "store_button/store_button": T.BUTTON, + "store_button/loading_animation": T.BUTTON, + "patch_notes_header": T.PANEL, + "patch_notes_header/patch_notes_background": T.PANEL, + "scroll_content": T.STACK_PANEL, + "scroll_content/padding_0": T.PANEL, + "scroll_content/patch_notes_header": T.PANEL, + "scroll_content/padding_1": T.PANEL, + "scroll_content/tts_label_wrapper": T.PANEL, + "patch_notes_panel": T.PANEL, + "patch_notes_panel/patch_notes_text": T.LABEL, + "patch_notes_panel/patch_notes_text/loading_animation": T.PANEL, + "patch_notes_content": T.PANEL, + "patch_notes_content/scrolling_panel": T.PANEL, + "continue_button": T.BUTTON, + "patch_notes_dialog": T.PANEL, + "patch_notes_screen": T.SCREEN, + "sunsetting_button_panel": T.STACK_PANEL, + "sunsetting_button_panel/padding_0": T.PANEL, + "sunsetting_button_panel/more_info_button": T.BUTTON, + "sunsetting_button_panel/padding_1": T.PANEL, + "sunsetting_button_panel/continue_button": T.BUTTON, + "sunsetting_button_panel/padding_2": T.PANEL, + "sunsetting_button_panel/sunsetting_toggle_panel": T.TOGGLE, + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel": T.STACK_PANEL, + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/checkbox_visuals": T.PANEL, + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/buffer_panel": T.PANEL, + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/buffer_panel/label": T.LABEL, + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/another_panel": T.PANEL, + "sunsetting_content": T.PANEL, + "sunsetting_content/scrolling_panel": T.PANEL, + "sunsetting_dialog": T.PANEL, + "sunsetting_screen": T.SCREEN, } export type PauseType = { - pause_icon: T.IMAGE - feedback_icon: T.IMAGE - change_skin_icon: T.IMAGE - take_screenshot_icon: T.IMAGE - settings_icon: T.IMAGE - achievements_icon: T.IMAGE - alex_icon: T.IMAGE - profile_gamerpic: T.CUSTOM - button_x: T.STACK_PANEL - dressing_room_controller_button_content: T.PANEL - "dressing_room_controller_button_content/button_x": T.STACK_PANEL - "dressing_room_controller_button_content/button_label_panel": T.PANEL - "dressing_room_controller_button_content/button_label_panel/button_label_text_left": T.LABEL - controller_button_label: T.LABEL - column_frame: T.PANEL - dressing_room_button_gamepad: T.BUTTON - dressing_room_button: T.BUTTON - profile_button_content: T.STACK_PANEL - "profile_button_content/button_offset_wrapper": T.PANEL - "profile_button_content/button_offset_wrapper/button_x": T.STACK_PANEL - "profile_button_content/gamerpic_offset_wrapper": T.PANEL - "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border": T.PANEL - "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/gamerpic": T.CUSTOM - "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/alex_icon": T.IMAGE - "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/border_black": T.IMAGE - "profile_button_content/padding_middle": T.PANEL - "profile_button_content/vertically_central_text": T.STACK_PANEL - "profile_button_content/vertically_central_text/top_padding": T.PANEL - "profile_button_content/vertically_central_text/profile_button_label": T.LABEL - "profile_button_content/padding_right": T.PANEL - profile_button: T.BUTTON - skin_viewer_panel: T.INPUT_PANEL - "skin_viewer_panel/paper_doll_panel": T.PANEL - "skin_viewer_panel/paper_doll_panel/paper_doll": T.CUSTOM - "skin_viewer_panel/paper_doll_name_tag": T.CUSTOM - skin_panel: T.PANEL - "skin_panel/interior": T.STACK_PANEL - skin_panel_interior: T.STACK_PANEL - "skin_panel_interior/offset_panel": T.PANEL - "skin_panel_interior/offset_panel/viewer_panel": T.INPUT_PANEL - "skin_panel_interior/fill_1": T.PANEL - "skin_panel_interior/change_profile_panel": T.STACK_PANEL - "skin_panel_interior/change_profile_panel/centering_panel_1": T.PANEL - "skin_panel_interior/change_profile_panel/centering_panel_1/dressing_room_button": T.BUTTON - "skin_panel_interior/change_profile_panel/centering_panel_2": T.INPUT_PANEL - "skin_panel_interior/change_profile_panel/centering_panel_2/dressing_room_button_gamepad": T.BUTTON - "skin_panel_interior/change_profile_panel/centering_panel_3": T.INPUT_PANEL - "skin_panel_interior/change_profile_panel/centering_panel_3/profile_button": T.BUTTON - pause_button_template: T.BUTTON - grid_button_template: T.BUTTON - return_to_game_button: T.BUTTON - realms_stories_button_panel: T.PANEL - "realms_stories_button_panel/realms_stories_button": T.BUTTON - "realms_stories_button_panel/unread_story_count_panel": T.PANEL - realms_stories_button: T.BUTTON - unread_story_count_panel: T.PANEL - "unread_story_count_panel/text": T.LABEL - "unread_story_count_panel/text/background": T.IMAGE - store_button_panel: T.PANEL - "store_button_panel/store_button": T.BUTTON - "store_button_panel/store_error_button": T.BUTTON - store_button: T.BUTTON - store_error_button: T.BUTTON - store_error_button_content: T.IMAGE - "store_error_button_content/marketplace_button_label": T.LABEL - settings_button: T.BUTTON - how_to_play_button: T.BUTTON - invite_players_button: T.BUTTON - buy_button: T.BUTTON - quit_button: T.BUTTON - feedback_button: T.BUTTON - feedback_icon_button: T.PANEL - "feedback_icon_button/feedback_button": T.BUTTON - take_screenshot_gamepad_button_content: T.PANEL - "take_screenshot_gamepad_button_content/button_y": T.STACK_PANEL - "take_screenshot_gamepad_button_content/take_screenshot_icon": T.IMAGE - take_screenshot_gamepad_button: T.BUTTON - achievements_button_small: T.BUTTON - settings_button_small: T.BUTTON - take_screenshot_button: T.BUTTON - pause_screen: T.SCREEN - pause_screen_content: T.PANEL - "pause_screen_content/pause_screen_main_panels": T.STACK_PANEL - "pause_screen_content/skin_panel": T.PANEL - "pause_screen_content/friendsdrawer_button_panel": T.PANEL - "pause_screen_content/gamepad_helpers": T.PANEL - "pause_screen_content/keyboard_helpers": T.PANEL - friendsdrawer_button_panel: T.PANEL - "friendsdrawer_button_panel/friendsdrawer_container_stack_panel": T.PANEL - "friendsdrawer_button_panel/friendsdrawer_container_stack_panel/friendsdrawer_button": T.BUTTON - "friendsdrawer_button_panel/friendsdrawer_container_stack_panel/friends_drawer_ftue_popup": T.BUTTON - pause_screen_main_panels: T.STACK_PANEL - "pause_screen_main_panels/menu": T.IMAGE - left_buttons_panel: T.IMAGE - "left_buttons_panel/filler": T.PANEL - "left_buttons_panel/trialTime": T.CUSTOM - "left_buttons_panel/the_rest_panel": T.STACK_PANEL - smaller_buttons_panel: T.STACK_PANEL - "smaller_buttons_panel/stacked_column": T.STACK_PANEL - "smaller_buttons_panel/stacked_column/fill_1": T.PANEL - "smaller_buttons_panel/stacked_column/side_padding": T.PANEL - "smaller_buttons_panel/stacked_column/small_settings_button": T.INPUT_PANEL - "smaller_buttons_panel/stacked_column/small_settings_button/small_settings_btn": T.BUTTON - "smaller_buttons_panel/stacked_column/small_settings_padding": T.PANEL - "smaller_buttons_panel/stacked_column/small_achievements_button": T.INPUT_PANEL - "smaller_buttons_panel/stacked_column/small_achievements_button/small_achievements_btn": T.BUTTON - "smaller_buttons_panel/stacked_column/small_achievements_padding": T.PANEL - "smaller_buttons_panel/stacked_column/take_screenshot_btn": T.INPUT_PANEL - "smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_button": T.BUTTON - "smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_gamepad_button": T.BUTTON - "smaller_buttons_panel/stacked_column/screenshot_padding": T.PANEL - "smaller_buttons_panel/stacked_column/fill_3": T.PANEL - "smaller_buttons_panel/padding_bottom": T.PANEL - social_buttons_panel: T.STACK_PANEL - "social_buttons_panel/friendsbutton_panel": T.PANEL - "social_buttons_panel/friendsbutton_panel/friendsdrawer_button": T.BUTTON - "social_buttons_panel/friendsbutton_panel/friends_drawer__ftue_popup": T.BUTTON - "social_buttons_panel/invitebutton_panel": T.STACK_PANEL - "social_buttons_panel/invitebutton_panel/invite_button": T.BUTTON - "social_buttons_panel/invitebutton_panel/vertical_padding_2": T.PANEL - the_rest_panel: T.STACK_PANEL - "the_rest_panel/fill_1": T.PANEL - "the_rest_panel/pause_menu": T.PANEL - "the_rest_panel/fill_3": T.PANEL - paused_text: T.LABEL - green_tag: T.IMAGE - paused_text_panel: T.IMAGE - "paused_text_panel/pause": T.LABEL - "paused_text_panel/horizontal_stack": T.STACK_PANEL - "paused_text_panel/horizontal_stack/pause_icon": T.IMAGE - "paused_text_panel/horizontal_stack/fill_1": T.PANEL - "paused_text_panel/horizontal_stack/pause": T.LABEL - transparent_background: T.IMAGE - non_transparent_background: T.IMAGE - menu_the_rest_panel: T.PANEL - "menu_the_rest_panel/menu_button_control": T.IMAGE - menu_button_control: T.IMAGE - "menu_button_control/menu_background": T.IMAGE - pause_announcement_panel_type: T.STACK_PANEL - "pause_announcement_panel_type/horizontal_stack": T.STACK_PANEL - "pause_announcement_panel_type/horizontal_stack/fill_1": T.PANEL - "pause_announcement_panel_type/horizontal_stack/pause_text": T.IMAGE - "pause_announcement_panel_type/horizontal_stack/fill_2": T.PANEL - menu_background: T.IMAGE - "menu_background/button_panel": T.STACK_PANEL - "menu_background/button_panel/title_image": T.PANEL - "menu_background/button_panel/title_image/image": T.IMAGE - "menu_background/button_panel/fill_1": T.PANEL - "menu_background/button_panel/return_to_game_button": T.BUTTON - "menu_background/button_panel/return": T.PANEL - "menu_background/button_panel/realms_stories_button_panel": T.PANEL - "menu_background/button_panel/realms_stories": T.PANEL - "menu_background/button_panel/buy_button": T.BUTTON - "menu_background/button_panel/buy": T.PANEL - "menu_background/button_panel/store_button_panel": T.PANEL - "menu_background/button_panel/store_button_panel_padding": T.PANEL - "menu_background/button_panel/quit_button": T.BUTTON - "menu_background/button_panel/smaller_buttons": T.STACK_PANEL - "menu_background/button_panel/pause_panel": T.STACK_PANEL - info_panel_content_list: T.STACK_PANEL - "info_panel_content_list/player_list_scrolling_panel": T.PANEL - "info_panel_content_list/vertical_padding": T.PANEL - info_panel_background: T.IMAGE - info_panel: T.IMAGE - "info_panel/info_panel_background": T.IMAGE - "info_panel/info_panel_list": T.STACK_PANEL - player_panel_background: T.IMAGE - "player_panel_background/player_list_scrolling_panel": T.PANEL - player_list: T.STACK_PANEL - "player_list/vertical_padding_0": T.PANEL - "player_list/social_buttons_panel": T.STACK_PANEL - "player_list/players_label": T.LABEL - "player_list/vertical_padding_4": T.PANEL - "player_list/players_grid_panel": T.GRID - "player_list/vertical_padding_5": T.PANEL - "player_list/invite_players_button_panel": T.PANEL - "player_list/vertical_padding_6": T.PANEL - "player_list/disconnected_from_multiplayer_label_panel": T.STACK_PANEL - "player_list/vertical_padding_7": T.PANEL - player_lists: T.PANEL - "player_lists/normal_list": T.STACK_PANEL - "player_lists/scoreboard_list": T.STACK_PANEL - player_list_scrolling_panel: T.PANEL - disconnected_label: T.LABEL - disconnected_from_multiplayer_label_panel: T.STACK_PANEL - "disconnected_from_multiplayer_label_panel/disconnected_from_xbox_live_label": T.LABEL - "disconnected_from_multiplayer_label_panel/disconnected_from_third_party_label": T.LABEL - "disconnected_from_multiplayer_label_panel/disconnected_from_adhoc_label": T.LABEL - "disconnected_from_multiplayer_label_panel/disconnected_from_crossplatform_multiplayer": T.LABEL - "disconnected_from_multiplayer_label_panel/disconnected_from_multiplayer": T.LABEL - invite_players_button_panel: T.PANEL - "invite_players_button_panel/invite_players_button": T.BUTTON - ip_label: T.LABEL - players_label: T.LABEL - players_grid: T.GRID - player_grid_item: T.PANEL - "player_grid_item/player_grid_item_content": T.PANEL - player_grid_item_content: T.PANEL - "player_grid_item_content/player_button_panel": T.STACK_PANEL - "player_grid_item_content/player_button_panel/player_button_banner": T.PANEL - "player_grid_item_content/player_button_panel/player_button_banner/player_button": T.BUTTON - "player_grid_item_content/player_button_panel/player_button_banner/player_banner": T.PANEL - "player_grid_item_content/player_button_panel/player_permission_button_padding": T.PANEL - "player_grid_item_content/player_permission_button_panel": T.PANEL - "player_grid_item_content/player_permission_button_panel/player_permission_button": T.BUTTON - player_permission_button: T.BUTTON - player_permission_button_content: T.PANEL - "player_permission_button_content/permission_icon_image": T.IMAGE - vertical_padding: T.PANEL - horizontal_padding: T.PANEL - player_button_content: T.STACK_PANEL - "player_button_content/player_pic_panel": T.PANEL - "player_button_content/player_gamertag": T.PANEL - "player_button_content/platform_icon": T.PANEL - player_button: T.BUTTON - player_banner: T.PANEL - player_pic_panel: T.PANEL - "player_pic_panel/player_gamer_pic": T.IMAGE - "player_pic_panel/player_local_icon": T.IMAGE - player_local_icon: T.IMAGE - player_gamer_pic: T.IMAGE - "player_gamer_pic/player_panel_black_border": T.IMAGE - gametag_wrapper: T.PANEL - "gametag_wrapper/gamertag": T.LABEL - platform_icon_panel: T.PANEL - "platform_icon_panel/platform_icon": T.IMAGE - player_gamertag: T.LABEL - platform_icon: T.IMAGE - player_grid_banner_no_focus: T.IMAGE - player_grid_banner: T.PANEL - "player_grid_banner/player_grid_banner_no_focus": T.IMAGE - "player_grid_banner/player_grid_banner_no_focus/player_button_content": T.STACK_PANEL - "player_grid_banner/focus_border_button": T.BUTTON - focus_border_button: T.BUTTON - "focus_border_button/default": T.PANEL - "focus_border_button/hover": T.IMAGE - "focus_border_button/pressed": T.IMAGE - focus_border: T.IMAGE - pause_screen_border: T.IMAGE - filler_panel: T.PANEL - gamepad_helpers: T.PANEL - "gamepad_helpers/gamepad_helper_y": T.STACK_PANEL - keyboard_helpers: T.PANEL - "keyboard_helpers/keyboard_helper_keys": T.STACK_PANEL + "pause_icon": T.IMAGE, + "feedback_icon": T.IMAGE, + "change_skin_icon": T.IMAGE, + "take_screenshot_icon": T.IMAGE, + "settings_icon": T.IMAGE, + "achievements_icon": T.IMAGE, + "alex_icon": T.IMAGE, + "profile_gamerpic": T.CUSTOM, + "button_x": T.STACK_PANEL, + "dressing_room_controller_button_content": T.PANEL, + "dressing_room_controller_button_content/button_x": T.STACK_PANEL, + "dressing_room_controller_button_content/button_label_panel": T.PANEL, + "dressing_room_controller_button_content/button_label_panel/button_label_text_left": T.LABEL, + "controller_button_label": T.LABEL, + "column_frame": T.PANEL, + "dressing_room_button_gamepad": T.BUTTON, + "dressing_room_button": T.BUTTON, + "profile_button_content": T.STACK_PANEL, + "profile_button_content/button_offset_wrapper": T.PANEL, + "profile_button_content/button_offset_wrapper/button_x": T.STACK_PANEL, + "profile_button_content/gamerpic_offset_wrapper": T.PANEL, + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border": T.PANEL, + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/gamerpic": T.CUSTOM, + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/alex_icon": T.IMAGE, + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/border_black": T.IMAGE, + "profile_button_content/padding_middle": T.PANEL, + "profile_button_content/vertically_central_text": T.STACK_PANEL, + "profile_button_content/vertically_central_text/top_padding": T.PANEL, + "profile_button_content/vertically_central_text/profile_button_label": T.LABEL, + "profile_button_content/padding_right": T.PANEL, + "profile_button": T.BUTTON, + "skin_viewer_panel": T.INPUT_PANEL, + "skin_viewer_panel/paper_doll_panel": T.PANEL, + "skin_viewer_panel/paper_doll_panel/paper_doll": T.CUSTOM, + "skin_viewer_panel/paper_doll_name_tag": T.CUSTOM, + "skin_panel": T.PANEL, + "skin_panel/interior": T.STACK_PANEL, + "skin_panel_interior": T.STACK_PANEL, + "skin_panel_interior/offset_panel": T.PANEL, + "skin_panel_interior/offset_panel/viewer_panel": T.INPUT_PANEL, + "skin_panel_interior/fill_1": T.PANEL, + "skin_panel_interior/change_profile_panel": T.STACK_PANEL, + "skin_panel_interior/change_profile_panel/centering_panel_1": T.PANEL, + "skin_panel_interior/change_profile_panel/centering_panel_1/dressing_room_button": T.BUTTON, + "skin_panel_interior/change_profile_panel/centering_panel_2": T.INPUT_PANEL, + "skin_panel_interior/change_profile_panel/centering_panel_2/dressing_room_button_gamepad": T.BUTTON, + "skin_panel_interior/change_profile_panel/centering_panel_3": T.INPUT_PANEL, + "skin_panel_interior/change_profile_panel/centering_panel_3/profile_button": T.BUTTON, + "pause_button_template": T.BUTTON, + "grid_button_template": T.BUTTON, + "return_to_game_button": T.BUTTON, + "realms_stories_button_panel": T.PANEL, + "realms_stories_button_panel/realms_stories_button": T.BUTTON, + "realms_stories_button_panel/unread_story_count_panel": T.PANEL, + "realms_stories_button": T.BUTTON, + "unread_story_count_panel": T.PANEL, + "unread_story_count_panel/text": T.LABEL, + "unread_story_count_panel/text/background": T.IMAGE, + "store_button_panel": T.PANEL, + "store_button_panel/store_button": T.BUTTON, + "store_button_panel/store_error_button": T.BUTTON, + "store_button": T.BUTTON, + "store_error_button": T.BUTTON, + "store_error_button_content": T.IMAGE, + "store_error_button_content/marketplace_button_label": T.LABEL, + "settings_button": T.BUTTON, + "how_to_play_button": T.BUTTON, + "invite_players_button": T.BUTTON, + "buy_button": T.BUTTON, + "quit_button": T.BUTTON, + "feedback_button": T.BUTTON, + "feedback_icon_button": T.PANEL, + "feedback_icon_button/feedback_button": T.BUTTON, + "take_screenshot_gamepad_button_content": T.PANEL, + "take_screenshot_gamepad_button_content/button_y": T.STACK_PANEL, + "take_screenshot_gamepad_button_content/take_screenshot_icon": T.IMAGE, + "take_screenshot_gamepad_button": T.BUTTON, + "achievements_button_small": T.BUTTON, + "settings_button_small": T.BUTTON, + "take_screenshot_button": T.BUTTON, + "pause_screen": T.SCREEN, + "pause_screen_content": T.PANEL, + "pause_screen_content/pause_screen_main_panels": T.STACK_PANEL, + "pause_screen_content/skin_panel": T.PANEL, + "pause_screen_content/friendsdrawer_button_panel": T.PANEL, + "pause_screen_content/gamepad_helpers": T.PANEL, + "pause_screen_content/keyboard_helpers": T.PANEL, + "friendsdrawer_button_panel": T.PANEL, + "friendsdrawer_button_panel/friendsdrawer_container_stack_panel": T.PANEL, + "friendsdrawer_button_panel/friendsdrawer_container_stack_panel/friendsdrawer_button": T.BUTTON, + "friendsdrawer_button_panel/friendsdrawer_container_stack_panel/friends_drawer_ftue_popup": T.BUTTON, + "pause_screen_main_panels": T.STACK_PANEL, + "pause_screen_main_panels/menu": T.IMAGE, + "left_buttons_panel": T.IMAGE, + "left_buttons_panel/filler": T.PANEL, + "left_buttons_panel/trialTime": T.CUSTOM, + "left_buttons_panel/the_rest_panel": T.STACK_PANEL, + "smaller_buttons_panel": T.STACK_PANEL, + "smaller_buttons_panel/stacked_column": T.STACK_PANEL, + "smaller_buttons_panel/stacked_column/fill_1": T.PANEL, + "smaller_buttons_panel/stacked_column/side_padding": T.PANEL, + "smaller_buttons_panel/stacked_column/small_settings_button": T.INPUT_PANEL, + "smaller_buttons_panel/stacked_column/small_settings_button/small_settings_btn": T.BUTTON, + "smaller_buttons_panel/stacked_column/small_settings_padding": T.PANEL, + "smaller_buttons_panel/stacked_column/small_achievements_button": T.INPUT_PANEL, + "smaller_buttons_panel/stacked_column/small_achievements_button/small_achievements_btn": T.BUTTON, + "smaller_buttons_panel/stacked_column/small_achievements_padding": T.PANEL, + "smaller_buttons_panel/stacked_column/take_screenshot_btn": T.INPUT_PANEL, + "smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_button": T.BUTTON, + "smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_gamepad_button": T.BUTTON, + "smaller_buttons_panel/stacked_column/screenshot_padding": T.PANEL, + "smaller_buttons_panel/stacked_column/fill_3": T.PANEL, + "smaller_buttons_panel/padding_bottom": T.PANEL, + "social_buttons_panel": T.STACK_PANEL, + "social_buttons_panel/friendsbutton_panel": T.PANEL, + "social_buttons_panel/friendsbutton_panel/friendsdrawer_button": T.BUTTON, + "social_buttons_panel/friendsbutton_panel/friends_drawer__ftue_popup": T.BUTTON, + "social_buttons_panel/invitebutton_panel": T.STACK_PANEL, + "social_buttons_panel/invitebutton_panel/invite_button": T.BUTTON, + "social_buttons_panel/invitebutton_panel/vertical_padding_2": T.PANEL, + "the_rest_panel": T.STACK_PANEL, + "the_rest_panel/fill_1": T.PANEL, + "the_rest_panel/pause_menu": T.PANEL, + "the_rest_panel/fill_3": T.PANEL, + "paused_text": T.LABEL, + "green_tag": T.IMAGE, + "paused_text_panel": T.IMAGE, + "paused_text_panel/pause": T.LABEL, + "paused_text_panel/horizontal_stack": T.STACK_PANEL, + "paused_text_panel/horizontal_stack/pause_icon": T.IMAGE, + "paused_text_panel/horizontal_stack/fill_1": T.PANEL, + "paused_text_panel/horizontal_stack/pause": T.LABEL, + "transparent_background": T.IMAGE, + "non_transparent_background": T.IMAGE, + "menu_the_rest_panel": T.PANEL, + "menu_the_rest_panel/menu_button_control": T.IMAGE, + "menu_button_control": T.IMAGE, + "menu_button_control/menu_background": T.IMAGE, + "pause_announcement_panel_type": T.STACK_PANEL, + "pause_announcement_panel_type/horizontal_stack": T.STACK_PANEL, + "pause_announcement_panel_type/horizontal_stack/fill_1": T.PANEL, + "pause_announcement_panel_type/horizontal_stack/pause_text": T.IMAGE, + "pause_announcement_panel_type/horizontal_stack/fill_2": T.PANEL, + "menu_background": T.IMAGE, + "menu_background/button_panel": T.STACK_PANEL, + "menu_background/button_panel/title_image": T.PANEL, + "menu_background/button_panel/title_image/image": T.IMAGE, + "menu_background/button_panel/fill_1": T.PANEL, + "menu_background/button_panel/return_to_game_button": T.BUTTON, + "menu_background/button_panel/return": T.PANEL, + "menu_background/button_panel/realms_stories_button_panel": T.PANEL, + "menu_background/button_panel/realms_stories": T.PANEL, + "menu_background/button_panel/buy_button": T.BUTTON, + "menu_background/button_panel/buy": T.PANEL, + "menu_background/button_panel/store_button_panel": T.PANEL, + "menu_background/button_panel/store_button_panel_padding": T.PANEL, + "menu_background/button_panel/quit_button": T.BUTTON, + "menu_background/button_panel/smaller_buttons": T.STACK_PANEL, + "menu_background/button_panel/pause_panel": T.STACK_PANEL, + "info_panel_content_list": T.STACK_PANEL, + "info_panel_content_list/player_list_scrolling_panel": T.PANEL, + "info_panel_content_list/vertical_padding": T.PANEL, + "info_panel_background": T.IMAGE, + "info_panel": T.IMAGE, + "info_panel/info_panel_background": T.IMAGE, + "info_panel/info_panel_list": T.STACK_PANEL, + "player_panel_background": T.IMAGE, + "player_panel_background/player_list_scrolling_panel": T.PANEL, + "player_list": T.STACK_PANEL, + "player_list/vertical_padding_0": T.PANEL, + "player_list/social_buttons_panel": T.STACK_PANEL, + "player_list/players_label": T.LABEL, + "player_list/vertical_padding_4": T.PANEL, + "player_list/players_grid_panel": T.GRID, + "player_list/vertical_padding_5": T.PANEL, + "player_list/invite_players_button_panel": T.PANEL, + "player_list/vertical_padding_6": T.PANEL, + "player_list/disconnected_from_multiplayer_label_panel": T.STACK_PANEL, + "player_list/vertical_padding_7": T.PANEL, + "player_lists": T.PANEL, + "player_lists/normal_list": T.STACK_PANEL, + "player_lists/scoreboard_list": T.STACK_PANEL, + "player_list_scrolling_panel": T.PANEL, + "disconnected_label": T.LABEL, + "disconnected_from_multiplayer_label_panel": T.STACK_PANEL, + "disconnected_from_multiplayer_label_panel/disconnected_from_xbox_live_label": T.LABEL, + "disconnected_from_multiplayer_label_panel/disconnected_from_third_party_label": T.LABEL, + "disconnected_from_multiplayer_label_panel/disconnected_from_adhoc_label": T.LABEL, + "disconnected_from_multiplayer_label_panel/disconnected_from_crossplatform_multiplayer": T.LABEL, + "disconnected_from_multiplayer_label_panel/disconnected_from_multiplayer": T.LABEL, + "invite_players_button_panel": T.PANEL, + "invite_players_button_panel/invite_players_button": T.BUTTON, + "ip_label": T.LABEL, + "players_label": T.LABEL, + "players_grid": T.GRID, + "player_grid_item": T.PANEL, + "player_grid_item/player_grid_item_content": T.PANEL, + "player_grid_item_content": T.PANEL, + "player_grid_item_content/player_button_panel": T.STACK_PANEL, + "player_grid_item_content/player_button_panel/player_button_banner": T.PANEL, + "player_grid_item_content/player_button_panel/player_button_banner/player_button": T.BUTTON, + "player_grid_item_content/player_button_panel/player_button_banner/player_banner": T.PANEL, + "player_grid_item_content/player_button_panel/player_permission_button_padding": T.PANEL, + "player_grid_item_content/player_permission_button_panel": T.PANEL, + "player_grid_item_content/player_permission_button_panel/player_permission_button": T.BUTTON, + "player_permission_button": T.BUTTON, + "player_permission_button_content": T.PANEL, + "player_permission_button_content/permission_icon_image": T.IMAGE, + "vertical_padding": T.PANEL, + "horizontal_padding": T.PANEL, + "player_button_content": T.STACK_PANEL, + "player_button_content/player_pic_panel": T.PANEL, + "player_button_content/player_gamertag": T.PANEL, + "player_button_content/platform_icon": T.PANEL, + "player_button": T.BUTTON, + "player_banner": T.PANEL, + "player_pic_panel": T.PANEL, + "player_pic_panel/player_gamer_pic": T.IMAGE, + "player_pic_panel/player_local_icon": T.IMAGE, + "player_local_icon": T.IMAGE, + "player_gamer_pic": T.IMAGE, + "player_gamer_pic/player_panel_black_border": T.IMAGE, + "gametag_wrapper": T.PANEL, + "gametag_wrapper/gamertag": T.LABEL, + "platform_icon_panel": T.PANEL, + "platform_icon_panel/platform_icon": T.IMAGE, + "player_gamertag": T.LABEL, + "platform_icon": T.IMAGE, + "player_grid_banner_no_focus": T.IMAGE, + "player_grid_banner": T.PANEL, + "player_grid_banner/player_grid_banner_no_focus": T.IMAGE, + "player_grid_banner/player_grid_banner_no_focus/player_button_content": T.STACK_PANEL, + "player_grid_banner/focus_border_button": T.BUTTON, + "focus_border_button": T.BUTTON, + "focus_border_button/default": T.PANEL, + "focus_border_button/hover": T.IMAGE, + "focus_border_button/pressed": T.IMAGE, + "focus_border": T.IMAGE, + "pause_screen_border": T.IMAGE, + "filler_panel": T.PANEL, + "gamepad_helpers": T.PANEL, + "gamepad_helpers/gamepad_helper_y": T.STACK_PANEL, + "keyboard_helpers": T.PANEL, + "keyboard_helpers/keyboard_helper_keys": T.STACK_PANEL, } export type PdpType = { - download_progress: T.IMAGE - "download_progress/stacker": T.STACK_PANEL - "download_progress/stacker/sizer_text": T.PANEL - "download_progress/stacker/sizer_text/download_progress_text": T.LABEL - "download_progress/stacker/sizer_bar": T.PANEL - "download_progress/stacker/sizer_bar/download_progress_bar": T.PANEL - summary_box_button_panel: T.PANEL - "summary_box_button_panel/buttons_panel": T.STACK_PANEL - "summary_box_button_panel/download_buttons_panel": T.STACK_PANEL - "summary_box_button_panel/focus_border": T.BUTTON - interaction_button_content: T.STACK_PANEL - "interaction_button_content/line1_panel": T.PANEL - "interaction_button_content/line1_panel/upsell_text": T.LABEL - interaction_button_panel: T.PANEL - "interaction_button_panel/content_action_button": T.BUTTON - "interaction_button_panel/progress_bar": T.IMAGE - "interaction_button_panel/focus_border": T.BUTTON - download_progress_small: T.IMAGE - "download_progress_small/stacker": T.STACK_PANEL - "download_progress_small/stacker/sizer_text": T.PANEL - "download_progress_small/stacker/sizer_text/download_progress_text": T.LABEL - "download_progress_small/stacker/sizer_bar": T.PANEL - "download_progress_small/stacker/sizer_bar/download_progress_bar": T.PANEL - progress_loading_anim: T.PANEL - focus_border: T.BUTTON - "focus_border/default": T.IMAGE - "focus_border/default/loading_anim": T.PANEL - "focus_border/hover": T.IMAGE - "focus_border/hover/loading_anim": T.PANEL - "focus_border/pressed": T.IMAGE - "focus_border/pressed/loading_anim": T.PANEL - purchase_button_base: T.BUTTON - deactivated_purchase_button_base: T.BUTTON - download_buttons_panel: T.STACK_PANEL - "download_buttons_panel/progress_panel": T.STACK_PANEL - "download_buttons_panel/progress_panel/progress_bar": T.IMAGE - smooth_purchase_buttons_panel: T.STACK_PANEL - "smooth_purchase_buttons_panel/activated_purchase_buttons_panel": T.STACK_PANEL - "smooth_purchase_buttons_panel/deactivated_purchase_buttons_panel": T.STACK_PANEL - smooth_buttons_panel: T.STACK_PANEL - "smooth_buttons_panel/purchase_buttons_panel": T.STACK_PANEL - "smooth_buttons_panel/interact_filling_button": T.BUTTON - "smooth_buttons_panel/interact_exit_world_filling_button": T.BUTTON - disabled_interact_label_formfitting: T.STACK_PANEL - "disabled_interact_label_formfitting/info_icon": T.STACK_PANEL - "disabled_interact_label_formfitting/info_icon_pad": T.PANEL - "disabled_interact_label_formfitting/interact_label_panel": T.PANEL - "disabled_interact_label_formfitting/interact_label_panel/interact_label_text_left": T.LABEL - "disabled_interact_label_formfitting/pad": T.PANEL - interact_label_text: T.LABEL - activated_smooth_purchase_buttons_panel: T.STACK_PANEL - "activated_smooth_purchase_buttons_panel/purchase_coins_button_panel": T.PANEL - "activated_smooth_purchase_buttons_panel/purchase_coins_button_panel/smooth_purchase_with_coins_button": T.BUTTON - "activated_smooth_purchase_buttons_panel/pad_h1": T.PANEL - "activated_smooth_purchase_buttons_panel/purchase_currency_button_panel": T.PANEL - "activated_smooth_purchase_buttons_panel/purchase_currency_button_panel/purchase_with_currency_button": T.BUTTON - deactivated_purchase_hover_popup: T.IMAGE - deactivated_smooth_purchase_buttons_panel: T.STACK_PANEL - "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button": T.IMAGE - "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button/deactivated_purchase_hover_popup": T.IMAGE - "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button/content": T.STACK_PANEL - "deactivated_smooth_purchase_buttons_panel/pad_h1": T.PANEL - "deactivated_smooth_purchase_buttons_panel/purchase_currency_button_panel": T.PANEL - "deactivated_smooth_purchase_buttons_panel/purchase_currency_button_panel/deactivated_purchase_with_currency_button": T.BUTTON - smooth_save_share_button_panel: T.STACK_PANEL - "smooth_save_share_button_panel/pad_0": T.PANEL - "smooth_save_share_button_panel/share_button": T.BUTTON - "smooth_save_share_button_panel/pad_1": T.PANEL - "smooth_save_share_button_panel/save_button": T.BUTTON - currency_purchase_label: T.PANEL - "currency_purchase_label/currency_purchase_label_text": T.LABEL - coin_image: T.IMAGE - smooth_currency_purchase_label: T.PANEL - "smooth_currency_purchase_label/currency_purchase_label_text": T.LABEL - discount_label: T.STACK_PANEL - "discount_label/label_panel": T.PANEL - "discount_label/label_panel/label": T.LABEL - "discount_label/icon_panel": T.PANEL - "discount_label/icon_panel/icon": T.IMAGE - coin_purchase_label_text: T.LABEL - smooth_coin_purchase_label_formfitting: T.STACK_PANEL - "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel": T.PANEL - "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel": T.PANEL - "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel/markdown_banner": T.STACK_PANEL - "smooth_coin_purchase_label_formfitting/markdown_panel": T.PANEL - "smooth_coin_purchase_label_formfitting/markdown_panel/markdown_label": T.PANEL - "smooth_coin_purchase_label_formfitting/fill_pad_left": T.PANEL - "smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel": T.PANEL - "smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel/coin": T.IMAGE - "smooth_coin_purchase_label_formfitting/coin_purchase_label_panel": T.PANEL - "smooth_coin_purchase_label_formfitting/coin_purchase_label_panel/coin_purchase_label_text_left": T.LABEL - "smooth_coin_purchase_label_formfitting/pad": T.PANEL - "smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel": T.PANEL - "smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel/coin": T.IMAGE - "smooth_coin_purchase_label_formfitting/fill_pad_right": T.PANEL - disabled_smooth_coin_purchase_label_formfitting: T.STACK_PANEL - "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel": T.PANEL - "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel": T.PANEL - "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel/markdown_banner": T.STACK_PANEL - "disabled_smooth_coin_purchase_label_formfitting/markdown_panel": T.PANEL - "disabled_smooth_coin_purchase_label_formfitting/markdown_panel/markdown_label": T.PANEL - "disabled_smooth_coin_purchase_label_formfitting/fill_pad_left": T.PANEL - "disabled_smooth_coin_purchase_label_formfitting/info_icon_input_panel": T.INPUT_PANEL - "disabled_smooth_coin_purchase_label_formfitting/info_icon_input_panel/info_bulb": T.STACK_PANEL - "disabled_smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel": T.PANEL - "disabled_smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel/coin": T.IMAGE - "disabled_smooth_coin_purchase_label_formfitting/info_icon_pad": T.PANEL - "disabled_smooth_coin_purchase_label_formfitting/coin_purchase_label_panel": T.PANEL - "disabled_smooth_coin_purchase_label_formfitting/coin_purchase_label_panel/coin_purchase_label_text_left": T.LABEL - "disabled_smooth_coin_purchase_label_formfitting/pad": T.PANEL - "disabled_smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel": T.PANEL - "disabled_smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel/coin": T.IMAGE - "disabled_smooth_coin_purchase_label_formfitting/fill_pad_right": T.PANEL - share_icon: T.IMAGE - share_label: T.STACK_PANEL - "share_label/share_image_offset_panel": T.PANEL - "share_label/share_image_offset_panel/link_share": T.IMAGE - save_label_panel: T.PANEL - "save_label_panel/heart_image": T.PANEL - "save_label_panel/progress_loading": T.IMAGE - save_label: T.PANEL - "save_label/save_image_offset_panel": T.PANEL - "save_label/save_image_offset_panel/full_heart": T.IMAGE - "save_label/save_image_offset_panel/empty_heart": T.IMAGE - large_button_coin_purchase_label: T.STACK_PANEL - "large_button_coin_purchase_label/markdown_banner_filler_panel": T.PANEL - "large_button_coin_purchase_label/center_markdown_panel": T.PANEL - "large_button_coin_purchase_label/center_markdown_panel/markdown_banner": T.STACK_PANEL - "large_button_coin_purchase_label/sales_padding_0": T.PANEL - "large_button_coin_purchase_label/price_markdown_panel": T.PANEL - "large_button_coin_purchase_label/price_markdown_panel/price_markdown_label": T.PANEL - "large_button_coin_purchase_label/sales_padding_1": T.PANEL - "large_button_coin_purchase_label/left_coin_image_offset_panel": T.PANEL - "large_button_coin_purchase_label/left_coin_image_offset_panel/coin": T.IMAGE - "large_button_coin_purchase_label/coin_purchase_label_panel": T.PANEL - "large_button_coin_purchase_label/coin_purchase_label_panel/coin_purchase_label_text": T.LABEL - "large_button_coin_purchase_label/right_coin_image_offset_panel": T.PANEL - "large_button_coin_purchase_label/right_coin_image_offset_panel/coin": T.IMAGE - "large_button_coin_purchase_label/fill_padding_1": T.PANEL - price_markdown_panel: T.PANEL - "price_markdown_panel/offer_price": T.LABEL - "price_markdown_panel/offer_price/text_strike_through": T.IMAGE - vertical_padding_2px: T.PANEL - vertical_padding_4px: T.PANEL - vertical_padding_fill: T.PANEL - horizontal_padding_2px: T.PANEL - horizontal_padding_4px: T.PANEL - horizontal_padding_8px: T.PANEL - horizontal_padding_fill: T.PANEL - empty_content_panel: T.PANEL - section_header: T.PANEL - "section_header/header_label": T.LABEL - content_section_bg: T.STACK_PANEL - "content_section_bg/pad": T.PANEL - "content_section_bg/section_header": T.PANEL - "content_section_bg/bg_and_content": T.PANEL - "content_section_bg/bg_and_content/bg": T.IMAGE - content_section_boarder_bg: T.STACK_PANEL - "content_section_boarder_bg/pad": T.PANEL - "content_section_boarder_bg/bg_and_content": T.PANEL - "content_section_boarder_bg/bg_and_content/bg": T.IMAGE - "content_section_boarder_bg/bg_and_content/bg/inner": T.IMAGE - "content_section_boarder_bg/pad_3": T.PANEL - "content_section_boarder_bg/divider_3": T.PANEL - summary_factory_object: T.STACK_PANEL - "summary_factory_object/summary": T.STACK_PANEL - "summary_factory_object/navigation_tab_section": T.PANEL - "summary_factory_object/update_notification_section": T.STACK_PANEL - screenshot_carousel_factory_object: T.STACK_PANEL - "screenshot_carousel_factory_object/resource_pack_content_panel": T.STACK_PANEL - "screenshot_carousel_factory_object/pad_3": T.PANEL - "screenshot_carousel_factory_object/divider_3": T.PANEL - image_gallery_factory_object: T.STACK_PANEL - "image_gallery_factory_object/resource_pack_content_panel": T.PANEL - left_text_right_image_factory_object: T.STACK_PANEL - "left_text_right_image_factory_object/resource_pack_content_panel": T.STACK_PANEL - right_text_left_image_factory_object: T.STACK_PANEL - "right_text_left_image_factory_object/resource_pack_content_panel": T.STACK_PANEL - skin_pack_section_factory_object: T.PANEL - "skin_pack_section_factory_object/skin_pack_section_factory_content": T.STACK_PANEL - "skin_pack_section_factory_object/skin_pack_section_factory_content/skin_pack_content_panel": T.STACK_PANEL - "skin_pack_section_factory_object/skin_pack_section_factory_content/pad_3": T.PANEL - "skin_pack_section_factory_object/skin_pack_section_factory_content/divider_3": T.PANEL - panorama_view_factory_object: T.STACK_PANEL - "panorama_view_factory_object/panorama_view_content_panel": T.STACK_PANEL - "panorama_view_factory_object/pad_3": T.PANEL - "panorama_view_factory_object/divider_3": T.PANEL - ratings_factory_object: T.PANEL - "ratings_factory_object/rating_factory_object_content": T.STACK_PANEL - focus_container_button: T.BUTTON - "focus_container_button/default": T.PANEL - bundle_summary_factory_object: T.PANEL - "bundle_summary_factory_object/bundle_summary_factory_object_content": T.PANEL - pdp_cycle_offer_row_content: T.STACK_PANEL - "pdp_cycle_offer_row_content/store_row_panel": T.STACK_PANEL - "pdp_cycle_offer_row_content/pad_3": T.PANEL - "pdp_cycle_offer_row_content/divider_3": T.PANEL - pdp_cycle_offer_row_section: T.PANEL - recently_viewed_viewed_factory_object: T.PANEL - scrolling_content_stack: T.STACK_PANEL - warning_image: T.IMAGE - scaling_rating: T.PANEL - "scaling_rating/empty_rating": T.IMAGE - "scaling_rating/empty_rating/full_rating": T.IMAGE - scaling_rating_new: T.PANEL - "scaling_rating_new/empty_rating": T.IMAGE - "scaling_rating_new/empty_rating/full_rating": T.IMAGE - chart_section: T.PANEL - "chart_section/stack": T.STACK_PANEL - "chart_section/stack/star_number_panel": T.PANEL - "chart_section/stack/star_number_panel/star_number": T.LABEL - "chart_section/stack/star_panel": T.PANEL - "chart_section/stack/star_panel/star_img": T.IMAGE - "chart_section/stack/pad_0": T.PANEL - "chart_section/stack/bar_panel": T.PANEL - "chart_section/stack/bar_panel/bar": T.IMAGE - "chart_section/stack/bar_panel/bar/full_bar": T.IMAGE - "chart_section/stack/pad_1": T.PANEL - "chart_section/stack/percent": T.LABEL - ratings_chart: T.STACK_PANEL - "ratings_chart/5_star": T.PANEL - "ratings_chart/4_star": T.PANEL - "ratings_chart/3_star": T.PANEL - "ratings_chart/2_star": T.PANEL - "ratings_chart/1_star": T.PANEL - ratings_chart_panel: T.PANEL - "ratings_chart_panel/ratings_chart_content": T.STACK_PANEL - "ratings_chart_panel/ratings_chart_content/pad_0": T.PANEL - "ratings_chart_panel/ratings_chart_content/title": T.PANEL - "ratings_chart_panel/ratings_chart_content/title/title_text": T.LABEL - "ratings_chart_panel/ratings_chart_content/pad_1": T.PANEL - "ratings_chart_panel/ratings_chart_content/rating_panel": T.PANEL - "ratings_chart_panel/ratings_chart_content/rating_panel/rating": T.STACK_PANEL - "ratings_chart_panel/ratings_chart_content/rating_panel/rating/rating_bar": T.PANEL - "ratings_chart_panel/ratings_chart_content/rating_panel/rating/pad": T.PANEL - "ratings_chart_panel/ratings_chart_content/rating_text_panel": T.PANEL - "ratings_chart_panel/ratings_chart_content/rating_text_panel/rating_text": T.LABEL - "ratings_chart_panel/ratings_chart_content/count_panel": T.PANEL - "ratings_chart_panel/ratings_chart_content/count_panel/count": T.LABEL - "ratings_chart_panel/ratings_chart_content/pad_2": T.PANEL - "ratings_chart_panel/ratings_chart_content/chart": T.STACK_PANEL - "ratings_chart_panel/ratings_chart_content/pad_3": T.PANEL - ratings_box: T.PANEL - "ratings_box/ratings_panel_focus_point": T.BUTTON - "ratings_box/ratings_full_panel": T.PANEL - "ratings_box/ratings_full_panel/ratings_chart_and_button": T.STACK_PANEL - "ratings_box/ratings_full_panel/ratings_chart_and_button/chart": T.PANEL - "ratings_box/ratings_full_panel/ratings_chart_and_button/pad_1": T.PANEL - "ratings_box/divider": T.IMAGE - user_rating_star_button: T.BUTTON - "user_rating_star_button/default": T.PANEL - "user_rating_star_button/default/default_user_rating_star": T.IMAGE - "user_rating_star_button/hover": T.PANEL - "user_rating_star_button/hover/hover_user_rating_star": T.IMAGE - user_rating_star_list_grid: T.GRID - ratings_interact_panel: T.STACK_PANEL - "ratings_interact_panel/title_text": T.LABEL - "ratings_interact_panel/pad_vertical_4px": T.PANEL - "ratings_interact_panel/rating_stars_and_button_panel": T.STACK_PANEL - "ratings_interact_panel/rating_stars_and_button_panel/fill_stars": T.PANEL - "ratings_interact_panel/rating_stars_and_button_panel/fill_stars/rating_buttons": T.GRID - "ratings_interact_panel/rating_stars_and_button_panel/pad_3_percent": T.PANEL - "ratings_interact_panel/rating_stars_and_button_panel/submit_button_panel": T.PANEL - "ratings_interact_panel/rating_stars_and_button_panel/submit_button_panel/submit": T.BUTTON - "ratings_interact_panel/pad_vertical_8px": T.PANEL - "ratings_interact_panel/fill_pad": T.PANEL - "ratings_interact_panel/fill_pad/text": T.LABEL - "ratings_interact_panel/send_feedback_button": T.BUTTON - "ratings_interact_panel/pad_1": T.PANEL - ratings_info_panel: T.PANEL - "ratings_info_panel/ratings": T.PANEL - "ratings_info_panel/ratings_right": T.PANEL - "ratings_info_panel/ratings_right/ratings_interact_panel": T.STACK_PANEL - ratings_content_panel: T.STACK_PANEL - panorama_view_content: T.STACK_PANEL - "panorama_view_content/panorama_panel": T.PANEL - "panorama_view_content/panorama_panel/panorama_content": T.PANEL - skins: T.PANEL - skin_pack_content_panel: T.STACK_PANEL - resource_pack_content: T.PANEL - "resource_pack_content/screenshots": T.PANEL - image_row_left_text_content: T.STACK_PANEL - "image_row_left_text_content/buffer_panel_front": T.PANEL - "image_row_left_text_content/text_section": T.STACK_PANEL - "image_row_left_text_content/text_section/left_header": T.PANEL - "image_row_left_text_content/text_section/left_text": T.PANEL - "image_row_left_text_content/text_section/buffer_panel_bottom": T.PANEL - "image_row_left_text_content/buffer_panel_mid": T.PANEL - "image_row_left_text_content/screenshots_single": T.PANEL - "image_row_left_text_content/buffer_panel_back": T.PANEL - image_row_right_text_content: T.STACK_PANEL - "image_row_right_text_content/buffer_panel_front": T.PANEL - "image_row_right_text_content/screenshots_single": T.PANEL - "image_row_right_text_content/buffer_panel_mid": T.PANEL - "image_row_right_text_content/text_section": T.STACK_PANEL - "image_row_right_text_content/text_section/right_header": T.PANEL - "image_row_right_text_content/text_section/right_text": T.PANEL - "image_row_right_text_content/text_section/buffer_panel_bottom": T.PANEL - "image_row_right_text_content/buffer_panel_back": T.PANEL - image_row_content: T.PANEL - "image_row_content/screenshots_triple": T.STACK_PANEL - play_button: T.IMAGE - csb_expiration: T.PANEL - "csb_expiration/background": T.IMAGE - "csb_expiration/background/content_stack_panel": T.STACK_PANEL - "csb_expiration/background/content_stack_panel/icon_wrapper": T.PANEL - "csb_expiration/background/content_stack_panel/icon_wrapper/icon": T.IMAGE - "csb_expiration/background/content_stack_panel/text_wrapper": T.PANEL - "csb_expiration/background/content_stack_panel/text_wrapper/text": T.LABEL - summary_content_left_side: T.STACK_PANEL - "summary_content_left_side/pad_left": T.PANEL - "summary_content_left_side/full_content": T.STACK_PANEL - "summary_content_left_side/full_content/top": T.STACK_PANEL - "summary_content_left_side/full_content/top/image": T.PANEL - "summary_content_left_side/full_content/top/image/key_image": T.IMAGE - "summary_content_left_side/full_content/top/image/key_image/border": T.IMAGE - "summary_content_left_side/full_content/top/image/key_image/csb_expiration_banner": T.PANEL - "summary_content_left_side/full_content/top/image/key_image/video_overlay_button": T.BUTTON - "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/mask": T.IMAGE - "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/default": T.IMAGE - "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/hover": T.IMAGE - "summary_content_left_side/full_content/top/image/key_image/rtx_label": T.PANEL - "summary_content_left_side/full_content/top/divider": T.PANEL - "summary_content_left_side/full_content/top/info": T.STACK_PANEL - "summary_content_left_side/full_content/top/info/summary_title_and_author_panel": T.STACK_PANEL - "summary_content_left_side/full_content/top/info/pad_fill": T.PANEL - "summary_content_left_side/full_content/top/info/glyph_section": T.PANEL - "summary_content_left_side/full_content/top/info/glyph_section/glyph_section_panel": T.STACK_PANEL - "summary_content_left_side/full_content/top/info/ratings_summary": T.STACK_PANEL - "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display": T.STACK_PANEL - "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel": T.PANEL - "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel/rating": T.PANEL - "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/summary_rating_button": T.BUTTON - "summary_content_left_side/full_content/top/info/vibrant_visuals_badge_and_hover": T.PANEL - "summary_content_left_side/full_content/bottom": T.PANEL - offer_title_label: T.PANEL - title_and_author_panel: T.STACK_PANEL - "title_and_author_panel/title_panel": T.PANEL - "title_and_author_panel/author_button_panel": T.PANEL - "title_and_author_panel/author_button_panel/summary_author_button": T.BUTTON - description_label: T.LABEL - warning_stack_panel: T.STACK_PANEL - "warning_stack_panel/warning_icon": T.IMAGE - "warning_stack_panel/pad_0": T.PANEL - "warning_stack_panel/warning_text_panel": T.PANEL - "warning_stack_panel/warning_text_panel/warning_text": T.LABEL - warning_panel: T.PANEL - "warning_panel/background": T.IMAGE - "warning_panel/content_stack_panel": T.STACK_PANEL - description_toggle_show_button_panel: T.PANEL - "description_toggle_show_button_panel/description_bottom_right_button_border": T.IMAGE - "description_toggle_show_button_panel/description_toggle_show_button": T.BUTTON - "description_toggle_show_button_panel/warning_icon": T.IMAGE - vibrant_visuals_underline_button: T.BUTTON - vibrant_visuals_hover_popup: T.IMAGE - vibrant_visuals_badge_display: T.IMAGE - "vibrant_visuals_badge_display/vibrant_visuals_underline_button": T.BUTTON - vibrant_visuals_badge_and_hover: T.PANEL - "vibrant_visuals_badge_and_hover/vibrant_visuals_hover_popup": T.IMAGE - "vibrant_visuals_badge_and_hover/vibrant_visuals_badge_display": T.IMAGE - glyph_icon: T.IMAGE - glyph_count_label: T.LABEL - glyph_count_underline_button: T.BUTTON - glyph_count_hover_underline_button_panel: T.PANEL - "glyph_count_hover_underline_button_panel/glyph_hover_popup": T.UNKNOWN - "glyph_count_hover_underline_button_panel/glyph_count_underline_button": T.BUTTON - glyph_icon_with_count: T.STACK_PANEL - "glyph_icon_with_count/glyph_icon": T.IMAGE - "glyph_icon_with_count/horizontal_padding": T.PANEL - "glyph_icon_with_count/item_glyph_count_panel_label": T.UNKNOWN - glyph_panel_hover_popup: T.IMAGE - glyph_panel_mashup_hover_popup: T.IMAGE - mashup_glyph_tooltip_content: T.STACK_PANEL - "mashup_glyph_tooltip_content/mashup_text_row": T.STACK_PANEL - "mashup_glyph_tooltip_content/mashup_text_row/info_icon": T.STACK_PANEL - "mashup_glyph_tooltip_content/mashup_text_row/mashup_line_one": T.PANEL - "mashup_glyph_tooltip_content/mashup_line_two": T.PANEL - "mashup_glyph_tooltip_content/offset_panel": T.PANEL - "mashup_glyph_tooltip_content/offset_panel/basic_vertical_glyph_section_panel": T.STACK_PANEL - glyph_section_mashup: T.STACK_PANEL - glyph_section_skin: T.STACK_PANEL - glyph_section_resource_pack: T.STACK_PANEL - glyph_section_world: T.STACK_PANEL - glyph_section_addon: T.STACK_PANEL - basic_vertical_glyph_section_panel: T.STACK_PANEL - "basic_vertical_glyph_section_panel/glyph_section_skin": T.STACK_PANEL - "basic_vertical_glyph_section_panel/glyph_section_world": T.STACK_PANEL - "basic_vertical_glyph_section_panel/glyph_section_resource_pack": T.STACK_PANEL - "basic_vertical_glyph_section_panel/glyph_section_addon": T.STACK_PANEL - vertical_glyph_section_panel: T.STACK_PANEL - "vertical_glyph_section_panel/glyph_section_mashup": T.STACK_PANEL - "vertical_glyph_section_panel/basic_vertical_glyph_section_panel": T.STACK_PANEL - summary_text_panel: T.STACK_PANEL - "summary_text_panel/top_interact_button_stack": T.STACK_PANEL - "summary_text_panel/top_interact_button_stack/top_interact": T.PANEL - "summary_text_panel/apply_to_realm_panel": T.PANEL - "summary_text_panel/apply_to_realm_panel/apply_to_realm_button": T.BUTTON - "summary_text_panel/in_csb_panel": T.PANEL - "summary_text_panel/in_csb_panel/in_csb_button": T.BUTTON - "summary_text_panel/progress_loading_anim_panel": T.PANEL - "summary_text_panel/progress_loading_anim_panel/progress_loading_anim": T.PANEL - "summary_text_panel/pad_0": T.PANEL - "summary_text_panel/disclaimer_panel": T.PANEL - "summary_text_panel/pad_1": T.PANEL - "summary_text_panel/save_share_button_panel": T.STACK_PANEL - "summary_text_panel/pad_2": T.PANEL - info_bulb_image: T.IMAGE - info_bulb_image_small: T.IMAGE - info_bulb_image_small_centered: T.STACK_PANEL - "info_bulb_image_small_centered/top_filler": T.PANEL - "info_bulb_image_small_centered/middle_panel": T.STACK_PANEL - "info_bulb_image_small_centered/middle_panel/front_filler": T.PANEL - "info_bulb_image_small_centered/middle_panel/info_bulb": T.IMAGE - "info_bulb_image_small_centered/middle_panel/bottom_filler": T.PANEL - "info_bulb_image_small_centered/bottom_filler": T.PANEL - realms_incompatable_content: T.IMAGE - "realms_incompatable_content/realms_content_stack_panel": T.STACK_PANEL - "realms_incompatable_content/realms_content_stack_panel/info_bulb_image": T.IMAGE - "realms_incompatable_content/realms_content_stack_panel/padding": T.PANEL - "realms_incompatable_content/realms_content_stack_panel/realms_incompatable_button_label": T.LABEL - apply_to_realm_button: T.BUTTON - in_csb_button: T.BUTTON - read_more_button: T.BUTTON - "read_more_button/default": T.PANEL - "read_more_button/hover": T.IMAGE - "read_more_button/pressed": T.IMAGE - summary_content_right_side: T.STACK_PANEL - "summary_content_right_side/pad_middle": T.PANEL - "summary_content_right_side/text": T.STACK_PANEL - "summary_content_right_side/entitlements_progress_panel": T.PANEL - "summary_content_right_side/entitlements_progress_panel/progress_loading": T.IMAGE - "summary_content_right_side/pad_right": T.PANEL - summary_content_whole_stack_panel: T.STACK_PANEL - "summary_content_whole_stack_panel/left_side": T.STACK_PANEL - "summary_content_whole_stack_panel/divider_panel": T.PANEL - "summary_content_whole_stack_panel/right_side": T.STACK_PANEL - summary_content_panel: T.STACK_PANEL - "summary_content_panel/pad_top": T.PANEL - "summary_content_panel/summary_content_whole_stack": T.STACK_PANEL - "summary_content_panel/pad_3": T.PANEL - "summary_content_panel/divider_3": T.PANEL - appearance_status_image_panel: T.PANEL - "appearance_status_image_panel/limited_status_image": T.IMAGE - "appearance_status_image_panel/no_restrictions_status_image": T.IMAGE - appearance_status_content: T.STACK_PANEL - "appearance_status_content/appearance_status_image_panel": T.PANEL - "appearance_status_content/last_update_panel": T.PANEL - "appearance_status_content/last_update_panel/last_update_label": T.LABEL - dynamic_tooltip_notification_panel: T.BUTTON - "dynamic_tooltip_notification_panel/default": T.PANEL - "dynamic_tooltip_notification_panel/hover": T.IMAGE - "dynamic_tooltip_notification_panel/pressed": T.IMAGE - update_notification_content: T.PANEL - "update_notification_content/dynamic_tooltip_notification_panel": T.BUTTON - "update_notification_content/status": T.STACK_PANEL - update_notification_stack_panel: T.STACK_PANEL - "update_notification_stack_panel/pad_0": T.PANEL - "update_notification_stack_panel/content": T.PANEL - "update_notification_stack_panel/pad_1": T.PANEL - tag_base: T.IMAGE - tag_button_panel: T.PANEL - "tag_button_panel/button": T.BUTTON - "tag_button_panel/button/default": T.IMAGE - "tag_button_panel/button/hover": T.IMAGE - "tag_button_panel/button/pressed": T.IMAGE - "tag_button_panel/button/label": T.LABEL - tag_row_factory: T.STACK_PANEL - player_count_button_panel: T.PANEL - "player_count_button_panel/player_count_button": T.BUTTON - "player_count_button_panel/comma": T.LABEL - player_count_factory: T.STACK_PANEL - language_button_panel: T.PANEL - "language_button_panel/language_button": T.BUTTON - "language_button_panel/comma": T.LABEL - language_row_factory: T.STACK_PANEL - description_inner_panel: T.PANEL - "description_inner_panel/description_stack_panel": T.STACK_PANEL - "description_inner_panel/description_stack_panel/pad_0": T.PANEL - "description_inner_panel/description_stack_panel/title_stack_panel": T.STACK_PANEL - "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel": T.STACK_PANEL - "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_label_icon": T.IMAGE - "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/pad_0": T.PANEL - "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_panel": T.PANEL - "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_panel/title_label": T.LABEL - "description_inner_panel/description_stack_panel/title_stack_panel/pad_0": T.PANEL - "description_inner_panel/description_stack_panel/title_stack_panel/divider_panel": T.PANEL - "description_inner_panel/description_stack_panel/title_stack_panel/divider_panel/divider": T.PANEL - "description_inner_panel/description_stack_panel/title_stack_panel/pad_1": T.PANEL - "description_inner_panel/description_stack_panel/description_text_panel_full": T.STACK_PANEL - "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded": T.STACK_PANEL - "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/description_label": T.LABEL - "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/pad_0": T.PANEL - "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/warning_panel": T.PANEL - "description_inner_panel/description_stack_panel/description_text_panel_full/button_panel": T.PANEL - "description_inner_panel/description_stack_panel/description_text_panel_collapsed": T.STACK_PANEL - "description_inner_panel/description_stack_panel/description_text_panel_collapsed/description_text_collapsed": T.LABEL - "description_inner_panel/description_stack_panel/description_text_panel_collapsed/collapsed_show_more_panel": T.PANEL - "description_inner_panel/description_stack_panel/pad_1": T.PANEL - "description_inner_panel/description_stack_panel/divider_panel": T.PANEL - "description_inner_panel/description_stack_panel/divider_panel/divider": T.PANEL - "description_inner_panel/description_stack_panel/pad_2": T.PANEL - "description_inner_panel/description_stack_panel/tags_panel": T.STACK_PANEL - "description_inner_panel/description_stack_panel/tags_panel/label_text_panel": T.PANEL - "description_inner_panel/description_stack_panel/tags_panel/label_text_panel/label_text": T.LABEL - "description_inner_panel/description_stack_panel/tags_panel/pad": T.PANEL - "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel": T.PANEL - "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel/tags_factory_with_rows": T.STACK_PANEL - "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel/tags_factory": T.STACK_PANEL - "description_inner_panel/description_stack_panel/genre_panel": T.STACK_PANEL - "description_inner_panel/description_stack_panel/genre_panel/label_text": T.LABEL - "description_inner_panel/description_stack_panel/genre_panel/pad": T.PANEL - "description_inner_panel/description_stack_panel/genre_panel/text_panel": T.PANEL - "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel": T.STACK_PANEL - "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/genre_button": T.BUTTON - "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/pad_0": T.PANEL - "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/slash_divider": T.LABEL - "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/subgenre_button": T.BUTTON - "description_inner_panel/description_stack_panel/players_panel": T.STACK_PANEL - "description_inner_panel/description_stack_panel/players_panel/label_text": T.LABEL - "description_inner_panel/description_stack_panel/players_panel/pad": T.PANEL - "description_inner_panel/description_stack_panel/players_panel/text_panel": T.PANEL - "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel": T.STACK_PANEL - "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel": T.STACK_PANEL - "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_button_factory": T.STACK_PANEL - "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/pad": T.PANEL - "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_range_panel": T.PANEL - "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_range_panel/player_count_range_text": T.LABEL - "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/note_text": T.LABEL - "description_inner_panel/description_stack_panel/languages_panel": T.STACK_PANEL - "description_inner_panel/description_stack_panel/languages_panel/label_text_panel": T.PANEL - "description_inner_panel/description_stack_panel/languages_panel/label_text_panel/label_text": T.LABEL - "description_inner_panel/description_stack_panel/languages_panel/pad": T.PANEL - "description_inner_panel/description_stack_panel/languages_panel/languages_factory": T.STACK_PANEL - "description_inner_panel/description_stack_panel/pad_3": T.PANEL - "description_inner_panel/description_stack_panel/show_less_button_panel": T.PANEL - description_section: T.STACK_PANEL - changelog_section: T.STACK_PANEL - bundle_thumbnail: T.IMAGE - bundle_thumbnail_section_content: T.PANEL - "bundle_thumbnail_section_content/bundle_thumbnail_grid": T.GRID - bundle_thumbnail_section: T.STACK_PANEL - price_panel: T.STACK_PANEL - "price_panel/coin_non_sale_price_label": T.PANEL - "price_panel/price_padding": T.PANEL - "price_panel/offer_prompt_panel": T.PANEL - "price_panel/offer_prompt_panel/offer_status_text": T.LABEL - "price_panel/padding_3": T.PANEL - "price_panel/coin_panel": T.PANEL - "price_panel/coin_panel/offer_coin_icon": T.IMAGE - rating_and_coins_panel: T.STACK_PANEL - "rating_and_coins_panel/rating_panel": T.STACK_PANEL - "rating_and_coins_panel/rating_padding_coin": T.PANEL - "rating_and_coins_panel/price_panel": T.STACK_PANEL - bundle_offer_texture: T.PANEL - "bundle_offer_texture/texture": T.IMAGE - "bundle_offer_texture/texture/border": T.IMAGE - bundle_offer_info: T.STACK_PANEL - "bundle_offer_info/top_padding": T.PANEL - "bundle_offer_info/offer_title_and_author_panel": T.STACK_PANEL - "bundle_offer_info/glyph_section": T.UNKNOWN - "bundle_offer_info/glyph_description_padding": T.PANEL - "bundle_offer_info/description_panel": T.UNKNOWN - "bundle_offer_info/description_padding": T.PANEL - "bundle_offer_info/description_padding_bottom": T.PANEL - "bundle_offer_info/rating_and_price_panel": T.STACK_PANEL - "bundle_offer_info/bottom_padding": T.PANEL - bundle_offer_summary_grid_item_content: T.IMAGE - "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel": T.PANEL - "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/focus_border": T.IMAGE - "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel": T.STACK_PANEL - "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/key_art": T.PANEL - "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/mid_padding": T.PANEL - "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/info": T.STACK_PANEL - "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/right_padding": T.PANEL - bundle_offer_summary_grid_item: T.PANEL - "bundle_offer_summary_grid_item/bundle_offer_summary_button": T.BUTTON - bundle_offer_content_section: T.PANEL - "bundle_offer_content_section/bundle_grid": T.GRID - bundle_summary_section_panel: T.PANEL - "bundle_summary_section_panel/bundle_summary_section": T.STACK_PANEL - "bundle_summary_section_panel/bundle_summary_section/bundle_header_and_thumnails_section": T.STACK_PANEL - "bundle_summary_section_panel/bundle_summary_section/mid_padding": T.PANEL - "bundle_summary_section_panel/bundle_summary_section/bundle_offers_info_section": T.PANEL - "bundle_summary_section_panel/bundle_summary_section/mid_padding_2": T.PANEL - "bundle_summary_section_panel/bundle_summary_section/interact_panel": T.PANEL - "bundle_summary_section_panel/bundle_summary_section/interact_panel/bundle_interact": T.PANEL - "bundle_summary_section_panel/divider_3": T.PANEL - pdp_screen: T.SCREEN - mashup_screen_content: T.PANEL - "mashup_screen_content/header": T.STACK_PANEL - "mashup_screen_content/popup_dialog_factory": T.FACTORY - mashup_screen_main: T.INPUT_PANEL - "mashup_screen_main/pack_content": T.PANEL - "mashup_screen_main/progress_loading": T.PANEL + "download_progress": T.IMAGE, + "download_progress/stacker": T.STACK_PANEL, + "download_progress/stacker/sizer_text": T.PANEL, + "download_progress/stacker/sizer_text/download_progress_text": T.LABEL, + "download_progress/stacker/sizer_bar": T.PANEL, + "download_progress/stacker/sizer_bar/download_progress_bar": T.PANEL, + "summary_box_button_panel": T.PANEL, + "summary_box_button_panel/buttons_panel": T.STACK_PANEL, + "summary_box_button_panel/download_buttons_panel": T.STACK_PANEL, + "summary_box_button_panel/focus_border": T.BUTTON, + "interaction_button_content": T.STACK_PANEL, + "interaction_button_content/line1_panel": T.PANEL, + "interaction_button_content/line1_panel/upsell_text": T.LABEL, + "interaction_button_panel": T.PANEL, + "interaction_button_panel/content_action_button": T.BUTTON, + "interaction_button_panel/progress_bar": T.IMAGE, + "interaction_button_panel/focus_border": T.BUTTON, + "download_progress_small": T.IMAGE, + "download_progress_small/stacker": T.STACK_PANEL, + "download_progress_small/stacker/sizer_text": T.PANEL, + "download_progress_small/stacker/sizer_text/download_progress_text": T.LABEL, + "download_progress_small/stacker/sizer_bar": T.PANEL, + "download_progress_small/stacker/sizer_bar/download_progress_bar": T.PANEL, + "progress_loading_anim": T.PANEL, + "focus_border": T.BUTTON, + "focus_border/default": T.IMAGE, + "focus_border/default/loading_anim": T.PANEL, + "focus_border/hover": T.IMAGE, + "focus_border/hover/loading_anim": T.PANEL, + "focus_border/pressed": T.IMAGE, + "focus_border/pressed/loading_anim": T.PANEL, + "purchase_button_base": T.BUTTON, + "deactivated_purchase_button_base": T.BUTTON, + "download_buttons_panel": T.STACK_PANEL, + "download_buttons_panel/progress_panel": T.STACK_PANEL, + "download_buttons_panel/progress_panel/progress_bar": T.IMAGE, + "smooth_purchase_buttons_panel": T.STACK_PANEL, + "smooth_purchase_buttons_panel/activated_purchase_buttons_panel": T.STACK_PANEL, + "smooth_purchase_buttons_panel/deactivated_purchase_buttons_panel": T.STACK_PANEL, + "smooth_buttons_panel": T.STACK_PANEL, + "smooth_buttons_panel/purchase_buttons_panel": T.STACK_PANEL, + "smooth_buttons_panel/interact_filling_button": T.BUTTON, + "smooth_buttons_panel/interact_exit_world_filling_button": T.BUTTON, + "disabled_interact_label_formfitting": T.STACK_PANEL, + "disabled_interact_label_formfitting/info_icon": T.STACK_PANEL, + "disabled_interact_label_formfitting/info_icon_pad": T.PANEL, + "disabled_interact_label_formfitting/interact_label_panel": T.PANEL, + "disabled_interact_label_formfitting/interact_label_panel/interact_label_text_left": T.LABEL, + "disabled_interact_label_formfitting/pad": T.PANEL, + "interact_label_text": T.LABEL, + "activated_smooth_purchase_buttons_panel": T.STACK_PANEL, + "activated_smooth_purchase_buttons_panel/purchase_coins_button_panel": T.PANEL, + "activated_smooth_purchase_buttons_panel/purchase_coins_button_panel/smooth_purchase_with_coins_button": T.BUTTON, + "activated_smooth_purchase_buttons_panel/pad_h1": T.PANEL, + "activated_smooth_purchase_buttons_panel/purchase_currency_button_panel": T.PANEL, + "activated_smooth_purchase_buttons_panel/purchase_currency_button_panel/purchase_with_currency_button": T.BUTTON, + "deactivated_purchase_hover_popup": T.IMAGE, + "deactivated_smooth_purchase_buttons_panel": T.STACK_PANEL, + "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button": T.IMAGE, + "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button/deactivated_purchase_hover_popup": T.IMAGE, + "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button/content": T.STACK_PANEL, + "deactivated_smooth_purchase_buttons_panel/pad_h1": T.PANEL, + "deactivated_smooth_purchase_buttons_panel/purchase_currency_button_panel": T.PANEL, + "deactivated_smooth_purchase_buttons_panel/purchase_currency_button_panel/deactivated_purchase_with_currency_button": T.BUTTON, + "smooth_save_share_button_panel": T.STACK_PANEL, + "smooth_save_share_button_panel/pad_0": T.PANEL, + "smooth_save_share_button_panel/share_button": T.BUTTON, + "smooth_save_share_button_panel/pad_1": T.PANEL, + "smooth_save_share_button_panel/save_button": T.BUTTON, + "currency_purchase_label": T.PANEL, + "currency_purchase_label/currency_purchase_label_text": T.LABEL, + "coin_image": T.IMAGE, + "smooth_currency_purchase_label": T.PANEL, + "smooth_currency_purchase_label/currency_purchase_label_text": T.LABEL, + "discount_label": T.STACK_PANEL, + "discount_label/label_panel": T.PANEL, + "discount_label/label_panel/label": T.LABEL, + "discount_label/icon_panel": T.PANEL, + "discount_label/icon_panel/icon": T.IMAGE, + "coin_purchase_label_text": T.LABEL, + "smooth_coin_purchase_label_formfitting": T.STACK_PANEL, + "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel": T.PANEL, + "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel": T.PANEL, + "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel/markdown_banner": T.STACK_PANEL, + "smooth_coin_purchase_label_formfitting/markdown_panel": T.PANEL, + "smooth_coin_purchase_label_formfitting/markdown_panel/markdown_label": T.PANEL, + "smooth_coin_purchase_label_formfitting/fill_pad_left": T.PANEL, + "smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel": T.PANEL, + "smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel/coin": T.IMAGE, + "smooth_coin_purchase_label_formfitting/coin_purchase_label_panel": T.PANEL, + "smooth_coin_purchase_label_formfitting/coin_purchase_label_panel/coin_purchase_label_text_left": T.LABEL, + "smooth_coin_purchase_label_formfitting/pad": T.PANEL, + "smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel": T.PANEL, + "smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel/coin": T.IMAGE, + "smooth_coin_purchase_label_formfitting/fill_pad_right": T.PANEL, + "disabled_smooth_coin_purchase_label_formfitting": T.STACK_PANEL, + "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel": T.PANEL, + "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel": T.PANEL, + "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel/markdown_banner": T.STACK_PANEL, + "disabled_smooth_coin_purchase_label_formfitting/markdown_panel": T.PANEL, + "disabled_smooth_coin_purchase_label_formfitting/markdown_panel/markdown_label": T.PANEL, + "disabled_smooth_coin_purchase_label_formfitting/fill_pad_left": T.PANEL, + "disabled_smooth_coin_purchase_label_formfitting/info_icon_input_panel": T.INPUT_PANEL, + "disabled_smooth_coin_purchase_label_formfitting/info_icon_input_panel/info_bulb": T.STACK_PANEL, + "disabled_smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel": T.PANEL, + "disabled_smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel/coin": T.IMAGE, + "disabled_smooth_coin_purchase_label_formfitting/info_icon_pad": T.PANEL, + "disabled_smooth_coin_purchase_label_formfitting/coin_purchase_label_panel": T.PANEL, + "disabled_smooth_coin_purchase_label_formfitting/coin_purchase_label_panel/coin_purchase_label_text_left": T.LABEL, + "disabled_smooth_coin_purchase_label_formfitting/pad": T.PANEL, + "disabled_smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel": T.PANEL, + "disabled_smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel/coin": T.IMAGE, + "disabled_smooth_coin_purchase_label_formfitting/fill_pad_right": T.PANEL, + "share_icon": T.IMAGE, + "share_label": T.STACK_PANEL, + "share_label/share_image_offset_panel": T.PANEL, + "share_label/share_image_offset_panel/link_share": T.IMAGE, + "save_label_panel": T.PANEL, + "save_label_panel/heart_image": T.PANEL, + "save_label_panel/progress_loading": T.IMAGE, + "save_label": T.PANEL, + "save_label/save_image_offset_panel": T.PANEL, + "save_label/save_image_offset_panel/full_heart": T.IMAGE, + "save_label/save_image_offset_panel/empty_heart": T.IMAGE, + "large_button_coin_purchase_label": T.STACK_PANEL, + "large_button_coin_purchase_label/markdown_banner_filler_panel": T.PANEL, + "large_button_coin_purchase_label/center_markdown_panel": T.PANEL, + "large_button_coin_purchase_label/center_markdown_panel/markdown_banner": T.STACK_PANEL, + "large_button_coin_purchase_label/sales_padding_0": T.PANEL, + "large_button_coin_purchase_label/price_markdown_panel": T.PANEL, + "large_button_coin_purchase_label/price_markdown_panel/price_markdown_label": T.PANEL, + "large_button_coin_purchase_label/sales_padding_1": T.PANEL, + "large_button_coin_purchase_label/left_coin_image_offset_panel": T.PANEL, + "large_button_coin_purchase_label/left_coin_image_offset_panel/coin": T.IMAGE, + "large_button_coin_purchase_label/coin_purchase_label_panel": T.PANEL, + "large_button_coin_purchase_label/coin_purchase_label_panel/coin_purchase_label_text": T.LABEL, + "large_button_coin_purchase_label/right_coin_image_offset_panel": T.PANEL, + "large_button_coin_purchase_label/right_coin_image_offset_panel/coin": T.IMAGE, + "large_button_coin_purchase_label/fill_padding_1": T.PANEL, + "price_markdown_panel": T.PANEL, + "price_markdown_panel/offer_price": T.LABEL, + "price_markdown_panel/offer_price/text_strike_through": T.IMAGE, + "vertical_padding_2px": T.PANEL, + "vertical_padding_4px": T.PANEL, + "vertical_padding_fill": T.PANEL, + "horizontal_padding_2px": T.PANEL, + "horizontal_padding_4px": T.PANEL, + "horizontal_padding_8px": T.PANEL, + "horizontal_padding_fill": T.PANEL, + "empty_content_panel": T.PANEL, + "section_header": T.PANEL, + "section_header/header_label": T.LABEL, + "content_section_bg": T.STACK_PANEL, + "content_section_bg/pad": T.PANEL, + "content_section_bg/section_header": T.PANEL, + "content_section_bg/bg_and_content": T.PANEL, + "content_section_bg/bg_and_content/bg": T.IMAGE, + "content_section_boarder_bg": T.STACK_PANEL, + "content_section_boarder_bg/pad": T.PANEL, + "content_section_boarder_bg/bg_and_content": T.PANEL, + "content_section_boarder_bg/bg_and_content/bg": T.IMAGE, + "content_section_boarder_bg/bg_and_content/bg/inner": T.IMAGE, + "content_section_boarder_bg/pad_3": T.PANEL, + "content_section_boarder_bg/divider_3": T.PANEL, + "summary_factory_object": T.STACK_PANEL, + "summary_factory_object/summary": T.STACK_PANEL, + "summary_factory_object/navigation_tab_section": T.PANEL, + "summary_factory_object/update_notification_section": T.STACK_PANEL, + "screenshot_carousel_factory_object": T.STACK_PANEL, + "screenshot_carousel_factory_object/resource_pack_content_panel": T.STACK_PANEL, + "screenshot_carousel_factory_object/pad_3": T.PANEL, + "screenshot_carousel_factory_object/divider_3": T.PANEL, + "image_gallery_factory_object": T.STACK_PANEL, + "image_gallery_factory_object/resource_pack_content_panel": T.PANEL, + "left_text_right_image_factory_object": T.STACK_PANEL, + "left_text_right_image_factory_object/resource_pack_content_panel": T.STACK_PANEL, + "right_text_left_image_factory_object": T.STACK_PANEL, + "right_text_left_image_factory_object/resource_pack_content_panel": T.STACK_PANEL, + "skin_pack_section_factory_object": T.PANEL, + "skin_pack_section_factory_object/skin_pack_section_factory_content": T.STACK_PANEL, + "skin_pack_section_factory_object/skin_pack_section_factory_content/skin_pack_content_panel": T.STACK_PANEL, + "skin_pack_section_factory_object/skin_pack_section_factory_content/pad_3": T.PANEL, + "skin_pack_section_factory_object/skin_pack_section_factory_content/divider_3": T.PANEL, + "panorama_view_factory_object": T.STACK_PANEL, + "panorama_view_factory_object/panorama_view_content_panel": T.STACK_PANEL, + "panorama_view_factory_object/pad_3": T.PANEL, + "panorama_view_factory_object/divider_3": T.PANEL, + "ratings_factory_object": T.PANEL, + "ratings_factory_object/rating_factory_object_content": T.STACK_PANEL, + "focus_container_button": T.BUTTON, + "focus_container_button/default": T.PANEL, + "bundle_summary_factory_object": T.PANEL, + "bundle_summary_factory_object/bundle_summary_factory_object_content": T.PANEL, + "pdp_cycle_offer_row_content": T.STACK_PANEL, + "pdp_cycle_offer_row_content/store_row_panel": T.STACK_PANEL, + "pdp_cycle_offer_row_content/pad_3": T.PANEL, + "pdp_cycle_offer_row_content/divider_3": T.PANEL, + "pdp_cycle_offer_row_section": T.PANEL, + "recently_viewed_viewed_factory_object": T.PANEL, + "scrolling_content_stack": T.STACK_PANEL, + "warning_image": T.IMAGE, + "scaling_rating": T.PANEL, + "scaling_rating/empty_rating": T.IMAGE, + "scaling_rating/empty_rating/full_rating": T.IMAGE, + "scaling_rating_new": T.PANEL, + "scaling_rating_new/empty_rating": T.IMAGE, + "scaling_rating_new/empty_rating/full_rating": T.IMAGE, + "chart_section": T.PANEL, + "chart_section/stack": T.STACK_PANEL, + "chart_section/stack/star_number_panel": T.PANEL, + "chart_section/stack/star_number_panel/star_number": T.LABEL, + "chart_section/stack/star_panel": T.PANEL, + "chart_section/stack/star_panel/star_img": T.IMAGE, + "chart_section/stack/pad_0": T.PANEL, + "chart_section/stack/bar_panel": T.PANEL, + "chart_section/stack/bar_panel/bar": T.IMAGE, + "chart_section/stack/bar_panel/bar/full_bar": T.IMAGE, + "chart_section/stack/pad_1": T.PANEL, + "chart_section/stack/percent": T.LABEL, + "ratings_chart": T.STACK_PANEL, + "ratings_chart/5_star": T.PANEL, + "ratings_chart/4_star": T.PANEL, + "ratings_chart/3_star": T.PANEL, + "ratings_chart/2_star": T.PANEL, + "ratings_chart/1_star": T.PANEL, + "ratings_chart_panel": T.PANEL, + "ratings_chart_panel/ratings_chart_content": T.STACK_PANEL, + "ratings_chart_panel/ratings_chart_content/pad_0": T.PANEL, + "ratings_chart_panel/ratings_chart_content/title": T.PANEL, + "ratings_chart_panel/ratings_chart_content/title/title_text": T.LABEL, + "ratings_chart_panel/ratings_chart_content/pad_1": T.PANEL, + "ratings_chart_panel/ratings_chart_content/rating_panel": T.PANEL, + "ratings_chart_panel/ratings_chart_content/rating_panel/rating": T.STACK_PANEL, + "ratings_chart_panel/ratings_chart_content/rating_panel/rating/rating_bar": T.PANEL, + "ratings_chart_panel/ratings_chart_content/rating_panel/rating/pad": T.PANEL, + "ratings_chart_panel/ratings_chart_content/rating_text_panel": T.PANEL, + "ratings_chart_panel/ratings_chart_content/rating_text_panel/rating_text": T.LABEL, + "ratings_chart_panel/ratings_chart_content/count_panel": T.PANEL, + "ratings_chart_panel/ratings_chart_content/count_panel/count": T.LABEL, + "ratings_chart_panel/ratings_chart_content/pad_2": T.PANEL, + "ratings_chart_panel/ratings_chart_content/chart": T.STACK_PANEL, + "ratings_chart_panel/ratings_chart_content/pad_3": T.PANEL, + "ratings_box": T.PANEL, + "ratings_box/ratings_panel_focus_point": T.BUTTON, + "ratings_box/ratings_full_panel": T.PANEL, + "ratings_box/ratings_full_panel/ratings_chart_and_button": T.STACK_PANEL, + "ratings_box/ratings_full_panel/ratings_chart_and_button/chart": T.PANEL, + "ratings_box/ratings_full_panel/ratings_chart_and_button/pad_1": T.PANEL, + "ratings_box/divider": T.IMAGE, + "user_rating_star_button": T.BUTTON, + "user_rating_star_button/default": T.PANEL, + "user_rating_star_button/default/default_user_rating_star": T.IMAGE, + "user_rating_star_button/hover": T.PANEL, + "user_rating_star_button/hover/hover_user_rating_star": T.IMAGE, + "user_rating_star_list_grid": T.GRID, + "ratings_interact_panel": T.STACK_PANEL, + "ratings_interact_panel/title_text": T.LABEL, + "ratings_interact_panel/pad_vertical_4px": T.PANEL, + "ratings_interact_panel/rating_stars_and_button_panel": T.STACK_PANEL, + "ratings_interact_panel/rating_stars_and_button_panel/fill_stars": T.PANEL, + "ratings_interact_panel/rating_stars_and_button_panel/fill_stars/rating_buttons": T.GRID, + "ratings_interact_panel/rating_stars_and_button_panel/pad_3_percent": T.PANEL, + "ratings_interact_panel/rating_stars_and_button_panel/submit_button_panel": T.PANEL, + "ratings_interact_panel/rating_stars_and_button_panel/submit_button_panel/submit": T.BUTTON, + "ratings_interact_panel/pad_vertical_8px": T.PANEL, + "ratings_interact_panel/fill_pad": T.PANEL, + "ratings_interact_panel/fill_pad/text": T.LABEL, + "ratings_interact_panel/send_feedback_button": T.BUTTON, + "ratings_interact_panel/pad_1": T.PANEL, + "ratings_info_panel": T.PANEL, + "ratings_info_panel/ratings": T.PANEL, + "ratings_info_panel/ratings_right": T.PANEL, + "ratings_info_panel/ratings_right/ratings_interact_panel": T.STACK_PANEL, + "ratings_content_panel": T.STACK_PANEL, + "panorama_view_content": T.STACK_PANEL, + "panorama_view_content/panorama_panel": T.PANEL, + "panorama_view_content/panorama_panel/panorama_content": T.PANEL, + "skins": T.PANEL, + "skin_pack_content_panel": T.STACK_PANEL, + "resource_pack_content": T.PANEL, + "resource_pack_content/screenshots": T.PANEL, + "image_row_left_text_content": T.STACK_PANEL, + "image_row_left_text_content/buffer_panel_front": T.PANEL, + "image_row_left_text_content/text_section": T.STACK_PANEL, + "image_row_left_text_content/text_section/left_header": T.PANEL, + "image_row_left_text_content/text_section/left_text": T.PANEL, + "image_row_left_text_content/text_section/buffer_panel_bottom": T.PANEL, + "image_row_left_text_content/buffer_panel_mid": T.PANEL, + "image_row_left_text_content/screenshots_single": T.PANEL, + "image_row_left_text_content/buffer_panel_back": T.PANEL, + "image_row_right_text_content": T.STACK_PANEL, + "image_row_right_text_content/buffer_panel_front": T.PANEL, + "image_row_right_text_content/screenshots_single": T.PANEL, + "image_row_right_text_content/buffer_panel_mid": T.PANEL, + "image_row_right_text_content/text_section": T.STACK_PANEL, + "image_row_right_text_content/text_section/right_header": T.PANEL, + "image_row_right_text_content/text_section/right_text": T.PANEL, + "image_row_right_text_content/text_section/buffer_panel_bottom": T.PANEL, + "image_row_right_text_content/buffer_panel_back": T.PANEL, + "image_row_content": T.PANEL, + "image_row_content/screenshots_triple": T.STACK_PANEL, + "play_button": T.IMAGE, + "csb_expiration": T.PANEL, + "csb_expiration/background": T.IMAGE, + "csb_expiration/background/content_stack_panel": T.STACK_PANEL, + "csb_expiration/background/content_stack_panel/icon_wrapper": T.PANEL, + "csb_expiration/background/content_stack_panel/icon_wrapper/icon": T.IMAGE, + "csb_expiration/background/content_stack_panel/text_wrapper": T.PANEL, + "csb_expiration/background/content_stack_panel/text_wrapper/text": T.LABEL, + "summary_content_left_side": T.STACK_PANEL, + "summary_content_left_side/pad_left": T.PANEL, + "summary_content_left_side/full_content": T.STACK_PANEL, + "summary_content_left_side/full_content/top": T.STACK_PANEL, + "summary_content_left_side/full_content/top/image": T.PANEL, + "summary_content_left_side/full_content/top/image/key_image": T.IMAGE, + "summary_content_left_side/full_content/top/image/key_image/border": T.IMAGE, + "summary_content_left_side/full_content/top/image/key_image/csb_expiration_banner": T.PANEL, + "summary_content_left_side/full_content/top/image/key_image/video_overlay_button": T.BUTTON, + "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/mask": T.IMAGE, + "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/default": T.IMAGE, + "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/hover": T.IMAGE, + "summary_content_left_side/full_content/top/image/key_image/rtx_label": T.PANEL, + "summary_content_left_side/full_content/top/divider": T.PANEL, + "summary_content_left_side/full_content/top/info": T.STACK_PANEL, + "summary_content_left_side/full_content/top/info/summary_title_and_author_panel": T.STACK_PANEL, + "summary_content_left_side/full_content/top/info/pad_fill": T.PANEL, + "summary_content_left_side/full_content/top/info/glyph_section": T.PANEL, + "summary_content_left_side/full_content/top/info/glyph_section/glyph_section_panel": T.STACK_PANEL, + "summary_content_left_side/full_content/top/info/ratings_summary": T.STACK_PANEL, + "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display": T.STACK_PANEL, + "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel": T.PANEL, + "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel/rating": T.PANEL, + "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/summary_rating_button": T.BUTTON, + "summary_content_left_side/full_content/top/info/vibrant_visuals_badge_and_hover": T.PANEL, + "summary_content_left_side/full_content/bottom": T.PANEL, + "offer_title_label": T.PANEL, + "title_and_author_panel": T.STACK_PANEL, + "title_and_author_panel/title_panel": T.PANEL, + "title_and_author_panel/author_button_panel": T.PANEL, + "title_and_author_panel/author_button_panel/summary_author_button": T.BUTTON, + "description_label": T.LABEL, + "warning_stack_panel": T.STACK_PANEL, + "warning_stack_panel/warning_icon": T.IMAGE, + "warning_stack_panel/pad_0": T.PANEL, + "warning_stack_panel/warning_text_panel": T.PANEL, + "warning_stack_panel/warning_text_panel/warning_text": T.LABEL, + "warning_panel": T.PANEL, + "warning_panel/background": T.IMAGE, + "warning_panel/content_stack_panel": T.STACK_PANEL, + "description_toggle_show_button_panel": T.PANEL, + "description_toggle_show_button_panel/description_bottom_right_button_border": T.IMAGE, + "description_toggle_show_button_panel/description_toggle_show_button": T.BUTTON, + "description_toggle_show_button_panel/warning_icon": T.IMAGE, + "vibrant_visuals_underline_button": T.BUTTON, + "vibrant_visuals_hover_popup": T.IMAGE, + "vibrant_visuals_badge_display": T.IMAGE, + "vibrant_visuals_badge_display/vibrant_visuals_underline_button": T.BUTTON, + "vibrant_visuals_badge_and_hover": T.PANEL, + "vibrant_visuals_badge_and_hover/vibrant_visuals_hover_popup": T.IMAGE, + "vibrant_visuals_badge_and_hover/vibrant_visuals_badge_display": T.IMAGE, + "glyph_icon": T.IMAGE, + "glyph_count_label": T.LABEL, + "glyph_count_underline_button": T.BUTTON, + "glyph_count_hover_underline_button_panel": T.PANEL, + "glyph_count_hover_underline_button_panel/glyph_hover_popup": T.UNKNOWN, + "glyph_count_hover_underline_button_panel/glyph_count_underline_button": T.BUTTON, + "glyph_icon_with_count": T.STACK_PANEL, + "glyph_icon_with_count/glyph_icon": T.IMAGE, + "glyph_icon_with_count/horizontal_padding": T.PANEL, + "glyph_icon_with_count/item_glyph_count_panel_label": T.UNKNOWN, + "glyph_panel_hover_popup": T.IMAGE, + "glyph_panel_mashup_hover_popup": T.IMAGE, + "mashup_glyph_tooltip_content": T.STACK_PANEL, + "mashup_glyph_tooltip_content/mashup_text_row": T.STACK_PANEL, + "mashup_glyph_tooltip_content/mashup_text_row/info_icon": T.STACK_PANEL, + "mashup_glyph_tooltip_content/mashup_text_row/mashup_line_one": T.PANEL, + "mashup_glyph_tooltip_content/mashup_line_two": T.PANEL, + "mashup_glyph_tooltip_content/offset_panel": T.PANEL, + "mashup_glyph_tooltip_content/offset_panel/basic_vertical_glyph_section_panel": T.STACK_PANEL, + "glyph_section_mashup": T.STACK_PANEL, + "glyph_section_skin": T.STACK_PANEL, + "glyph_section_resource_pack": T.STACK_PANEL, + "glyph_section_world": T.STACK_PANEL, + "glyph_section_addon": T.STACK_PANEL, + "basic_vertical_glyph_section_panel": T.STACK_PANEL, + "basic_vertical_glyph_section_panel/glyph_section_skin": T.STACK_PANEL, + "basic_vertical_glyph_section_panel/glyph_section_world": T.STACK_PANEL, + "basic_vertical_glyph_section_panel/glyph_section_resource_pack": T.STACK_PANEL, + "basic_vertical_glyph_section_panel/glyph_section_addon": T.STACK_PANEL, + "vertical_glyph_section_panel": T.STACK_PANEL, + "vertical_glyph_section_panel/glyph_section_mashup": T.STACK_PANEL, + "vertical_glyph_section_panel/basic_vertical_glyph_section_panel": T.STACK_PANEL, + "summary_text_panel": T.STACK_PANEL, + "summary_text_panel/top_interact_button_stack": T.STACK_PANEL, + "summary_text_panel/top_interact_button_stack/top_interact": T.PANEL, + "summary_text_panel/apply_to_realm_panel": T.PANEL, + "summary_text_panel/apply_to_realm_panel/apply_to_realm_button": T.BUTTON, + "summary_text_panel/in_csb_panel": T.PANEL, + "summary_text_panel/in_csb_panel/in_csb_button": T.BUTTON, + "summary_text_panel/progress_loading_anim_panel": T.PANEL, + "summary_text_panel/progress_loading_anim_panel/progress_loading_anim": T.PANEL, + "summary_text_panel/pad_0": T.PANEL, + "summary_text_panel/disclaimer_panel": T.PANEL, + "summary_text_panel/pad_1": T.PANEL, + "summary_text_panel/save_share_button_panel": T.STACK_PANEL, + "summary_text_panel/pad_2": T.PANEL, + "info_bulb_image": T.IMAGE, + "info_bulb_image_small": T.IMAGE, + "info_bulb_image_small_centered": T.STACK_PANEL, + "info_bulb_image_small_centered/top_filler": T.PANEL, + "info_bulb_image_small_centered/middle_panel": T.STACK_PANEL, + "info_bulb_image_small_centered/middle_panel/front_filler": T.PANEL, + "info_bulb_image_small_centered/middle_panel/info_bulb": T.IMAGE, + "info_bulb_image_small_centered/middle_panel/bottom_filler": T.PANEL, + "info_bulb_image_small_centered/bottom_filler": T.PANEL, + "realms_incompatable_content": T.IMAGE, + "realms_incompatable_content/realms_content_stack_panel": T.STACK_PANEL, + "realms_incompatable_content/realms_content_stack_panel/info_bulb_image": T.IMAGE, + "realms_incompatable_content/realms_content_stack_panel/padding": T.PANEL, + "realms_incompatable_content/realms_content_stack_panel/realms_incompatable_button_label": T.LABEL, + "apply_to_realm_button": T.BUTTON, + "in_csb_button": T.BUTTON, + "read_more_button": T.BUTTON, + "read_more_button/default": T.PANEL, + "read_more_button/hover": T.IMAGE, + "read_more_button/pressed": T.IMAGE, + "summary_content_right_side": T.STACK_PANEL, + "summary_content_right_side/pad_middle": T.PANEL, + "summary_content_right_side/text": T.STACK_PANEL, + "summary_content_right_side/entitlements_progress_panel": T.PANEL, + "summary_content_right_side/entitlements_progress_panel/progress_loading": T.IMAGE, + "summary_content_right_side/pad_right": T.PANEL, + "summary_content_whole_stack_panel": T.STACK_PANEL, + "summary_content_whole_stack_panel/left_side": T.STACK_PANEL, + "summary_content_whole_stack_panel/divider_panel": T.PANEL, + "summary_content_whole_stack_panel/right_side": T.STACK_PANEL, + "summary_content_panel": T.STACK_PANEL, + "summary_content_panel/pad_top": T.PANEL, + "summary_content_panel/summary_content_whole_stack": T.STACK_PANEL, + "summary_content_panel/pad_3": T.PANEL, + "summary_content_panel/divider_3": T.PANEL, + "appearance_status_image_panel": T.PANEL, + "appearance_status_image_panel/limited_status_image": T.IMAGE, + "appearance_status_image_panel/no_restrictions_status_image": T.IMAGE, + "appearance_status_content": T.STACK_PANEL, + "appearance_status_content/appearance_status_image_panel": T.PANEL, + "appearance_status_content/last_update_panel": T.PANEL, + "appearance_status_content/last_update_panel/last_update_label": T.LABEL, + "dynamic_tooltip_notification_panel": T.BUTTON, + "dynamic_tooltip_notification_panel/default": T.PANEL, + "dynamic_tooltip_notification_panel/hover": T.IMAGE, + "dynamic_tooltip_notification_panel/pressed": T.IMAGE, + "update_notification_content": T.PANEL, + "update_notification_content/dynamic_tooltip_notification_panel": T.BUTTON, + "update_notification_content/status": T.STACK_PANEL, + "update_notification_stack_panel": T.STACK_PANEL, + "update_notification_stack_panel/pad_0": T.PANEL, + "update_notification_stack_panel/content": T.PANEL, + "update_notification_stack_panel/pad_1": T.PANEL, + "tag_base": T.IMAGE, + "tag_button_panel": T.PANEL, + "tag_button_panel/button": T.BUTTON, + "tag_button_panel/button/default": T.IMAGE, + "tag_button_panel/button/hover": T.IMAGE, + "tag_button_panel/button/pressed": T.IMAGE, + "tag_button_panel/button/label": T.LABEL, + "tag_row_factory": T.STACK_PANEL, + "player_count_button_panel": T.PANEL, + "player_count_button_panel/player_count_button": T.BUTTON, + "player_count_button_panel/comma": T.LABEL, + "player_count_factory": T.STACK_PANEL, + "language_button_panel": T.PANEL, + "language_button_panel/language_button": T.BUTTON, + "language_button_panel/comma": T.LABEL, + "language_row_factory": T.STACK_PANEL, + "description_inner_panel": T.PANEL, + "description_inner_panel/description_stack_panel": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/pad_0": T.PANEL, + "description_inner_panel/description_stack_panel/title_stack_panel": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_label_icon": T.IMAGE, + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/pad_0": T.PANEL, + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_panel": T.PANEL, + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_panel/title_label": T.LABEL, + "description_inner_panel/description_stack_panel/title_stack_panel/pad_0": T.PANEL, + "description_inner_panel/description_stack_panel/title_stack_panel/divider_panel": T.PANEL, + "description_inner_panel/description_stack_panel/title_stack_panel/divider_panel/divider": T.PANEL, + "description_inner_panel/description_stack_panel/title_stack_panel/pad_1": T.PANEL, + "description_inner_panel/description_stack_panel/description_text_panel_full": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/description_label": T.LABEL, + "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/pad_0": T.PANEL, + "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/warning_panel": T.PANEL, + "description_inner_panel/description_stack_panel/description_text_panel_full/button_panel": T.PANEL, + "description_inner_panel/description_stack_panel/description_text_panel_collapsed": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/description_text_panel_collapsed/description_text_collapsed": T.LABEL, + "description_inner_panel/description_stack_panel/description_text_panel_collapsed/collapsed_show_more_panel": T.PANEL, + "description_inner_panel/description_stack_panel/pad_1": T.PANEL, + "description_inner_panel/description_stack_panel/divider_panel": T.PANEL, + "description_inner_panel/description_stack_panel/divider_panel/divider": T.PANEL, + "description_inner_panel/description_stack_panel/pad_2": T.PANEL, + "description_inner_panel/description_stack_panel/tags_panel": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/tags_panel/label_text_panel": T.PANEL, + "description_inner_panel/description_stack_panel/tags_panel/label_text_panel/label_text": T.LABEL, + "description_inner_panel/description_stack_panel/tags_panel/pad": T.PANEL, + "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel": T.PANEL, + "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel/tags_factory_with_rows": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel/tags_factory": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/genre_panel": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/genre_panel/label_text": T.LABEL, + "description_inner_panel/description_stack_panel/genre_panel/pad": T.PANEL, + "description_inner_panel/description_stack_panel/genre_panel/text_panel": T.PANEL, + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/genre_button": T.BUTTON, + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/pad_0": T.PANEL, + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/slash_divider": T.LABEL, + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/subgenre_button": T.BUTTON, + "description_inner_panel/description_stack_panel/players_panel": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/players_panel/label_text": T.LABEL, + "description_inner_panel/description_stack_panel/players_panel/pad": T.PANEL, + "description_inner_panel/description_stack_panel/players_panel/text_panel": T.PANEL, + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_button_factory": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/pad": T.PANEL, + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_range_panel": T.PANEL, + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_range_panel/player_count_range_text": T.LABEL, + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/note_text": T.LABEL, + "description_inner_panel/description_stack_panel/languages_panel": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/languages_panel/label_text_panel": T.PANEL, + "description_inner_panel/description_stack_panel/languages_panel/label_text_panel/label_text": T.LABEL, + "description_inner_panel/description_stack_panel/languages_panel/pad": T.PANEL, + "description_inner_panel/description_stack_panel/languages_panel/languages_factory": T.STACK_PANEL, + "description_inner_panel/description_stack_panel/pad_3": T.PANEL, + "description_inner_panel/description_stack_panel/show_less_button_panel": T.PANEL, + "description_section": T.STACK_PANEL, + "changelog_section": T.STACK_PANEL, + "bundle_thumbnail": T.IMAGE, + "bundle_thumbnail_section_content": T.PANEL, + "bundle_thumbnail_section_content/bundle_thumbnail_grid": T.GRID, + "bundle_thumbnail_section": T.STACK_PANEL, + "price_panel": T.STACK_PANEL, + "price_panel/coin_non_sale_price_label": T.PANEL, + "price_panel/price_padding": T.PANEL, + "price_panel/offer_prompt_panel": T.PANEL, + "price_panel/offer_prompt_panel/offer_status_text": T.LABEL, + "price_panel/padding_3": T.PANEL, + "price_panel/coin_panel": T.PANEL, + "price_panel/coin_panel/offer_coin_icon": T.IMAGE, + "rating_and_coins_panel": T.STACK_PANEL, + "rating_and_coins_panel/rating_panel": T.STACK_PANEL, + "rating_and_coins_panel/rating_padding_coin": T.PANEL, + "rating_and_coins_panel/price_panel": T.STACK_PANEL, + "bundle_offer_texture": T.PANEL, + "bundle_offer_texture/texture": T.IMAGE, + "bundle_offer_texture/texture/border": T.IMAGE, + "bundle_offer_info": T.STACK_PANEL, + "bundle_offer_info/top_padding": T.PANEL, + "bundle_offer_info/offer_title_and_author_panel": T.STACK_PANEL, + "bundle_offer_info/glyph_section": T.UNKNOWN, + "bundle_offer_info/glyph_description_padding": T.PANEL, + "bundle_offer_info/description_panel": T.UNKNOWN, + "bundle_offer_info/description_padding": T.PANEL, + "bundle_offer_info/description_padding_bottom": T.PANEL, + "bundle_offer_info/rating_and_price_panel": T.STACK_PANEL, + "bundle_offer_info/bottom_padding": T.PANEL, + "bundle_offer_summary_grid_item_content": T.IMAGE, + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel": T.PANEL, + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/focus_border": T.IMAGE, + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel": T.STACK_PANEL, + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/key_art": T.PANEL, + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/mid_padding": T.PANEL, + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/info": T.STACK_PANEL, + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/right_padding": T.PANEL, + "bundle_offer_summary_grid_item": T.PANEL, + "bundle_offer_summary_grid_item/bundle_offer_summary_button": T.BUTTON, + "bundle_offer_content_section": T.PANEL, + "bundle_offer_content_section/bundle_grid": T.GRID, + "bundle_summary_section_panel": T.PANEL, + "bundle_summary_section_panel/bundle_summary_section": T.STACK_PANEL, + "bundle_summary_section_panel/bundle_summary_section/bundle_header_and_thumnails_section": T.STACK_PANEL, + "bundle_summary_section_panel/bundle_summary_section/mid_padding": T.PANEL, + "bundle_summary_section_panel/bundle_summary_section/bundle_offers_info_section": T.PANEL, + "bundle_summary_section_panel/bundle_summary_section/mid_padding_2": T.PANEL, + "bundle_summary_section_panel/bundle_summary_section/interact_panel": T.PANEL, + "bundle_summary_section_panel/bundle_summary_section/interact_panel/bundle_interact": T.PANEL, + "bundle_summary_section_panel/divider_3": T.PANEL, + "pdp_screen": T.SCREEN, + "mashup_screen_content": T.PANEL, + "mashup_screen_content/header": T.STACK_PANEL, + "mashup_screen_content/popup_dialog_factory": T.FACTORY, + "mashup_screen_main": T.INPUT_PANEL, + "mashup_screen_main/pack_content": T.PANEL, + "mashup_screen_main/progress_loading": T.PANEL, } export type PdpScreenshotsType = { - banner_empty: T.IMAGE - screenshot_carousel: T.PANEL - "screenshot_carousel/screenshot_carousel_content": T.PANEL - "screenshot_carousel/screenshot_carousel_content/cycle_pack_left_button": T.BUTTON - "screenshot_carousel/screenshot_carousel_content/screenshots_grid": T.STACK_PANEL - "screenshot_carousel/screenshot_carousel_content/cycle_pack_right_button": T.BUTTON - screenshots_grid: T.STACK_PANEL - "screenshots_grid/left_image_panel": T.PANEL - "screenshots_grid/middle_image_panel": T.PANEL - "screenshots_grid/right_image_panel": T.PANEL - screenshots_grid_item: T.PANEL - "screenshots_grid_item/frame": T.IMAGE - "screenshots_grid_item/frame/screenshot_button": T.BUTTON - "screenshots_grid_item/frame/screenshot_button/hover": T.IMAGE - "screenshots_grid_item/frame/screenshot_button/pressed": T.IMAGE - "screenshots_grid_item/screenshot_image": T.IMAGE - "screenshots_grid_item/progress_loading": T.PANEL + "banner_empty": T.IMAGE, + "screenshot_carousel": T.PANEL, + "screenshot_carousel/screenshot_carousel_content": T.PANEL, + "screenshot_carousel/screenshot_carousel_content/cycle_pack_left_button": T.BUTTON, + "screenshot_carousel/screenshot_carousel_content/screenshots_grid": T.STACK_PANEL, + "screenshot_carousel/screenshot_carousel_content/cycle_pack_right_button": T.BUTTON, + "screenshots_grid": T.STACK_PANEL, + "screenshots_grid/left_image_panel": T.PANEL, + "screenshots_grid/middle_image_panel": T.PANEL, + "screenshots_grid/right_image_panel": T.PANEL, + "screenshots_grid_item": T.PANEL, + "screenshots_grid_item/frame": T.IMAGE, + "screenshots_grid_item/frame/screenshot_button": T.BUTTON, + "screenshots_grid_item/frame/screenshot_button/hover": T.IMAGE, + "screenshots_grid_item/frame/screenshot_button/pressed": T.IMAGE, + "screenshots_grid_item/screenshot_image": T.IMAGE, + "screenshots_grid_item/progress_loading": T.PANEL, } export type PermissionsType = { - permissions_screen: T.SCREEN - permissions_screen_content: T.STACK_PANEL - "permissions_screen_content/top_bar_panel": T.PANEL - "permissions_screen_content/content_panel": T.PANEL - top_bar_panel: T.PANEL - "top_bar_panel/top_bar": T.IMAGE - "top_bar_panel/back_button": T.BUTTON - "top_bar_panel/gamepad_helper_b": T.STACK_PANEL - "top_bar_panel/title_label": T.LABEL - content_panel: T.PANEL - "content_panel/content_stack_panel": T.STACK_PANEL - "content_panel/content_stack_panel/content_padding_1": T.PANEL - "content_panel/content_stack_panel/ip_label": T.LABEL - "content_panel/content_stack_panel/world_label": T.LABEL - "content_panel/content_stack_panel/content_padding_2": T.PANEL - "content_panel/content_stack_panel/player_and_permissions_panel": T.STACK_PANEL - player_and_permissions_panel: T.STACK_PANEL - "player_and_permissions_panel/selector_area": T.INPUT_PANEL - "player_and_permissions_panel/content_area": T.INPUT_PANEL - selector_area: T.INPUT_PANEL - "selector_area/player_scrolling_panel": T.PANEL - content_area: T.INPUT_PANEL - "content_area/permissions_options_background": T.PANEL - "content_area/permissions_options_background/permissions_options_background_image": T.IMAGE - "content_area/permissions_options_background/permissions_options_background_image/permissions_options_scrolling_panel": T.PANEL - "content_area/inactive_modal_pane_fade": T.IMAGE - kick_button: T.BUTTON - ban_button: T.BUTTON - players_grid_panel: T.PANEL - "players_grid_panel/players_grid": T.GRID - players_grid: T.GRID - player_grid_item: T.PANEL - "player_grid_item/player_toggle": T.PANEL - "player_grid_item/inactive_modal_pane_fade": T.IMAGE - permissions_options_scrolling_panel: T.PANEL - permissions_options_panel: T.PANEL - "permissions_options_panel/inner_permissions_options_panel": T.PANEL - "permissions_options_panel/inner_permissions_options_panel/permissions_options_stack_panel": T.STACK_PANEL - permissions_options_stack_panel: T.STACK_PANEL - "permissions_options_stack_panel/permissions_padding_0": T.PANEL - "permissions_options_stack_panel/world_template_option_lock_panel": T.PANEL - "permissions_options_stack_panel/world_template_option_lock_panel/option_info_label": T.PANEL - "permissions_options_stack_panel/permissions_padding_1": T.PANEL - "permissions_options_stack_panel/permission_level_dropdown": T.PANEL - "permissions_options_stack_panel/permissions_padding_2": T.PANEL - "permissions_options_stack_panel/permissions_options_grid": T.GRID - "permissions_options_stack_panel/permissions_padding_3": T.PANEL - "permissions_options_stack_panel/permissions_kick_button_panel": T.PANEL - "permissions_options_stack_panel/permissions_padding_4": T.PANEL - "permissions_options_stack_panel/permissions_ban_button_panel": T.PANEL - "permissions_options_stack_panel/permissions_padding_5": T.PANEL - permissions_options_grid: T.GRID - permissions_options_grid_item: T.STACK_PANEL - "permissions_options_grid_item/option_label_panel": T.PANEL - "permissions_options_grid_item/option_label_panel/option_label": T.LABEL - "permissions_options_grid_item/option_state_label_panel": T.PANEL - "permissions_options_grid_item/option_state_label_panel/option_state_label": T.LABEL - "permissions_options_grid_item/option_toggle": T.PANEL - permissions_kick_button_panel: T.PANEL - "permissions_kick_button_panel/kick_button": T.BUTTON - permissions_ban_button_panel: T.PANEL - "permissions_ban_button_panel/ban_button": T.BUTTON - title_label: T.LABEL - ip_label: T.LABEL - world_label: T.LABEL - gamertag_label: T.LABEL - option_state_label: T.LABEL - option_label: T.LABEL - top_bar: T.IMAGE - banner_background: T.IMAGE - player_local_icon: T.IMAGE - player_gamer_pic: T.IMAGE - "player_gamer_pic/player_panel_black_border": T.IMAGE - back_button: T.BUTTON - back_button_content: T.STACK_PANEL - "back_button_content/chevron_panel": T.PANEL - "back_button_content/chevron_panel/left_chevron": T.IMAGE - "back_button_content/back_button_padding": T.PANEL - "back_button_content/label_panel": T.PANEL - "back_button_content/label_panel/label": T.LABEL - player_toggle: T.PANEL - player_button_content: T.STACK_PANEL - "player_button_content/player_pic_panel": T.PANEL - "player_button_content/player_button_padding_1": T.PANEL - "player_button_content/gamertag_panel": T.PANEL - "player_button_content/gamertag_panel/gamertag_label": T.LABEL - "player_button_content/icon_panel": T.PANEL - "player_button_content/icon_panel/dropdown_icon_image": T.IMAGE - "player_button_content/player_button_padding_2": T.PANEL - player_pic_panel: T.PANEL - "player_pic_panel/player_gamer_pic": T.IMAGE - "player_pic_panel/player_local_icon": T.IMAGE - option_toggle: T.PANEL - permission_level_dropdown: T.PANEL - radio_title_and_icon: T.PANEL - "radio_title_and_icon/radio_icon": T.IMAGE - "radio_title_and_icon/radio_title": T.LABEL - radio_content_with_title_bar: T.STACK_PANEL - "radio_content_with_title_bar/title_and_icon": T.PANEL - "radio_content_with_title_bar/helper_text": T.LABEL - "radio_content_with_title_bar/bottom_padding": T.PANEL - radio_visuals_with_title: T.PANEL - "radio_visuals_with_title/radio_content": T.STACK_PANEL - radio_visuals_with_title_hover: T.IMAGE - "radio_visuals_with_title_hover/radio_content": T.STACK_PANEL - permissions_visitor_visuals_with_title_normal: T.PANEL - permissions_visitor_visuals_with_title_hover: T.IMAGE - permissions_member_visuals_with_title_normal: T.PANEL - permissions_member_visuals_with_title_hover: T.IMAGE - permissions_op_visuals_with_title_normal: T.PANEL - permissions_op_visuals_with_title_hover: T.IMAGE - permissions_visitor_radio_visuals_normal: T.PANEL - permissions_visitor_radio_visuals_hover: T.PANEL - permissions_member_radio_visuals_normal: T.PANEL - permissions_member_radio_visuals_hover: T.PANEL - permissions_op_radio_visuals_normal: T.PANEL - permissions_op_radio_visuals_hover: T.PANEL - permissions_custom_radio_visuals_normal: T.PANEL - permissions_custom_radio_visuals_hover: T.PANEL - permission_level_radio: T.PANEL - "permission_level_radio/radio_with_label_core": T.TOGGLE - permission_level_dropdown_content: T.PANEL - permission_level_dropdown_state_content: T.STACK_PANEL - "permission_level_dropdown_state_content/icon_panel": T.PANEL - "permission_level_dropdown_state_content/icon_panel/dropdown_icon_image": T.IMAGE - "permission_level_dropdown_state_content/dropdown_label_padding": T.PANEL - "permission_level_dropdown_state_content/label_panel": T.PANEL - "permission_level_dropdown_state_content/label_panel/label": T.LABEL - "permission_level_dropdown_state_content/arrow_panel": T.PANEL - "permission_level_dropdown_state_content/arrow_panel/arrow_image": T.IMAGE + "permissions_screen": T.SCREEN, + "permissions_screen_content": T.STACK_PANEL, + "permissions_screen_content/top_bar_panel": T.PANEL, + "permissions_screen_content/content_panel": T.PANEL, + "top_bar_panel": T.PANEL, + "top_bar_panel/top_bar": T.IMAGE, + "top_bar_panel/back_button": T.BUTTON, + "top_bar_panel/gamepad_helper_b": T.STACK_PANEL, + "top_bar_panel/title_label": T.LABEL, + "content_panel": T.PANEL, + "content_panel/content_stack_panel": T.STACK_PANEL, + "content_panel/content_stack_panel/content_padding_1": T.PANEL, + "content_panel/content_stack_panel/ip_label": T.LABEL, + "content_panel/content_stack_panel/world_label": T.LABEL, + "content_panel/content_stack_panel/content_padding_2": T.PANEL, + "content_panel/content_stack_panel/player_and_permissions_panel": T.STACK_PANEL, + "player_and_permissions_panel": T.STACK_PANEL, + "player_and_permissions_panel/selector_area": T.INPUT_PANEL, + "player_and_permissions_panel/content_area": T.INPUT_PANEL, + "selector_area": T.INPUT_PANEL, + "selector_area/player_scrolling_panel": T.PANEL, + "content_area": T.INPUT_PANEL, + "content_area/permissions_options_background": T.PANEL, + "content_area/permissions_options_background/permissions_options_background_image": T.IMAGE, + "content_area/permissions_options_background/permissions_options_background_image/permissions_options_scrolling_panel": T.PANEL, + "content_area/inactive_modal_pane_fade": T.IMAGE, + "kick_button": T.BUTTON, + "ban_button": T.BUTTON, + "players_grid_panel": T.PANEL, + "players_grid_panel/players_grid": T.GRID, + "players_grid": T.GRID, + "player_grid_item": T.PANEL, + "player_grid_item/player_toggle": T.PANEL, + "player_grid_item/inactive_modal_pane_fade": T.IMAGE, + "permissions_options_scrolling_panel": T.PANEL, + "permissions_options_panel": T.PANEL, + "permissions_options_panel/inner_permissions_options_panel": T.PANEL, + "permissions_options_panel/inner_permissions_options_panel/permissions_options_stack_panel": T.STACK_PANEL, + "permissions_options_stack_panel": T.STACK_PANEL, + "permissions_options_stack_panel/permissions_padding_0": T.PANEL, + "permissions_options_stack_panel/world_template_option_lock_panel": T.PANEL, + "permissions_options_stack_panel/world_template_option_lock_panel/option_info_label": T.PANEL, + "permissions_options_stack_panel/permissions_padding_1": T.PANEL, + "permissions_options_stack_panel/permission_level_dropdown": T.PANEL, + "permissions_options_stack_panel/permissions_padding_2": T.PANEL, + "permissions_options_stack_panel/permissions_options_grid": T.GRID, + "permissions_options_stack_panel/permissions_padding_3": T.PANEL, + "permissions_options_stack_panel/permissions_kick_button_panel": T.PANEL, + "permissions_options_stack_panel/permissions_padding_4": T.PANEL, + "permissions_options_stack_panel/permissions_ban_button_panel": T.PANEL, + "permissions_options_stack_panel/permissions_padding_5": T.PANEL, + "permissions_options_grid": T.GRID, + "permissions_options_grid_item": T.STACK_PANEL, + "permissions_options_grid_item/option_label_panel": T.PANEL, + "permissions_options_grid_item/option_label_panel/option_label": T.LABEL, + "permissions_options_grid_item/option_state_label_panel": T.PANEL, + "permissions_options_grid_item/option_state_label_panel/option_state_label": T.LABEL, + "permissions_options_grid_item/option_toggle": T.PANEL, + "permissions_kick_button_panel": T.PANEL, + "permissions_kick_button_panel/kick_button": T.BUTTON, + "permissions_ban_button_panel": T.PANEL, + "permissions_ban_button_panel/ban_button": T.BUTTON, + "title_label": T.LABEL, + "ip_label": T.LABEL, + "world_label": T.LABEL, + "gamertag_label": T.LABEL, + "option_state_label": T.LABEL, + "option_label": T.LABEL, + "top_bar": T.IMAGE, + "banner_background": T.IMAGE, + "player_local_icon": T.IMAGE, + "player_gamer_pic": T.IMAGE, + "player_gamer_pic/player_panel_black_border": T.IMAGE, + "back_button": T.BUTTON, + "back_button_content": T.STACK_PANEL, + "back_button_content/chevron_panel": T.PANEL, + "back_button_content/chevron_panel/left_chevron": T.IMAGE, + "back_button_content/back_button_padding": T.PANEL, + "back_button_content/label_panel": T.PANEL, + "back_button_content/label_panel/label": T.LABEL, + "player_toggle": T.PANEL, + "player_button_content": T.STACK_PANEL, + "player_button_content/player_pic_panel": T.PANEL, + "player_button_content/player_button_padding_1": T.PANEL, + "player_button_content/gamertag_panel": T.PANEL, + "player_button_content/gamertag_panel/gamertag_label": T.LABEL, + "player_button_content/icon_panel": T.PANEL, + "player_button_content/icon_panel/dropdown_icon_image": T.IMAGE, + "player_button_content/player_button_padding_2": T.PANEL, + "player_pic_panel": T.PANEL, + "player_pic_panel/player_gamer_pic": T.IMAGE, + "player_pic_panel/player_local_icon": T.IMAGE, + "option_toggle": T.PANEL, + "permission_level_dropdown": T.PANEL, + "radio_title_and_icon": T.PANEL, + "radio_title_and_icon/radio_icon": T.IMAGE, + "radio_title_and_icon/radio_title": T.LABEL, + "radio_content_with_title_bar": T.STACK_PANEL, + "radio_content_with_title_bar/title_and_icon": T.PANEL, + "radio_content_with_title_bar/helper_text": T.LABEL, + "radio_content_with_title_bar/bottom_padding": T.PANEL, + "radio_visuals_with_title": T.PANEL, + "radio_visuals_with_title/radio_content": T.STACK_PANEL, + "radio_visuals_with_title_hover": T.IMAGE, + "radio_visuals_with_title_hover/radio_content": T.STACK_PANEL, + "permissions_visitor_visuals_with_title_normal": T.PANEL, + "permissions_visitor_visuals_with_title_hover": T.IMAGE, + "permissions_member_visuals_with_title_normal": T.PANEL, + "permissions_member_visuals_with_title_hover": T.IMAGE, + "permissions_op_visuals_with_title_normal": T.PANEL, + "permissions_op_visuals_with_title_hover": T.IMAGE, + "permissions_visitor_radio_visuals_normal": T.PANEL, + "permissions_visitor_radio_visuals_hover": T.PANEL, + "permissions_member_radio_visuals_normal": T.PANEL, + "permissions_member_radio_visuals_hover": T.PANEL, + "permissions_op_radio_visuals_normal": T.PANEL, + "permissions_op_radio_visuals_hover": T.PANEL, + "permissions_custom_radio_visuals_normal": T.PANEL, + "permissions_custom_radio_visuals_hover": T.PANEL, + "permission_level_radio": T.PANEL, + "permission_level_radio/radio_with_label_core": T.TOGGLE, + "permission_level_dropdown_content": T.PANEL, + "permission_level_dropdown_state_content": T.STACK_PANEL, + "permission_level_dropdown_state_content/icon_panel": T.PANEL, + "permission_level_dropdown_state_content/icon_panel/dropdown_icon_image": T.IMAGE, + "permission_level_dropdown_state_content/dropdown_label_padding": T.PANEL, + "permission_level_dropdown_state_content/label_panel": T.PANEL, + "permission_level_dropdown_state_content/label_panel/label": T.LABEL, + "permission_level_dropdown_state_content/arrow_panel": T.PANEL, + "permission_level_dropdown_state_content/arrow_panel/arrow_image": T.IMAGE, } export type PersonaCastCharacterScreenType = { - cast_modal_bottom_bar: T.STACK_PANEL - "cast_modal_bottom_bar/0": T.UNKNOWN - cast_common_dialog_background: T.IMAGE - "cast_common_dialog_background/top_bar": T.PANEL - "cast_common_dialog_background/popup_inner_contents": T.UNKNOWN - "cast_common_dialog_background/cast_modal_bottom_bar": T.STACK_PANEL - cast_modal_panel: T.INPUT_PANEL - "cast_modal_panel/cast_preview_modal_content": T.IMAGE - popup_dialog__cast_character_select: T.INPUT_PANEL - "popup_dialog__cast_character_select/background": T.IMAGE - "popup_dialog__cast_character_select/popup_background": T.INPUT_PANEL - common_dcast_popup_framework: T.INPUT_PANEL - common_cast_modal_top_bar: T.PANEL - "common_cast_modal_top_bar/title_panel": T.LABEL - "common_cast_modal_top_bar/close_button_holder": T.STACK_PANEL - cast_character_select_main: T.PANEL - "cast_character_select_main/modal_inner_background": T.IMAGE - "cast_character_select_main/main_content_horizontal_stack": T.STACK_PANEL - "cast_character_select_main/main_content_horizontal_stack/cast_grid": T.PANEL - "cast_character_select_main/main_content_horizontal_stack/vertical_centerer": T.PANEL - "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/top_fill": T.PANEL - "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/skin_viewer_panel": T.PANEL - "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/bottom_fill": T.PANEL - "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/bottom_padding": T.PANEL - cast_scroll_view_panel: T.PANEL - cast_grid_with_buttons: T.STACK_PANEL - "cast_grid_with_buttons/top_spacing": T.PANEL - "cast_grid_with_buttons/cast_grid": T.GRID - "cast_grid_with_buttons/bottom_spacing": T.PANEL - cast_grid_panel: T.PANEL - "cast_grid_panel/cast_grid": T.STACK_PANEL - cast_single_character_button_panel: T.PANEL - "cast_single_character_button_panel/cast_character_button": T.BUTTON - "cast_single_character_button_panel/cast_character_button/background_image": T.IMAGE - "cast_single_character_button_panel/cast_character_button/selected": T.IMAGE - "cast_single_character_button_panel/cast_character_button/default": T.PANEL - "cast_single_character_button_panel/cast_character_button/hover": T.IMAGE - "cast_single_character_button_panel/cast_character_button/pressed": T.IMAGE - "cast_single_character_button_panel/cast_character_button/button_outline": T.IMAGE - "cast_single_character_button_panel/cast_character_button/button_outline/cast_character_content": T.PANEL - cast_character_button_content_panel: T.PANEL - "cast_character_button_content_panel/cast_single_character_content_visible_panel": T.PANEL - "cast_character_button_content_panel/cast_single_character_content_visible_panel/cast_single_character_button_content": T.IMAGE - in_use_grid_item: T.IMAGE - persona_cast_paper_doll_panel: T.PANEL - "persona_cast_paper_doll_panel/preset_input_panel": T.INPUT_PANEL - character_loading_anim: T.IMAGE - character_loading_anim_panel: T.IMAGE - "character_loading_anim_panel/character_loading_anim": T.IMAGE - skin_viewer_panel_skin_model: T.PANEL - "skin_viewer_panel_skin_model/skin_model": T.CUSTOM - cast_character_screen_right_side_model: T.INPUT_PANEL - "cast_character_screen_right_side_model/skin_model_panel": T.PANEL - "cast_character_screen_right_side_model/skin_model_loading_anim": T.IMAGE - "cast_character_screen_right_side_model/skin_model_label": T.LABEL - common_background_blocker: T.IMAGE - "common_background_blocker/modal_background_button": T.BUTTON - common_preview_page_framework: T.INPUT_PANEL - "common_preview_page_framework/background": T.IMAGE - "common_preview_page_framework/cast_preview_modal": T.INPUT_PANEL - cast_preview_page_one: T.INPUT_PANEL - cast_preview_page_two: T.INPUT_PANEL - cast_preview_page_one_inner_section: T.PANEL - "cast_preview_page_one_inner_section/modal_inner_background": T.IMAGE - "cast_preview_page_one_inner_section/cast_content": T.INPUT_PANEL - "cast_preview_page_one_inner_section/cast_content/cast_image_cycler": T.IMAGE_CYCLER - "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel": T.STACK_PANEL - "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_label_panel": T.PANEL - "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_label_panel/text_cycler": T.LABEL_CYCLER - "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/buffer_panel": T.PANEL - "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_shoulder_button_display_panel": T.PANEL - chevron_image_panel: T.PANEL - "chevron_image_panel/chevron_image": T.IMAGE - chevron_button: T.BUTTON - shift_page_panel: T.PANEL - "shift_page_panel/centering_panel": T.PANEL - "shift_page_panel/centering_panel/0": T.UNKNOWN - shift_page_left_panel: T.PANEL - shift_page_right_panel: T.PANEL - horizontal_8px_padding: T.PANEL - horizontal_20px_padding: T.PANEL - ftue_subpage_indicator_panel: T.PANEL - "ftue_subpage_indicator_panel/controls_shoulder_button_display": T.STACK_PANEL - "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_padding": T.PANEL - "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_shoulder_button_panel": T.PANEL - "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_shoulder_button_padding": T.PANEL - "ftue_subpage_indicator_panel/controls_shoulder_button_display/page_indicator_grid": T.GRID_PAGE_INDICATOR - "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_shoulder_button_padding": T.PANEL - "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_shoulder_button_panel": T.PANEL - "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_padding": T.PANEL - individaul_cast_page_indicator: T.PANEL - "individaul_cast_page_indicator/panel_when_current_page": T.PANEL - "individaul_cast_page_indicator/panel_when_current_page/panel_with_padding": T.PANEL - "individaul_cast_page_indicator/panel_when_current_page/panel_with_padding/cast_dot": T.IMAGE - "individaul_cast_page_indicator/panel_when_not_current_page": T.PANEL - "individaul_cast_page_indicator/panel_when_not_current_page/panel_with_padding": T.PANEL - "individaul_cast_page_indicator/panel_when_not_current_page/panel_with_padding/cast_dot": T.IMAGE - how_to_section: T.STACK_PANEL - "how_to_section/how_to_image": T.IMAGE - "how_to_section/how_to_label_section": T.PANEL - "how_to_section/how_to_label_section/how_to_label": T.LABEL - cast_preview_page_two_inner_section: T.IMAGE - "cast_preview_page_two_inner_section/how_to_section_stack": T.STACK_PANEL - "cast_preview_page_two_inner_section/how_to_section_stack/how_to_section_left": T.STACK_PANEL - "cast_preview_page_two_inner_section/how_to_section_stack/divider_panel": T.PANEL - "cast_preview_page_two_inner_section/how_to_section_stack/divider_panel/divider": T.IMAGE - "cast_preview_page_two_inner_section/how_to_section_stack/how_to_section_right": T.STACK_PANEL + "cast_modal_bottom_bar": T.STACK_PANEL, + "cast_modal_bottom_bar/0": T.UNKNOWN, + "cast_common_dialog_background": T.IMAGE, + "cast_common_dialog_background/top_bar": T.PANEL, + "cast_common_dialog_background/popup_inner_contents": T.UNKNOWN, + "cast_common_dialog_background/cast_modal_bottom_bar": T.STACK_PANEL, + "cast_modal_panel": T.INPUT_PANEL, + "cast_modal_panel/cast_preview_modal_content": T.IMAGE, + "popup_dialog__cast_character_select": T.INPUT_PANEL, + "popup_dialog__cast_character_select/background": T.IMAGE, + "popup_dialog__cast_character_select/popup_background": T.INPUT_PANEL, + "common_dcast_popup_framework": T.INPUT_PANEL, + "common_cast_modal_top_bar": T.PANEL, + "common_cast_modal_top_bar/title_panel": T.LABEL, + "common_cast_modal_top_bar/close_button_holder": T.STACK_PANEL, + "cast_character_select_main": T.PANEL, + "cast_character_select_main/modal_inner_background": T.IMAGE, + "cast_character_select_main/main_content_horizontal_stack": T.STACK_PANEL, + "cast_character_select_main/main_content_horizontal_stack/cast_grid": T.PANEL, + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer": T.PANEL, + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/top_fill": T.PANEL, + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/skin_viewer_panel": T.PANEL, + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/bottom_fill": T.PANEL, + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/bottom_padding": T.PANEL, + "cast_scroll_view_panel": T.PANEL, + "cast_grid_with_buttons": T.STACK_PANEL, + "cast_grid_with_buttons/top_spacing": T.PANEL, + "cast_grid_with_buttons/cast_grid": T.GRID, + "cast_grid_with_buttons/bottom_spacing": T.PANEL, + "cast_grid_panel": T.PANEL, + "cast_grid_panel/cast_grid": T.STACK_PANEL, + "cast_single_character_button_panel": T.PANEL, + "cast_single_character_button_panel/cast_character_button": T.BUTTON, + "cast_single_character_button_panel/cast_character_button/background_image": T.IMAGE, + "cast_single_character_button_panel/cast_character_button/selected": T.IMAGE, + "cast_single_character_button_panel/cast_character_button/default": T.PANEL, + "cast_single_character_button_panel/cast_character_button/hover": T.IMAGE, + "cast_single_character_button_panel/cast_character_button/pressed": T.IMAGE, + "cast_single_character_button_panel/cast_character_button/button_outline": T.IMAGE, + "cast_single_character_button_panel/cast_character_button/button_outline/cast_character_content": T.PANEL, + "cast_character_button_content_panel": T.PANEL, + "cast_character_button_content_panel/cast_single_character_content_visible_panel": T.PANEL, + "cast_character_button_content_panel/cast_single_character_content_visible_panel/cast_single_character_button_content": T.IMAGE, + "in_use_grid_item": T.IMAGE, + "persona_cast_paper_doll_panel": T.PANEL, + "persona_cast_paper_doll_panel/preset_input_panel": T.INPUT_PANEL, + "character_loading_anim": T.IMAGE, + "character_loading_anim_panel": T.IMAGE, + "character_loading_anim_panel/character_loading_anim": T.IMAGE, + "skin_viewer_panel_skin_model": T.PANEL, + "skin_viewer_panel_skin_model/skin_model": T.CUSTOM, + "cast_character_screen_right_side_model": T.INPUT_PANEL, + "cast_character_screen_right_side_model/skin_model_panel": T.PANEL, + "cast_character_screen_right_side_model/skin_model_loading_anim": T.IMAGE, + "cast_character_screen_right_side_model/skin_model_label": T.LABEL, + "common_background_blocker": T.IMAGE, + "common_background_blocker/modal_background_button": T.BUTTON, + "common_preview_page_framework": T.INPUT_PANEL, + "common_preview_page_framework/background": T.IMAGE, + "common_preview_page_framework/cast_preview_modal": T.INPUT_PANEL, + "cast_preview_page_one": T.INPUT_PANEL, + "cast_preview_page_two": T.INPUT_PANEL, + "cast_preview_page_one_inner_section": T.PANEL, + "cast_preview_page_one_inner_section/modal_inner_background": T.IMAGE, + "cast_preview_page_one_inner_section/cast_content": T.INPUT_PANEL, + "cast_preview_page_one_inner_section/cast_content/cast_image_cycler": T.IMAGE_CYCLER, + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel": T.STACK_PANEL, + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_label_panel": T.PANEL, + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_label_panel/text_cycler": T.LABEL_CYCLER, + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/buffer_panel": T.PANEL, + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_shoulder_button_display_panel": T.PANEL, + "chevron_image_panel": T.PANEL, + "chevron_image_panel/chevron_image": T.IMAGE, + "chevron_button": T.BUTTON, + "shift_page_panel": T.PANEL, + "shift_page_panel/centering_panel": T.PANEL, + "shift_page_panel/centering_panel/0": T.UNKNOWN, + "shift_page_left_panel": T.PANEL, + "shift_page_right_panel": T.PANEL, + "horizontal_8px_padding": T.PANEL, + "horizontal_20px_padding": T.PANEL, + "ftue_subpage_indicator_panel": T.PANEL, + "ftue_subpage_indicator_panel/controls_shoulder_button_display": T.STACK_PANEL, + "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_padding": T.PANEL, + "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_shoulder_button_panel": T.PANEL, + "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_shoulder_button_padding": T.PANEL, + "ftue_subpage_indicator_panel/controls_shoulder_button_display/page_indicator_grid": T.GRID_PAGE_INDICATOR, + "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_shoulder_button_padding": T.PANEL, + "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_shoulder_button_panel": T.PANEL, + "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_padding": T.PANEL, + "individaul_cast_page_indicator": T.PANEL, + "individaul_cast_page_indicator/panel_when_current_page": T.PANEL, + "individaul_cast_page_indicator/panel_when_current_page/panel_with_padding": T.PANEL, + "individaul_cast_page_indicator/panel_when_current_page/panel_with_padding/cast_dot": T.IMAGE, + "individaul_cast_page_indicator/panel_when_not_current_page": T.PANEL, + "individaul_cast_page_indicator/panel_when_not_current_page/panel_with_padding": T.PANEL, + "individaul_cast_page_indicator/panel_when_not_current_page/panel_with_padding/cast_dot": T.IMAGE, + "how_to_section": T.STACK_PANEL, + "how_to_section/how_to_image": T.IMAGE, + "how_to_section/how_to_label_section": T.PANEL, + "how_to_section/how_to_label_section/how_to_label": T.LABEL, + "cast_preview_page_two_inner_section": T.IMAGE, + "cast_preview_page_two_inner_section/how_to_section_stack": T.STACK_PANEL, + "cast_preview_page_two_inner_section/how_to_section_stack/how_to_section_left": T.STACK_PANEL, + "cast_preview_page_two_inner_section/how_to_section_stack/divider_panel": T.PANEL, + "cast_preview_page_two_inner_section/how_to_section_stack/divider_panel/divider": T.IMAGE, + "cast_preview_page_two_inner_section/how_to_section_stack/how_to_section_right": T.STACK_PANEL, } export type PersonaCommonType = { - icon_image: T.IMAGE - mashup_world: T.IMAGE - mashup_hangar: T.IMAGE - mashup_paintbrush: T.IMAGE - info_bulb_icon: T.IMAGE - green_checkmark_icon: T.IMAGE - persona_screen_background_content: T.IMAGE - loading_icon: T.IMAGE - focus_border: T.IMAGE - selected_border: T.IMAGE - equipped_border: T.IMAGE - progress_loading: T.IMAGE - "progress_loading/progress_loading": T.PANEL - title_rarity_positionable_title: T.LABEL - generic_title_panel: T.IMAGE - "generic_title_panel/title_label": T.LABEL - rarity_bar: T.IMAGE - item_rarity_color_background: T.IMAGE - piece_item_display: T.PANEL - "piece_item_display/item_renderer": T.PANEL - "piece_item_display/item_renderer/background": T.IMAGE - "piece_item_display/item_renderer/item_image": T.IMAGE - "piece_item_display/item_renderer/rarity_bar_panel": T.IMAGE - "piece_item_display/item_renderer/extra_control": T.PANEL - "piece_item_display/item_renderer/extra_control/control_instance": T.UNKNOWN - "piece_item_display/loading_progress_spinner": T.IMAGE - wheel_state: T.IMAGE - emote_label: T.LABEL - touch_name_label: T.LABEL - emote_image: T.PANEL - "emote_image/empty": T.IMAGE - "emote_image/emote_preview": T.PANEL - "emote_image/emote_preview/valid": T.IMAGE - "emote_image/emote_preview/valid_no_image": T.PANEL - "emote_image/emote_preview/valid_no_image/valid_text": T.LABEL - keyboard_hotkey_helpers: T.PANEL - "keyboard_hotkey_helpers/keyboard_1": T.STACK_PANEL - "keyboard_hotkey_helpers/keyboard_2": T.STACK_PANEL - "keyboard_hotkey_helpers/keyboard_3": T.STACK_PANEL - "keyboard_hotkey_helpers/keyboard_4": T.STACK_PANEL - gamepad_hotkey_helpers: T.PANEL - "gamepad_hotkey_helpers/quick_select_gamepad_helpers": T.PANEL - "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_y": T.STACK_PANEL - "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_b": T.UNKNOWN - "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_a": T.UNKNOWN - "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_x": T.STACK_PANEL - "gamepad_hotkey_helpers/analog_select_gamepad_helper_panel": T.PANEL - "gamepad_hotkey_helpers/analog_select_gamepad_helper_panel/analog_select_gamepad_helper": T.STACK_PANEL - emote_wheel_slot_content: T.PANEL - "emote_wheel_slot_content/image_0": T.PANEL - "emote_wheel_slot_content/touch_label_0": T.LABEL - selection_wheel: T.SELECTION_WHEEL - emote_selection_wheel: T.SELECTION_WHEEL - "emote_selection_wheel/default_state": T.IMAGE - "emote_selection_wheel/emote_slot_0_content": T.PANEL - "emote_selection_wheel/emote_slot_1_content": T.PANEL - "emote_selection_wheel/emote_slot_2_content": T.PANEL - "emote_selection_wheel/emote_slot_3_content": T.PANEL - emote_wheel_panel: T.PANEL - "emote_wheel_panel/emote_name": T.LABEL - "emote_wheel_panel/emote_wheel_content_panel": T.PANEL - "emote_wheel_panel/emote_wheel_content_panel/gamepad_helpers": T.PANEL - "emote_wheel_panel/emote_wheel_content_panel/keyboard_helpers": T.PANEL - "emote_wheel_panel/emote_wheel_content_panel/emote_wheel": T.SELECTION_WHEEL + "icon_image": T.IMAGE, + "mashup_world": T.IMAGE, + "mashup_hangar": T.IMAGE, + "mashup_paintbrush": T.IMAGE, + "info_bulb_icon": T.IMAGE, + "green_checkmark_icon": T.IMAGE, + "persona_screen_background_content": T.IMAGE, + "loading_icon": T.IMAGE, + "focus_border": T.IMAGE, + "selected_border": T.IMAGE, + "equipped_border": T.IMAGE, + "progress_loading": T.IMAGE, + "progress_loading/progress_loading": T.PANEL, + "title_rarity_positionable_title": T.LABEL, + "generic_title_panel": T.IMAGE, + "generic_title_panel/title_label": T.LABEL, + "rarity_bar": T.IMAGE, + "item_rarity_color_background": T.IMAGE, + "piece_item_display": T.PANEL, + "piece_item_display/item_renderer": T.PANEL, + "piece_item_display/item_renderer/background": T.IMAGE, + "piece_item_display/item_renderer/item_image": T.IMAGE, + "piece_item_display/item_renderer/rarity_bar_panel": T.IMAGE, + "piece_item_display/item_renderer/extra_control": T.PANEL, + "piece_item_display/item_renderer/extra_control/control_instance": T.UNKNOWN, + "piece_item_display/loading_progress_spinner": T.IMAGE, + "wheel_state": T.IMAGE, + "emote_label": T.LABEL, + "touch_name_label": T.LABEL, + "emote_image": T.PANEL, + "emote_image/empty": T.IMAGE, + "emote_image/emote_preview": T.PANEL, + "emote_image/emote_preview/valid": T.IMAGE, + "emote_image/emote_preview/valid_no_image": T.PANEL, + "emote_image/emote_preview/valid_no_image/valid_text": T.LABEL, + "keyboard_hotkey_helpers": T.PANEL, + "keyboard_hotkey_helpers/keyboard_1": T.STACK_PANEL, + "keyboard_hotkey_helpers/keyboard_2": T.STACK_PANEL, + "keyboard_hotkey_helpers/keyboard_3": T.STACK_PANEL, + "keyboard_hotkey_helpers/keyboard_4": T.STACK_PANEL, + "gamepad_hotkey_helpers": T.PANEL, + "gamepad_hotkey_helpers/quick_select_gamepad_helpers": T.PANEL, + "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_y": T.STACK_PANEL, + "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_b": T.UNKNOWN, + "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_a": T.UNKNOWN, + "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_x": T.STACK_PANEL, + "gamepad_hotkey_helpers/analog_select_gamepad_helper_panel": T.PANEL, + "gamepad_hotkey_helpers/analog_select_gamepad_helper_panel/analog_select_gamepad_helper": T.STACK_PANEL, + "emote_wheel_slot_content": T.PANEL, + "emote_wheel_slot_content/image_0": T.PANEL, + "emote_wheel_slot_content/touch_label_0": T.LABEL, + "selection_wheel": T.SELECTION_WHEEL, + "emote_selection_wheel": T.SELECTION_WHEEL, + "emote_selection_wheel/default_state": T.IMAGE, + "emote_selection_wheel/emote_slot_0_content": T.PANEL, + "emote_selection_wheel/emote_slot_1_content": T.PANEL, + "emote_selection_wheel/emote_slot_2_content": T.PANEL, + "emote_selection_wheel/emote_slot_3_content": T.PANEL, + "emote_wheel_panel": T.PANEL, + "emote_wheel_panel/emote_name": T.LABEL, + "emote_wheel_panel/emote_wheel_content_panel": T.PANEL, + "emote_wheel_panel/emote_wheel_content_panel/gamepad_helpers": T.PANEL, + "emote_wheel_panel/emote_wheel_content_panel/keyboard_helpers": T.PANEL, + "emote_wheel_panel/emote_wheel_content_panel/emote_wheel": T.SELECTION_WHEEL, } export type PersonaPopupsType = { - no_content_panel: T.PANEL - common_image: T.IMAGE - common_icon: T.IMAGE - create_persona_choice_checked_image: T.IMAGE - create_persona_choice_unchecked_image: T.IMAGE - modal_window_input_blocker: T.IMAGE - modal_popup_background: T.IMAGE - general_text_field: T.LABEL - title_text: T.LABEL - popup_title: T.LABEL - popup_content: T.PANEL - popup_ok_button: T.BUTTON - popup_frame: T.IMAGE - "popup_frame/title_label": T.LABEL - "popup_frame/close_button": T.BUTTON - "popup_frame/content": T.PANEL - "popup_frame/ok_button": T.BUTTON - popup_info_panel: T.PANEL - "popup_info_panel/background": T.IMAGE - "popup_info_panel/frame": T.IMAGE - common_dialog: T.INPUT_PANEL - "common_dialog/background": T.IMAGE - "common_dialog/panel": T.PANEL - popup_dialog_bg: T.IMAGE - "popup_dialog_bg/background_image": T.IMAGE - "popup_dialog_bg/title_panel": T.PANEL - "popup_dialog_bg/title_panel/title": T.LABEL - "popup_dialog_bg/popup_content": T.UNKNOWN - icon_title_bar: T.STACK_PANEL - "icon_title_bar/icon": T.IMAGE - "icon_title_bar/padding": T.PANEL - "icon_title_bar/text_title_panel": T.LABEL - popup_common: T.INPUT_PANEL - "popup_common/background": T.IMAGE - "popup_common/background/text_stack_panel": T.LABEL - popup_dialog__difference_information: T.INPUT_PANEL - differences_left_details: T.LABEL - differences_left_section: T.STACK_PANEL - "differences_left_section/title_bar": T.STACK_PANEL - "differences_left_section/padding_1": T.PANEL - "differences_left_section/details": T.LABEL - differences_detail_image: T.IMAGE - differences_title_card_display: T.STACK_PANEL - "differences_title_card_display/left": T.STACK_PANEL - "differences_title_card_display/padding_1": T.PANEL - "differences_title_card_display/right": T.IMAGE - differences_persona_detail_section: T.STACK_PANEL - differences_classic_skin_detail_section: T.STACK_PANEL - different_info_panel_contents: T.STACK_PANEL - "different_info_panel_contents/character_display": T.STACK_PANEL - "different_info_panel_contents/item_1_padding": T.PANEL - "different_info_panel_contents/divider": T.PANEL - "different_info_panel_contents/item_2_padding": T.PANEL - "different_info_panel_contents/classic_skin_display": T.STACK_PANEL - popup_dialog__preview_difference_information: T.INPUT_PANEL - popup_dialog__delete_persona: T.INPUT_PANEL - "popup_dialog__delete_persona/popup_dialog_bg": T.IMAGE - popup_dialog_delete_persona_content: T.PANEL - "popup_dialog_delete_persona_content/image": T.IMAGE - "popup_dialog_delete_persona_content/message": T.LABEL - "popup_dialog_delete_persona_content/buttons": T.STACK_PANEL - alex_warning: T.IMAGE - delete_popup_dialog_message: T.LABEL - delete_persona_button_stack: T.STACK_PANEL - "delete_persona_button_stack/left_button": T.BUTTON - "delete_persona_button_stack/padding": T.PANEL - "delete_persona_button_stack/right_button": T.BUTTON - delete_persona_left_button: T.BUTTON - delete_persona_right_button: T.BUTTON - popup_dialog__create_persona: T.INPUT_PANEL - create_persona_display: T.STACK_PANEL - "create_persona_display/vertical_padding_2px": T.PANEL - "create_persona_display/stack_content": T.STACK_PANEL - create_persona_choice_stack: T.STACK_PANEL - "create_persona_choice_stack/background1": T.PANEL - "create_persona_choice_stack/background2": T.PANEL - create_persona_choice_character: T.PANEL - "create_persona_choice_character/create_persona_choice_character": T.PANEL - select_default_character_button_vertical_panel: T.STACK_PANEL - "select_default_character_button_vertical_panel/padding": T.PANEL - "select_default_character_button_vertical_panel/select_default_character_button_panel": T.PANEL - "select_default_character_button_vertical_panel/select_default_character_button_panel/select_default_character_button": T.BUTTON - select_default_character_button: T.BUTTON - create_persona_choice_classic_skin: T.PANEL - create_persona_choice_button: T.PANEL - "create_persona_choice_button/choice_toggle": T.PANEL - create_persona_choice_background: T.STACK_PANEL - "create_persona_choice_background/choice_title_bar": T.STACK_PANEL - "create_persona_choice_background/choice_details_body": T.STACK_PANEL - "create_persona_choice_background/choice_bottom_content": T.UNKNOWN - create_persona_choice_title_bar: T.STACK_PANEL - "create_persona_choice_title_bar/checkbox": T.PANEL - "create_persona_choice_title_bar/spacing": T.PANEL - "create_persona_choice_title_bar/icon_title": T.STACK_PANEL - create_persona_choice_check_positioning: T.PANEL - "create_persona_choice_check_positioning/toggle_image": T.UNKNOWN - create_persona_choice_icon_title: T.STACK_PANEL - create_persona_choice_detail_panel: T.STACK_PANEL - "create_persona_choice_detail_panel/spacing": T.PANEL - "create_persona_choice_detail_panel/choice_details_body": T.LABEL - create_persona_choice_detail: T.LABEL - popup_dialog__invalid_custom_skin: T.INPUT_PANEL - "popup_dialog__invalid_custom_skin/popup_dialog_bg": T.IMAGE - popup_dialog_invalid_custom_skin_content: T.PANEL - "popup_dialog_invalid_custom_skin_content/popup_dialog_message": T.LABEL - "popup_dialog_invalid_custom_skin_content/popup_dialog_middle_button": T.BUTTON - popup_dialog__upsell_without_store: T.INPUT_PANEL - popup_dialog__choose_skin_type: T.INPUT_PANEL - "popup_dialog__choose_skin_type/popup_dialog_bg": T.IMAGE - popup_dialog_choose_skin_type_content: T.PANEL - "popup_dialog_choose_skin_type_content/popup_dialog_message": T.LABEL - "popup_dialog_choose_skin_type_content/left": T.PANEL - "popup_dialog_choose_skin_type_content/right": T.PANEL - popup_dialog_choose_skin_type_panel: T.PANEL - "popup_dialog_choose_skin_type_panel/choose_skin_type_button": T.BUTTON - popup_dialog_skin_model: T.PANEL - "popup_dialog_skin_model/paper_doll": T.CUSTOM - popup_dialog__custom_skin_info: T.INPUT_PANEL - "popup_dialog__custom_skin_info/background_image": T.IMAGE - "popup_dialog__custom_skin_info/popup_dialog_bg": T.IMAGE - custom_skin_info_panel_text: T.LABEL - custom_skin_info_panel: T.PANEL - "custom_skin_info_panel/message": T.LABEL - "custom_skin_info_panel/button_group": T.STACK_PANEL - custom_skin_info_button_collection: T.STACK_PANEL - "custom_skin_info_button_collection/settings": T.BUTTON - "custom_skin_info_button_collection/vertical_4_padding": T.PANEL - "custom_skin_info_button_collection/close": T.BUTTON - popup_dialog_close_button: T.BUTTON - usage_limited_settings_profile_button: T.BUTTON - custom_skin_popup_dialog_bg: T.IMAGE - "custom_skin_popup_dialog_bg/background_image": T.IMAGE - "custom_skin_popup_dialog_bg/vertical_align_title": T.PANEL - "custom_skin_popup_dialog_bg/vertical_align_title/title": T.LABEL - "custom_skin_popup_dialog_bg/popup_content": T.UNKNOWN - popup_dialog__emote_equip_slot_editor: T.INPUT_PANEL - "popup_dialog__emote_equip_slot_editor/background_image": T.IMAGE - "popup_dialog__emote_equip_slot_editor/popup_emote_wheel_dialog": T.PANEL - popup_emote_wheel_dialog: T.PANEL - "popup_emote_wheel_dialog/popup_background": T.IMAGE - emote_equip_slot_content: T.PANEL - "emote_equip_slot_content/close": T.BUTTON - "emote_equip_slot_content/emote_wheel_content_panel": T.PANEL - "emote_equip_slot_content/emote_wheel_content_panel/cancel": T.PANEL - "emote_equip_slot_content/emote_wheel_content_panel/emote_wheel_prompt_content": T.PANEL - close_emote_popup_controller: T.PANEL - "close_emote_popup_controller/close_ui": T.STACK_PANEL - emote_wheel_content: T.PANEL - popup_dialog__realms_plus_extra_info: T.INPUT_PANEL - "popup_dialog__realms_plus_extra_info/background_image": T.IMAGE - "popup_dialog__realms_plus_extra_info/dialog_bg": T.IMAGE - realms_plus_extra_info_popup_dialog_bg: T.IMAGE - "realms_plus_extra_info_popup_dialog_bg/background_image": T.IMAGE - "realms_plus_extra_info_popup_dialog_bg/title": T.LABEL - "realms_plus_extra_info_popup_dialog_bg/popup_content": T.UNKNOWN - realms_extra_info_panel_text: T.LABEL - realms_extra_info_panel: T.PANEL - "realms_extra_info_panel/realms_extra": T.PANEL - "realms_extra_info_panel/button_group": T.STACK_PANEL - realms_extra_info_button_collection: T.STACK_PANEL - "realms_extra_info_button_collection/close": T.BUTTON - realms_extra_info_content: T.PANEL - "realms_extra_info_content/the_spread": T.STACK_PANEL - "realms_extra_info_content/the_spread/pack_image": T.IMAGE - "realms_extra_info_content/the_spread/horizontal_6_padding": T.PANEL - "realms_extra_info_content/the_spread/the_info_stack": T.STACK_PANEL - "realms_extra_info_content/the_spread/the_info_stack/skins_and_world": T.STACK_PANEL - "realms_extra_info_content/the_spread/the_info_stack/padding": T.PANEL - "realms_extra_info_content/the_spread/the_info_stack/textures_and_usage": T.STACK_PANEL - pack_information_textures_and_usage_tooltip: T.STACK_PANEL - "pack_information_textures_and_usage_tooltip/textures": T.PANEL - "pack_information_textures_and_usage_tooltip/mid_padding": T.PANEL - "pack_information_textures_and_usage_tooltip/appearance_status": T.INPUT_PANEL - roamable_status_notification_panel: T.INPUT_PANEL - "roamable_status_notification_panel/appearance_status_notification": T.BUTTON - "roamable_status_notification_panel/roamable_status": T.PANEL - appearance_status_image_panel: T.PANEL - "appearance_status_image_panel/usage_limited": T.IMAGE - "appearance_status_image_panel/usage_not_limited": T.IMAGE - pack_information_skins_and_world: T.STACK_PANEL - "pack_information_skins_and_world/skins": T.PANEL - "pack_information_skins_and_world/mid_padding": T.PANEL - "pack_information_skins_and_world/worlds": T.PANEL - skin_info_label_and_image: T.PANEL - "skin_info_label_and_image/content_stack": T.STACK_PANEL - skin_info_image_panel: T.PANEL - "skin_info_image_panel/image": T.UNKNOWN - skin_info_label_panel_label: T.LABEL - skin_info_label_panel: T.PANEL - "skin_info_label_panel/label": T.LABEL - skin_info_content_stack: T.STACK_PANEL - "skin_info_content_stack/image_panel": T.PANEL - "skin_info_content_stack/horizontal_2_padding": T.PANEL - "skin_info_content_stack/label_panel": T.PANEL - realms_extra_info_pack_info: T.IMAGE - popup_toast: T.INPUT_PANEL + "no_content_panel": T.PANEL, + "common_image": T.IMAGE, + "common_icon": T.IMAGE, + "create_persona_choice_checked_image": T.IMAGE, + "create_persona_choice_unchecked_image": T.IMAGE, + "modal_window_input_blocker": T.IMAGE, + "modal_popup_background": T.IMAGE, + "general_text_field": T.LABEL, + "title_text": T.LABEL, + "popup_title": T.LABEL, + "popup_content": T.PANEL, + "popup_ok_button": T.BUTTON, + "popup_frame": T.IMAGE, + "popup_frame/title_label": T.LABEL, + "popup_frame/close_button": T.BUTTON, + "popup_frame/content": T.PANEL, + "popup_frame/ok_button": T.BUTTON, + "popup_info_panel": T.PANEL, + "popup_info_panel/background": T.IMAGE, + "popup_info_panel/frame": T.IMAGE, + "common_dialog": T.INPUT_PANEL, + "common_dialog/background": T.IMAGE, + "common_dialog/panel": T.PANEL, + "popup_dialog_bg": T.IMAGE, + "popup_dialog_bg/background_image": T.IMAGE, + "popup_dialog_bg/title_panel": T.PANEL, + "popup_dialog_bg/title_panel/title": T.LABEL, + "popup_dialog_bg/popup_content": T.UNKNOWN, + "icon_title_bar": T.STACK_PANEL, + "icon_title_bar/icon": T.IMAGE, + "icon_title_bar/padding": T.PANEL, + "icon_title_bar/text_title_panel": T.LABEL, + "popup_common": T.INPUT_PANEL, + "popup_common/background": T.IMAGE, + "popup_common/background/text_stack_panel": T.LABEL, + "popup_dialog__difference_information": T.INPUT_PANEL, + "differences_left_details": T.LABEL, + "differences_left_section": T.STACK_PANEL, + "differences_left_section/title_bar": T.STACK_PANEL, + "differences_left_section/padding_1": T.PANEL, + "differences_left_section/details": T.LABEL, + "differences_detail_image": T.IMAGE, + "differences_title_card_display": T.STACK_PANEL, + "differences_title_card_display/left": T.STACK_PANEL, + "differences_title_card_display/padding_1": T.PANEL, + "differences_title_card_display/right": T.IMAGE, + "differences_persona_detail_section": T.STACK_PANEL, + "differences_classic_skin_detail_section": T.STACK_PANEL, + "different_info_panel_contents": T.STACK_PANEL, + "different_info_panel_contents/character_display": T.STACK_PANEL, + "different_info_panel_contents/item_1_padding": T.PANEL, + "different_info_panel_contents/divider": T.PANEL, + "different_info_panel_contents/item_2_padding": T.PANEL, + "different_info_panel_contents/classic_skin_display": T.STACK_PANEL, + "popup_dialog__preview_difference_information": T.INPUT_PANEL, + "popup_dialog__delete_persona": T.INPUT_PANEL, + "popup_dialog__delete_persona/popup_dialog_bg": T.IMAGE, + "popup_dialog_delete_persona_content": T.PANEL, + "popup_dialog_delete_persona_content/image": T.IMAGE, + "popup_dialog_delete_persona_content/message": T.LABEL, + "popup_dialog_delete_persona_content/buttons": T.STACK_PANEL, + "alex_warning": T.IMAGE, + "delete_popup_dialog_message": T.LABEL, + "delete_persona_button_stack": T.STACK_PANEL, + "delete_persona_button_stack/left_button": T.BUTTON, + "delete_persona_button_stack/padding": T.PANEL, + "delete_persona_button_stack/right_button": T.BUTTON, + "delete_persona_left_button": T.BUTTON, + "delete_persona_right_button": T.BUTTON, + "popup_dialog__create_persona": T.INPUT_PANEL, + "create_persona_display": T.STACK_PANEL, + "create_persona_display/vertical_padding_2px": T.PANEL, + "create_persona_display/stack_content": T.STACK_PANEL, + "create_persona_choice_stack": T.STACK_PANEL, + "create_persona_choice_stack/background1": T.PANEL, + "create_persona_choice_stack/background2": T.PANEL, + "create_persona_choice_character": T.PANEL, + "create_persona_choice_character/create_persona_choice_character": T.PANEL, + "select_default_character_button_vertical_panel": T.STACK_PANEL, + "select_default_character_button_vertical_panel/padding": T.PANEL, + "select_default_character_button_vertical_panel/select_default_character_button_panel": T.PANEL, + "select_default_character_button_vertical_panel/select_default_character_button_panel/select_default_character_button": T.BUTTON, + "select_default_character_button": T.BUTTON, + "create_persona_choice_classic_skin": T.PANEL, + "create_persona_choice_button": T.PANEL, + "create_persona_choice_button/choice_toggle": T.PANEL, + "create_persona_choice_background": T.STACK_PANEL, + "create_persona_choice_background/choice_title_bar": T.STACK_PANEL, + "create_persona_choice_background/choice_details_body": T.STACK_PANEL, + "create_persona_choice_background/choice_bottom_content": T.UNKNOWN, + "create_persona_choice_title_bar": T.STACK_PANEL, + "create_persona_choice_title_bar/checkbox": T.PANEL, + "create_persona_choice_title_bar/spacing": T.PANEL, + "create_persona_choice_title_bar/icon_title": T.STACK_PANEL, + "create_persona_choice_check_positioning": T.PANEL, + "create_persona_choice_check_positioning/toggle_image": T.UNKNOWN, + "create_persona_choice_icon_title": T.STACK_PANEL, + "create_persona_choice_detail_panel": T.STACK_PANEL, + "create_persona_choice_detail_panel/spacing": T.PANEL, + "create_persona_choice_detail_panel/choice_details_body": T.LABEL, + "create_persona_choice_detail": T.LABEL, + "popup_dialog__invalid_custom_skin": T.INPUT_PANEL, + "popup_dialog__invalid_custom_skin/popup_dialog_bg": T.IMAGE, + "popup_dialog_invalid_custom_skin_content": T.PANEL, + "popup_dialog_invalid_custom_skin_content/popup_dialog_message": T.LABEL, + "popup_dialog_invalid_custom_skin_content/popup_dialog_middle_button": T.BUTTON, + "popup_dialog__upsell_without_store": T.INPUT_PANEL, + "popup_dialog__choose_skin_type": T.INPUT_PANEL, + "popup_dialog__choose_skin_type/popup_dialog_bg": T.IMAGE, + "popup_dialog_choose_skin_type_content": T.PANEL, + "popup_dialog_choose_skin_type_content/popup_dialog_message": T.LABEL, + "popup_dialog_choose_skin_type_content/left": T.PANEL, + "popup_dialog_choose_skin_type_content/right": T.PANEL, + "popup_dialog_choose_skin_type_panel": T.PANEL, + "popup_dialog_choose_skin_type_panel/choose_skin_type_button": T.BUTTON, + "popup_dialog_skin_model": T.PANEL, + "popup_dialog_skin_model/paper_doll": T.CUSTOM, + "popup_dialog__custom_skin_info": T.INPUT_PANEL, + "popup_dialog__custom_skin_info/background_image": T.IMAGE, + "popup_dialog__custom_skin_info/popup_dialog_bg": T.IMAGE, + "custom_skin_info_panel_text": T.LABEL, + "custom_skin_info_panel": T.PANEL, + "custom_skin_info_panel/message": T.LABEL, + "custom_skin_info_panel/button_group": T.STACK_PANEL, + "custom_skin_info_button_collection": T.STACK_PANEL, + "custom_skin_info_button_collection/settings": T.BUTTON, + "custom_skin_info_button_collection/vertical_4_padding": T.PANEL, + "custom_skin_info_button_collection/close": T.BUTTON, + "popup_dialog_close_button": T.BUTTON, + "usage_limited_settings_profile_button": T.BUTTON, + "custom_skin_popup_dialog_bg": T.IMAGE, + "custom_skin_popup_dialog_bg/background_image": T.IMAGE, + "custom_skin_popup_dialog_bg/vertical_align_title": T.PANEL, + "custom_skin_popup_dialog_bg/vertical_align_title/title": T.LABEL, + "custom_skin_popup_dialog_bg/popup_content": T.UNKNOWN, + "popup_dialog__emote_equip_slot_editor": T.INPUT_PANEL, + "popup_dialog__emote_equip_slot_editor/background_image": T.IMAGE, + "popup_dialog__emote_equip_slot_editor/popup_emote_wheel_dialog": T.PANEL, + "popup_emote_wheel_dialog": T.PANEL, + "popup_emote_wheel_dialog/popup_background": T.IMAGE, + "emote_equip_slot_content": T.PANEL, + "emote_equip_slot_content/close": T.BUTTON, + "emote_equip_slot_content/emote_wheel_content_panel": T.PANEL, + "emote_equip_slot_content/emote_wheel_content_panel/cancel": T.PANEL, + "emote_equip_slot_content/emote_wheel_content_panel/emote_wheel_prompt_content": T.PANEL, + "close_emote_popup_controller": T.PANEL, + "close_emote_popup_controller/close_ui": T.STACK_PANEL, + "emote_wheel_content": T.PANEL, + "popup_dialog__realms_plus_extra_info": T.INPUT_PANEL, + "popup_dialog__realms_plus_extra_info/background_image": T.IMAGE, + "popup_dialog__realms_plus_extra_info/dialog_bg": T.IMAGE, + "realms_plus_extra_info_popup_dialog_bg": T.IMAGE, + "realms_plus_extra_info_popup_dialog_bg/background_image": T.IMAGE, + "realms_plus_extra_info_popup_dialog_bg/title": T.LABEL, + "realms_plus_extra_info_popup_dialog_bg/popup_content": T.UNKNOWN, + "realms_extra_info_panel_text": T.LABEL, + "realms_extra_info_panel": T.PANEL, + "realms_extra_info_panel/realms_extra": T.PANEL, + "realms_extra_info_panel/button_group": T.STACK_PANEL, + "realms_extra_info_button_collection": T.STACK_PANEL, + "realms_extra_info_button_collection/close": T.BUTTON, + "realms_extra_info_content": T.PANEL, + "realms_extra_info_content/the_spread": T.STACK_PANEL, + "realms_extra_info_content/the_spread/pack_image": T.IMAGE, + "realms_extra_info_content/the_spread/horizontal_6_padding": T.PANEL, + "realms_extra_info_content/the_spread/the_info_stack": T.STACK_PANEL, + "realms_extra_info_content/the_spread/the_info_stack/skins_and_world": T.STACK_PANEL, + "realms_extra_info_content/the_spread/the_info_stack/padding": T.PANEL, + "realms_extra_info_content/the_spread/the_info_stack/textures_and_usage": T.STACK_PANEL, + "pack_information_textures_and_usage_tooltip": T.STACK_PANEL, + "pack_information_textures_and_usage_tooltip/textures": T.PANEL, + "pack_information_textures_and_usage_tooltip/mid_padding": T.PANEL, + "pack_information_textures_and_usage_tooltip/appearance_status": T.INPUT_PANEL, + "roamable_status_notification_panel": T.INPUT_PANEL, + "roamable_status_notification_panel/appearance_status_notification": T.BUTTON, + "roamable_status_notification_panel/roamable_status": T.PANEL, + "appearance_status_image_panel": T.PANEL, + "appearance_status_image_panel/usage_limited": T.IMAGE, + "appearance_status_image_panel/usage_not_limited": T.IMAGE, + "pack_information_skins_and_world": T.STACK_PANEL, + "pack_information_skins_and_world/skins": T.PANEL, + "pack_information_skins_and_world/mid_padding": T.PANEL, + "pack_information_skins_and_world/worlds": T.PANEL, + "skin_info_label_and_image": T.PANEL, + "skin_info_label_and_image/content_stack": T.STACK_PANEL, + "skin_info_image_panel": T.PANEL, + "skin_info_image_panel/image": T.UNKNOWN, + "skin_info_label_panel_label": T.LABEL, + "skin_info_label_panel": T.PANEL, + "skin_info_label_panel/label": T.LABEL, + "skin_info_content_stack": T.STACK_PANEL, + "skin_info_content_stack/image_panel": T.PANEL, + "skin_info_content_stack/horizontal_2_padding": T.PANEL, + "skin_info_content_stack/label_panel": T.PANEL, + "realms_extra_info_pack_info": T.IMAGE, + "popup_toast": T.INPUT_PANEL, } export type PlayType = { - label_background: T.IMAGE - dark_label_background: T.IMAGE - world_screenshot_base: T.IMAGE - collection_world_screenshot: T.IMAGE - "collection_world_screenshot/screenshot_picture": T.IMAGE - "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel": T.STACK_PANEL - "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/gradient_image_realmsplus_expired": T.IMAGE - "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/solid_image_realmsplus_expired": T.IMAGE - "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/solid_image_realmsplus_expired/exclamationmark": T.LABEL - world_item_grid_base: T.GRID - edit_icon: T.IMAGE - realms_stories_icon: T.IMAGE - realms_stories_icon_animated: T.IMAGE - realms_slots_edit_icon: T.IMAGE - worlds_icon: T.IMAGE - realms_icon: T.IMAGE - realms_chevron: T.IMAGE - friends_icon_1: T.IMAGE - friends_icon_2: T.IMAGE - bell_icon: T.IMAGE - invite_icon: T.IMAGE - delete_icon: T.IMAGE - world_download_icon: T.IMAGE - third_party_servers_icon: T.IMAGE - lan_icon: T.IMAGE - friends_server_icon: T.IMAGE - cross_platform_friends_server_icon: T.IMAGE - realms_remove_icon: T.IMAGE - game_online_icon: T.IMAGE - game_offline_icon: T.IMAGE - game_unavailable_icon: T.IMAGE - import_icon: T.IMAGE - add_server_icon: T.IMAGE - server_tab_icon: T.IMAGE - realms_art_icon: T.IMAGE - realms_text_background: T.IMAGE - connected_storage: T.IMAGE - feedback_icon: T.IMAGE - local_only_storage: T.IMAGE - local_and_cloud_storage: T.IMAGE - cloud_only_storage: T.IMAGE - left_arrow_icon: T.IMAGE - right_arrow_icon: T.IMAGE - small_progress_panel: T.IMAGE - sign_in_realms_image: T.PANEL - "sign_in_realms_image/chevron": T.IMAGE - "sign_in_realms_image/portal": T.IMAGE - realms_sign_in_prompt_label: T.LABEL - realms_sign_in_prompt: T.PANEL - "realms_sign_in_prompt/realms_sign_in_prompt_label": T.LABEL - realms_sign_in_prompt_friends: T.PANEL - "realms_sign_in_prompt_friends/realms_sign_in_prompt_label_friends": T.LABEL - sign_in_to_view_realms_content_panel: T.STACK_PANEL - "sign_in_to_view_realms_content_panel/sign_in_realms_image": T.PANEL - "sign_in_to_view_realms_content_panel/realms_sign_in_prompt": T.UNKNOWN - sign_in_to_view_realms_content_panel_friends: T.STACK_PANEL - sign_in_to_view_realms_button: T.BUTTON - sign_in_to_view_realms_button_friends: T.BUTTON - realms_list_text: T.LABEL - realms_world_header: T.LABEL - realms_world_details: T.LABEL - realms_world_type: T.LABEL - realms_world_player_count: T.LABEL - realms_world_game_status_icon: T.PANEL - "realms_world_game_status_icon/game_online_icon": T.IMAGE - "realms_world_game_status_icon/game_unavailable_icon": T.IMAGE - "realms_world_game_status_icon/game_offline_icon": T.IMAGE - realms_world_text_panel: T.PANEL - "realms_world_text_panel/realms_world_header": T.LABEL - "realms_world_text_panel/realms_world_details": T.LABEL - realms_world_trial_text_panel: T.PANEL - "realms_world_trial_text_panel/realms_world_header_text": T.LABEL - "realms_world_trial_text_panel/realms_world_details": T.LABEL - realms_world_content_text_area_panel: T.PANEL - "realms_world_content_text_area_panel/realms_world_text_panel": T.PANEL - realms_trial_content_text_area_panel: T.PANEL - "realms_trial_content_text_area_panel/realms_world_trial_text_panel": T.PANEL - realms_world_content_status_area_panel: T.STACK_PANEL - "realms_world_content_status_area_panel/world_player_count_text_panel": T.PANEL - "realms_world_content_status_area_panel/world_player_count_text_panel/realms_world_player_count": T.LABEL - "realms_world_content_status_area_panel/padding": T.PANEL - "realms_world_content_status_area_panel/realms_world_game_status_icon": T.PANEL - realms_world_content_status_area_panel_container: T.STACK_PANEL - "realms_world_content_status_area_panel_container/realms_world_status_panel": T.PANEL - "realms_world_content_status_area_panel_container/realms_world_status_panel/realms_world_content_status_area_panel": T.STACK_PANEL - "realms_world_content_status_area_panel_container/realms_world_type": T.LABEL - realms_world_content_panel: T.STACK_PANEL - "realms_world_content_panel/realm_screenshot": T.IMAGE - "realms_world_content_panel/padding": T.PANEL - "realms_world_content_panel/realms_world_content_text_area_panel": T.PANEL - "realms_world_content_panel/realms_world_content_status_area_panel": T.PANEL - "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_content_status_area_panel_container": T.STACK_PANEL - realms_trial_content_panel: T.STACK_PANEL - "realms_trial_content_panel/realm_screenshot": T.IMAGE - "realms_trial_content_panel/padding": T.PANEL - "realms_trial_content_panel/realms_trial_content_text_area_panel": T.PANEL - realms_world_item_button: T.BUTTON - realms_world_edit_button: T.BUTTON - realms_feed_button_content: T.IMAGE - "realms_feed_button_content/default_icon": T.IMAGE - "realms_feed_button_content/unread_icon_active": T.IMAGE - persistent_realms_feed_button_control: T.PANEL - realms_feed_button: T.BUTTON - leave_friends_realm_button: T.BUTTON - unread_story_count_text: T.LABEL - unread_story_count_text_background: T.IMAGE - unread_story_count_panel: T.PANEL - "unread_story_count_panel/text": T.LABEL - "unread_story_count_panel/text/background": T.IMAGE - realms_world_item: T.STACK_PANEL - "realms_world_item/realms_button_panel": T.PANEL - "realms_world_item/realms_button_panel/realms_world_item_button": T.BUTTON - "realms_world_item/realms_button_panel/tts_border": T.BUTTON - "realms_world_item/edit_panel": T.PANEL - "realms_world_item/edit_panel/realms_world_edit_button": T.BUTTON - "realms_world_item/edit_panel/realms_world_expiry_notification_image": T.IMAGE - "realms_world_item/feed_panel_with_unread_count": T.PANEL - "realms_world_item/feed_panel_with_unread_count/feed_panel": T.PANEL - "realms_world_item/feed_panel_with_unread_count/feed_panel/realms_feed_button": T.BUTTON - "realms_world_item/feed_panel_with_unread_count/unread_story_count": T.PANEL - "realms_world_item/leave_realm_panel": T.PANEL - "realms_world_item/leave_realm_panel/leave_friends_realm_button": T.BUTTON - realms_world_item_grid: T.GRID - network_world_header: T.STACK_PANEL - "network_world_header/network_world_header_icon": T.IMAGE - "network_world_header/spacer": T.PANEL - "network_world_header/header_panel": T.PANEL - "network_world_header/header_panel/network_world_header_text": T.LABEL - network_world_details: T.LABEL - network_world_player_count: T.PANEL - "network_world_player_count/count": T.LABEL - network_world_game_status_icon: T.PANEL - "network_world_game_status_icon/game_online_icon": T.IMAGE - "network_world_game_status_icon/game_unavailable_icon": T.IMAGE - "network_world_game_status_icon/game_offline_icon": T.IMAGE - network_world_text_panel: T.PANEL - "network_world_text_panel/network_world_header": T.STACK_PANEL - "network_world_text_panel/network_world_details": T.LABEL - network_world_content_text_area_panel: T.PANEL - "network_world_content_text_area_panel/network_world_text_panel": T.PANEL - network_world_content_status_area_panel: T.STACK_PANEL - "network_world_content_status_area_panel/network_player_count_text_panel": T.PANEL - "network_world_content_status_area_panel/network_player_count_text_panel/network_world_player_count": T.PANEL - "network_world_content_status_area_panel/padding": T.PANEL - "network_world_content_status_area_panel/network_world_game_status_icon": T.PANEL - network_world_content_status_area_panel_container: T.STACK_PANEL - "network_world_content_status_area_panel_container/network_world_status_panel": T.PANEL - "network_world_content_status_area_panel_container/network_world_status_panel/network_world_content_status_area_panel": T.STACK_PANEL - "network_world_content_status_area_panel_container/network_world_type": T.PANEL - network_world_type: T.PANEL - "network_world_type/type": T.LABEL - network_world_item_button_content: T.STACK_PANEL - "network_world_item_button_content/network_world_content_text_area_panel": T.PANEL - "network_world_item_button_content/network_status_area_panel": T.PANEL - "network_world_item_button_content/network_status_area_panel/network_world_content_status_area_panel_container": T.STACK_PANEL - "network_world_item_button_content/network_world_type_icon": T.LABEL - "network_world_item_button_content/network_world_type_icon/padding": T.PANEL - network_world_item_button: T.BUTTON - network_server_world_edit_button: T.BUTTON - network_world_item: T.PANEL - "network_world_item/network_world_item_button": T.BUTTON - "network_world_item/tts_border": T.BUTTON - network_world_item_grid: T.GRID - network_world_item_ignore_crossplay: T.PANEL - "network_world_item_ignore_crossplay/network_world_item_button": T.BUTTON - label_content_template: T.STACK_PANEL - "label_content_template/label_panel": T.PANEL - "label_content_template/label_panel/label_panel_layout": T.PANEL - "label_content_template/label_panel/label_panel_layout/label": T.LABEL - "label_content_template/content": T.UNKNOWN - information_panel: T.PANEL - "information_panel/background": T.IMAGE - "information_panel/background/label_panel_layout": T.PANEL - "information_panel/background/label_panel_layout/label": T.LABEL - "information_panel/focus_button": T.BUTTON - blocked_multiplayer_privileges_panel: T.PANEL - "blocked_multiplayer_privileges_panel/background": T.IMAGE - "blocked_multiplayer_privileges_panel/background/label_panel_layout": T.PANEL - "blocked_multiplayer_privileges_panel/background/label_panel_layout/label": T.LABEL - more_servers_grid: T.GRID - additional_server_toggle_content: T.STACK_PANEL - "additional_server_toggle_content/network_world_content_text_area_panel": T.PANEL - more_servers_label_panel: T.PANEL - "more_servers_label_panel/list_label": T.LABEL - more_servers_world_item: T.STACK_PANEL - "more_servers_world_item/additional_server_toggle_base": T.PANEL - "more_servers_world_item/network_server_world_edit_button": T.BUTTON - additional_server_info_panel: T.PANEL - "additional_server_info_panel/server_info_stack_panel": T.STACK_PANEL - "additional_server_info_panel/server_info_stack_panel/padding_1": T.PANEL - "additional_server_info_panel/server_info_stack_panel/server_name": T.LABEL - "additional_server_info_panel/server_info_stack_panel/padding_2": T.PANEL - "additional_server_info_panel/server_info_stack_panel/player_count": T.STACK_PANEL - "additional_server_info_panel/server_info_stack_panel/padding_3": T.PANEL - "additional_server_info_panel/server_info_stack_panel/ping": T.STACK_PANEL - "additional_server_info_panel/server_info_stack_panel/padding_4": T.PANEL - "additional_server_info_panel/server_info_stack_panel/join_server_button": T.BUTTON - ping_rate_icon: T.IMAGE - ping_rate_panel: T.PANEL - "ping_rate_panel/concurrency_stack": T.STACK_PANEL - "ping_rate_panel/concurrency_stack/player_count": T.LABEL - "ping_rate_panel/concurrency_stack/padding_0": T.PANEL - "ping_rate_panel/concurrency_stack/ping_rate_icon": T.IMAGE - add_server_info_panel: T.PANEL - "add_server_info_panel/server_info_stack_panel": T.STACK_PANEL - "add_server_info_panel/server_info_stack_panel/padding_0": T.PANEL - "add_server_info_panel/server_info_stack_panel/add_server_title": T.LABEL - "add_server_info_panel/server_info_stack_panel/padding_1": T.PANEL - "add_server_info_panel/server_info_stack_panel/add_server_description": T.LABEL - third_party_featured_server_grid: T.GRID - featured_server_world_item: T.PANEL - "featured_server_world_item/server_button": T.PANEL - server_button_content_panel: T.STACK_PANEL - "server_button_content_panel/top_panel": T.STACK_PANEL - "server_button_content_panel/top_panel/third_party_server_screenshot": T.IMAGE - "server_button_content_panel/top_panel/padding_0": T.PANEL - "server_button_content_panel/top_panel/title_panel": T.PANEL - "server_button_content_panel/top_panel/title_panel/third_party_server_name": T.LABEL - "server_button_content_panel/top_panel/title_panel/progress": T.IMAGE - "server_button_content_panel/padding": T.PANEL - "server_button_content_panel/bottom_panel": T.PANEL - "server_button_content_panel/bottom_panel/third_party_server_message": T.LABEL - third_party_server_content_panel: T.STACK_PANEL - "third_party_server_content_panel/ping_rate_panel": T.PANEL - loading_featured_servers_panel: T.PANEL - "loading_featured_servers_panel/load_bars": T.PANEL - "loading_featured_servers_panel/load_bars/progress_loading_bars": T.IMAGE - third_party_server_screenshot: T.IMAGE - "third_party_server_screenshot/picture": T.IMAGE - third_party_server_info_panel: T.PANEL - "third_party_server_info_panel/server_info_stack_panel": T.STACK_PANEL - "third_party_server_info_panel/server_info_stack_panel/padding_0": T.PANEL - "third_party_server_info_panel/server_info_stack_panel/server_screenshot": T.IMAGE - "third_party_server_info_panel/server_info_stack_panel/padding_1": T.PANEL - "third_party_server_info_panel/server_info_stack_panel/server_name": T.LABEL - "third_party_server_info_panel/server_info_stack_panel/padding_2": T.PANEL - "third_party_server_info_panel/server_info_stack_panel/player_count": T.STACK_PANEL - "third_party_server_info_panel/server_info_stack_panel/padding_3": T.PANEL - "third_party_server_info_panel/server_info_stack_panel/ping": T.STACK_PANEL - "third_party_server_info_panel/server_info_stack_panel/padding_4": T.PANEL - "third_party_server_info_panel/server_info_stack_panel/join_server_button": T.BUTTON - "third_party_server_info_panel/server_info_stack_panel/view_offers_button": T.BUTTON - "third_party_server_info_panel/server_info_stack_panel/padding_5": T.PANEL - "third_party_server_info_panel/server_info_stack_panel/screenshots_section": T.STACK_PANEL - "third_party_server_info_panel/server_info_stack_panel/description_section": T.STACK_PANEL - "third_party_server_info_panel/server_info_stack_panel/games_section": T.STACK_PANEL - "third_party_server_info_panel/server_info_stack_panel/news_section": T.STACK_PANEL - "third_party_server_info_panel/progress": T.IMAGE - text_icon_number_panel: T.STACK_PANEL - "text_icon_number_panel/text": T.LABEL - "text_icon_number_panel/padding_0": T.PANEL - "text_icon_number_panel/stack_panel": T.STACK_PANEL - "text_icon_number_panel/stack_panel/icon_panel": T.PANEL - "text_icon_number_panel/stack_panel/icon_panel/icon": T.IMAGE - "text_icon_number_panel/stack_panel/padding_1": T.PANEL - "text_icon_number_panel/stack_panel/number": T.LABEL - grey_bar_panel: T.STACK_PANEL - "grey_bar_panel/grey_bar": T.IMAGE - "grey_bar_panel/green_bar": T.IMAGE - "grey_bar_panel/padding": T.PANEL - screenshots_section_panel: T.STACK_PANEL - "screenshots_section_panel/divider_0": T.PANEL - "screenshots_section_panel/padding_0": T.PANEL - "screenshots_section_panel/screenshots_label": T.LABEL - "screenshots_section_panel/padding_1": T.PANEL - "screenshots_section_panel/screenshots": T.IMAGE - "screenshots_section_panel/padding_2": T.PANEL - "screenshots_section_panel/navigation_panel": T.STACK_PANEL - "screenshots_section_panel/navigation_panel/left_arrow_button": T.BUTTON - "screenshots_section_panel/navigation_panel/padding_0": T.PANEL - "screenshots_section_panel/navigation_panel/navigation_bar": T.PANEL - "screenshots_section_panel/navigation_panel/navigation_bar/grey_bar": T.IMAGE - "screenshots_section_panel/navigation_panel/navigation_bar/grey_bar/grey_bar_factory_panel": T.STACK_PANEL - "screenshots_section_panel/navigation_panel/padding_1": T.PANEL - "screenshots_section_panel/navigation_panel/right_arrow_button": T.BUTTON - "screenshots_section_panel/padding_3": T.PANEL - description_text_panel: T.PANEL - "description_text_panel/contents_description": T.LABEL - description_section_panel: T.STACK_PANEL - "description_section_panel/divider_0": T.PANEL - "description_section_panel/padding_0": T.PANEL - "description_section_panel/description_label": T.LABEL - "description_section_panel/padding_1": T.PANEL - "description_section_panel/read_more_panel": T.IMAGE - "description_section_panel/read_more_panel/description_text_small": T.PANEL - "description_section_panel/read_more_panel/description_text_full": T.PANEL - "description_section_panel/read_more_panel/description_read_more_button_panel": T.PANEL - "description_section_panel/read_more_panel/description_read_less_button_panel": T.PANEL - "description_section_panel/padding_3": T.PANEL - games_factory_object: T.STACK_PANEL - "games_factory_object/games_factory_panel": T.IMAGE - "games_factory_object/games_factory_panel/top_panel": T.STACK_PANEL - "games_factory_object/games_factory_panel/top_panel/game_image_panel": T.PANEL - "games_factory_object/games_factory_panel/top_panel/game_image_panel/game_image": T.IMAGE - "games_factory_object/games_factory_panel/top_panel/padding": T.PANEL - "games_factory_object/games_factory_panel/top_panel/game_title_panel": T.STACK_PANEL - "games_factory_object/games_factory_panel/top_panel/game_title_panel/game_title": T.LABEL - "games_factory_object/games_factory_panel/top_panel/game_title_panel/game_subtitle": T.LABEL - "games_factory_object/games_factory_panel/bottom_panel": T.PANEL - "games_factory_object/games_factory_panel/bottom_panel/bottom_panel": T.LABEL - "games_factory_object/padding": T.PANEL - games_section_panel: T.STACK_PANEL - "games_section_panel/divider_0": T.PANEL - "games_section_panel/padding_0": T.PANEL - "games_section_panel/description_label": T.LABEL - "games_section_panel/padding_1": T.PANEL - "games_section_panel/games_factory_panel": T.STACK_PANEL - "games_section_panel/padding_3": T.PANEL - news_text_panel: T.PANEL - "news_text_panel/contents_news": T.LABEL - news_section_panel: T.STACK_PANEL - "news_section_panel/divider_0": T.PANEL - "news_section_panel/padding_0": T.PANEL - "news_section_panel/news_label": T.LABEL - "news_section_panel/padding_1": T.PANEL - "news_section_panel/read_more_panel": T.IMAGE - "news_section_panel/read_more_panel/text_stack_panel": T.STACK_PANEL - "news_section_panel/read_more_panel/text_stack_panel/news_title_text": T.LABEL - "news_section_panel/read_more_panel/text_stack_panel/divider_panel": T.PANEL - "news_section_panel/read_more_panel/text_stack_panel/divider_panel/divider_0": T.PANEL - "news_section_panel/read_more_panel/text_stack_panel/news_text_small": T.PANEL - "news_section_panel/read_more_panel/text_stack_panel/news_text_full": T.PANEL - "news_section_panel/read_more_panel/news_read_more_button_panel": T.PANEL - "news_section_panel/read_more_panel/news_read_less_button_panel": T.PANEL - "news_section_panel/padding_3": T.PANEL - divider: T.IMAGE - blue_diskspace_bar: T.IMAGE - green_diskspace_bar: T.IMAGE - empty_diskspace_bar: T.IMAGE - legacy_world_content_status_area_panel: T.PANEL - "legacy_world_content_status_area_panel/world_storage_content_panel": T.PANEL - "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_separator": T.IMAGE - "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information": T.STACK_PANEL - "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_label": T.LABEL - "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/padding": T.PANEL - "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar": T.PANEL - "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/local_diskspace_bar": T.IMAGE - "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/legacy_diskspace_bar": T.IMAGE - "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/empty_diskspace_bar": T.IMAGE - world_list_text: T.LABEL - realm_screenshot: T.IMAGE - "realm_screenshot/picture": T.IMAGE - local_world_name: T.LABEL - legacy_world_name: T.LABEL - world_lock: T.IMAGE - local_world_game_mode: T.LABEL - legacy_world_game_mode: T.LABEL - local_world_date: T.LABEL - legacy_world_date: T.LABEL - local_world_filesize: T.LABEL - legacy_world_filesize: T.LABEL - local_world_connected_storage: T.PANEL - "local_world_connected_storage/local_and_cloud": T.IMAGE - "local_world_connected_storage/local_only": T.IMAGE - "local_world_connected_storage/cloud_only": T.IMAGE - local_world_lock_panel: T.PANEL - "local_world_lock_panel/lock": T.IMAGE - realms_plus_banner: T.PANEL - "realms_plus_banner/realms_banner": T.STACK_PANEL - local_world_text_panel: T.PANEL - "local_world_text_panel/text_indent": T.PANEL - "local_world_text_panel/text_indent/top_side": T.STACK_PANEL - "local_world_text_panel/text_indent/top_side/local_world_name": T.LABEL - "local_world_text_panel/text_indent/top_side/lock_1": T.PANEL - "local_world_text_panel/text_indent/top_side/local_world_date": T.LABEL - "local_world_text_panel/text_indent/bottom_side": T.STACK_PANEL - "local_world_text_panel/text_indent/bottom_side/realms_plus_icon": T.PANEL - "local_world_text_panel/text_indent/bottom_side/pad": T.PANEL - "local_world_text_panel/text_indent/bottom_side/local_world_game_mode": T.LABEL - "local_world_text_panel/text_indent/bottom_side/local_world_connected_storage": T.PANEL - "local_world_text_panel/text_indent/bottom_side/local_world_filesize": T.LABEL - legacy_world_text_panel: T.PANEL - "legacy_world_text_panel/text_indent": T.PANEL - "legacy_world_text_panel/text_indent/top_side": T.STACK_PANEL - "legacy_world_text_panel/text_indent/top_side/legacy_world_name": T.LABEL - "legacy_world_text_panel/text_indent/top_side/legacy_world_date": T.LABEL - "legacy_world_text_panel/text_indent/bottom_side": T.STACK_PANEL - "legacy_world_text_panel/text_indent/bottom_side/legacy_world_game_mode": T.LABEL - "legacy_world_text_panel/text_indent/bottom_side/legacy_world_filesize": T.LABEL - beta_retail_world_text_panel: T.PANEL - "beta_retail_world_text_panel/text_indent": T.PANEL - "beta_retail_world_text_panel/text_indent/top_side": T.STACK_PANEL - "beta_retail_world_text_panel/text_indent/top_side/beta_retail_world_name": T.LABEL - "beta_retail_world_text_panel/text_indent/top_side/beta_retail_world_date": T.LABEL - "beta_retail_world_text_panel/text_indent/bottom_side": T.STACK_PANEL - "beta_retail_world_text_panel/text_indent/bottom_side/beta_retail_world_game_mode": T.LABEL - "beta_retail_world_text_panel/text_indent/bottom_side/beta_retail_world_filesize": T.LABEL - world_content_panel: T.STACK_PANEL - "world_content_panel/world_screenshot": T.IMAGE - "world_content_panel/world_text_panel": T.UNKNOWN - ownership_verification_in_progress_content: T.STACK_PANEL - "ownership_verification_in_progress_content/top_padding": T.PANEL - "ownership_verification_in_progress_content/loading_bar_panel": T.PANEL - "ownership_verification_in_progress_content/loading_bar_panel/loading_bar_animation": T.IMAGE - "ownership_verification_in_progress_content/mid_padding": T.PANEL - "ownership_verification_in_progress_content/loading_label": T.LABEL - "ownership_verification_in_progress_content/bottom_padding": T.PANEL - ownership_verification_in_progress_panel: T.IMAGE - "ownership_verification_in_progress_panel/ownership_verification_in_progress_content": T.STACK_PANEL - local_world_item_button: T.BUTTON - legacy_world_item_button: T.BUTTON - beta_retail_world_item_button: T.BUTTON - local_world_edit_button: T.BUTTON - legacy_world_delete_button: T.BUTTON - legacy_world_migrate_button: T.BUTTON - local_world_item: T.PANEL - "local_world_item/header_button_panel": T.PANEL - "local_world_item/signin_in_progress_panel": T.IMAGE - legacy_world_item: T.STACK_PANEL - "legacy_world_item/header_button_panel_with_delete": T.PANEL - "legacy_world_item/header_button_panel_with_migrate": T.PANEL - "legacy_world_item/header_button_panel_no_delete": T.PANEL - beta_retail_world_item: T.PANEL - local_world_item_grid: T.GRID - legacy_world_item_grid: T.GRID - beta_retail_local_world_item_grid: T.GRID - beta_retail_legacy_world_item_grid: T.GRID - common_button_template: T.BUTTON - common_button_text: T.LABEL - add_friend_and_invite_panel: T.STACK_PANEL - "add_friend_and_invite_panel/add_friend_button": T.BUTTON - "add_friend_and_invite_panel/padding_1": T.PANEL - "add_friend_and_invite_panel/join_by_code_button": T.BUTTON - "add_friend_and_invite_panel/padding_2": T.PANEL - "add_friend_and_invite_panel/notification_button_panel": T.PANEL - "add_friend_and_invite_panel/notification_button_panel/notification_button": T.BUTTON - add_friend_button: T.BUTTON - join_by_code_button: T.BUTTON - add_server_toggle_button: T.PANEL - server_toggle_base: T.PANEL - quick_play_button: T.BUTTON - create_new_world_button: T.BUTTON - create_on_realms_button_panel: T.PANEL - "create_on_realms_button_panel/create_on_realms_button": T.BUTTON - import_world_button: T.BUTTON - sync_legacy_worlds_button: T.BUTTON - notification_button_text_layout: T.PANEL - "notification_button_text_layout/image1": T.IMAGE - "notification_button_text_layout/image2": T.IMAGE - "notification_button_text_layout/count": T.PANEL - notification_button_label_panel: T.PANEL - "notification_button_label_panel/notification_button_label": T.LABEL - notification_content: T.PANEL - notification_button: T.BUTTON - header_button_panel: T.PANEL - "header_button_panel/buttons": T.STACK_PANEL - "header_button_panel/buttons/primary_panel": T.PANEL - "header_button_panel/buttons/primary_panel/primary": T.UNKNOWN - "header_button_panel/buttons/secondary": T.UNKNOWN - header_button_panel_opt_in: T.PANEL - "header_button_panel_opt_in/buttons": T.STACK_PANEL - "header_button_panel_opt_in/buttons/primary_panel": T.PANEL - "header_button_panel_opt_in/buttons/primary_panel/primary": T.UNKNOWN - "header_button_panel_opt_in/buttons/secondary": T.UNKNOWN - "header_button_panel_opt_in/buttons/ternary": T.UNKNOWN - header_single_button_panel: T.PANEL - "header_single_button_panel/buttons": T.STACK_PANEL - "header_single_button_panel/buttons/primary": T.UNKNOWN - open_account_setting_button_gamecore: T.BUTTON - common_scroll_pane: T.PANEL - worlds_scroll_panel: T.PANEL - "worlds_scroll_panel/worlds_list_stack_panel": T.STACK_PANEL - game_tip_item_panel: T.STACK_PANEL - "game_tip_item_panel/info_bulb": T.IMAGE - "game_tip_item_panel/padding_1": T.PANEL - "game_tip_item_panel/label_panel": T.STACK_PANEL - "game_tip_item_panel/label_panel/padding_vertical": T.PANEL - "game_tip_item_panel/label_panel/realms_warning_text": T.LABEL - "game_tip_item_panel/label_panel/padding_vertical_1": T.PANEL - "game_tip_item_panel/more_info_button": T.BUTTON - realm_warning_tip: T.IMAGE - "realm_warning_tip/padding_vertical": T.PANEL - "realm_warning_tip/info_panel": T.STACK_PANEL - new_ui_switch_button_options_panel: T.STACK_PANEL - "new_ui_switch_button_options_panel/unlock_template_options_button": T.BUTTON - new_ui_servers_switch_button_options_panel: T.STACK_PANEL - "new_ui_servers_switch_button_options_panel/unlock_template_options_button": T.BUTTON - "new_ui_servers_switch_button_options_panel/padding_0": T.PANEL - worlds_stack_panel: T.STACK_PANEL - "worlds_stack_panel/padding_0": T.PANEL - "worlds_stack_panel/play_screen_warning": T.IMAGE - "worlds_stack_panel/header_button": T.STACK_PANEL - "worlds_stack_panel/header_button/quick_play": T.BUTTON - "worlds_stack_panel/header_button/buttons": T.PANEL - "worlds_stack_panel/worlds_crossplatform_disabled_panel": T.PANEL - "worlds_stack_panel/worlds_crossplatform_disable_spacer": T.PANEL - "worlds_stack_panel/realms_panel": T.STACK_PANEL - "worlds_stack_panel/realms_panel/realms_label": T.PANEL - "worlds_stack_panel/realms_panel/sign_in_to_view_realms_button": T.BUTTON - "worlds_stack_panel/realms_panel/realms_previews_panel": T.PANEL - "worlds_stack_panel/realms_panel/realms_previews_panel/new_offers_icon": T.IMAGE - "worlds_stack_panel/realms_panel/realms_previews_panel/realms_world_item_button": T.BUTTON - "worlds_stack_panel/realms_panel/create_on_realms_button_panel": T.PANEL - "worlds_stack_panel/realms_panel/personal_realms": T.GRID - "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel": T.IMAGE - "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/placeholder_loading_personal_realms": T.GRID - "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/loading_friends_realms_label": T.LABEL - "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/padding": T.PANEL - "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/progress_loading_bars": T.IMAGE - "worlds_stack_panel/realms_panel/realms_trial_panel": T.PANEL - "worlds_stack_panel/realms_panel/realms_trial_panel/realms_world_item_button": T.BUTTON - "worlds_stack_panel/realms_panel/realms_nintendo_first_realm_purchase_panel": T.PANEL - "worlds_stack_panel/realms_panel/realms_nintendo_first_realm_purchase_panel/realms_world_item_button": T.BUTTON - "worlds_stack_panel/realms_panel/padding_1": T.PANEL - "worlds_stack_panel/realms_multiplayer_blocked_panel": T.STACK_PANEL - "worlds_stack_panel/realms_multiplayer_blocked_panel/text_panel": T.STACK_PANEL - "worlds_stack_panel/realms_multiplayer_blocked_panel/open_uri_button": T.BUTTON - "worlds_stack_panel/realms_multiplayer_blocked_panel/open_account_setting_button_gamecore": T.BUTTON - "worlds_stack_panel/worlds_label": T.STACK_PANEL - "worlds_stack_panel/grid": T.GRID - "worlds_stack_panel/no_local_worlds_label": T.STACK_PANEL - "worlds_stack_panel/no_local_worlds_switch_setting": T.PANEL - "worlds_stack_panel/beta_retail_local_padding": T.PANEL - "worlds_stack_panel/beta_retail_local_worlds_label": T.PANEL - "worlds_stack_panel/beta_retail_local_grid": T.GRID - "worlds_stack_panel/loading_legacy_worlds_panel_padding": T.PANEL - "worlds_stack_panel/legacy_worlds_button": T.STACK_PANEL - "worlds_stack_panel/legacy_worlds_button/legacy_worlds_label": T.PANEL - "worlds_stack_panel/legacy_worlds_button/sync_legacy_worlds_button_panel": T.PANEL - "worlds_stack_panel/legacy_worlds_button/sync_legacy_worlds_button_panel/button": T.BUTTON - "worlds_stack_panel/loading_legacy_worlds_panel": T.IMAGE - "worlds_stack_panel/loading_legacy_worlds_panel/loading_legacy_worlds_label": T.LABEL - "worlds_stack_panel/loading_legacy_worlds_panel/padding": T.PANEL - "worlds_stack_panel/loading_legacy_worlds_panel/progress_loading_bars": T.IMAGE - "worlds_stack_panel/padding_2": T.PANEL - "worlds_stack_panel/upgrade_legacy_worlds_label": T.STACK_PANEL - "worlds_stack_panel/legacy_world_item_grid": T.GRID - "worlds_stack_panel/beta_retail_legacy_padding": T.PANEL - "worlds_stack_panel/beta_retail_legacy_worlds_label": T.PANEL - "worlds_stack_panel/beta_retail_legacy_grid": T.GRID - "worlds_stack_panel/pad_hack_panel": T.PANEL - no_local_worlds_switch_setting: T.PANEL - "no_local_worlds_switch_setting/bg": T.IMAGE - "no_local_worlds_switch_setting/bg/no_local_worlds_switch_setting": T.STACK_PANEL - "no_local_worlds_switch_setting/bg/no_local_worlds_get_help": T.STACK_PANEL - no_local_worlds_launch_help: T.BUTTON - storage_location_dropdown_panel: T.STACK_PANEL - "storage_location_dropdown_panel/padding1": T.PANEL - "storage_location_dropdown_panel/storage_location_dropdown": T.PANEL - storage_location_dropdown: T.PANEL - switch_storage_type_content: T.PANEL - light_centered_loading_label: T.LABEL - light_loading_label: T.LABEL - loading_label: T.LABEL - progress_loading_bars: T.IMAGE - world_list_label_panel: T.PANEL - "world_list_label_panel/list_label": T.LABEL - world_list_label_with_color_panel: T.STACK_PANEL - "world_list_label_with_color_panel/colored_square_sizer": T.PANEL - "world_list_label_with_color_panel/colored_square_sizer/colored_square": T.IMAGE - "world_list_label_with_color_panel/padding": T.PANEL - "world_list_label_with_color_panel/list_label": T.LABEL - empty_panel: T.PANEL - empty_grid: T.PANEL - lan_servers_scroll_content: T.STACK_PANEL - friends_scroll_panel: T.PANEL - "friends_scroll_panel/stack_panel": T.STACK_PANEL - "friends_scroll_panel/stack_panel/padding_0": T.PANEL - "friends_scroll_panel/stack_panel/friends_screen_warning": T.IMAGE - "friends_scroll_panel/stack_panel/header_button": T.STACK_PANEL - "friends_scroll_panel/stack_panel/header_button/add_friend_and_invite_panel": T.STACK_PANEL - "friends_scroll_panel/stack_panel/friends_crossplatform_disabled_panel": T.PANEL - "friends_scroll_panel/stack_panel/friends_crossplatform_disable_spacer": T.PANEL - "friends_scroll_panel/stack_panel/joinable_realms_panel": T.STACK_PANEL - "friends_scroll_panel/stack_panel/joinable_realms_panel/friends_realms_label": T.PANEL - "friends_scroll_panel/stack_panel/joinable_realms_panel/sign_in_to_view_realms_button_friends": T.BUTTON - "friends_scroll_panel/stack_panel/joinable_realms_panel/friends_realms": T.GRID - "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel": T.IMAGE - "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/placeholder_loading_friends_realms": T.GRID - "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/loading_friends_realms_label": T.LABEL - "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/padding": T.PANEL - "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/progress_loading_bars": T.IMAGE - "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel": T.IMAGE - "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack": T.STACK_PANEL - "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/message_panel": T.PANEL - "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/message_panel/message_label": T.LABEL - "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/image_panel": T.PANEL - "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/image_panel/link_image": T.IMAGE - "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border": T.BUTTON - "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border/hover": T.IMAGE - "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border/pressed": T.IMAGE - "friends_scroll_panel/stack_panel/joinable_realms_panel/no_realms_grid": T.STACK_PANEL - "friends_scroll_panel/stack_panel/joinable_realms_panel/padding_1": T.PANEL - "friends_scroll_panel/stack_panel/friends_grid": T.STACK_PANEL - "friends_scroll_panel/stack_panel/pad_hack_panel": T.PANEL - "friends_scroll_panel/stack_panel/no_friends_grid_message": T.STACK_PANEL - "friends_scroll_panel/stack_panel/switch_find_cross_platform_friend_button": T.BUTTON - "friends_scroll_panel/stack_panel/add_friend_button_padding": T.PANEL - "friends_scroll_panel/stack_panel/cross_platform_friends_grid": T.STACK_PANEL - "friends_scroll_panel/stack_panel/no_cross_platform_friends_grid_message": T.STACK_PANEL - "friends_scroll_panel/stack_panel/general_no_multiplayer_grid_message": T.STACK_PANEL - "friends_scroll_panel/stack_panel/lan_grid": T.STACK_PANEL - "friends_scroll_panel/stack_panel/open_account_setting_button_gamecore": T.BUTTON - manually_added_servers_scrolling_content: T.STACK_PANEL - "manually_added_servers_scrolling_content/padding_0": T.PANEL - "manually_added_servers_scrolling_content/more_servers_label": T.LABEL - "manually_added_servers_scrolling_content/padding_1": T.PANEL - "manually_added_servers_scrolling_content/more_servers_grid": T.GRID - "manually_added_servers_scrolling_content/padding_3": T.PANEL - servers_content_panel: T.STACK_PANEL - "servers_content_panel/new_ui_servers_switch_button_options_panel": T.STACK_PANEL - "servers_content_panel/featured_servers_panel": T.STACK_PANEL - "servers_content_panel/featured_servers_panel/loading_featured_panel": T.IMAGE - "servers_content_panel/featured_servers_panel/loading_featured_panel/loading_friends_realms_label": T.LABEL - "servers_content_panel/featured_servers_panel/loading_featured_panel/loading_featured_servers_panel": T.PANEL - "servers_content_panel/featured_servers_panel/padding_1": T.PANEL - "servers_content_panel/featured_servers_panel/featured_servers_label": T.LABEL - "servers_content_panel/featured_servers_panel/padding_2": T.PANEL - "servers_content_panel/featured_servers_panel/third_party_featured_grid": T.GRID - "servers_content_panel/featured_servers_panel/padding_3": T.PANEL - "servers_content_panel/more_servers_divider": T.PANEL - "servers_content_panel/more_servers_panel": T.STACK_PANEL - server_scroll_panel: T.PANEL - "server_scroll_panel/stack_panel": T.STACK_PANEL - "server_scroll_panel/stack_panel/padding_0": T.PANEL - "server_scroll_panel/stack_panel/servers_crossplatform_disabled_panel": T.PANEL - "server_scroll_panel/stack_panel/no_featured_server_connection": T.PANEL - "server_scroll_panel/stack_panel/more_servers_blocked_panel": T.STACK_PANEL - "server_scroll_panel/stack_panel/more_servers_blocked_panel/server_multiplayer_privileges_blocked": T.PANEL - "server_scroll_panel/stack_panel/more_servers_blocked_panel/open_uri_button": T.BUTTON - "server_scroll_panel/stack_panel/padding_1": T.PANEL - "server_scroll_panel/stack_panel/server_content": T.UNKNOWN - "server_scroll_panel/stack_panel/add_server_button": T.PANEL - crossplatform_disabled_panel: T.PANEL - crossplatform_disable_spacer: T.PANEL - common_scrolling_panel: T.PANEL - common_content: T.INPUT_PANEL - scrolling_offsets: T.PANEL - worlds_scroll_content: T.INPUT_PANEL - "worlds_scroll_content/worlds_stack_panel": T.STACK_PANEL - "worlds_scroll_content/worlds_stack_panel/scrolling_panel_sizer": T.PANEL - "worlds_scroll_content/worlds_stack_panel/scrolling_panel_sizer/scrolling_panel": T.PANEL - "worlds_scroll_content/worlds_stack_panel/scrolling_panel_legacy_storage_sizer": T.PANEL - "worlds_scroll_content/worlds_stack_panel/scrolling_panel_legacy_storage_sizer/scrolling_panel": T.PANEL - friends_scroll_content: T.INPUT_PANEL - "friends_scroll_content/scrolling_panel": T.PANEL - show_servers_panel: T.STACK_PANEL - "show_servers_panel/left_panel": T.PANEL - "show_servers_panel/left_panel/scrolling_panel": T.PANEL - "show_servers_panel/divider_panel": T.PANEL - "show_servers_panel/divider_panel/main_divider": T.IMAGE - "show_servers_panel/right_panel": T.PANEL - server_scroll_content: T.INPUT_PANEL - "server_scroll_content/severs_panel": T.STACK_PANEL - "server_scroll_content/severs_panel/offset_panel": T.PANEL - "server_scroll_content/severs_panel/offset_panel/servers_sunsetting_warning": T.IMAGE - "server_scroll_content/severs_panel/show_servers_panel": T.STACK_PANEL - "server_scroll_content/feature_server_message_panel": T.STACK_PANEL - "server_scroll_content/feature_server_message_panel/featured_servers_label": T.LABEL - "server_scroll_content/feature_server_message_panel/pad": T.PANEL - "server_scroll_content/feature_server_message_panel/feature_server_message_panel": T.IMAGE - "server_scroll_content/feature_server_message_panel/feature_server_message_panel/label_panel_layout": T.PANEL - "server_scroll_content/feature_server_message_panel/feature_server_message_panel/label_panel_layout/label": T.LABEL - "server_scroll_content/feature_server_message_panel/open_account_setting_button_gamecore": T.BUTTON - server_content_area: T.PANEL - "server_content_area/third_party_scrolling_panel": T.PANEL - "server_content_area/additional_server_scrolling_panel": T.PANEL - "server_content_area/add_server_pane": T.PANEL - tab_front: T.IMAGE - tab_front_middle: T.IMAGE - tab_back: T.IMAGE - X_tab_back: T.IMAGE - tab_text_stack_panel: T.STACK_PANEL - "tab_text_stack_panel/padding": T.PANEL - "tab_text_stack_panel/text_section": T.PANEL - "tab_text_stack_panel/text_section/text": T.LABEL - "tab_text_stack_panel/count_section": T.PANEL - "tab_text_stack_panel/count_section/count_background_image": T.IMAGE - "tab_text_stack_panel/count_section/count_background_image/count": T.LABEL - common_navigation_tab_content: T.STACK_PANEL - "common_navigation_tab_content/padding_0": T.PANEL - "common_navigation_tab_content/icon_section": T.PANEL - "common_navigation_tab_content/icon_section/icon": T.UNKNOWN - "common_navigation_tab_content/padding_1": T.PANEL - "common_navigation_tab_content/count_text": T.STACK_PANEL - friends_navigation_tab_content: T.STACK_PANEL - "friends_navigation_tab_content/padding": T.PANEL - "friends_navigation_tab_content/icon_section": T.PANEL - "friends_navigation_tab_content/icon_section/icon": T.UNKNOWN - "friends_navigation_tab_content/icon_section_2": T.PANEL - "friends_navigation_tab_content/icon_section_2/icon": T.UNKNOWN - "friends_navigation_tab_content/icon_section_nobounce": T.PANEL - "friends_navigation_tab_content/icon_section_nobounce/icon": T.UNKNOWN - "friends_navigation_tab_content/icon_section_nobounce_2": T.PANEL - "friends_navigation_tab_content/icon_section_nobounce_2/icon": T.UNKNOWN - "friends_navigation_tab_content/icon_section_notification": T.PANEL - "friends_navigation_tab_content/icon_section_notification/icon1": T.IMAGE - "friends_navigation_tab_content/icon_section_notification/icon2": T.IMAGE - "friends_navigation_tab_content/count_text": T.STACK_PANEL - top_tab: T.PANEL - world_navigation_tab: T.PANEL - friends_navigation_tab: T.PANEL - server_navigation_tab: T.PANEL - close_navigation_tab: T.PANEL - "close_navigation_tab/background": T.IMAGE - "close_navigation_tab/x_image": T.BUTTON - common_tab_content_panel: T.PANEL - "common_tab_content_panel/background": T.PANEL - "common_tab_content_panel/content": T.UNKNOWN - worlds_tab_content_panel: T.PANEL - friends_tab_content_panel: T.PANEL - server_tab_content_panel: T.PANEL - common_tab_content_panel_type: T.INPUT_PANEL - edu_tab_content_panel_layout: T.INPUT_PANEL - "edu_tab_content_panel_layout/worlds_tab_content": T.PANEL - "edu_tab_content_panel_layout/friends_tab_content": T.PANEL - "edu_tab_content_panel_layout/server_tab_content_panel": T.PANEL - trial_tab_content_panel_layout: T.INPUT_PANEL - "trial_tab_content_panel_layout/worlds_tab_content": T.PANEL - default_tab_content_panel_layout: T.INPUT_PANEL - "default_tab_content_panel_layout/worlds_tab_content": T.PANEL - "default_tab_content_panel_layout/friends_tab_content": T.PANEL - "default_tab_content_panel_layout/server_tab_content_panel": T.PANEL - tab_navigation_panel_layout: T.STACK_PANEL - "tab_navigation_panel_layout/navigation_tabs": T.PANEL - "tab_navigation_panel_layout/navigation_tabs/content": T.UNKNOWN - "tab_navigation_panel_layout/close_navigation_tab": T.PANEL - "tab_navigation_panel_layout/close_navigation_tab/close_button": T.UNKNOWN - common_tab_navigation_panel_layout: T.STACK_PANEL - edu_tab_navigation_panel_layout: T.STACK_PANEL - "edu_tab_navigation_panel_layout/world_navigation_tab": T.PANEL - "edu_tab_navigation_panel_layout/friends_navigation_tab": T.PANEL - "edu_tab_navigation_panel_layout/server_navigation_tab": T.PANEL - trial_tab_navigation_panel_layout: T.STACK_PANEL - "trial_tab_navigation_panel_layout/world_navigation_tab": T.PANEL - default_tab_navigation_panel_layout: T.STACK_PANEL - "default_tab_navigation_panel_layout/world_navigation_tab": T.PANEL - "default_tab_navigation_panel_layout/friends_navigation_tab": T.PANEL - "default_tab_navigation_panel_layout/server_navigation_tab": T.PANEL - common_play_screen_panel: T.PANEL - play_screen_panel: T.PANEL - "play_screen_panel/tab_navigation_panel": T.STACK_PANEL - "play_screen_panel/tab_content_panel": T.UNKNOWN - "play_screen_panel/gamepad_helper_left_bumper": T.STACK_PANEL - "play_screen_panel/gamepad_helper_right_bumper": T.STACK_PANEL - "play_screen_panel/keyboard_helper_left_bracket": T.STACK_PANEL - "play_screen_panel/keyboard_helper_right_bracket": T.STACK_PANEL - default_play_screen_panel: T.PANEL - trial_play_screen_panel: T.PANEL - edu_play_screen_panel: T.PANEL - play_screen: T.SCREEN - play_screen_content: T.PANEL - "play_screen_content/main_control": T.UNKNOWN - "play_screen_content/editor_text_panel": T.PANEL - "play_screen_content/popup_dialog_factory": T.FACTORY - popup_dialog_join_by_code: T.INPUT_PANEL - "popup_dialog_join_by_code/join_by_code_popup_background": T.IMAGE - "popup_dialog_join_by_code/join_by_code_popup_content": T.PANEL - "popup_dialog_join_by_code/gamepad_helpers": T.STACK_PANEL - join_by_code_popup_background: T.IMAGE - join_by_code_popup_content: T.PANEL - "join_by_code_popup_content/popup_dialog_bg": T.IMAGE - "join_by_code_popup_content/popup_stack_panel": T.STACK_PANEL - "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_header": T.PANEL - "join_by_code_popup_content/popup_stack_panel/spacing_1": T.PANEL - "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_upper_body": T.STACK_PANEL - "join_by_code_popup_content/popup_stack_panel/spacing_2": T.PANEL - "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_lower_body": T.PANEL - join_by_code_popup_dialog_header: T.PANEL - "join_by_code_popup_dialog_header/join_by_code_popup_header_text": T.LABEL - "join_by_code_popup_dialog_header/close_button": T.BUTTON - join_by_code_popup_header_text: T.LABEL - join_by_code_popup_dialog_upper_body: T.STACK_PANEL - "join_by_code_popup_dialog_upper_body/margin1": T.PANEL - "join_by_code_popup_dialog_upper_body/join_by_code_popup_code_text_field": T.EDIT_BOX - "join_by_code_popup_dialog_upper_body/spacing": T.PANEL - "join_by_code_popup_dialog_upper_body/join_by_code_popup_join_button": T.BUTTON - "join_by_code_popup_dialog_upper_body/margin2": T.PANEL - join_by_code_popup_code_text_field: T.EDIT_BOX - join_by_code_popup_join_button: T.BUTTON - join_by_code_popup_help_text: T.LABEL - lower_body_default_content: T.PANEL - "lower_body_default_content/info_text": T.LABEL - join_by_code_popup_dialog_lower_body: T.PANEL - "join_by_code_popup_dialog_lower_body/default": T.PANEL - open_account_setting_button: T.BUTTON - popup_dialog_high_ping: T.INPUT_PANEL - "popup_dialog_high_ping/high_ping_popup_background": T.IMAGE - "popup_dialog_high_ping/high_ping_popup_content": T.PANEL - "popup_dialog_high_ping/gamepad_helpers": T.STACK_PANEL - popup_two_buttons: T.PANEL - "popup_two_buttons/common_panel": T.PANEL - "popup_two_buttons/title_label": T.PANEL - "popup_two_buttons/panel_indent": T.PANEL - "popup_two_buttons/panel_indent/inside_header_panel": T.UNKNOWN - "popup_two_buttons/button_panel": T.STACK_PANEL - "popup_two_buttons/button_panel/left_button_panel": T.BUTTON - "popup_two_buttons/button_panel/pad": T.PANEL - "popup_two_buttons/button_panel/right_button_panel": T.BUTTON - high_ping_popup_content_stack_panel: T.STACK_PANEL - "high_ping_popup_content_stack_panel/pad_0": T.PANEL - "high_ping_popup_content_stack_panel/ping_images_panel": T.PANEL - "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel": T.STACK_PANEL - "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/medium_connection": T.IMAGE - "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/pad": T.PANEL - "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/low_connection": T.IMAGE - "high_ping_popup_content_stack_panel/pad_1": T.PANEL - "high_ping_popup_content_stack_panel/text_line_1": T.LABEL - "high_ping_popup_content_stack_panel/pad_2": T.PANEL - "high_ping_popup_content_stack_panel/text_line_2": T.LABEL - "high_ping_popup_content_stack_panel/pad_3": T.PANEL - high_ping_popup_join_button: T.BUTTON - high_ping_popup_cancel_button: T.BUTTON - copyright: T.LABEL - development_version: T.LABEL - version: T.LABEL - editor_text_panel: T.PANEL - "editor_text_panel/copyright": T.LABEL - "editor_text_panel/development_version": T.LABEL - "editor_text_panel/version": T.LABEL - editor_settings_image_content: T.IMAGE - editor_settings_menu_button: T.BUTTON - editor_server_content_panel: T.STACK_PANEL - "editor_server_content_panel/more_servers_panel": T.STACK_PANEL - editor_tab_content_panel_layout: T.INPUT_PANEL - "editor_tab_content_panel_layout/worlds_tab_content": T.PANEL - "editor_tab_content_panel_layout/friends_tab_content": T.PANEL - "editor_tab_content_panel_layout/server_tab_content_panel": T.PANEL - editor_play_screen_panel: T.PANEL + "label_background": T.IMAGE, + "dark_label_background": T.IMAGE, + "world_screenshot_base": T.IMAGE, + "collection_world_screenshot": T.IMAGE, + "collection_world_screenshot/screenshot_picture": T.IMAGE, + "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel": T.STACK_PANEL, + "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/gradient_image_realmsplus_expired": T.IMAGE, + "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/solid_image_realmsplus_expired": T.IMAGE, + "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/solid_image_realmsplus_expired/exclamationmark": T.LABEL, + "world_item_grid_base": T.GRID, + "edit_icon": T.IMAGE, + "realms_stories_icon": T.IMAGE, + "realms_stories_icon_animated": T.IMAGE, + "realms_slots_edit_icon": T.IMAGE, + "worlds_icon": T.IMAGE, + "realms_icon": T.IMAGE, + "realms_chevron": T.IMAGE, + "friends_icon_1": T.IMAGE, + "friends_icon_2": T.IMAGE, + "bell_icon": T.IMAGE, + "invite_icon": T.IMAGE, + "delete_icon": T.IMAGE, + "world_download_icon": T.IMAGE, + "third_party_servers_icon": T.IMAGE, + "lan_icon": T.IMAGE, + "friends_server_icon": T.IMAGE, + "cross_platform_friends_server_icon": T.IMAGE, + "realms_remove_icon": T.IMAGE, + "game_online_icon": T.IMAGE, + "game_offline_icon": T.IMAGE, + "game_unavailable_icon": T.IMAGE, + "import_icon": T.IMAGE, + "add_server_icon": T.IMAGE, + "server_tab_icon": T.IMAGE, + "realms_art_icon": T.IMAGE, + "realms_text_background": T.IMAGE, + "connected_storage": T.IMAGE, + "feedback_icon": T.IMAGE, + "local_only_storage": T.IMAGE, + "local_and_cloud_storage": T.IMAGE, + "cloud_only_storage": T.IMAGE, + "left_arrow_icon": T.IMAGE, + "right_arrow_icon": T.IMAGE, + "small_progress_panel": T.IMAGE, + "sign_in_realms_image": T.PANEL, + "sign_in_realms_image/chevron": T.IMAGE, + "sign_in_realms_image/portal": T.IMAGE, + "realms_sign_in_prompt_label": T.LABEL, + "realms_sign_in_prompt": T.PANEL, + "realms_sign_in_prompt/realms_sign_in_prompt_label": T.LABEL, + "realms_sign_in_prompt_friends": T.PANEL, + "realms_sign_in_prompt_friends/realms_sign_in_prompt_label_friends": T.LABEL, + "sign_in_to_view_realms_content_panel": T.STACK_PANEL, + "sign_in_to_view_realms_content_panel/sign_in_realms_image": T.PANEL, + "sign_in_to_view_realms_content_panel/realms_sign_in_prompt": T.UNKNOWN, + "sign_in_to_view_realms_content_panel_friends": T.STACK_PANEL, + "sign_in_to_view_realms_button": T.BUTTON, + "sign_in_to_view_realms_button_friends": T.BUTTON, + "realms_list_text": T.LABEL, + "realms_world_header": T.LABEL, + "realms_world_details": T.LABEL, + "realms_world_type": T.LABEL, + "realms_world_player_count": T.LABEL, + "realms_world_game_status_icon": T.PANEL, + "realms_world_game_status_icon/game_online_icon": T.IMAGE, + "realms_world_game_status_icon/game_unavailable_icon": T.IMAGE, + "realms_world_game_status_icon/game_offline_icon": T.IMAGE, + "realms_world_text_panel": T.PANEL, + "realms_world_text_panel/realms_world_header": T.LABEL, + "realms_world_text_panel/realms_world_details": T.LABEL, + "realms_world_trial_text_panel": T.PANEL, + "realms_world_trial_text_panel/realms_world_header_text": T.LABEL, + "realms_world_trial_text_panel/realms_world_details": T.LABEL, + "realms_world_content_text_area_panel": T.PANEL, + "realms_world_content_text_area_panel/realms_world_text_panel": T.PANEL, + "realms_trial_content_text_area_panel": T.PANEL, + "realms_trial_content_text_area_panel/realms_world_trial_text_panel": T.PANEL, + "realms_world_content_status_area_panel": T.STACK_PANEL, + "realms_world_content_status_area_panel/world_player_count_text_panel": T.PANEL, + "realms_world_content_status_area_panel/world_player_count_text_panel/realms_world_player_count": T.LABEL, + "realms_world_content_status_area_panel/padding": T.PANEL, + "realms_world_content_status_area_panel/realms_world_game_status_icon": T.PANEL, + "realms_world_content_status_area_panel_container": T.STACK_PANEL, + "realms_world_content_status_area_panel_container/realms_world_status_panel": T.PANEL, + "realms_world_content_status_area_panel_container/realms_world_status_panel/realms_world_content_status_area_panel": T.STACK_PANEL, + "realms_world_content_status_area_panel_container/realms_world_type": T.LABEL, + "realms_world_content_panel": T.STACK_PANEL, + "realms_world_content_panel/realm_screenshot": T.IMAGE, + "realms_world_content_panel/padding": T.PANEL, + "realms_world_content_panel/realms_world_content_text_area_panel": T.PANEL, + "realms_world_content_panel/realms_world_content_status_area_panel": T.PANEL, + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_content_status_area_panel_container": T.STACK_PANEL, + "realms_trial_content_panel": T.STACK_PANEL, + "realms_trial_content_panel/realm_screenshot": T.IMAGE, + "realms_trial_content_panel/padding": T.PANEL, + "realms_trial_content_panel/realms_trial_content_text_area_panel": T.PANEL, + "realms_world_item_button": T.BUTTON, + "realms_world_edit_button": T.BUTTON, + "realms_feed_button_content": T.IMAGE, + "realms_feed_button_content/default_icon": T.IMAGE, + "realms_feed_button_content/unread_icon_active": T.IMAGE, + "persistent_realms_feed_button_control": T.PANEL, + "realms_feed_button": T.BUTTON, + "leave_friends_realm_button": T.BUTTON, + "unread_story_count_text": T.LABEL, + "unread_story_count_text_background": T.IMAGE, + "unread_story_count_panel": T.PANEL, + "unread_story_count_panel/text": T.LABEL, + "unread_story_count_panel/text/background": T.IMAGE, + "realms_world_item": T.STACK_PANEL, + "realms_world_item/realms_button_panel": T.PANEL, + "realms_world_item/realms_button_panel/realms_world_item_button": T.BUTTON, + "realms_world_item/realms_button_panel/tts_border": T.BUTTON, + "realms_world_item/edit_panel": T.PANEL, + "realms_world_item/edit_panel/realms_world_edit_button": T.BUTTON, + "realms_world_item/edit_panel/realms_world_expiry_notification_image": T.IMAGE, + "realms_world_item/feed_panel_with_unread_count": T.PANEL, + "realms_world_item/feed_panel_with_unread_count/feed_panel": T.PANEL, + "realms_world_item/feed_panel_with_unread_count/feed_panel/realms_feed_button": T.BUTTON, + "realms_world_item/feed_panel_with_unread_count/unread_story_count": T.PANEL, + "realms_world_item/leave_realm_panel": T.PANEL, + "realms_world_item/leave_realm_panel/leave_friends_realm_button": T.BUTTON, + "realms_world_item_grid": T.GRID, + "network_world_header": T.STACK_PANEL, + "network_world_header/network_world_header_icon": T.IMAGE, + "network_world_header/spacer": T.PANEL, + "network_world_header/header_panel": T.PANEL, + "network_world_header/header_panel/network_world_header_text": T.LABEL, + "network_world_details": T.LABEL, + "network_world_player_count": T.PANEL, + "network_world_player_count/count": T.LABEL, + "network_world_game_status_icon": T.PANEL, + "network_world_game_status_icon/game_online_icon": T.IMAGE, + "network_world_game_status_icon/game_unavailable_icon": T.IMAGE, + "network_world_game_status_icon/game_offline_icon": T.IMAGE, + "network_world_text_panel": T.PANEL, + "network_world_text_panel/network_world_header": T.STACK_PANEL, + "network_world_text_panel/network_world_details": T.LABEL, + "network_world_content_text_area_panel": T.PANEL, + "network_world_content_text_area_panel/network_world_text_panel": T.PANEL, + "network_world_content_status_area_panel": T.STACK_PANEL, + "network_world_content_status_area_panel/network_player_count_text_panel": T.PANEL, + "network_world_content_status_area_panel/network_player_count_text_panel/network_world_player_count": T.PANEL, + "network_world_content_status_area_panel/padding": T.PANEL, + "network_world_content_status_area_panel/network_world_game_status_icon": T.PANEL, + "network_world_content_status_area_panel_container": T.STACK_PANEL, + "network_world_content_status_area_panel_container/network_world_status_panel": T.PANEL, + "network_world_content_status_area_panel_container/network_world_status_panel/network_world_content_status_area_panel": T.STACK_PANEL, + "network_world_content_status_area_panel_container/network_world_type": T.PANEL, + "network_world_type": T.PANEL, + "network_world_type/type": T.LABEL, + "network_world_item_button_content": T.STACK_PANEL, + "network_world_item_button_content/network_world_content_text_area_panel": T.PANEL, + "network_world_item_button_content/network_status_area_panel": T.PANEL, + "network_world_item_button_content/network_status_area_panel/network_world_content_status_area_panel_container": T.STACK_PANEL, + "network_world_item_button_content/network_world_type_icon": T.LABEL, + "network_world_item_button_content/network_world_type_icon/padding": T.PANEL, + "network_world_item_button": T.BUTTON, + "network_server_world_edit_button": T.BUTTON, + "network_world_item": T.PANEL, + "network_world_item/network_world_item_button": T.BUTTON, + "network_world_item/tts_border": T.BUTTON, + "network_world_item_grid": T.GRID, + "network_world_item_ignore_crossplay": T.PANEL, + "network_world_item_ignore_crossplay/network_world_item_button": T.BUTTON, + "label_content_template": T.STACK_PANEL, + "label_content_template/label_panel": T.PANEL, + "label_content_template/label_panel/label_panel_layout": T.PANEL, + "label_content_template/label_panel/label_panel_layout/label": T.LABEL, + "label_content_template/content": T.UNKNOWN, + "information_panel": T.PANEL, + "information_panel/background": T.IMAGE, + "information_panel/background/label_panel_layout": T.PANEL, + "information_panel/background/label_panel_layout/label": T.LABEL, + "information_panel/focus_button": T.BUTTON, + "blocked_multiplayer_privileges_panel": T.PANEL, + "blocked_multiplayer_privileges_panel/background": T.IMAGE, + "blocked_multiplayer_privileges_panel/background/label_panel_layout": T.PANEL, + "blocked_multiplayer_privileges_panel/background/label_panel_layout/label": T.LABEL, + "more_servers_grid": T.GRID, + "additional_server_toggle_content": T.STACK_PANEL, + "additional_server_toggle_content/network_world_content_text_area_panel": T.PANEL, + "more_servers_label_panel": T.PANEL, + "more_servers_label_panel/list_label": T.LABEL, + "more_servers_world_item": T.STACK_PANEL, + "more_servers_world_item/additional_server_toggle_base": T.PANEL, + "more_servers_world_item/network_server_world_edit_button": T.BUTTON, + "additional_server_info_panel": T.PANEL, + "additional_server_info_panel/server_info_stack_panel": T.STACK_PANEL, + "additional_server_info_panel/server_info_stack_panel/padding_1": T.PANEL, + "additional_server_info_panel/server_info_stack_panel/server_name": T.LABEL, + "additional_server_info_panel/server_info_stack_panel/padding_2": T.PANEL, + "additional_server_info_panel/server_info_stack_panel/player_count": T.STACK_PANEL, + "additional_server_info_panel/server_info_stack_panel/padding_3": T.PANEL, + "additional_server_info_panel/server_info_stack_panel/ping": T.STACK_PANEL, + "additional_server_info_panel/server_info_stack_panel/padding_4": T.PANEL, + "additional_server_info_panel/server_info_stack_panel/join_server_button": T.BUTTON, + "ping_rate_icon": T.IMAGE, + "ping_rate_panel": T.PANEL, + "ping_rate_panel/concurrency_stack": T.STACK_PANEL, + "ping_rate_panel/concurrency_stack/player_count": T.LABEL, + "ping_rate_panel/concurrency_stack/padding_0": T.PANEL, + "ping_rate_panel/concurrency_stack/ping_rate_icon": T.IMAGE, + "add_server_info_panel": T.PANEL, + "add_server_info_panel/server_info_stack_panel": T.STACK_PANEL, + "add_server_info_panel/server_info_stack_panel/padding_0": T.PANEL, + "add_server_info_panel/server_info_stack_panel/add_server_title": T.LABEL, + "add_server_info_panel/server_info_stack_panel/padding_1": T.PANEL, + "add_server_info_panel/server_info_stack_panel/add_server_description": T.LABEL, + "third_party_featured_server_grid": T.GRID, + "featured_server_world_item": T.PANEL, + "featured_server_world_item/server_button": T.PANEL, + "server_button_content_panel": T.STACK_PANEL, + "server_button_content_panel/top_panel": T.STACK_PANEL, + "server_button_content_panel/top_panel/third_party_server_screenshot": T.IMAGE, + "server_button_content_panel/top_panel/padding_0": T.PANEL, + "server_button_content_panel/top_panel/title_panel": T.PANEL, + "server_button_content_panel/top_panel/title_panel/third_party_server_name": T.LABEL, + "server_button_content_panel/top_panel/title_panel/progress": T.IMAGE, + "server_button_content_panel/padding": T.PANEL, + "server_button_content_panel/bottom_panel": T.PANEL, + "server_button_content_panel/bottom_panel/third_party_server_message": T.LABEL, + "third_party_server_content_panel": T.STACK_PANEL, + "third_party_server_content_panel/ping_rate_panel": T.PANEL, + "loading_featured_servers_panel": T.PANEL, + "loading_featured_servers_panel/load_bars": T.PANEL, + "loading_featured_servers_panel/load_bars/progress_loading_bars": T.IMAGE, + "third_party_server_screenshot": T.IMAGE, + "third_party_server_screenshot/picture": T.IMAGE, + "third_party_server_info_panel": T.PANEL, + "third_party_server_info_panel/server_info_stack_panel": T.STACK_PANEL, + "third_party_server_info_panel/server_info_stack_panel/padding_0": T.PANEL, + "third_party_server_info_panel/server_info_stack_panel/server_screenshot": T.IMAGE, + "third_party_server_info_panel/server_info_stack_panel/padding_1": T.PANEL, + "third_party_server_info_panel/server_info_stack_panel/server_name": T.LABEL, + "third_party_server_info_panel/server_info_stack_panel/padding_2": T.PANEL, + "third_party_server_info_panel/server_info_stack_panel/player_count": T.STACK_PANEL, + "third_party_server_info_panel/server_info_stack_panel/padding_3": T.PANEL, + "third_party_server_info_panel/server_info_stack_panel/ping": T.STACK_PANEL, + "third_party_server_info_panel/server_info_stack_panel/padding_4": T.PANEL, + "third_party_server_info_panel/server_info_stack_panel/join_server_button": T.BUTTON, + "third_party_server_info_panel/server_info_stack_panel/view_offers_button": T.BUTTON, + "third_party_server_info_panel/server_info_stack_panel/padding_5": T.PANEL, + "third_party_server_info_panel/server_info_stack_panel/screenshots_section": T.STACK_PANEL, + "third_party_server_info_panel/server_info_stack_panel/description_section": T.STACK_PANEL, + "third_party_server_info_panel/server_info_stack_panel/games_section": T.STACK_PANEL, + "third_party_server_info_panel/server_info_stack_panel/news_section": T.STACK_PANEL, + "third_party_server_info_panel/progress": T.IMAGE, + "text_icon_number_panel": T.STACK_PANEL, + "text_icon_number_panel/text": T.LABEL, + "text_icon_number_panel/padding_0": T.PANEL, + "text_icon_number_panel/stack_panel": T.STACK_PANEL, + "text_icon_number_panel/stack_panel/icon_panel": T.PANEL, + "text_icon_number_panel/stack_panel/icon_panel/icon": T.IMAGE, + "text_icon_number_panel/stack_panel/padding_1": T.PANEL, + "text_icon_number_panel/stack_panel/number": T.LABEL, + "grey_bar_panel": T.STACK_PANEL, + "grey_bar_panel/grey_bar": T.IMAGE, + "grey_bar_panel/green_bar": T.IMAGE, + "grey_bar_panel/padding": T.PANEL, + "screenshots_section_panel": T.STACK_PANEL, + "screenshots_section_panel/divider_0": T.PANEL, + "screenshots_section_panel/padding_0": T.PANEL, + "screenshots_section_panel/screenshots_label": T.LABEL, + "screenshots_section_panel/padding_1": T.PANEL, + "screenshots_section_panel/screenshots": T.IMAGE, + "screenshots_section_panel/padding_2": T.PANEL, + "screenshots_section_panel/navigation_panel": T.STACK_PANEL, + "screenshots_section_panel/navigation_panel/left_arrow_button": T.BUTTON, + "screenshots_section_panel/navigation_panel/padding_0": T.PANEL, + "screenshots_section_panel/navigation_panel/navigation_bar": T.PANEL, + "screenshots_section_panel/navigation_panel/navigation_bar/grey_bar": T.IMAGE, + "screenshots_section_panel/navigation_panel/navigation_bar/grey_bar/grey_bar_factory_panel": T.STACK_PANEL, + "screenshots_section_panel/navigation_panel/padding_1": T.PANEL, + "screenshots_section_panel/navigation_panel/right_arrow_button": T.BUTTON, + "screenshots_section_panel/padding_3": T.PANEL, + "description_text_panel": T.PANEL, + "description_text_panel/contents_description": T.LABEL, + "description_section_panel": T.STACK_PANEL, + "description_section_panel/divider_0": T.PANEL, + "description_section_panel/padding_0": T.PANEL, + "description_section_panel/description_label": T.LABEL, + "description_section_panel/padding_1": T.PANEL, + "description_section_panel/read_more_panel": T.IMAGE, + "description_section_panel/read_more_panel/description_text_small": T.PANEL, + "description_section_panel/read_more_panel/description_text_full": T.PANEL, + "description_section_panel/read_more_panel/description_read_more_button_panel": T.PANEL, + "description_section_panel/read_more_panel/description_read_less_button_panel": T.PANEL, + "description_section_panel/padding_3": T.PANEL, + "games_factory_object": T.STACK_PANEL, + "games_factory_object/games_factory_panel": T.IMAGE, + "games_factory_object/games_factory_panel/top_panel": T.STACK_PANEL, + "games_factory_object/games_factory_panel/top_panel/game_image_panel": T.PANEL, + "games_factory_object/games_factory_panel/top_panel/game_image_panel/game_image": T.IMAGE, + "games_factory_object/games_factory_panel/top_panel/padding": T.PANEL, + "games_factory_object/games_factory_panel/top_panel/game_title_panel": T.STACK_PANEL, + "games_factory_object/games_factory_panel/top_panel/game_title_panel/game_title": T.LABEL, + "games_factory_object/games_factory_panel/top_panel/game_title_panel/game_subtitle": T.LABEL, + "games_factory_object/games_factory_panel/bottom_panel": T.PANEL, + "games_factory_object/games_factory_panel/bottom_panel/bottom_panel": T.LABEL, + "games_factory_object/padding": T.PANEL, + "games_section_panel": T.STACK_PANEL, + "games_section_panel/divider_0": T.PANEL, + "games_section_panel/padding_0": T.PANEL, + "games_section_panel/description_label": T.LABEL, + "games_section_panel/padding_1": T.PANEL, + "games_section_panel/games_factory_panel": T.STACK_PANEL, + "games_section_panel/padding_3": T.PANEL, + "news_text_panel": T.PANEL, + "news_text_panel/contents_news": T.LABEL, + "news_section_panel": T.STACK_PANEL, + "news_section_panel/divider_0": T.PANEL, + "news_section_panel/padding_0": T.PANEL, + "news_section_panel/news_label": T.LABEL, + "news_section_panel/padding_1": T.PANEL, + "news_section_panel/read_more_panel": T.IMAGE, + "news_section_panel/read_more_panel/text_stack_panel": T.STACK_PANEL, + "news_section_panel/read_more_panel/text_stack_panel/news_title_text": T.LABEL, + "news_section_panel/read_more_panel/text_stack_panel/divider_panel": T.PANEL, + "news_section_panel/read_more_panel/text_stack_panel/divider_panel/divider_0": T.PANEL, + "news_section_panel/read_more_panel/text_stack_panel/news_text_small": T.PANEL, + "news_section_panel/read_more_panel/text_stack_panel/news_text_full": T.PANEL, + "news_section_panel/read_more_panel/news_read_more_button_panel": T.PANEL, + "news_section_panel/read_more_panel/news_read_less_button_panel": T.PANEL, + "news_section_panel/padding_3": T.PANEL, + "divider": T.IMAGE, + "blue_diskspace_bar": T.IMAGE, + "green_diskspace_bar": T.IMAGE, + "empty_diskspace_bar": T.IMAGE, + "legacy_world_content_status_area_panel": T.PANEL, + "legacy_world_content_status_area_panel/world_storage_content_panel": T.PANEL, + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_separator": T.IMAGE, + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information": T.STACK_PANEL, + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_label": T.LABEL, + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/padding": T.PANEL, + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar": T.PANEL, + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/local_diskspace_bar": T.IMAGE, + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/legacy_diskspace_bar": T.IMAGE, + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/empty_diskspace_bar": T.IMAGE, + "world_list_text": T.LABEL, + "realm_screenshot": T.IMAGE, + "realm_screenshot/picture": T.IMAGE, + "local_world_name": T.LABEL, + "legacy_world_name": T.LABEL, + "world_lock": T.IMAGE, + "local_world_game_mode": T.LABEL, + "legacy_world_game_mode": T.LABEL, + "local_world_date": T.LABEL, + "legacy_world_date": T.LABEL, + "local_world_filesize": T.LABEL, + "legacy_world_filesize": T.LABEL, + "local_world_connected_storage": T.PANEL, + "local_world_connected_storage/local_and_cloud": T.IMAGE, + "local_world_connected_storage/local_only": T.IMAGE, + "local_world_connected_storage/cloud_only": T.IMAGE, + "local_world_lock_panel": T.PANEL, + "local_world_lock_panel/lock": T.IMAGE, + "realms_plus_banner": T.PANEL, + "realms_plus_banner/realms_banner": T.STACK_PANEL, + "local_world_text_panel": T.PANEL, + "local_world_text_panel/text_indent": T.PANEL, + "local_world_text_panel/text_indent/top_side": T.STACK_PANEL, + "local_world_text_panel/text_indent/top_side/local_world_name": T.LABEL, + "local_world_text_panel/text_indent/top_side/lock_1": T.PANEL, + "local_world_text_panel/text_indent/top_side/local_world_date": T.LABEL, + "local_world_text_panel/text_indent/bottom_side": T.STACK_PANEL, + "local_world_text_panel/text_indent/bottom_side/realms_plus_icon": T.PANEL, + "local_world_text_panel/text_indent/bottom_side/pad": T.PANEL, + "local_world_text_panel/text_indent/bottom_side/local_world_game_mode": T.LABEL, + "local_world_text_panel/text_indent/bottom_side/local_world_connected_storage": T.PANEL, + "local_world_text_panel/text_indent/bottom_side/local_world_filesize": T.LABEL, + "legacy_world_text_panel": T.PANEL, + "legacy_world_text_panel/text_indent": T.PANEL, + "legacy_world_text_panel/text_indent/top_side": T.STACK_PANEL, + "legacy_world_text_panel/text_indent/top_side/legacy_world_name": T.LABEL, + "legacy_world_text_panel/text_indent/top_side/legacy_world_date": T.LABEL, + "legacy_world_text_panel/text_indent/bottom_side": T.STACK_PANEL, + "legacy_world_text_panel/text_indent/bottom_side/legacy_world_game_mode": T.LABEL, + "legacy_world_text_panel/text_indent/bottom_side/legacy_world_filesize": T.LABEL, + "beta_retail_world_text_panel": T.PANEL, + "beta_retail_world_text_panel/text_indent": T.PANEL, + "beta_retail_world_text_panel/text_indent/top_side": T.STACK_PANEL, + "beta_retail_world_text_panel/text_indent/top_side/beta_retail_world_name": T.LABEL, + "beta_retail_world_text_panel/text_indent/top_side/beta_retail_world_date": T.LABEL, + "beta_retail_world_text_panel/text_indent/bottom_side": T.STACK_PANEL, + "beta_retail_world_text_panel/text_indent/bottom_side/beta_retail_world_game_mode": T.LABEL, + "beta_retail_world_text_panel/text_indent/bottom_side/beta_retail_world_filesize": T.LABEL, + "world_content_panel": T.STACK_PANEL, + "world_content_panel/world_screenshot": T.IMAGE, + "world_content_panel/world_text_panel": T.UNKNOWN, + "ownership_verification_in_progress_content": T.STACK_PANEL, + "ownership_verification_in_progress_content/top_padding": T.PANEL, + "ownership_verification_in_progress_content/loading_bar_panel": T.PANEL, + "ownership_verification_in_progress_content/loading_bar_panel/loading_bar_animation": T.IMAGE, + "ownership_verification_in_progress_content/mid_padding": T.PANEL, + "ownership_verification_in_progress_content/loading_label": T.LABEL, + "ownership_verification_in_progress_content/bottom_padding": T.PANEL, + "ownership_verification_in_progress_panel": T.IMAGE, + "ownership_verification_in_progress_panel/ownership_verification_in_progress_content": T.STACK_PANEL, + "local_world_item_button": T.BUTTON, + "legacy_world_item_button": T.BUTTON, + "beta_retail_world_item_button": T.BUTTON, + "local_world_edit_button": T.BUTTON, + "legacy_world_delete_button": T.BUTTON, + "legacy_world_migrate_button": T.BUTTON, + "local_world_item": T.PANEL, + "local_world_item/header_button_panel": T.PANEL, + "local_world_item/signin_in_progress_panel": T.IMAGE, + "legacy_world_item": T.STACK_PANEL, + "legacy_world_item/header_button_panel_with_delete": T.PANEL, + "legacy_world_item/header_button_panel_with_migrate": T.PANEL, + "legacy_world_item/header_button_panel_no_delete": T.PANEL, + "beta_retail_world_item": T.PANEL, + "local_world_item_grid": T.GRID, + "legacy_world_item_grid": T.GRID, + "beta_retail_local_world_item_grid": T.GRID, + "beta_retail_legacy_world_item_grid": T.GRID, + "common_button_template": T.BUTTON, + "common_button_text": T.LABEL, + "add_friend_and_invite_panel": T.STACK_PANEL, + "add_friend_and_invite_panel/add_friend_button": T.BUTTON, + "add_friend_and_invite_panel/padding_1": T.PANEL, + "add_friend_and_invite_panel/join_by_code_button": T.BUTTON, + "add_friend_and_invite_panel/padding_2": T.PANEL, + "add_friend_and_invite_panel/notification_button_panel": T.PANEL, + "add_friend_and_invite_panel/notification_button_panel/notification_button": T.BUTTON, + "add_friend_button": T.BUTTON, + "join_by_code_button": T.BUTTON, + "add_server_toggle_button": T.PANEL, + "server_toggle_base": T.PANEL, + "quick_play_button": T.BUTTON, + "create_new_world_button": T.BUTTON, + "create_on_realms_button_panel": T.PANEL, + "create_on_realms_button_panel/create_on_realms_button": T.BUTTON, + "import_world_button": T.BUTTON, + "sync_legacy_worlds_button": T.BUTTON, + "notification_button_text_layout": T.PANEL, + "notification_button_text_layout/image1": T.IMAGE, + "notification_button_text_layout/image2": T.IMAGE, + "notification_button_text_layout/count": T.PANEL, + "notification_button_label_panel": T.PANEL, + "notification_button_label_panel/notification_button_label": T.LABEL, + "notification_content": T.PANEL, + "notification_button": T.BUTTON, + "header_button_panel": T.PANEL, + "header_button_panel/buttons": T.STACK_PANEL, + "header_button_panel/buttons/primary_panel": T.PANEL, + "header_button_panel/buttons/primary_panel/primary": T.UNKNOWN, + "header_button_panel/buttons/secondary": T.UNKNOWN, + "header_button_panel_opt_in": T.PANEL, + "header_button_panel_opt_in/buttons": T.STACK_PANEL, + "header_button_panel_opt_in/buttons/primary_panel": T.PANEL, + "header_button_panel_opt_in/buttons/primary_panel/primary": T.UNKNOWN, + "header_button_panel_opt_in/buttons/secondary": T.UNKNOWN, + "header_button_panel_opt_in/buttons/ternary": T.UNKNOWN, + "header_single_button_panel": T.PANEL, + "header_single_button_panel/buttons": T.STACK_PANEL, + "header_single_button_panel/buttons/primary": T.UNKNOWN, + "open_account_setting_button_gamecore": T.BUTTON, + "common_scroll_pane": T.PANEL, + "worlds_scroll_panel": T.PANEL, + "worlds_scroll_panel/worlds_list_stack_panel": T.STACK_PANEL, + "game_tip_item_panel": T.STACK_PANEL, + "game_tip_item_panel/info_bulb": T.IMAGE, + "game_tip_item_panel/padding_1": T.PANEL, + "game_tip_item_panel/label_panel": T.STACK_PANEL, + "game_tip_item_panel/label_panel/padding_vertical": T.PANEL, + "game_tip_item_panel/label_panel/realms_warning_text": T.LABEL, + "game_tip_item_panel/label_panel/padding_vertical_1": T.PANEL, + "game_tip_item_panel/more_info_button": T.BUTTON, + "realm_warning_tip": T.IMAGE, + "realm_warning_tip/padding_vertical": T.PANEL, + "realm_warning_tip/info_panel": T.STACK_PANEL, + "new_ui_switch_button_options_panel": T.STACK_PANEL, + "new_ui_switch_button_options_panel/unlock_template_options_button": T.BUTTON, + "new_ui_servers_switch_button_options_panel": T.STACK_PANEL, + "new_ui_servers_switch_button_options_panel/unlock_template_options_button": T.BUTTON, + "new_ui_servers_switch_button_options_panel/padding_0": T.PANEL, + "worlds_stack_panel": T.STACK_PANEL, + "worlds_stack_panel/padding_0": T.PANEL, + "worlds_stack_panel/play_screen_warning": T.IMAGE, + "worlds_stack_panel/header_button": T.STACK_PANEL, + "worlds_stack_panel/header_button/quick_play": T.BUTTON, + "worlds_stack_panel/header_button/buttons": T.PANEL, + "worlds_stack_panel/worlds_crossplatform_disabled_panel": T.PANEL, + "worlds_stack_panel/worlds_crossplatform_disable_spacer": T.PANEL, + "worlds_stack_panel/realms_panel": T.STACK_PANEL, + "worlds_stack_panel/realms_panel/realms_label": T.PANEL, + "worlds_stack_panel/realms_panel/sign_in_to_view_realms_button": T.BUTTON, + "worlds_stack_panel/realms_panel/realms_previews_panel": T.PANEL, + "worlds_stack_panel/realms_panel/realms_previews_panel/new_offers_icon": T.IMAGE, + "worlds_stack_panel/realms_panel/realms_previews_panel/realms_world_item_button": T.BUTTON, + "worlds_stack_panel/realms_panel/create_on_realms_button_panel": T.PANEL, + "worlds_stack_panel/realms_panel/personal_realms": T.GRID, + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel": T.IMAGE, + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/placeholder_loading_personal_realms": T.GRID, + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/loading_friends_realms_label": T.LABEL, + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/padding": T.PANEL, + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/progress_loading_bars": T.IMAGE, + "worlds_stack_panel/realms_panel/realms_trial_panel": T.PANEL, + "worlds_stack_panel/realms_panel/realms_trial_panel/realms_world_item_button": T.BUTTON, + "worlds_stack_panel/realms_panel/realms_nintendo_first_realm_purchase_panel": T.PANEL, + "worlds_stack_panel/realms_panel/realms_nintendo_first_realm_purchase_panel/realms_world_item_button": T.BUTTON, + "worlds_stack_panel/realms_panel/padding_1": T.PANEL, + "worlds_stack_panel/realms_multiplayer_blocked_panel": T.STACK_PANEL, + "worlds_stack_panel/realms_multiplayer_blocked_panel/text_panel": T.STACK_PANEL, + "worlds_stack_panel/realms_multiplayer_blocked_panel/open_uri_button": T.BUTTON, + "worlds_stack_panel/realms_multiplayer_blocked_panel/open_account_setting_button_gamecore": T.BUTTON, + "worlds_stack_panel/worlds_label": T.STACK_PANEL, + "worlds_stack_panel/grid": T.GRID, + "worlds_stack_panel/no_local_worlds_label": T.STACK_PANEL, + "worlds_stack_panel/no_local_worlds_switch_setting": T.PANEL, + "worlds_stack_panel/beta_retail_local_padding": T.PANEL, + "worlds_stack_panel/beta_retail_local_worlds_label": T.PANEL, + "worlds_stack_panel/beta_retail_local_grid": T.GRID, + "worlds_stack_panel/loading_legacy_worlds_panel_padding": T.PANEL, + "worlds_stack_panel/legacy_worlds_button": T.STACK_PANEL, + "worlds_stack_panel/legacy_worlds_button/legacy_worlds_label": T.PANEL, + "worlds_stack_panel/legacy_worlds_button/sync_legacy_worlds_button_panel": T.PANEL, + "worlds_stack_panel/legacy_worlds_button/sync_legacy_worlds_button_panel/button": T.BUTTON, + "worlds_stack_panel/loading_legacy_worlds_panel": T.IMAGE, + "worlds_stack_panel/loading_legacy_worlds_panel/loading_legacy_worlds_label": T.LABEL, + "worlds_stack_panel/loading_legacy_worlds_panel/padding": T.PANEL, + "worlds_stack_panel/loading_legacy_worlds_panel/progress_loading_bars": T.IMAGE, + "worlds_stack_panel/padding_2": T.PANEL, + "worlds_stack_panel/upgrade_legacy_worlds_label": T.STACK_PANEL, + "worlds_stack_panel/legacy_world_item_grid": T.GRID, + "worlds_stack_panel/beta_retail_legacy_padding": T.PANEL, + "worlds_stack_panel/beta_retail_legacy_worlds_label": T.PANEL, + "worlds_stack_panel/beta_retail_legacy_grid": T.GRID, + "worlds_stack_panel/pad_hack_panel": T.PANEL, + "no_local_worlds_switch_setting": T.PANEL, + "no_local_worlds_switch_setting/bg": T.IMAGE, + "no_local_worlds_switch_setting/bg/no_local_worlds_switch_setting": T.STACK_PANEL, + "no_local_worlds_switch_setting/bg/no_local_worlds_get_help": T.STACK_PANEL, + "no_local_worlds_launch_help": T.BUTTON, + "storage_location_dropdown_panel": T.STACK_PANEL, + "storage_location_dropdown_panel/padding1": T.PANEL, + "storage_location_dropdown_panel/storage_location_dropdown": T.PANEL, + "storage_location_dropdown": T.PANEL, + "switch_storage_type_content": T.PANEL, + "light_centered_loading_label": T.LABEL, + "light_loading_label": T.LABEL, + "loading_label": T.LABEL, + "progress_loading_bars": T.IMAGE, + "world_list_label_panel": T.PANEL, + "world_list_label_panel/list_label": T.LABEL, + "world_list_label_with_color_panel": T.STACK_PANEL, + "world_list_label_with_color_panel/colored_square_sizer": T.PANEL, + "world_list_label_with_color_panel/colored_square_sizer/colored_square": T.IMAGE, + "world_list_label_with_color_panel/padding": T.PANEL, + "world_list_label_with_color_panel/list_label": T.LABEL, + "empty_panel": T.PANEL, + "empty_grid": T.PANEL, + "lan_servers_scroll_content": T.STACK_PANEL, + "friends_scroll_panel": T.PANEL, + "friends_scroll_panel/stack_panel": T.STACK_PANEL, + "friends_scroll_panel/stack_panel/padding_0": T.PANEL, + "friends_scroll_panel/stack_panel/friends_screen_warning": T.IMAGE, + "friends_scroll_panel/stack_panel/header_button": T.STACK_PANEL, + "friends_scroll_panel/stack_panel/header_button/add_friend_and_invite_panel": T.STACK_PANEL, + "friends_scroll_panel/stack_panel/friends_crossplatform_disabled_panel": T.PANEL, + "friends_scroll_panel/stack_panel/friends_crossplatform_disable_spacer": T.PANEL, + "friends_scroll_panel/stack_panel/joinable_realms_panel": T.STACK_PANEL, + "friends_scroll_panel/stack_panel/joinable_realms_panel/friends_realms_label": T.PANEL, + "friends_scroll_panel/stack_panel/joinable_realms_panel/sign_in_to_view_realms_button_friends": T.BUTTON, + "friends_scroll_panel/stack_panel/joinable_realms_panel/friends_realms": T.GRID, + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel": T.IMAGE, + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/placeholder_loading_friends_realms": T.GRID, + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/loading_friends_realms_label": T.LABEL, + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/padding": T.PANEL, + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/progress_loading_bars": T.IMAGE, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel": T.IMAGE, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack": T.STACK_PANEL, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/message_panel": T.PANEL, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/message_panel/message_label": T.LABEL, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/image_panel": T.PANEL, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/image_panel/link_image": T.IMAGE, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border": T.BUTTON, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border/hover": T.IMAGE, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border/pressed": T.IMAGE, + "friends_scroll_panel/stack_panel/joinable_realms_panel/no_realms_grid": T.STACK_PANEL, + "friends_scroll_panel/stack_panel/joinable_realms_panel/padding_1": T.PANEL, + "friends_scroll_panel/stack_panel/friends_grid": T.STACK_PANEL, + "friends_scroll_panel/stack_panel/pad_hack_panel": T.PANEL, + "friends_scroll_panel/stack_panel/no_friends_grid_message": T.STACK_PANEL, + "friends_scroll_panel/stack_panel/switch_find_cross_platform_friend_button": T.BUTTON, + "friends_scroll_panel/stack_panel/add_friend_button_padding": T.PANEL, + "friends_scroll_panel/stack_panel/cross_platform_friends_grid": T.STACK_PANEL, + "friends_scroll_panel/stack_panel/no_cross_platform_friends_grid_message": T.STACK_PANEL, + "friends_scroll_panel/stack_panel/general_no_multiplayer_grid_message": T.STACK_PANEL, + "friends_scroll_panel/stack_panel/lan_grid": T.STACK_PANEL, + "friends_scroll_panel/stack_panel/open_account_setting_button_gamecore": T.BUTTON, + "manually_added_servers_scrolling_content": T.STACK_PANEL, + "manually_added_servers_scrolling_content/padding_0": T.PANEL, + "manually_added_servers_scrolling_content/more_servers_label": T.LABEL, + "manually_added_servers_scrolling_content/padding_1": T.PANEL, + "manually_added_servers_scrolling_content/more_servers_grid": T.GRID, + "manually_added_servers_scrolling_content/padding_3": T.PANEL, + "servers_content_panel": T.STACK_PANEL, + "servers_content_panel/new_ui_servers_switch_button_options_panel": T.STACK_PANEL, + "servers_content_panel/featured_servers_panel": T.STACK_PANEL, + "servers_content_panel/featured_servers_panel/loading_featured_panel": T.IMAGE, + "servers_content_panel/featured_servers_panel/loading_featured_panel/loading_friends_realms_label": T.LABEL, + "servers_content_panel/featured_servers_panel/loading_featured_panel/loading_featured_servers_panel": T.PANEL, + "servers_content_panel/featured_servers_panel/padding_1": T.PANEL, + "servers_content_panel/featured_servers_panel/featured_servers_label": T.LABEL, + "servers_content_panel/featured_servers_panel/padding_2": T.PANEL, + "servers_content_panel/featured_servers_panel/third_party_featured_grid": T.GRID, + "servers_content_panel/featured_servers_panel/padding_3": T.PANEL, + "servers_content_panel/more_servers_divider": T.PANEL, + "servers_content_panel/more_servers_panel": T.STACK_PANEL, + "server_scroll_panel": T.PANEL, + "server_scroll_panel/stack_panel": T.STACK_PANEL, + "server_scroll_panel/stack_panel/padding_0": T.PANEL, + "server_scroll_panel/stack_panel/servers_crossplatform_disabled_panel": T.PANEL, + "server_scroll_panel/stack_panel/no_featured_server_connection": T.PANEL, + "server_scroll_panel/stack_panel/more_servers_blocked_panel": T.STACK_PANEL, + "server_scroll_panel/stack_panel/more_servers_blocked_panel/server_multiplayer_privileges_blocked": T.PANEL, + "server_scroll_panel/stack_panel/more_servers_blocked_panel/open_uri_button": T.BUTTON, + "server_scroll_panel/stack_panel/padding_1": T.PANEL, + "server_scroll_panel/stack_panel/server_content": T.UNKNOWN, + "server_scroll_panel/stack_panel/add_server_button": T.PANEL, + "crossplatform_disabled_panel": T.PANEL, + "crossplatform_disable_spacer": T.PANEL, + "common_scrolling_panel": T.PANEL, + "common_content": T.INPUT_PANEL, + "scrolling_offsets": T.PANEL, + "worlds_scroll_content": T.INPUT_PANEL, + "worlds_scroll_content/worlds_stack_panel": T.STACK_PANEL, + "worlds_scroll_content/worlds_stack_panel/scrolling_panel_sizer": T.PANEL, + "worlds_scroll_content/worlds_stack_panel/scrolling_panel_sizer/scrolling_panel": T.PANEL, + "worlds_scroll_content/worlds_stack_panel/scrolling_panel_legacy_storage_sizer": T.PANEL, + "worlds_scroll_content/worlds_stack_panel/scrolling_panel_legacy_storage_sizer/scrolling_panel": T.PANEL, + "friends_scroll_content": T.INPUT_PANEL, + "friends_scroll_content/scrolling_panel": T.PANEL, + "show_servers_panel": T.STACK_PANEL, + "show_servers_panel/left_panel": T.PANEL, + "show_servers_panel/left_panel/scrolling_panel": T.PANEL, + "show_servers_panel/divider_panel": T.PANEL, + "show_servers_panel/divider_panel/main_divider": T.IMAGE, + "show_servers_panel/right_panel": T.PANEL, + "server_scroll_content": T.INPUT_PANEL, + "server_scroll_content/severs_panel": T.STACK_PANEL, + "server_scroll_content/severs_panel/offset_panel": T.PANEL, + "server_scroll_content/severs_panel/offset_panel/servers_sunsetting_warning": T.IMAGE, + "server_scroll_content/severs_panel/show_servers_panel": T.STACK_PANEL, + "server_scroll_content/feature_server_message_panel": T.STACK_PANEL, + "server_scroll_content/feature_server_message_panel/featured_servers_label": T.LABEL, + "server_scroll_content/feature_server_message_panel/pad": T.PANEL, + "server_scroll_content/feature_server_message_panel/feature_server_message_panel": T.IMAGE, + "server_scroll_content/feature_server_message_panel/feature_server_message_panel/label_panel_layout": T.PANEL, + "server_scroll_content/feature_server_message_panel/feature_server_message_panel/label_panel_layout/label": T.LABEL, + "server_scroll_content/feature_server_message_panel/open_account_setting_button_gamecore": T.BUTTON, + "server_content_area": T.PANEL, + "server_content_area/third_party_scrolling_panel": T.PANEL, + "server_content_area/additional_server_scrolling_panel": T.PANEL, + "server_content_area/add_server_pane": T.PANEL, + "tab_front": T.IMAGE, + "tab_front_middle": T.IMAGE, + "tab_back": T.IMAGE, + "X_tab_back": T.IMAGE, + "tab_text_stack_panel": T.STACK_PANEL, + "tab_text_stack_panel/padding": T.PANEL, + "tab_text_stack_panel/text_section": T.PANEL, + "tab_text_stack_panel/text_section/text": T.LABEL, + "tab_text_stack_panel/count_section": T.PANEL, + "tab_text_stack_panel/count_section/count_background_image": T.IMAGE, + "tab_text_stack_panel/count_section/count_background_image/count": T.LABEL, + "common_navigation_tab_content": T.STACK_PANEL, + "common_navigation_tab_content/padding_0": T.PANEL, + "common_navigation_tab_content/icon_section": T.PANEL, + "common_navigation_tab_content/icon_section/icon": T.UNKNOWN, + "common_navigation_tab_content/padding_1": T.PANEL, + "common_navigation_tab_content/count_text": T.STACK_PANEL, + "friends_navigation_tab_content": T.STACK_PANEL, + "friends_navigation_tab_content/padding": T.PANEL, + "friends_navigation_tab_content/icon_section": T.PANEL, + "friends_navigation_tab_content/icon_section/icon": T.UNKNOWN, + "friends_navigation_tab_content/icon_section_2": T.PANEL, + "friends_navigation_tab_content/icon_section_2/icon": T.UNKNOWN, + "friends_navigation_tab_content/icon_section_nobounce": T.PANEL, + "friends_navigation_tab_content/icon_section_nobounce/icon": T.UNKNOWN, + "friends_navigation_tab_content/icon_section_nobounce_2": T.PANEL, + "friends_navigation_tab_content/icon_section_nobounce_2/icon": T.UNKNOWN, + "friends_navigation_tab_content/icon_section_notification": T.PANEL, + "friends_navigation_tab_content/icon_section_notification/icon1": T.IMAGE, + "friends_navigation_tab_content/icon_section_notification/icon2": T.IMAGE, + "friends_navigation_tab_content/count_text": T.STACK_PANEL, + "top_tab": T.PANEL, + "world_navigation_tab": T.PANEL, + "friends_navigation_tab": T.PANEL, + "server_navigation_tab": T.PANEL, + "close_navigation_tab": T.PANEL, + "close_navigation_tab/background": T.IMAGE, + "close_navigation_tab/x_image": T.BUTTON, + "common_tab_content_panel": T.PANEL, + "common_tab_content_panel/background": T.PANEL, + "common_tab_content_panel/content": T.UNKNOWN, + "worlds_tab_content_panel": T.PANEL, + "friends_tab_content_panel": T.PANEL, + "server_tab_content_panel": T.PANEL, + "common_tab_content_panel_type": T.INPUT_PANEL, + "edu_tab_content_panel_layout": T.INPUT_PANEL, + "edu_tab_content_panel_layout/worlds_tab_content": T.PANEL, + "edu_tab_content_panel_layout/friends_tab_content": T.PANEL, + "edu_tab_content_panel_layout/server_tab_content_panel": T.PANEL, + "trial_tab_content_panel_layout": T.INPUT_PANEL, + "trial_tab_content_panel_layout/worlds_tab_content": T.PANEL, + "default_tab_content_panel_layout": T.INPUT_PANEL, + "default_tab_content_panel_layout/worlds_tab_content": T.PANEL, + "default_tab_content_panel_layout/friends_tab_content": T.PANEL, + "default_tab_content_panel_layout/server_tab_content_panel": T.PANEL, + "tab_navigation_panel_layout": T.STACK_PANEL, + "tab_navigation_panel_layout/navigation_tabs": T.PANEL, + "tab_navigation_panel_layout/navigation_tabs/content": T.UNKNOWN, + "tab_navigation_panel_layout/close_navigation_tab": T.PANEL, + "tab_navigation_panel_layout/close_navigation_tab/close_button": T.UNKNOWN, + "common_tab_navigation_panel_layout": T.STACK_PANEL, + "edu_tab_navigation_panel_layout": T.STACK_PANEL, + "edu_tab_navigation_panel_layout/world_navigation_tab": T.PANEL, + "edu_tab_navigation_panel_layout/friends_navigation_tab": T.PANEL, + "edu_tab_navigation_panel_layout/server_navigation_tab": T.PANEL, + "trial_tab_navigation_panel_layout": T.STACK_PANEL, + "trial_tab_navigation_panel_layout/world_navigation_tab": T.PANEL, + "default_tab_navigation_panel_layout": T.STACK_PANEL, + "default_tab_navigation_panel_layout/world_navigation_tab": T.PANEL, + "default_tab_navigation_panel_layout/friends_navigation_tab": T.PANEL, + "default_tab_navigation_panel_layout/server_navigation_tab": T.PANEL, + "common_play_screen_panel": T.PANEL, + "play_screen_panel": T.PANEL, + "play_screen_panel/tab_navigation_panel": T.STACK_PANEL, + "play_screen_panel/tab_content_panel": T.UNKNOWN, + "play_screen_panel/gamepad_helper_left_bumper": T.STACK_PANEL, + "play_screen_panel/gamepad_helper_right_bumper": T.STACK_PANEL, + "play_screen_panel/keyboard_helper_left_bracket": T.STACK_PANEL, + "play_screen_panel/keyboard_helper_right_bracket": T.STACK_PANEL, + "default_play_screen_panel": T.PANEL, + "trial_play_screen_panel": T.PANEL, + "edu_play_screen_panel": T.PANEL, + "play_screen": T.SCREEN, + "play_screen_content": T.PANEL, + "play_screen_content/main_control": T.UNKNOWN, + "play_screen_content/editor_text_panel": T.PANEL, + "play_screen_content/popup_dialog_factory": T.FACTORY, + "popup_dialog_join_by_code": T.INPUT_PANEL, + "popup_dialog_join_by_code/join_by_code_popup_background": T.IMAGE, + "popup_dialog_join_by_code/join_by_code_popup_content": T.PANEL, + "popup_dialog_join_by_code/gamepad_helpers": T.STACK_PANEL, + "join_by_code_popup_background": T.IMAGE, + "join_by_code_popup_content": T.PANEL, + "join_by_code_popup_content/popup_dialog_bg": T.IMAGE, + "join_by_code_popup_content/popup_stack_panel": T.STACK_PANEL, + "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_header": T.PANEL, + "join_by_code_popup_content/popup_stack_panel/spacing_1": T.PANEL, + "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_upper_body": T.STACK_PANEL, + "join_by_code_popup_content/popup_stack_panel/spacing_2": T.PANEL, + "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_lower_body": T.PANEL, + "join_by_code_popup_dialog_header": T.PANEL, + "join_by_code_popup_dialog_header/join_by_code_popup_header_text": T.LABEL, + "join_by_code_popup_dialog_header/close_button": T.BUTTON, + "join_by_code_popup_header_text": T.LABEL, + "join_by_code_popup_dialog_upper_body": T.STACK_PANEL, + "join_by_code_popup_dialog_upper_body/margin1": T.PANEL, + "join_by_code_popup_dialog_upper_body/join_by_code_popup_code_text_field": T.EDIT_BOX, + "join_by_code_popup_dialog_upper_body/spacing": T.PANEL, + "join_by_code_popup_dialog_upper_body/join_by_code_popup_join_button": T.BUTTON, + "join_by_code_popup_dialog_upper_body/margin2": T.PANEL, + "join_by_code_popup_code_text_field": T.EDIT_BOX, + "join_by_code_popup_join_button": T.BUTTON, + "join_by_code_popup_help_text": T.LABEL, + "lower_body_default_content": T.PANEL, + "lower_body_default_content/info_text": T.LABEL, + "join_by_code_popup_dialog_lower_body": T.PANEL, + "join_by_code_popup_dialog_lower_body/default": T.PANEL, + "open_account_setting_button": T.BUTTON, + "popup_dialog_high_ping": T.INPUT_PANEL, + "popup_dialog_high_ping/high_ping_popup_background": T.IMAGE, + "popup_dialog_high_ping/high_ping_popup_content": T.PANEL, + "popup_dialog_high_ping/gamepad_helpers": T.STACK_PANEL, + "popup_two_buttons": T.PANEL, + "popup_two_buttons/common_panel": T.PANEL, + "popup_two_buttons/title_label": T.PANEL, + "popup_two_buttons/panel_indent": T.PANEL, + "popup_two_buttons/panel_indent/inside_header_panel": T.UNKNOWN, + "popup_two_buttons/button_panel": T.STACK_PANEL, + "popup_two_buttons/button_panel/left_button_panel": T.BUTTON, + "popup_two_buttons/button_panel/pad": T.PANEL, + "popup_two_buttons/button_panel/right_button_panel": T.BUTTON, + "high_ping_popup_content_stack_panel": T.STACK_PANEL, + "high_ping_popup_content_stack_panel/pad_0": T.PANEL, + "high_ping_popup_content_stack_panel/ping_images_panel": T.PANEL, + "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel": T.STACK_PANEL, + "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/medium_connection": T.IMAGE, + "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/pad": T.PANEL, + "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/low_connection": T.IMAGE, + "high_ping_popup_content_stack_panel/pad_1": T.PANEL, + "high_ping_popup_content_stack_panel/text_line_1": T.LABEL, + "high_ping_popup_content_stack_panel/pad_2": T.PANEL, + "high_ping_popup_content_stack_panel/text_line_2": T.LABEL, + "high_ping_popup_content_stack_panel/pad_3": T.PANEL, + "high_ping_popup_join_button": T.BUTTON, + "high_ping_popup_cancel_button": T.BUTTON, + "copyright": T.LABEL, + "development_version": T.LABEL, + "version": T.LABEL, + "editor_text_panel": T.PANEL, + "editor_text_panel/copyright": T.LABEL, + "editor_text_panel/development_version": T.LABEL, + "editor_text_panel/version": T.LABEL, + "editor_settings_image_content": T.IMAGE, + "editor_settings_menu_button": T.BUTTON, + "editor_server_content_panel": T.STACK_PANEL, + "editor_server_content_panel/more_servers_panel": T.STACK_PANEL, + "editor_tab_content_panel_layout": T.INPUT_PANEL, + "editor_tab_content_panel_layout/worlds_tab_content": T.PANEL, + "editor_tab_content_panel_layout/friends_tab_content": T.PANEL, + "editor_tab_content_panel_layout/server_tab_content_panel": T.PANEL, + "editor_play_screen_panel": T.PANEL, } export type PerfTurtleType = { - perf_turtle_panel: T.PANEL - "perf_turtle_panel/perf_turtle_background": T.IMAGE - "perf_turtle_panel/stack_panel": T.STACK_PANEL - "perf_turtle_panel/stack_panel/turtle": T.IMAGE - "perf_turtle_panel/stack_panel/turtle_text": T.LABEL + "perf_turtle_panel": T.PANEL, + "perf_turtle_panel/perf_turtle_background": T.IMAGE, + "perf_turtle_panel/stack_panel": T.STACK_PANEL, + "perf_turtle_panel/stack_panel/turtle": T.IMAGE, + "perf_turtle_panel/stack_panel/turtle_text": T.LABEL, } export type PocketContainersType = { - generic_label: T.LABEL - header_panel: T.PANEL - "header_panel/header_background": T.IMAGE - "header_panel/title_label": T.LABEL - header_area: T.PANEL - "header_area/x": T.BUTTON - "header_area/inventory_header": T.PANEL - "header_area/container_header": T.PANEL - dark_bg: T.IMAGE - panel_outline: T.IMAGE - background_panel: T.IMAGE - inventory_grid: T.GRID - inventory_panel: T.PANEL - "inventory_panel/scrolling_panel": T.PANEL - half_screen: T.PANEL - "half_screen/inventory_panel": T.PANEL - panel: T.PANEL - "panel/container_gamepad_helpers": T.STACK_PANEL - "panel/header": T.PANEL - "panel/bg": T.IMAGE - "panel/inventory": T.PANEL - "panel/container": T.PANEL - "panel/selected_item_details_factory": T.FACTORY - "panel/item_lock_notification_factory": T.FACTORY - "panel/gamepad_cursor": T.BUTTON - "panel/inventory_selected_icon_button": T.BUTTON - "panel/hold_icon": T.BUTTON - "panel/flying_item_renderer": T.CUSTOM - small_chest_panel: T.PANEL - large_chest_panel: T.PANEL - hopper_panel: T.PANEL - dispenser_panel: T.PANEL - dropper_panel: T.PANEL - ender_chest_panel: T.PANEL - shulker_box_panel: T.PANEL - barrel_panel: T.PANEL + "generic_label": T.LABEL, + "header_panel": T.PANEL, + "header_panel/header_background": T.IMAGE, + "header_panel/title_label": T.LABEL, + "header_area": T.PANEL, + "header_area/x": T.BUTTON, + "header_area/inventory_header": T.PANEL, + "header_area/container_header": T.PANEL, + "dark_bg": T.IMAGE, + "panel_outline": T.IMAGE, + "background_panel": T.IMAGE, + "inventory_grid": T.GRID, + "inventory_panel": T.PANEL, + "inventory_panel/scrolling_panel": T.PANEL, + "half_screen": T.PANEL, + "half_screen/inventory_panel": T.PANEL, + "panel": T.PANEL, + "panel/container_gamepad_helpers": T.STACK_PANEL, + "panel/header": T.PANEL, + "panel/bg": T.IMAGE, + "panel/inventory": T.PANEL, + "panel/container": T.PANEL, + "panel/selected_item_details_factory": T.FACTORY, + "panel/item_lock_notification_factory": T.FACTORY, + "panel/gamepad_cursor": T.BUTTON, + "panel/inventory_selected_icon_button": T.BUTTON, + "panel/hold_icon": T.BUTTON, + "panel/flying_item_renderer": T.CUSTOM, + "small_chest_panel": T.PANEL, + "large_chest_panel": T.PANEL, + "hopper_panel": T.PANEL, + "dispenser_panel": T.PANEL, + "dropper_panel": T.PANEL, + "ender_chest_panel": T.PANEL, + "shulker_box_panel": T.PANEL, + "barrel_panel": T.PANEL, } export type PopupDialogType = { - popup_dialog_bg: T.IMAGE - popup_dialog_message: T.LABEL - popup_dialog_button: T.BUTTON - popup_dialog_button_with_binding: T.BUTTON - popup_dialog_left_button: T.BUTTON - popup_dialog_middle_button: T.BUTTON - popup_dialog_right_button: T.BUTTON - popup_dialog: T.INPUT_PANEL - modal_background_image: T.IMAGE - black_tint_image: T.IMAGE - modal_title_text: T.LABEL - modal_label_text: T.STACK_PANEL - "modal_label_text/padding": T.PANEL - "modal_label_text/text": T.LABEL - modal_checkbox_button: T.TOGGLE - "modal_checkbox_button/header_description_stack_panel": T.STACK_PANEL - "modal_checkbox_button/header_description_stack_panel/checkbox_visuals": T.PANEL - "modal_checkbox_button/header_description_stack_panel/buffer_panel": T.PANEL - "modal_checkbox_button/header_description_stack_panel/buffer_panel/label": T.LABEL - "modal_checkbox_button/header_description_stack_panel/padding_panel": T.PANEL - dialog_text_wrapper: T.PANEL - modal_label_panel: T.PANEL - modal_left_button: T.BUTTON - modal_middle_button: T.BUTTON - modal_rightcancel_button: T.BUTTON - three_buttons_panel: T.PANEL - "three_buttons_panel/left": T.BUTTON - "three_buttons_panel/middle": T.BUTTON - "three_buttons_panel/right": T.BUTTON - two_buttons_checkbox_panel: T.PANEL - "two_buttons_checkbox_panel/left": T.BUTTON - "two_buttons_checkbox_panel/middle": T.BUTTON - "two_buttons_checkbox_panel/checkbox": T.TOGGLE - destructive_three_buttons_panel: T.PANEL - "destructive_three_buttons_panel/left": T.BUTTON - "destructive_three_buttons_panel/middle": T.BUTTON - "destructive_three_buttons_panel/right": T.BUTTON - two_buttons_panel: T.PANEL - "two_buttons_panel/left": T.BUTTON - "two_buttons_panel/right": T.BUTTON - destructive_two_buttons_panel: T.PANEL - "destructive_two_buttons_panel/left": T.BUTTON - "destructive_two_buttons_panel/right": T.BUTTON - single_button_panel: T.PANEL - "single_button_panel/left": T.BUTTON - single_button_checkbox_panel: T.PANEL - "single_button_checkbox_panel/left": T.BUTTON - "single_button_checkbox_panel/checkbox": T.TOGGLE - modal_dialog_base: T.UNKNOWN - modal_dialog_with_buttons: T.PANEL - "modal_dialog_with_buttons/background_with_buttons": T.PANEL - "modal_dialog_with_buttons/title": T.LABEL - "modal_dialog_with_buttons/text": T.PANEL - "modal_dialog_with_buttons/button_panel": T.UNKNOWN - modal_input_panel: T.INPUT_PANEL - "modal_input_panel/black_tint_image": T.IMAGE - modal_dialog_popup: T.PANEL - "modal_dialog_popup/modal_input": T.INPUT_PANEL - "modal_dialog_popup/modal_input/modal_bg_buttons": T.PANEL - "modal_dialog_popup/modal_input/black_background": T.IMAGE - hollow_2_bottom_button_panel: T.PANEL - "hollow_2_bottom_button_panel/lower_button_controls": T.UNKNOWN - form_fit_screen_with_title_and_close_and_bottom_buttons: T.PANEL - form_fit_screen_with_title_and_close: T.PANEL - "form_fit_screen_with_title_and_close/panel_background": T.UNKNOWN - "form_fit_screen_with_title_and_close/panel_content": T.PANEL - "form_fit_screen_with_title_and_close/panel_content/header": T.PANEL - "form_fit_screen_with_title_and_close/panel_content/header/header_content": T.LABEL - "form_fit_screen_with_title_and_close/panel_content/close_button_panel": T.PANEL - "form_fit_screen_with_title_and_close/panel_content/close_button_panel/close": T.BUTTON - "form_fit_screen_with_title_and_close/panel_content/contents": T.PANEL - "form_fit_screen_with_title_and_close/panel_content/contents/contents": T.UNKNOWN - "form_fit_screen_with_title_and_close/panel_content/contents/content_padding": T.PANEL - "form_fit_screen_with_title_and_close/panel_content/lower_contents": T.PANEL - "form_fit_screen_with_title_and_close/panel_content/lower_contents/contents": T.UNKNOWN - form_fit_modal_dialog_popup: T.INPUT_PANEL - "form_fit_modal_dialog_popup/background": T.UNKNOWN - "form_fit_modal_dialog_popup/content": T.UNKNOWN - progress_dialog_popup: T.PANEL - "progress_dialog_popup/background": T.PANEL - "progress_dialog_popup/title": T.LABEL - "progress_dialog_popup/progress_content": T.STACK_PANEL - "progress_dialog_popup/button": T.PANEL - progress_content: T.STACK_PANEL - "progress_content/progress_titles": T.PANEL - "progress_content/progress_titles/current_progress_label": T.LABEL - "progress_content/progress_titles/total_progress_label": T.LABEL - "progress_content/progress_bar": T.PANEL - progress_label: T.LABEL - current_progress_label: T.LABEL - total_progress_label: T.LABEL - progress_bar_icon: T.PANEL - "progress_bar_icon/full_progress_bar_icon": T.IMAGE - "progress_bar_icon/empty_progress_bar_icon": T.IMAGE - "progress_bar_icon/progress_bar_nub": T.IMAGE - empty_progress_bar_icon: T.IMAGE - full_progress_bar_icon: T.IMAGE - progress_bar_nub: T.IMAGE + "popup_dialog_bg": T.IMAGE, + "popup_dialog_message": T.LABEL, + "popup_dialog_button": T.BUTTON, + "popup_dialog_button_with_binding": T.BUTTON, + "popup_dialog_left_button": T.BUTTON, + "popup_dialog_middle_button": T.BUTTON, + "popup_dialog_right_button": T.BUTTON, + "popup_dialog": T.INPUT_PANEL, + "modal_background_image": T.IMAGE, + "black_tint_image": T.IMAGE, + "modal_title_text": T.LABEL, + "modal_label_text": T.STACK_PANEL, + "modal_label_text/padding": T.PANEL, + "modal_label_text/text": T.LABEL, + "modal_checkbox_button": T.TOGGLE, + "modal_checkbox_button/header_description_stack_panel": T.STACK_PANEL, + "modal_checkbox_button/header_description_stack_panel/checkbox_visuals": T.PANEL, + "modal_checkbox_button/header_description_stack_panel/buffer_panel": T.PANEL, + "modal_checkbox_button/header_description_stack_panel/buffer_panel/label": T.LABEL, + "modal_checkbox_button/header_description_stack_panel/padding_panel": T.PANEL, + "dialog_text_wrapper": T.PANEL, + "modal_label_panel": T.PANEL, + "modal_left_button": T.BUTTON, + "modal_middle_button": T.BUTTON, + "modal_rightcancel_button": T.BUTTON, + "three_buttons_panel": T.PANEL, + "three_buttons_panel/left": T.BUTTON, + "three_buttons_panel/middle": T.BUTTON, + "three_buttons_panel/right": T.BUTTON, + "two_buttons_checkbox_panel": T.PANEL, + "two_buttons_checkbox_panel/left": T.BUTTON, + "two_buttons_checkbox_panel/middle": T.BUTTON, + "two_buttons_checkbox_panel/checkbox": T.TOGGLE, + "destructive_three_buttons_panel": T.PANEL, + "destructive_three_buttons_panel/left": T.BUTTON, + "destructive_three_buttons_panel/middle": T.BUTTON, + "destructive_three_buttons_panel/right": T.BUTTON, + "two_buttons_panel": T.PANEL, + "two_buttons_panel/left": T.BUTTON, + "two_buttons_panel/right": T.BUTTON, + "destructive_two_buttons_panel": T.PANEL, + "destructive_two_buttons_panel/left": T.BUTTON, + "destructive_two_buttons_panel/right": T.BUTTON, + "single_button_panel": T.PANEL, + "single_button_panel/left": T.BUTTON, + "single_button_checkbox_panel": T.PANEL, + "single_button_checkbox_panel/left": T.BUTTON, + "single_button_checkbox_panel/checkbox": T.TOGGLE, + "modal_dialog_base": T.UNKNOWN, + "modal_dialog_with_buttons": T.PANEL, + "modal_dialog_with_buttons/background_with_buttons": T.PANEL, + "modal_dialog_with_buttons/title": T.LABEL, + "modal_dialog_with_buttons/text": T.PANEL, + "modal_dialog_with_buttons/button_panel": T.UNKNOWN, + "modal_input_panel": T.INPUT_PANEL, + "modal_input_panel/black_tint_image": T.IMAGE, + "modal_dialog_popup": T.PANEL, + "modal_dialog_popup/modal_input": T.INPUT_PANEL, + "modal_dialog_popup/modal_input/modal_bg_buttons": T.PANEL, + "modal_dialog_popup/modal_input/black_background": T.IMAGE, + "hollow_2_bottom_button_panel": T.PANEL, + "hollow_2_bottom_button_panel/lower_button_controls": T.UNKNOWN, + "form_fit_screen_with_title_and_close_and_bottom_buttons": T.PANEL, + "form_fit_screen_with_title_and_close": T.PANEL, + "form_fit_screen_with_title_and_close/panel_background": T.UNKNOWN, + "form_fit_screen_with_title_and_close/panel_content": T.PANEL, + "form_fit_screen_with_title_and_close/panel_content/header": T.PANEL, + "form_fit_screen_with_title_and_close/panel_content/header/header_content": T.LABEL, + "form_fit_screen_with_title_and_close/panel_content/close_button_panel": T.PANEL, + "form_fit_screen_with_title_and_close/panel_content/close_button_panel/close": T.BUTTON, + "form_fit_screen_with_title_and_close/panel_content/contents": T.PANEL, + "form_fit_screen_with_title_and_close/panel_content/contents/contents": T.UNKNOWN, + "form_fit_screen_with_title_and_close/panel_content/contents/content_padding": T.PANEL, + "form_fit_screen_with_title_and_close/panel_content/lower_contents": T.PANEL, + "form_fit_screen_with_title_and_close/panel_content/lower_contents/contents": T.UNKNOWN, + "form_fit_modal_dialog_popup": T.INPUT_PANEL, + "form_fit_modal_dialog_popup/background": T.UNKNOWN, + "form_fit_modal_dialog_popup/content": T.UNKNOWN, + "progress_dialog_popup": T.PANEL, + "progress_dialog_popup/background": T.PANEL, + "progress_dialog_popup/title": T.LABEL, + "progress_dialog_popup/progress_content": T.STACK_PANEL, + "progress_dialog_popup/button": T.PANEL, + "progress_content": T.STACK_PANEL, + "progress_content/progress_titles": T.PANEL, + "progress_content/progress_titles/current_progress_label": T.LABEL, + "progress_content/progress_titles/total_progress_label": T.LABEL, + "progress_content/progress_bar": T.PANEL, + "progress_label": T.LABEL, + "current_progress_label": T.LABEL, + "total_progress_label": T.LABEL, + "progress_bar_icon": T.PANEL, + "progress_bar_icon/full_progress_bar_icon": T.IMAGE, + "progress_bar_icon/empty_progress_bar_icon": T.IMAGE, + "progress_bar_icon/progress_bar_nub": T.IMAGE, + "empty_progress_bar_icon": T.IMAGE, + "full_progress_bar_icon": T.IMAGE, + "progress_bar_nub": T.IMAGE, } export type PortfolioType = { - screenshot: T.IMAGE - screenshot_frame: T.IMAGE - trash_default: T.IMAGE - trash_hover: T.IMAGE - trash_pressed: T.IMAGE - photo_trash_button_left: T.BUTTON - "photo_trash_button_left/default": T.IMAGE - "photo_trash_button_left/hover": T.IMAGE - "photo_trash_button_left/pressed": T.IMAGE - photo_trash_button_right: T.BUTTON - "photo_trash_button_right/default": T.IMAGE - "photo_trash_button_right/hover": T.IMAGE - "photo_trash_button_right/pressed": T.IMAGE - photo_number: T.LABEL - photo_number_left: T.LABEL - photo_number_right: T.LABEL - photo_corner_bl: T.IMAGE - photo_corner_br: T.IMAGE - photo_corner_tr: T.IMAGE - photo_corner_tl: T.IMAGE - page_photo: T.PANEL - "page_photo/screenshot": T.IMAGE - "page_photo/screenshot_frame": T.IMAGE - "page_photo/photo_corner_bl": T.IMAGE - "page_photo/photo_corner_br": T.IMAGE - "page_photo/photo_corner_tl": T.IMAGE - "page_photo/photo_corner_tr": T.IMAGE - pick_item: T.PANEL - "pick_item/photo": T.PANEL - "pick_item/button": T.BUTTON - header: T.LABEL - screenshot_grid: T.STACK_PANEL - text_centering_panel: T.PANEL - "text_centering_panel/header": T.LABEL - pick_scrolling_content: T.STACK_PANEL - "pick_scrolling_content/header": T.PANEL - "pick_scrolling_content/portfolio_grid": T.STACK_PANEL - no_pick_photos_alert_label: T.LABEL - pick_panel: T.IMAGE - "pick_panel/scroll": T.PANEL - "pick_panel/close_button": T.BUTTON - "pick_panel/no_pick_photos_alert_label": T.LABEL - text_edit_box_default_indent: T.PANEL - text_edit_box_hover_indent: T.PANEL - "text_edit_box_hover_indent/focus_border_white": T.IMAGE - text_edit_control: T.EDIT_BOX - "text_edit_control/clipper_panel": T.PANEL - "text_edit_control/clipper_panel/display_text": T.LABEL - "text_edit_control/clipper_panel/place_holder_control": T.UNKNOWN - "text_edit_control/locked": T.PANEL - "text_edit_control/locked/edit_box_indent": T.IMAGE - "text_edit_control/default": T.PANEL - "text_edit_control/hover": T.PANEL - "text_edit_control/pressed": T.PANEL - photo_item: T.PANEL - "photo_item/screenshot": T.IMAGE - "photo_item/screenshot_frame": T.IMAGE - "photo_item/text_edit_control": T.EDIT_BOX - "photo_item/photo_corner_bl": T.IMAGE - "photo_item/photo_corner_br": T.IMAGE - "photo_item/photo_corner_tl": T.IMAGE - "photo_item/photo_corner_tr": T.IMAGE - photo_grid_item: T.PANEL - "photo_grid_item/photo_item": T.PANEL - photo_list_grid: T.GRID - prev_button_default: T.IMAGE - prev_button_hover: T.IMAGE - prev_button_pressed: T.IMAGE - photo_page_prev_button: T.BUTTON - "photo_page_prev_button/default": T.IMAGE - "photo_page_prev_button/hover": T.IMAGE - "photo_page_prev_button/pressed": T.IMAGE - next_button_default: T.IMAGE - next_button_hover: T.IMAGE - next_button_pressed: T.IMAGE - photo_page_next_button: T.BUTTON - "photo_page_next_button/default": T.IMAGE - "photo_page_next_button/hover": T.IMAGE - "photo_page_next_button/pressed": T.IMAGE - convert_button_default: T.IMAGE - convert_button_hover: T.IMAGE - convert_button_pressed: T.IMAGE - photo_convert_left_button: T.BUTTON - "photo_convert_left_button/default": T.IMAGE - "photo_convert_left_button/hover": T.IMAGE - "photo_convert_left_button/pressed": T.IMAGE - photo_convert_right_button: T.BUTTON - "photo_convert_right_button/default": T.IMAGE - "photo_convert_right_button/hover": T.IMAGE - "photo_convert_right_button/pressed": T.IMAGE - bottom_button_panel: T.PANEL - "bottom_button_panel/export_button": T.BUTTON - "bottom_button_panel/im_content_button": T.BUTTON - "bottom_button_panel/add_photo_button": T.BUTTON - im_content_button: T.BUTTON - export_button: T.BUTTON - add_photo_button: T.BUTTON - book_binding: T.IMAGE - book_spine: T.IMAGE - book_background: T.IMAGE - "book_background/book_binding": T.IMAGE - "book_background/top_spine": T.IMAGE - "book_background/bottom_spine": T.IMAGE - header_panel: T.PANEL - "header_panel/header_background": T.IMAGE - close_button_default: T.IMAGE - close_button_hover: T.IMAGE - close_button_pressed: T.IMAGE - close_button: T.BUTTON - "close_button/default": T.IMAGE - "close_button/hover": T.IMAGE - "close_button/pressed": T.IMAGE - no_photos_alert_label: T.LABEL - book_and_buttons_panel: T.PANEL - "book_and_buttons_panel/book_panel": T.PANEL - "book_and_buttons_panel/book_panel/book_background": T.IMAGE - "book_and_buttons_panel/book_panel/close_button": T.BUTTON - "book_and_buttons_panel/book_panel/photo_list_grid": T.GRID - "book_and_buttons_panel/book_panel/photo_number_left": T.LABEL - "book_and_buttons_panel/book_panel/photo_number_right": T.LABEL - "book_and_buttons_panel/book_panel/photo_trash_button_left": T.BUTTON - "book_and_buttons_panel/book_panel/photo_trash_button_right": T.BUTTON - "book_and_buttons_panel/book_panel/photo_page_prev_button": T.BUTTON - "book_and_buttons_panel/book_panel/photo_page_next_button": T.BUTTON - "book_and_buttons_panel/book_panel/photo_convert_left_button": T.BUTTON - "book_and_buttons_panel/book_panel/photo_convert_right_button": T.BUTTON - "book_and_buttons_panel/book_panel/no_photos_alert_label": T.LABEL - "book_and_buttons_panel/bottom_button_panel": T.PANEL - root_panel: T.PANEL - portfolio_screen: T.SCREEN - portfolio_screen_content: T.PANEL - "portfolio_screen_content/root_panel": T.PANEL - "portfolio_screen_content/root_panel/book_and_buttons_panel": T.PANEL - "portfolio_screen_content/root_panel/pick_panel": T.IMAGE + "screenshot": T.IMAGE, + "screenshot_frame": T.IMAGE, + "trash_default": T.IMAGE, + "trash_hover": T.IMAGE, + "trash_pressed": T.IMAGE, + "photo_trash_button_left": T.BUTTON, + "photo_trash_button_left/default": T.IMAGE, + "photo_trash_button_left/hover": T.IMAGE, + "photo_trash_button_left/pressed": T.IMAGE, + "photo_trash_button_right": T.BUTTON, + "photo_trash_button_right/default": T.IMAGE, + "photo_trash_button_right/hover": T.IMAGE, + "photo_trash_button_right/pressed": T.IMAGE, + "photo_number": T.LABEL, + "photo_number_left": T.LABEL, + "photo_number_right": T.LABEL, + "photo_corner_bl": T.IMAGE, + "photo_corner_br": T.IMAGE, + "photo_corner_tr": T.IMAGE, + "photo_corner_tl": T.IMAGE, + "page_photo": T.PANEL, + "page_photo/screenshot": T.IMAGE, + "page_photo/screenshot_frame": T.IMAGE, + "page_photo/photo_corner_bl": T.IMAGE, + "page_photo/photo_corner_br": T.IMAGE, + "page_photo/photo_corner_tl": T.IMAGE, + "page_photo/photo_corner_tr": T.IMAGE, + "pick_item": T.PANEL, + "pick_item/photo": T.PANEL, + "pick_item/button": T.BUTTON, + "header": T.LABEL, + "screenshot_grid": T.STACK_PANEL, + "text_centering_panel": T.PANEL, + "text_centering_panel/header": T.LABEL, + "pick_scrolling_content": T.STACK_PANEL, + "pick_scrolling_content/header": T.PANEL, + "pick_scrolling_content/portfolio_grid": T.STACK_PANEL, + "no_pick_photos_alert_label": T.LABEL, + "pick_panel": T.IMAGE, + "pick_panel/scroll": T.PANEL, + "pick_panel/close_button": T.BUTTON, + "pick_panel/no_pick_photos_alert_label": T.LABEL, + "text_edit_box_default_indent": T.PANEL, + "text_edit_box_hover_indent": T.PANEL, + "text_edit_box_hover_indent/focus_border_white": T.IMAGE, + "text_edit_control": T.EDIT_BOX, + "text_edit_control/clipper_panel": T.PANEL, + "text_edit_control/clipper_panel/display_text": T.LABEL, + "text_edit_control/clipper_panel/place_holder_control": T.UNKNOWN, + "text_edit_control/locked": T.PANEL, + "text_edit_control/locked/edit_box_indent": T.IMAGE, + "text_edit_control/default": T.PANEL, + "text_edit_control/hover": T.PANEL, + "text_edit_control/pressed": T.PANEL, + "photo_item": T.PANEL, + "photo_item/screenshot": T.IMAGE, + "photo_item/screenshot_frame": T.IMAGE, + "photo_item/text_edit_control": T.EDIT_BOX, + "photo_item/photo_corner_bl": T.IMAGE, + "photo_item/photo_corner_br": T.IMAGE, + "photo_item/photo_corner_tl": T.IMAGE, + "photo_item/photo_corner_tr": T.IMAGE, + "photo_grid_item": T.PANEL, + "photo_grid_item/photo_item": T.PANEL, + "photo_list_grid": T.GRID, + "prev_button_default": T.IMAGE, + "prev_button_hover": T.IMAGE, + "prev_button_pressed": T.IMAGE, + "photo_page_prev_button": T.BUTTON, + "photo_page_prev_button/default": T.IMAGE, + "photo_page_prev_button/hover": T.IMAGE, + "photo_page_prev_button/pressed": T.IMAGE, + "next_button_default": T.IMAGE, + "next_button_hover": T.IMAGE, + "next_button_pressed": T.IMAGE, + "photo_page_next_button": T.BUTTON, + "photo_page_next_button/default": T.IMAGE, + "photo_page_next_button/hover": T.IMAGE, + "photo_page_next_button/pressed": T.IMAGE, + "convert_button_default": T.IMAGE, + "convert_button_hover": T.IMAGE, + "convert_button_pressed": T.IMAGE, + "photo_convert_left_button": T.BUTTON, + "photo_convert_left_button/default": T.IMAGE, + "photo_convert_left_button/hover": T.IMAGE, + "photo_convert_left_button/pressed": T.IMAGE, + "photo_convert_right_button": T.BUTTON, + "photo_convert_right_button/default": T.IMAGE, + "photo_convert_right_button/hover": T.IMAGE, + "photo_convert_right_button/pressed": T.IMAGE, + "bottom_button_panel": T.PANEL, + "bottom_button_panel/export_button": T.BUTTON, + "bottom_button_panel/im_content_button": T.BUTTON, + "bottom_button_panel/add_photo_button": T.BUTTON, + "im_content_button": T.BUTTON, + "export_button": T.BUTTON, + "add_photo_button": T.BUTTON, + "book_binding": T.IMAGE, + "book_spine": T.IMAGE, + "book_background": T.IMAGE, + "book_background/book_binding": T.IMAGE, + "book_background/top_spine": T.IMAGE, + "book_background/bottom_spine": T.IMAGE, + "header_panel": T.PANEL, + "header_panel/header_background": T.IMAGE, + "close_button_default": T.IMAGE, + "close_button_hover": T.IMAGE, + "close_button_pressed": T.IMAGE, + "close_button": T.BUTTON, + "close_button/default": T.IMAGE, + "close_button/hover": T.IMAGE, + "close_button/pressed": T.IMAGE, + "no_photos_alert_label": T.LABEL, + "book_and_buttons_panel": T.PANEL, + "book_and_buttons_panel/book_panel": T.PANEL, + "book_and_buttons_panel/book_panel/book_background": T.IMAGE, + "book_and_buttons_panel/book_panel/close_button": T.BUTTON, + "book_and_buttons_panel/book_panel/photo_list_grid": T.GRID, + "book_and_buttons_panel/book_panel/photo_number_left": T.LABEL, + "book_and_buttons_panel/book_panel/photo_number_right": T.LABEL, + "book_and_buttons_panel/book_panel/photo_trash_button_left": T.BUTTON, + "book_and_buttons_panel/book_panel/photo_trash_button_right": T.BUTTON, + "book_and_buttons_panel/book_panel/photo_page_prev_button": T.BUTTON, + "book_and_buttons_panel/book_panel/photo_page_next_button": T.BUTTON, + "book_and_buttons_panel/book_panel/photo_convert_left_button": T.BUTTON, + "book_and_buttons_panel/book_panel/photo_convert_right_button": T.BUTTON, + "book_and_buttons_panel/book_panel/no_photos_alert_label": T.LABEL, + "book_and_buttons_panel/bottom_button_panel": T.PANEL, + "root_panel": T.PANEL, + "portfolio_screen": T.SCREEN, + "portfolio_screen_content": T.PANEL, + "portfolio_screen_content/root_panel": T.PANEL, + "portfolio_screen_content/root_panel/book_and_buttons_panel": T.PANEL, + "portfolio_screen_content/root_panel/pick_panel": T.IMAGE, } export type ProgressType = { - popup_dialog_base: T.INPUT_PANEL - "popup_dialog_base/background": T.IMAGE - "popup_dialog_base/scrolling_panel": T.PANEL - "popup_dialog_base/totalSelected": T.LABEL - "popup_dialog_base/totalSelectedSize": T.LABEL - "popup_dialog_base/left": T.BUTTON - "popup_dialog_base/right": T.BUTTON - checkbox_visual: T.PANEL - "checkbox_visual/control": T.LABEL - checkbox_visuals_unchecked: T.PANEL - checkbox_visuals_checked: T.PANEL - checkbox_visuals_unchecked_locked: T.PANEL - checkbox_visuals_checked_locked: T.PANEL - checkbox_visuals_unchecked_hover: T.PANEL - checkbox_visuals_checked_hover: T.PANEL - checkbox_with_label_core: T.TOGGLE - checkbox_with_label: T.PANEL - "checkbox_with_label/checkbox_with_label_core": T.TOGGLE - resource_pack_grid_item: T.PANEL - resource_pack_section: T.STACK_PANEL - "resource_pack_section/required_resource_pack_list_grid": T.GRID - "resource_pack_section/optional_resource_pack_list_grid": T.GRID - simple_popup_dialog_base: T.INPUT_PANEL - "simple_popup_dialog_base/dialog_background_hollow_3": T.IMAGE - "simple_popup_dialog_base/dialog_background_hollow_3/control": T.IMAGE - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel": T.STACK_PANEL - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_0": T.PANEL - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/title": T.LABEL - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_1": T.PANEL - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/description": T.LABEL - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_2": T.PANEL - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/description2": T.LABEL - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_3": T.PANEL - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/top_optional_button": T.BUTTON - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_4": T.PANEL - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/middle_button": T.BUTTON - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_5": T.PANEL - "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/bottom_button": T.BUTTON - resource_pack_download_popup_base: T.INPUT_PANEL - resource_pack_download_server_required: T.INPUT_PANEL - resource_pack_download_optional_and_required: T.INPUT_PANEL - resource_pack_download_optional: T.INPUT_PANEL - resource_pack_download_required: T.INPUT_PANEL - normal_stroke_button: T.IMAGE - progress_screen_text: T.LABEL - progress_title_text: T.LABEL - progress_bar_text: T.LABEL - code_text: T.LABEL - code_number: T.LABEL - progress_loading_bars: T.IMAGE - progress_loading_spinner: T.IMAGE - fancy_progress_loading_bars: T.PANEL - "fancy_progress_loading_bars/full_progress_bar_icon": T.IMAGE - "fancy_progress_loading_bars/empty_progress_bar_icon": T.IMAGE - "fancy_progress_loading_bars/progress_bar_nub": T.IMAGE - progress_bar: T.CUSTOM - progress_bar_nub: T.IMAGE - thick_progress_bar_icon_base: T.IMAGE - thick_progress_bar_icon_empty: T.IMAGE - thick_progress_bar: T.PANEL - "thick_progress_bar/full_progress_bar_icon": T.IMAGE - "thick_progress_bar/empty_progress_bar_icon": T.IMAGE - edu_cloud_upload_progress_bar: T.PANEL - "edu_cloud_upload_progress_bar/waveform_loading_bar": T.IMAGE - "edu_cloud_upload_progress_bar/determinate_loading_bar": T.PANEL - cancel_button: T.BUTTON - retry_button: T.BUTTON - abort_button: T.BUTTON - ok_button: T.BUTTON - title_panel: T.PANEL - "title_panel/progress_title_text": T.LABEL - "title_panel/progress_bar_text": T.LABEL - "title_panel/progress_bar": T.CUSTOM - button_panel: T.PANEL - "button_panel/cancel_button": T.BUTTON - modal_button_panel: T.PANEL - "modal_button_panel/cancel_button": T.BUTTON - modal_button_panel_with_retry: T.PANEL - "modal_button_panel_with_retry/abort_button": T.BUTTON - "modal_button_panel_with_retry/cancel_button": T.BUTTON - "modal_button_panel_with_retry/retry_button": T.BUTTON - modal_ok_button_panel: T.PANEL - "modal_ok_button_panel/ok_button": T.BUTTON - gamepad_helpers: T.PANEL - "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL - world_image: T.IMAGE - cloud_image: T.IMAGE - server_image: T.IMAGE - edu_cloud_upload_image: T.STACK_PANEL - "edu_cloud_upload_image/world_image_wrapper": T.PANEL - "edu_cloud_upload_image/world_image_wrapper/fetch_world_image": T.IMAGE - "edu_cloud_upload_image/arrow_image_wrapper": T.PANEL - "edu_cloud_upload_image/arrow_image_wrapper/arrow_image": T.IMAGE - "edu_cloud_upload_image/cloud_image_wrapper": T.PANEL - "edu_cloud_upload_image/cloud_image_wrapper/upload_cloud_image": T.IMAGE - edu_cloud_fetch_image: T.STACK_PANEL - "edu_cloud_fetch_image/cloud_image_wrapper": T.PANEL - "edu_cloud_fetch_image/cloud_image_wrapper/fetch_cloud_image": T.IMAGE - "edu_cloud_fetch_image/spyglass_image_wrapper": T.PANEL - "edu_cloud_fetch_image/spyglass_image_wrapper/spyglass_image": T.IMAGE - "edu_cloud_fetch_image/world_image_wrapper": T.PANEL - "edu_cloud_fetch_image/world_image_wrapper/fetch_world_image": T.IMAGE - edu_cloud_download_image: T.STACK_PANEL - "edu_cloud_download_image/cloud_image_wrapper": T.PANEL - "edu_cloud_download_image/cloud_image_wrapper/download_cloud_image": T.IMAGE - "edu_cloud_download_image/arrow_image_wrapper": T.PANEL - "edu_cloud_download_image/arrow_image_wrapper/arrow_image": T.IMAGE - "edu_cloud_download_image/world_image_wrapper": T.PANEL - "edu_cloud_download_image/world_image_wrapper/download_world_image": T.IMAGE - edu_server_fetch_image: T.STACK_PANEL - "edu_server_fetch_image/server_image_wrapper_left": T.PANEL - "edu_server_fetch_image/server_image_wrapper_left/server_image": T.IMAGE - "edu_server_fetch_image/spyglass_image_wrapper": T.PANEL - "edu_server_fetch_image/spyglass_image_wrapper/spyglass_image": T.IMAGE - "edu_server_fetch_image/server_image_wrapper_right": T.PANEL - "edu_server_fetch_image/server_image_wrapper_right/server_image": T.IMAGE - modal_progress_panel_no_cancel: T.PANEL - "modal_progress_panel_no_cancel/common_panel": T.PANEL - "modal_progress_panel_no_cancel/content": T.PANEL - "modal_progress_panel_no_cancel/content/title_panel": T.PANEL - "modal_progress_panel_no_cancel/content/progress_loading_bars": T.IMAGE - modal_progress_panel_with_cancel: T.PANEL - "modal_progress_panel_with_cancel/common_panel": T.PANEL - "modal_progress_panel_with_cancel/content": T.PANEL - "modal_progress_panel_with_cancel/content/title_panel": T.PANEL - "modal_progress_panel_with_cancel/content/progress_loading_bars": T.IMAGE - "modal_progress_panel_with_cancel/modal_button_panel": T.PANEL - progress_panel: T.PANEL - "progress_panel/progress_loading_bars": T.IMAGE - "progress_panel/title_panel": T.PANEL - "progress_panel/button_panel": T.PANEL - modal_progress_screen: T.SCREEN - delete_progress_screen: T.SCREEN - realms_loading_background: T.PANEL - "realms_loading_background/solid_blue": T.IMAGE - "realms_loading_background/solid_blue/gradient": T.IMAGE - realms_stories_loading_progress_screen: T.SCREEN - world_loading_progress_screen: T.SCREEN - world_loading_screen_background: T.IMAGE - overworld_loading_background: T.IMAGE - "overworld_loading_background/background_gradient": T.CUSTOM - overworld_loading_progress_screen: T.SCREEN - nether_loading_background: T.IMAGE - "nether_loading_background/background_gradient": T.CUSTOM - nether_loading_progress_screen: T.SCREEN - theend_loading_background: T.IMAGE - "theend_loading_background/background_gradient": T.CUSTOM - theend_loading_progress_screen: T.SCREEN - world_saving_progress_screen: T.SCREEN - fetching_edu_cloud_worlds: T.SCREEN - edu_cloud_download_progress_screen: T.SCREEN - fetching_edu_servers: T.SCREEN - world_convert_modal_progress_screen: T.SCREEN - progress_screen: T.SCREEN - popup_dialog_factory: T.FACTORY - progress_screen_content: T.PANEL - "progress_screen_content/progress_content_panel": T.PANEL - "progress_screen_content/popup_dialog_factory": T.FACTORY - progress_content_panel: T.PANEL - "progress_content_panel/progress_panel": T.PANEL - "progress_content_panel/gamepad_helpers": T.PANEL - modal_screen_content: T.PANEL - "modal_screen_content/modal_progress_panel": T.PANEL - world_modal_progress_panel: T.PANEL - "world_modal_progress_panel/common_panel": T.PANEL - "world_modal_progress_panel/base_content": T.PANEL - "world_modal_progress_panel/base_content/progress_title_text": T.LABEL - "world_modal_progress_panel/base_content/progress_bar_text": T.LABEL - "world_modal_progress_panel/inside_content": T.STACK_PANEL - "world_modal_progress_panel/inside_content/loading_bar_panel": T.PANEL - "world_modal_progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars": T.PANEL - "world_modal_progress_panel/inside_content/loading_bar_panel/progress_loading_bars": T.IMAGE - "world_modal_progress_panel/inside_content/vertical_padding": T.PANEL - "world_modal_progress_panel/inside_content/modal_button_panel": T.UNKNOWN - "world_modal_progress_panel/inside_content/vertical_padding_2": T.PANEL - cloud_upload_panel: T.PANEL - "cloud_upload_panel/common_panel": T.PANEL - "cloud_upload_panel/base_content": T.PANEL - "cloud_upload_panel/base_content/progress_title_text": T.LABEL - "cloud_upload_panel/base_content/progress_text": T.LABEL - "cloud_upload_panel/base_content/edu_cloud_upload_image": T.STACK_PANEL - "cloud_upload_panel/base_content/loading_bar_panel": T.PANEL - "cloud_upload_panel/base_content/loading_bar_panel/progress_loading_bars": T.PANEL - cloud_error_panel: T.PANEL - "cloud_error_panel/common_panel": T.PANEL - "cloud_error_panel/content_wrapper": T.PANEL - "cloud_error_panel/content_wrapper/title_wrapper": T.PANEL - "cloud_error_panel/content_wrapper/title_wrapper/progress_title_text": T.LABEL - "cloud_error_panel/content_wrapper/error_text_tts_wrapper": T.PANEL - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/tts_border": T.BUTTON - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper": T.STACK_PANEL - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/edu_cloud_error_text": T.LABEL - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/vertical_padding": T.PANEL - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code": T.STACK_PANEL - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code/code_text": T.LABEL - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code/code_number": T.LABEL - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/vertical_padding_2": T.PANEL - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link": T.STACK_PANEL - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/cloud_support_hypertext": T.BUTTON - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/padded_icon": T.PANEL - "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/padded_icon/icon": T.IMAGE - "cloud_error_panel/content_wrapper/button_content": T.STACK_PANEL - "cloud_error_panel/content_wrapper/button_content/modal_button_panel": T.UNKNOWN - "cloud_error_panel/content_wrapper/error_button_content": T.STACK_PANEL - "cloud_error_panel/content_wrapper/error_button_content/download_ok_button": T.BUTTON - "cloud_error_panel/content_wrapper/error_button_content/download_cancel_button": T.BUTTON - cloud_fetch_panel: T.PANEL - "cloud_fetch_panel/common_panel": T.PANEL - "cloud_fetch_panel/base_content": T.PANEL - "cloud_fetch_panel/base_content/progress_title_text": T.LABEL - "cloud_fetch_panel/base_content/progress_text": T.LABEL - "cloud_fetch_panel/base_content/edu_cloud_fetch_image": T.STACK_PANEL - "cloud_fetch_panel/base_content/loading_bar_panel": T.PANEL - "cloud_fetch_panel/base_content/loading_bar_panel/progress_loading_bars": T.IMAGE - server_fetch_panel: T.PANEL - "server_fetch_panel/common_panel": T.PANEL - "server_fetch_panel/base_content": T.PANEL - "server_fetch_panel/base_content/progress_title_text": T.LABEL - "server_fetch_panel/base_content/progress_text": T.LABEL - "server_fetch_panel/base_content/edu_server_fetch_image": T.STACK_PANEL - "server_fetch_panel/base_content/loading_bar_panel": T.PANEL - "server_fetch_panel/base_content/loading_bar_panel/progress_loading_bars": T.IMAGE - cloud_download_panel: T.PANEL - "cloud_download_panel/common_panel": T.PANEL - "cloud_download_panel/base_content": T.PANEL - "cloud_download_panel/base_content/progress_title_text": T.LABEL - "cloud_download_panel/base_content/progress_bar_text": T.LABEL - "cloud_download_panel/base_content/edu_cloud_download_image": T.STACK_PANEL - "cloud_download_panel/loading_bar_panel": T.PANEL - "cloud_download_panel/loading_bar_panel/progress_loading_bars": T.IMAGE - world_convert_modal_progress_screen_content: T.PANEL - "world_convert_modal_progress_screen_content/mobile_data_icon": T.PANEL - "world_convert_modal_progress_screen_content/title_panel_content": T.PANEL - "world_convert_modal_progress_screen_content/world_modal_progress_panel": T.PANEL - "world_convert_modal_progress_screen_content/popup_dialog_factory": T.FACTORY - realms_loading_world_modal_progress_screen_content: T.PANEL - "realms_loading_world_modal_progress_screen_content/mobile_data_icon": T.PANEL - "realms_loading_world_modal_progress_screen_content/realms_title_image": T.IMAGE - "realms_loading_world_modal_progress_screen_content/world_modal_progress_panel": T.PANEL - "realms_loading_world_modal_progress_screen_content/popup_dialog_factory": T.FACTORY - "realms_loading_world_modal_progress_screen_content/server_region_connected": T.STACK_PANEL - "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_label": T.LABEL - "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_connected_text": T.LABEL - "realms_loading_world_modal_progress_screen_content/server_region_connected/padding": T.PANEL - "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_ping_icon": T.IMAGE - world_save_modal_progress_screen_content: T.PANEL - "world_save_modal_progress_screen_content/title_panel_content": T.PANEL - "world_save_modal_progress_screen_content/world_modal_progress_panel": T.PANEL - "world_save_modal_progress_screen_content/save_icon": T.IMAGE - "world_save_modal_progress_screen_content/popup_dialog_factory": T.FACTORY - cloud_upload_screen_content: T.PANEL - "cloud_upload_screen_content/title_panel_content": T.PANEL - "cloud_upload_screen_content/cloud_upload_panel": T.PANEL - "cloud_upload_screen_content/cloud_upload_error_panel": T.PANEL - "cloud_upload_screen_content/popup_dialog_factory": T.FACTORY - "cloud_upload_screen_content/cloud_conflict_resolution_popup_factory": T.FACTORY - edu_cloud_fetch_screen_content: T.PANEL - "edu_cloud_fetch_screen_content/cloud_fetch_panel": T.PANEL - "edu_cloud_fetch_screen_content/popup_dialog_factory": T.FACTORY - edu_server_fetch_screen_content: T.PANEL - "edu_server_fetch_screen_content/server_fetch_panel": T.PANEL - "edu_server_fetch_screen_content/popup_dialog_factory": T.FACTORY - cloud_download_screen_content: T.PANEL - "cloud_download_screen_content/background": T.IMAGE - "cloud_download_screen_content/cloud_download_panel": T.PANEL - "cloud_download_screen_content/cloud_download_error_panel": T.PANEL - "cloud_download_screen_content/popup_dialog_factory": T.FACTORY - auto_save: T.IMAGE - mobile_data_ios_icon: T.IMAGE - mobile_data_android_icon: T.IMAGE - mobile_data_icon_text: T.LABEL - mobile_data_icon: T.PANEL - "mobile_data_icon/icon_android": T.IMAGE - "mobile_data_icon/icon_ios": T.IMAGE - "mobile_data_icon/text": T.LABEL + "popup_dialog_base": T.INPUT_PANEL, + "popup_dialog_base/background": T.IMAGE, + "popup_dialog_base/scrolling_panel": T.PANEL, + "popup_dialog_base/totalSelected": T.LABEL, + "popup_dialog_base/totalSelectedSize": T.LABEL, + "popup_dialog_base/left": T.BUTTON, + "popup_dialog_base/right": T.BUTTON, + "checkbox_visual": T.PANEL, + "checkbox_visual/control": T.LABEL, + "checkbox_visuals_unchecked": T.PANEL, + "checkbox_visuals_checked": T.PANEL, + "checkbox_visuals_unchecked_locked": T.PANEL, + "checkbox_visuals_checked_locked": T.PANEL, + "checkbox_visuals_unchecked_hover": T.PANEL, + "checkbox_visuals_checked_hover": T.PANEL, + "checkbox_with_label_core": T.TOGGLE, + "checkbox_with_label": T.PANEL, + "checkbox_with_label/checkbox_with_label_core": T.TOGGLE, + "resource_pack_grid_item": T.PANEL, + "resource_pack_section": T.STACK_PANEL, + "resource_pack_section/required_resource_pack_list_grid": T.GRID, + "resource_pack_section/optional_resource_pack_list_grid": T.GRID, + "simple_popup_dialog_base": T.INPUT_PANEL, + "simple_popup_dialog_base/dialog_background_hollow_3": T.IMAGE, + "simple_popup_dialog_base/dialog_background_hollow_3/control": T.IMAGE, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel": T.STACK_PANEL, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_0": T.PANEL, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/title": T.LABEL, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_1": T.PANEL, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/description": T.LABEL, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_2": T.PANEL, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/description2": T.LABEL, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_3": T.PANEL, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/top_optional_button": T.BUTTON, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_4": T.PANEL, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/middle_button": T.BUTTON, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_5": T.PANEL, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/bottom_button": T.BUTTON, + "resource_pack_download_popup_base": T.INPUT_PANEL, + "resource_pack_download_server_required": T.INPUT_PANEL, + "resource_pack_download_optional_and_required": T.INPUT_PANEL, + "resource_pack_download_optional": T.INPUT_PANEL, + "resource_pack_download_required": T.INPUT_PANEL, + "normal_stroke_button": T.IMAGE, + "progress_screen_text": T.LABEL, + "progress_title_text": T.LABEL, + "progress_bar_text": T.LABEL, + "code_text": T.LABEL, + "code_number": T.LABEL, + "progress_loading_bars": T.IMAGE, + "progress_loading_spinner": T.IMAGE, + "fancy_progress_loading_bars": T.PANEL, + "fancy_progress_loading_bars/full_progress_bar_icon": T.IMAGE, + "fancy_progress_loading_bars/empty_progress_bar_icon": T.IMAGE, + "fancy_progress_loading_bars/progress_bar_nub": T.IMAGE, + "progress_bar": T.CUSTOM, + "progress_bar_nub": T.IMAGE, + "thick_progress_bar_icon_base": T.IMAGE, + "thick_progress_bar_icon_empty": T.IMAGE, + "thick_progress_bar": T.PANEL, + "thick_progress_bar/full_progress_bar_icon": T.IMAGE, + "thick_progress_bar/empty_progress_bar_icon": T.IMAGE, + "edu_cloud_upload_progress_bar": T.PANEL, + "edu_cloud_upload_progress_bar/waveform_loading_bar": T.IMAGE, + "edu_cloud_upload_progress_bar/determinate_loading_bar": T.PANEL, + "cancel_button": T.BUTTON, + "retry_button": T.BUTTON, + "abort_button": T.BUTTON, + "ok_button": T.BUTTON, + "title_panel": T.PANEL, + "title_panel/progress_title_text": T.LABEL, + "title_panel/progress_bar_text": T.LABEL, + "title_panel/progress_bar": T.CUSTOM, + "button_panel": T.PANEL, + "button_panel/cancel_button": T.BUTTON, + "modal_button_panel": T.PANEL, + "modal_button_panel/cancel_button": T.BUTTON, + "modal_button_panel_with_retry": T.PANEL, + "modal_button_panel_with_retry/abort_button": T.BUTTON, + "modal_button_panel_with_retry/cancel_button": T.BUTTON, + "modal_button_panel_with_retry/retry_button": T.BUTTON, + "modal_ok_button_panel": T.PANEL, + "modal_ok_button_panel/ok_button": T.BUTTON, + "gamepad_helpers": T.PANEL, + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL, + "world_image": T.IMAGE, + "cloud_image": T.IMAGE, + "server_image": T.IMAGE, + "edu_cloud_upload_image": T.STACK_PANEL, + "edu_cloud_upload_image/world_image_wrapper": T.PANEL, + "edu_cloud_upload_image/world_image_wrapper/fetch_world_image": T.IMAGE, + "edu_cloud_upload_image/arrow_image_wrapper": T.PANEL, + "edu_cloud_upload_image/arrow_image_wrapper/arrow_image": T.IMAGE, + "edu_cloud_upload_image/cloud_image_wrapper": T.PANEL, + "edu_cloud_upload_image/cloud_image_wrapper/upload_cloud_image": T.IMAGE, + "edu_cloud_fetch_image": T.STACK_PANEL, + "edu_cloud_fetch_image/cloud_image_wrapper": T.PANEL, + "edu_cloud_fetch_image/cloud_image_wrapper/fetch_cloud_image": T.IMAGE, + "edu_cloud_fetch_image/spyglass_image_wrapper": T.PANEL, + "edu_cloud_fetch_image/spyglass_image_wrapper/spyglass_image": T.IMAGE, + "edu_cloud_fetch_image/world_image_wrapper": T.PANEL, + "edu_cloud_fetch_image/world_image_wrapper/fetch_world_image": T.IMAGE, + "edu_cloud_download_image": T.STACK_PANEL, + "edu_cloud_download_image/cloud_image_wrapper": T.PANEL, + "edu_cloud_download_image/cloud_image_wrapper/download_cloud_image": T.IMAGE, + "edu_cloud_download_image/arrow_image_wrapper": T.PANEL, + "edu_cloud_download_image/arrow_image_wrapper/arrow_image": T.IMAGE, + "edu_cloud_download_image/world_image_wrapper": T.PANEL, + "edu_cloud_download_image/world_image_wrapper/download_world_image": T.IMAGE, + "edu_server_fetch_image": T.STACK_PANEL, + "edu_server_fetch_image/server_image_wrapper_left": T.PANEL, + "edu_server_fetch_image/server_image_wrapper_left/server_image": T.IMAGE, + "edu_server_fetch_image/spyglass_image_wrapper": T.PANEL, + "edu_server_fetch_image/spyglass_image_wrapper/spyglass_image": T.IMAGE, + "edu_server_fetch_image/server_image_wrapper_right": T.PANEL, + "edu_server_fetch_image/server_image_wrapper_right/server_image": T.IMAGE, + "modal_progress_panel_no_cancel": T.PANEL, + "modal_progress_panel_no_cancel/common_panel": T.PANEL, + "modal_progress_panel_no_cancel/content": T.PANEL, + "modal_progress_panel_no_cancel/content/title_panel": T.PANEL, + "modal_progress_panel_no_cancel/content/progress_loading_bars": T.IMAGE, + "modal_progress_panel_with_cancel": T.PANEL, + "modal_progress_panel_with_cancel/common_panel": T.PANEL, + "modal_progress_panel_with_cancel/content": T.PANEL, + "modal_progress_panel_with_cancel/content/title_panel": T.PANEL, + "modal_progress_panel_with_cancel/content/progress_loading_bars": T.IMAGE, + "modal_progress_panel_with_cancel/modal_button_panel": T.PANEL, + "progress_panel": T.PANEL, + "progress_panel/progress_loading_bars": T.IMAGE, + "progress_panel/title_panel": T.PANEL, + "progress_panel/button_panel": T.PANEL, + "modal_progress_screen": T.SCREEN, + "delete_progress_screen": T.SCREEN, + "realms_loading_background": T.PANEL, + "realms_loading_background/solid_blue": T.IMAGE, + "realms_loading_background/solid_blue/gradient": T.IMAGE, + "realms_stories_loading_progress_screen": T.SCREEN, + "world_loading_progress_screen": T.SCREEN, + "world_loading_screen_background": T.IMAGE, + "overworld_loading_background": T.IMAGE, + "overworld_loading_background/background_gradient": T.CUSTOM, + "overworld_loading_progress_screen": T.SCREEN, + "nether_loading_background": T.IMAGE, + "nether_loading_background/background_gradient": T.CUSTOM, + "nether_loading_progress_screen": T.SCREEN, + "theend_loading_background": T.IMAGE, + "theend_loading_background/background_gradient": T.CUSTOM, + "theend_loading_progress_screen": T.SCREEN, + "world_saving_progress_screen": T.SCREEN, + "fetching_edu_cloud_worlds": T.SCREEN, + "edu_cloud_download_progress_screen": T.SCREEN, + "fetching_edu_servers": T.SCREEN, + "world_convert_modal_progress_screen": T.SCREEN, + "progress_screen": T.SCREEN, + "popup_dialog_factory": T.FACTORY, + "progress_screen_content": T.PANEL, + "progress_screen_content/progress_content_panel": T.PANEL, + "progress_screen_content/popup_dialog_factory": T.FACTORY, + "progress_content_panel": T.PANEL, + "progress_content_panel/progress_panel": T.PANEL, + "progress_content_panel/gamepad_helpers": T.PANEL, + "modal_screen_content": T.PANEL, + "modal_screen_content/modal_progress_panel": T.PANEL, + "world_modal_progress_panel": T.PANEL, + "world_modal_progress_panel/common_panel": T.PANEL, + "world_modal_progress_panel/base_content": T.PANEL, + "world_modal_progress_panel/base_content/progress_title_text": T.LABEL, + "world_modal_progress_panel/base_content/progress_bar_text": T.LABEL, + "world_modal_progress_panel/inside_content": T.STACK_PANEL, + "world_modal_progress_panel/inside_content/loading_bar_panel": T.PANEL, + "world_modal_progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars": T.PANEL, + "world_modal_progress_panel/inside_content/loading_bar_panel/progress_loading_bars": T.IMAGE, + "world_modal_progress_panel/inside_content/vertical_padding": T.PANEL, + "world_modal_progress_panel/inside_content/modal_button_panel": T.UNKNOWN, + "world_modal_progress_panel/inside_content/vertical_padding_2": T.PANEL, + "cloud_upload_panel": T.PANEL, + "cloud_upload_panel/common_panel": T.PANEL, + "cloud_upload_panel/base_content": T.PANEL, + "cloud_upload_panel/base_content/progress_title_text": T.LABEL, + "cloud_upload_panel/base_content/progress_text": T.LABEL, + "cloud_upload_panel/base_content/edu_cloud_upload_image": T.STACK_PANEL, + "cloud_upload_panel/base_content/loading_bar_panel": T.PANEL, + "cloud_upload_panel/base_content/loading_bar_panel/progress_loading_bars": T.PANEL, + "cloud_error_panel": T.PANEL, + "cloud_error_panel/common_panel": T.PANEL, + "cloud_error_panel/content_wrapper": T.PANEL, + "cloud_error_panel/content_wrapper/title_wrapper": T.PANEL, + "cloud_error_panel/content_wrapper/title_wrapper/progress_title_text": T.LABEL, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper": T.PANEL, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/tts_border": T.BUTTON, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper": T.STACK_PANEL, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/edu_cloud_error_text": T.LABEL, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/vertical_padding": T.PANEL, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code": T.STACK_PANEL, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code/code_text": T.LABEL, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code/code_number": T.LABEL, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/vertical_padding_2": T.PANEL, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link": T.STACK_PANEL, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/cloud_support_hypertext": T.BUTTON, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/padded_icon": T.PANEL, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/padded_icon/icon": T.IMAGE, + "cloud_error_panel/content_wrapper/button_content": T.STACK_PANEL, + "cloud_error_panel/content_wrapper/button_content/modal_button_panel": T.UNKNOWN, + "cloud_error_panel/content_wrapper/error_button_content": T.STACK_PANEL, + "cloud_error_panel/content_wrapper/error_button_content/download_ok_button": T.BUTTON, + "cloud_error_panel/content_wrapper/error_button_content/download_cancel_button": T.BUTTON, + "cloud_fetch_panel": T.PANEL, + "cloud_fetch_panel/common_panel": T.PANEL, + "cloud_fetch_panel/base_content": T.PANEL, + "cloud_fetch_panel/base_content/progress_title_text": T.LABEL, + "cloud_fetch_panel/base_content/progress_text": T.LABEL, + "cloud_fetch_panel/base_content/edu_cloud_fetch_image": T.STACK_PANEL, + "cloud_fetch_panel/base_content/loading_bar_panel": T.PANEL, + "cloud_fetch_panel/base_content/loading_bar_panel/progress_loading_bars": T.IMAGE, + "server_fetch_panel": T.PANEL, + "server_fetch_panel/common_panel": T.PANEL, + "server_fetch_panel/base_content": T.PANEL, + "server_fetch_panel/base_content/progress_title_text": T.LABEL, + "server_fetch_panel/base_content/progress_text": T.LABEL, + "server_fetch_panel/base_content/edu_server_fetch_image": T.STACK_PANEL, + "server_fetch_panel/base_content/loading_bar_panel": T.PANEL, + "server_fetch_panel/base_content/loading_bar_panel/progress_loading_bars": T.IMAGE, + "cloud_download_panel": T.PANEL, + "cloud_download_panel/common_panel": T.PANEL, + "cloud_download_panel/base_content": T.PANEL, + "cloud_download_panel/base_content/progress_title_text": T.LABEL, + "cloud_download_panel/base_content/progress_bar_text": T.LABEL, + "cloud_download_panel/base_content/edu_cloud_download_image": T.STACK_PANEL, + "cloud_download_panel/loading_bar_panel": T.PANEL, + "cloud_download_panel/loading_bar_panel/progress_loading_bars": T.IMAGE, + "world_convert_modal_progress_screen_content": T.PANEL, + "world_convert_modal_progress_screen_content/mobile_data_icon": T.PANEL, + "world_convert_modal_progress_screen_content/title_panel_content": T.PANEL, + "world_convert_modal_progress_screen_content/world_modal_progress_panel": T.PANEL, + "world_convert_modal_progress_screen_content/popup_dialog_factory": T.FACTORY, + "realms_loading_world_modal_progress_screen_content": T.PANEL, + "realms_loading_world_modal_progress_screen_content/mobile_data_icon": T.PANEL, + "realms_loading_world_modal_progress_screen_content/realms_title_image": T.IMAGE, + "realms_loading_world_modal_progress_screen_content/world_modal_progress_panel": T.PANEL, + "realms_loading_world_modal_progress_screen_content/popup_dialog_factory": T.FACTORY, + "realms_loading_world_modal_progress_screen_content/server_region_connected": T.STACK_PANEL, + "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_label": T.LABEL, + "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_connected_text": T.LABEL, + "realms_loading_world_modal_progress_screen_content/server_region_connected/padding": T.PANEL, + "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_ping_icon": T.IMAGE, + "world_save_modal_progress_screen_content": T.PANEL, + "world_save_modal_progress_screen_content/title_panel_content": T.PANEL, + "world_save_modal_progress_screen_content/world_modal_progress_panel": T.PANEL, + "world_save_modal_progress_screen_content/save_icon": T.IMAGE, + "world_save_modal_progress_screen_content/popup_dialog_factory": T.FACTORY, + "cloud_upload_screen_content": T.PANEL, + "cloud_upload_screen_content/title_panel_content": T.PANEL, + "cloud_upload_screen_content/cloud_upload_panel": T.PANEL, + "cloud_upload_screen_content/cloud_upload_error_panel": T.PANEL, + "cloud_upload_screen_content/popup_dialog_factory": T.FACTORY, + "cloud_upload_screen_content/cloud_conflict_resolution_popup_factory": T.FACTORY, + "edu_cloud_fetch_screen_content": T.PANEL, + "edu_cloud_fetch_screen_content/cloud_fetch_panel": T.PANEL, + "edu_cloud_fetch_screen_content/popup_dialog_factory": T.FACTORY, + "edu_server_fetch_screen_content": T.PANEL, + "edu_server_fetch_screen_content/server_fetch_panel": T.PANEL, + "edu_server_fetch_screen_content/popup_dialog_factory": T.FACTORY, + "cloud_download_screen_content": T.PANEL, + "cloud_download_screen_content/background": T.IMAGE, + "cloud_download_screen_content/cloud_download_panel": T.PANEL, + "cloud_download_screen_content/cloud_download_error_panel": T.PANEL, + "cloud_download_screen_content/popup_dialog_factory": T.FACTORY, + "auto_save": T.IMAGE, + "mobile_data_ios_icon": T.IMAGE, + "mobile_data_android_icon": T.IMAGE, + "mobile_data_icon_text": T.LABEL, + "mobile_data_icon": T.PANEL, + "mobile_data_icon/icon_android": T.IMAGE, + "mobile_data_icon/icon_ios": T.IMAGE, + "mobile_data_icon/text": T.LABEL, } export type RatingPromptType = { - padding_horizontal: T.PANEL - padding_vertical: T.PANEL - rating_prompt_yes_label: T.PANEL - "rating_prompt_yes_label/button_label": T.LABEL - rating_prompt_no_label: T.PANEL - "rating_prompt_no_label/button_label": T.LABEL - rating_prompt_yes_button: T.BUTTON - rating_prompt_no_button: T.BUTTON - dialog_image: T.IMAGE - dialog_image_with_border: T.IMAGE - "dialog_image_with_border/dialog_image": T.IMAGE - button_panel: T.STACK_PANEL - "button_panel/padding_3": T.PANEL - "button_panel/yes_button": T.BUTTON - "button_panel/no_button": T.BUTTON - image_panel: T.STACK_PANEL - "image_panel/padding_2": T.PANEL - "image_panel/dialog_image_with_border": T.IMAGE - main_panel: T.STACK_PANEL - "main_panel/padding_0": T.PANEL - "main_panel/image_panel": T.STACK_PANEL - "main_panel/padding_1": T.PANEL - "main_panel/button_panel": T.STACK_PANEL - rating_prompt_screen: T.SCREEN - rating_prompt_screen_content: T.PANEL + "padding_horizontal": T.PANEL, + "padding_vertical": T.PANEL, + "rating_prompt_yes_label": T.PANEL, + "rating_prompt_yes_label/button_label": T.LABEL, + "rating_prompt_no_label": T.PANEL, + "rating_prompt_no_label/button_label": T.LABEL, + "rating_prompt_yes_button": T.BUTTON, + "rating_prompt_no_button": T.BUTTON, + "dialog_image": T.IMAGE, + "dialog_image_with_border": T.IMAGE, + "dialog_image_with_border/dialog_image": T.IMAGE, + "button_panel": T.STACK_PANEL, + "button_panel/padding_3": T.PANEL, + "button_panel/yes_button": T.BUTTON, + "button_panel/no_button": T.BUTTON, + "image_panel": T.STACK_PANEL, + "image_panel/padding_2": T.PANEL, + "image_panel/dialog_image_with_border": T.IMAGE, + "main_panel": T.STACK_PANEL, + "main_panel/padding_0": T.PANEL, + "main_panel/image_panel": T.STACK_PANEL, + "main_panel/padding_1": T.PANEL, + "main_panel/button_panel": T.STACK_PANEL, + "rating_prompt_screen": T.SCREEN, + "rating_prompt_screen_content": T.PANEL, } export type RealmsCommonType = { - pending_invites_icon: T.IMAGE - dark_banner: T.IMAGE - dark_banner_hover: T.IMAGE - legacy_banner: T.IMAGE - main_banner: T.IMAGE - hollow_banner: T.IMAGE - popup_dialog_bg: T.IMAGE - popup_dialog__play_on_realm: T.INPUT_PANEL - "popup_dialog__play_on_realm/play_on_realm_popup_background": T.IMAGE - "popup_dialog__play_on_realm/gamepad_helpers": T.STACK_PANEL - "popup_dialog__play_on_realm/play_on_realm_popup_content": T.PANEL - play_on_realm_popup_background: T.IMAGE - play_on_realm_popup_content: T.PANEL - "play_on_realm_popup_content/popup_dialog_bg": T.IMAGE - "play_on_realm_popup_content/play_on_realm_popup_dialog_header": T.PANEL - "play_on_realm_popup_content/play_on_realm_popup_dialog_upper_body": T.PANEL - "play_on_realm_popup_content/play_on_realm_popup_dialog_lower_body": T.PANEL - play_on_realm_popup_dialog_header: T.PANEL - "play_on_realm_popup_dialog_header/play_on_realm_popup_dialog_header_text": T.LABEL - "play_on_realm_popup_dialog_header/close_button": T.BUTTON - play_on_realm_popup_dialog_header_text: T.LABEL - play_on_realm_popup_dialog_upper_body: T.PANEL - "play_on_realm_popup_dialog_upper_body/play_on_realm_banner": T.IMAGE - "play_on_realm_popup_dialog_upper_body/play_on_realm_panel": T.PANEL - "play_on_realm_popup_dialog_upper_body/background_panel": T.PANEL - "play_on_realm_popup_dialog_upper_body/background_panel/black_background": T.IMAGE - play_on_realm_panel: T.PANEL - "play_on_realm_panel/play_on_realm_content_panel": T.STACK_PANEL - "play_on_realm_panel/play_on_realm_content_panel/play_image_panel": T.STACK_PANEL - "play_on_realm_panel/play_on_realm_content_panel/play_image_panel/spacing_gap_image": T.PANEL - "play_on_realm_panel/play_on_realm_content_panel/play_image_panel/realms_image": T.IMAGE - "play_on_realm_panel/play_on_realm_content_panel/play_text_panel": T.STACK_PANEL - "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/spacing_gap_text_1": T.PANEL - "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/play_on_realm_text_1": T.LABEL - "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/spacing_gap_text_2": T.PANEL - "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/play_on_realm_text_2": T.LABEL - play_on_realm_popup_dialog_lower_body: T.PANEL - "play_on_realm_popup_dialog_lower_body/button_panel": T.STACK_PANEL - "play_on_realm_popup_dialog_lower_body/button_panel/play_with_friends_button": T.BUTTON - "play_on_realm_popup_dialog_lower_body/button_panel/spacing_gap1": T.PANEL - "play_on_realm_popup_dialog_lower_body/button_panel/play_solo_button": T.BUTTON - "play_on_realm_popup_dialog_lower_body/button_panel/spacing_gap2": T.PANEL - "play_on_realm_popup_dialog_lower_body/button_panel/go_back_button": T.BUTTON + "pending_invites_icon": T.IMAGE, + "dark_banner": T.IMAGE, + "dark_banner_hover": T.IMAGE, + "legacy_banner": T.IMAGE, + "main_banner": T.IMAGE, + "hollow_banner": T.IMAGE, + "popup_dialog_bg": T.IMAGE, + "popup_dialog__play_on_realm": T.INPUT_PANEL, + "popup_dialog__play_on_realm/play_on_realm_popup_background": T.IMAGE, + "popup_dialog__play_on_realm/gamepad_helpers": T.STACK_PANEL, + "popup_dialog__play_on_realm/play_on_realm_popup_content": T.PANEL, + "play_on_realm_popup_background": T.IMAGE, + "play_on_realm_popup_content": T.PANEL, + "play_on_realm_popup_content/popup_dialog_bg": T.IMAGE, + "play_on_realm_popup_content/play_on_realm_popup_dialog_header": T.PANEL, + "play_on_realm_popup_content/play_on_realm_popup_dialog_upper_body": T.PANEL, + "play_on_realm_popup_content/play_on_realm_popup_dialog_lower_body": T.PANEL, + "play_on_realm_popup_dialog_header": T.PANEL, + "play_on_realm_popup_dialog_header/play_on_realm_popup_dialog_header_text": T.LABEL, + "play_on_realm_popup_dialog_header/close_button": T.BUTTON, + "play_on_realm_popup_dialog_header_text": T.LABEL, + "play_on_realm_popup_dialog_upper_body": T.PANEL, + "play_on_realm_popup_dialog_upper_body/play_on_realm_banner": T.IMAGE, + "play_on_realm_popup_dialog_upper_body/play_on_realm_panel": T.PANEL, + "play_on_realm_popup_dialog_upper_body/background_panel": T.PANEL, + "play_on_realm_popup_dialog_upper_body/background_panel/black_background": T.IMAGE, + "play_on_realm_panel": T.PANEL, + "play_on_realm_panel/play_on_realm_content_panel": T.STACK_PANEL, + "play_on_realm_panel/play_on_realm_content_panel/play_image_panel": T.STACK_PANEL, + "play_on_realm_panel/play_on_realm_content_panel/play_image_panel/spacing_gap_image": T.PANEL, + "play_on_realm_panel/play_on_realm_content_panel/play_image_panel/realms_image": T.IMAGE, + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel": T.STACK_PANEL, + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/spacing_gap_text_1": T.PANEL, + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/play_on_realm_text_1": T.LABEL, + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/spacing_gap_text_2": T.PANEL, + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/play_on_realm_text_2": T.LABEL, + "play_on_realm_popup_dialog_lower_body": T.PANEL, + "play_on_realm_popup_dialog_lower_body/button_panel": T.STACK_PANEL, + "play_on_realm_popup_dialog_lower_body/button_panel/play_with_friends_button": T.BUTTON, + "play_on_realm_popup_dialog_lower_body/button_panel/spacing_gap1": T.PANEL, + "play_on_realm_popup_dialog_lower_body/button_panel/play_solo_button": T.BUTTON, + "play_on_realm_popup_dialog_lower_body/button_panel/spacing_gap2": T.PANEL, + "play_on_realm_popup_dialog_lower_body/button_panel/go_back_button": T.BUTTON, } export type RealmsCreateType = { - title_label: T.LABEL - label: T.LABEL - enter_name_panel: T.PANEL - "enter_name_panel/name_label_0": T.LABEL - "enter_name_panel/name_edit": T.EDIT_BOX - selected_option_checkbox: T.IMAGE - selected_option_checkbox_empty: T.IMAGE - selected_option_checkbox_filled: T.IMAGE - checkbox_panel: T.PANEL - "checkbox_panel/selected_option_checkbox_empty": T.IMAGE - "checkbox_panel/selected_option_checkbox_filled": T.IMAGE - "checkbox_panel/button_label": T.LABEL - realms_option_button: T.BUTTON - choose_duration_panel: T.PANEL - "choose_duration_panel/name_label": T.LABEL - "choose_duration_panel/choose_duration_stack_panel": T.INPUT_PANEL - "choose_duration_panel/choose_duration_stack_panel/short": T.BUTTON - "choose_duration_panel/choose_duration_stack_panel/long": T.BUTTON - choose_tier_panel: T.PANEL - "choose_tier_panel/name_label": T.LABEL - "choose_tier_panel/choose_tier_stack_panel": T.INPUT_PANEL - "choose_tier_panel/choose_tier_stack_panel/player_count_2": T.BUTTON - view_terms_button: T.BUTTON - privacy_policy_button: T.BUTTON - terms_and_conditions_panel: T.PANEL - "terms_and_conditions_panel/name_label": T.LABEL - "terms_and_conditions_panel/terms_string_panel": T.PANEL - "terms_and_conditions_panel/terms_string_panel/banner_fill": T.IMAGE - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": T.STACK_PANEL - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": T.PANEL - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": T.TOGGLE - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": T.BUTTON - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": T.BUTTON - confirmation_panel: T.PANEL - "confirmation_panel/create_realms_button": T.BUTTON - create_realms_stack_panel: T.STACK_PANEL - "create_realms_stack_panel/padding_0": T.PANEL - "create_realms_stack_panel/create_realms_text_panel": T.PANEL - create_realms_text_panel: T.PANEL - "create_realms_text_panel/create": T.LABEL - stack_item: T.PANEL - scroll_stack_panel: T.STACK_PANEL - "scroll_stack_panel/name": T.PANEL - "scroll_stack_panel/name/enter_name_panel": T.PANEL - "scroll_stack_panel/padding_0": T.PANEL - "scroll_stack_panel/duration": T.PANEL - "scroll_stack_panel/duration/choose_duration_panel": T.PANEL - "scroll_stack_panel/tier": T.PANEL - "scroll_stack_panel/tier/choose_tier_panel": T.PANEL - "scroll_stack_panel/toc": T.PANEL - "scroll_stack_panel/toc/terms_and_conditions_panel": T.PANEL - "scroll_stack_panel/padding_1": T.PANEL - "scroll_stack_panel/realms_terms_info": T.IMAGE - "scroll_stack_panel/realms_terms_info/label_panel": T.STACK_PANEL - "scroll_stack_panel/realms_terms_info/label_panel/padding_1": T.PANEL - "scroll_stack_panel/realms_terms_info/label_panel/text_description_wrapper": T.PANEL - "scroll_stack_panel/realms_terms_info/label_panel/text_description_wrapper_extra": T.PANEL - "scroll_stack_panel/realms_terms_info/label_panel/padding_2": T.PANEL - "scroll_stack_panel/realms_switch_nso_info": T.PANEL - terms_section: T.PANEL - "terms_section/terms_section_label": T.LABEL - terms_section_extra: T.PANEL - "terms_section_extra/terms_section_label": T.LABEL - main_panel: T.STACK_PANEL - "main_panel/scrolling_panel": T.PANEL - "main_panel/padding_0": T.PANEL - "main_panel/confirmation_panel": T.PANEL - "main_panel/padding_1": T.PANEL - content: T.PANEL - "content/main_panel": T.STACK_PANEL - realms_create_screen: T.SCREEN - realms_create_content_and_factory: T.PANEL - "realms_create_content_and_factory/realms_create_content": T.PANEL - "realms_create_content_and_factory/popup_dialog_factory": T.FACTORY + "title_label": T.LABEL, + "label": T.LABEL, + "enter_name_panel": T.PANEL, + "enter_name_panel/name_label_0": T.LABEL, + "enter_name_panel/name_edit": T.EDIT_BOX, + "selected_option_checkbox": T.IMAGE, + "selected_option_checkbox_empty": T.IMAGE, + "selected_option_checkbox_filled": T.IMAGE, + "checkbox_panel": T.PANEL, + "checkbox_panel/selected_option_checkbox_empty": T.IMAGE, + "checkbox_panel/selected_option_checkbox_filled": T.IMAGE, + "checkbox_panel/button_label": T.LABEL, + "realms_option_button": T.BUTTON, + "choose_duration_panel": T.PANEL, + "choose_duration_panel/name_label": T.LABEL, + "choose_duration_panel/choose_duration_stack_panel": T.INPUT_PANEL, + "choose_duration_panel/choose_duration_stack_panel/short": T.BUTTON, + "choose_duration_panel/choose_duration_stack_panel/long": T.BUTTON, + "choose_tier_panel": T.PANEL, + "choose_tier_panel/name_label": T.LABEL, + "choose_tier_panel/choose_tier_stack_panel": T.INPUT_PANEL, + "choose_tier_panel/choose_tier_stack_panel/player_count_2": T.BUTTON, + "view_terms_button": T.BUTTON, + "privacy_policy_button": T.BUTTON, + "terms_and_conditions_panel": T.PANEL, + "terms_and_conditions_panel/name_label": T.LABEL, + "terms_and_conditions_panel/terms_string_panel": T.PANEL, + "terms_and_conditions_panel/terms_string_panel/banner_fill": T.IMAGE, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": T.STACK_PANEL, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": T.PANEL, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": T.TOGGLE, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": T.BUTTON, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": T.BUTTON, + "confirmation_panel": T.PANEL, + "confirmation_panel/create_realms_button": T.BUTTON, + "create_realms_stack_panel": T.STACK_PANEL, + "create_realms_stack_panel/padding_0": T.PANEL, + "create_realms_stack_panel/create_realms_text_panel": T.PANEL, + "create_realms_text_panel": T.PANEL, + "create_realms_text_panel/create": T.LABEL, + "stack_item": T.PANEL, + "scroll_stack_panel": T.STACK_PANEL, + "scroll_stack_panel/name": T.PANEL, + "scroll_stack_panel/name/enter_name_panel": T.PANEL, + "scroll_stack_panel/padding_0": T.PANEL, + "scroll_stack_panel/duration": T.PANEL, + "scroll_stack_panel/duration/choose_duration_panel": T.PANEL, + "scroll_stack_panel/tier": T.PANEL, + "scroll_stack_panel/tier/choose_tier_panel": T.PANEL, + "scroll_stack_panel/toc": T.PANEL, + "scroll_stack_panel/toc/terms_and_conditions_panel": T.PANEL, + "scroll_stack_panel/padding_1": T.PANEL, + "scroll_stack_panel/realms_terms_info": T.IMAGE, + "scroll_stack_panel/realms_terms_info/label_panel": T.STACK_PANEL, + "scroll_stack_panel/realms_terms_info/label_panel/padding_1": T.PANEL, + "scroll_stack_panel/realms_terms_info/label_panel/text_description_wrapper": T.PANEL, + "scroll_stack_panel/realms_terms_info/label_panel/text_description_wrapper_extra": T.PANEL, + "scroll_stack_panel/realms_terms_info/label_panel/padding_2": T.PANEL, + "scroll_stack_panel/realms_switch_nso_info": T.PANEL, + "terms_section": T.PANEL, + "terms_section/terms_section_label": T.LABEL, + "terms_section_extra": T.PANEL, + "terms_section_extra/terms_section_label": T.LABEL, + "main_panel": T.STACK_PANEL, + "main_panel/scrolling_panel": T.PANEL, + "main_panel/padding_0": T.PANEL, + "main_panel/confirmation_panel": T.PANEL, + "main_panel/padding_1": T.PANEL, + "content": T.PANEL, + "content/main_panel": T.STACK_PANEL, + "realms_create_screen": T.SCREEN, + "realms_create_content_and_factory": T.PANEL, + "realms_create_content_and_factory/realms_create_content": T.PANEL, + "realms_create_content_and_factory/popup_dialog_factory": T.FACTORY, } export type RealmsPendingInvitationsType = { - panel_text: T.LABEL - banner_panel_base: T.PANEL - "banner_panel_base/background": T.UNKNOWN - "banner_panel_base/indent_panel": T.PANEL - "banner_panel_base/indent_panel/content": T.UNKNOWN - banner_panel: T.PANEL - banner_panel_hover: T.PANEL - realm_invite_button: T.BUTTON - realm_name_label: T.LABEL - realm_owner_label: T.LABEL - tts_gamertag_item_info_wrapper: T.PANEL - gamertag_item_info: T.PANEL - "gamertag_item_info/rnl": T.LABEL - "gamertag_item_info/rol": T.LABEL - accept_button_content: T.IMAGE - decline_button_content: T.IMAGE - realm_accept_button: T.BUTTON - realm_decline_button: T.BUTTON - realm_accepted_panel: T.LABEL - gamertag_item_content: T.PANEL - "gamertag_item_content/lb": T.PANEL - "gamertag_item_content/a": T.BUTTON - "gamertag_item_content/d": T.BUTTON - "gamertag_item_content/ap": T.LABEL - gamertag_item: T.PANEL - gamertag_item_grid: T.GRID - show_friends_only_toggle_state_content: T.STACK_PANEL - "show_friends_only_toggle_state_content/checkbox_holding_panel": T.PANEL - "show_friends_only_toggle_state_content/checkbox_holding_panel/hide_invites": T.UNKNOWN - "show_friends_only_toggle_state_content/hide_invites_text_panel": T.PANEL - "show_friends_only_toggle_state_content/hide_invites_text_panel/hide_invites_text": T.LABEL - show_friends_only_toggle_on_state_content: T.STACK_PANEL - show_friends_only_toggle_on_state: T.PANEL - show_friends_only_toggle_off_state_content: T.STACK_PANEL - show_friends_only_toggle_off_state: T.PANEL - show_friends_only_toggle_on_hover_state_content: T.STACK_PANEL - show_friends_only_toggle_on_hover_state: T.PANEL - show_friends_only_toggle_off_hover_state_content: T.STACK_PANEL - show_friends_only_toggle_off_hover_state: T.PANEL - show_friends_only_toggle_on_locked_state_content: T.STACK_PANEL - show_friends_only_toggle_on_locked_state: T.PANEL - show_friends_only_toggle_off_locked_state_content: T.STACK_PANEL - show_friends_only_toggle_off_locked_state: T.PANEL - show_friends_only_toggle: T.TOGGLE - gamepad_helpers: T.PANEL - "gamepad_helpers/a": T.STACK_PANEL - "gamepad_helpers/b": T.STACK_PANEL - no_invites_label_wrapper: T.PANEL - no_invites_label: T.PANEL - "no_invites_label/label": T.LABEL - realms_pending_invitation_list: T.STACK_PANEL - "realms_pending_invitation_list/upper_padding": T.PANEL - "realms_pending_invitation_list/sfop": T.TOGGLE - "realms_pending_invitation_list/gig": T.GRID - "realms_pending_invitation_list/lower_padding": T.PANEL - "realms_pending_invitation_list/nil": T.PANEL - content_panel: T.PANEL - realms_pending_invitations_screen: T.SCREEN - realms_invitation_screen_content: T.PANEL - "realms_invitation_screen_content/root_panel": T.INPUT_PANEL - "realms_invitation_screen_content/root_panel/main_panel": T.PANEL - "realms_invitation_screen_content/root_panel/sgh": T.PANEL + "panel_text": T.LABEL, + "banner_panel_base": T.PANEL, + "banner_panel_base/background": T.UNKNOWN, + "banner_panel_base/indent_panel": T.PANEL, + "banner_panel_base/indent_panel/content": T.UNKNOWN, + "banner_panel": T.PANEL, + "banner_panel_hover": T.PANEL, + "realm_invite_button": T.BUTTON, + "realm_name_label": T.LABEL, + "realm_owner_label": T.LABEL, + "tts_gamertag_item_info_wrapper": T.PANEL, + "gamertag_item_info": T.PANEL, + "gamertag_item_info/rnl": T.LABEL, + "gamertag_item_info/rol": T.LABEL, + "accept_button_content": T.IMAGE, + "decline_button_content": T.IMAGE, + "realm_accept_button": T.BUTTON, + "realm_decline_button": T.BUTTON, + "realm_accepted_panel": T.LABEL, + "gamertag_item_content": T.PANEL, + "gamertag_item_content/lb": T.PANEL, + "gamertag_item_content/a": T.BUTTON, + "gamertag_item_content/d": T.BUTTON, + "gamertag_item_content/ap": T.LABEL, + "gamertag_item": T.PANEL, + "gamertag_item_grid": T.GRID, + "show_friends_only_toggle_state_content": T.STACK_PANEL, + "show_friends_only_toggle_state_content/checkbox_holding_panel": T.PANEL, + "show_friends_only_toggle_state_content/checkbox_holding_panel/hide_invites": T.UNKNOWN, + "show_friends_only_toggle_state_content/hide_invites_text_panel": T.PANEL, + "show_friends_only_toggle_state_content/hide_invites_text_panel/hide_invites_text": T.LABEL, + "show_friends_only_toggle_on_state_content": T.STACK_PANEL, + "show_friends_only_toggle_on_state": T.PANEL, + "show_friends_only_toggle_off_state_content": T.STACK_PANEL, + "show_friends_only_toggle_off_state": T.PANEL, + "show_friends_only_toggle_on_hover_state_content": T.STACK_PANEL, + "show_friends_only_toggle_on_hover_state": T.PANEL, + "show_friends_only_toggle_off_hover_state_content": T.STACK_PANEL, + "show_friends_only_toggle_off_hover_state": T.PANEL, + "show_friends_only_toggle_on_locked_state_content": T.STACK_PANEL, + "show_friends_only_toggle_on_locked_state": T.PANEL, + "show_friends_only_toggle_off_locked_state_content": T.STACK_PANEL, + "show_friends_only_toggle_off_locked_state": T.PANEL, + "show_friends_only_toggle": T.TOGGLE, + "gamepad_helpers": T.PANEL, + "gamepad_helpers/a": T.STACK_PANEL, + "gamepad_helpers/b": T.STACK_PANEL, + "no_invites_label_wrapper": T.PANEL, + "no_invites_label": T.PANEL, + "no_invites_label/label": T.LABEL, + "realms_pending_invitation_list": T.STACK_PANEL, + "realms_pending_invitation_list/upper_padding": T.PANEL, + "realms_pending_invitation_list/sfop": T.TOGGLE, + "realms_pending_invitation_list/gig": T.GRID, + "realms_pending_invitation_list/lower_padding": T.PANEL, + "realms_pending_invitation_list/nil": T.PANEL, + "content_panel": T.PANEL, + "realms_pending_invitations_screen": T.SCREEN, + "realms_invitation_screen_content": T.PANEL, + "realms_invitation_screen_content/root_panel": T.INPUT_PANEL, + "realms_invitation_screen_content/root_panel/main_panel": T.PANEL, + "realms_invitation_screen_content/root_panel/sgh": T.PANEL, } export type RealmsSlotsType = { - vertical_padding: T.PANEL - horizontal_padding: T.PANEL - horizontal_padding_sibling_height: T.PANEL - realms_background: T.PANEL - "realms_background/gradient": T.IMAGE - "realms_background/particle_1": T.IMAGE - "realms_background/particle_2": T.IMAGE - plus: T.IMAGE - check: T.IMAGE - world_thumbnail: T.IMAGE - realms_stories_icon_glyph: T.IMAGE - "realms_stories_icon_glyph/realms_stories_icon": T.IMAGE - play_button: T.BUTTON - edit_realm_button: T.BUTTON - realms_feed_button: T.BUTTON - unread_story_count_text: T.LABEL - unread_story_count_text_background: T.IMAGE - unread_story_count_panel: T.PANEL - "unread_story_count_panel/text": T.LABEL - "unread_story_count_panel/text/background": T.IMAGE - edit_world_button_panel: T.STACK_PANEL - "edit_world_button_panel/edit_world_button": T.BUTTON - "edit_world_button_panel/padding": T.PANEL - "edit_world_button_panel/activate_world_button": T.BUTTON - world_slot_button: T.BUTTON - world_slot_button_content: T.STACK_PANEL - "world_slot_button_content/world_slot_top": T.PANEL - "world_slot_button_content/world_slot_top/background": T.IMAGE - "world_slot_button_content/world_slot_top/add_world_image_panel": T.PANEL - "world_slot_button_content/world_slot_top/add_world_image_panel/plus_image": T.IMAGE - "world_slot_button_content/world_slot_top/world_thumbnail_image_panel": T.PANEL - "world_slot_button_content/world_slot_top/world_thumbnail_image_panel/world_thumbnail": T.IMAGE - "world_slot_button_content/world_slot_top/edit_world_button_panel": T.STACK_PANEL - "world_slot_button_content/world_slot_top/foreground": T.IMAGE - "world_slot_button_content/world_slot_top/check_image": T.IMAGE - "world_slot_button_content/world_slot_bottom": T.PANEL - "world_slot_button_content/world_slot_bottom/divider_line_black": T.IMAGE - "world_slot_button_content/world_slot_bottom/divider_line_white": T.IMAGE - "world_slot_button_content/world_slot_bottom/add_world_text_panel": T.PANEL - "world_slot_button_content/world_slot_bottom/add_world_text_panel/background_grey": T.IMAGE - "world_slot_button_content/world_slot_bottom/add_world_text_panel/background_green": T.IMAGE - "world_slot_button_content/world_slot_bottom/add_world_text_panel/add_world_text": T.LABEL - "world_slot_button_content/world_slot_bottom/world_info_panel": T.PANEL - "world_slot_button_content/world_slot_bottom/world_info_panel/background": T.IMAGE - "world_slot_button_content/world_slot_bottom/world_info_panel/background_green": T.IMAGE - "world_slot_button_content/world_slot_bottom/world_info_panel/world_info_stack_panel": T.STACK_PANEL - world_info_stack_panel: T.STACK_PANEL - "world_info_stack_panel/world_name_panel": T.PANEL - "world_info_stack_panel/world_name_panel/world_name": T.LABEL - "world_info_stack_panel/world_type_panel": T.PANEL - "world_info_stack_panel/world_type_panel/world_type": T.LABEL - "world_info_stack_panel/bottom_padding": T.PANEL - main_stack_panel: T.STACK_PANEL - "main_stack_panel/padding_0": T.PANEL - "main_stack_panel/button_panel": T.STACK_PANEL - "main_stack_panel/button_panel/play_button": T.BUTTON - "main_stack_panel/button_panel/left_padding": T.PANEL - "main_stack_panel/button_panel/edit_realm_button": T.BUTTON - "main_stack_panel/button_panel/right_padding": T.PANEL - "main_stack_panel/button_panel/feed_panel_with_unread_count": T.PANEL - "main_stack_panel/button_panel/feed_panel_with_unread_count/feed_panel": T.PANEL - "main_stack_panel/button_panel/feed_panel_with_unread_count/feed_panel/realms_feed_button": T.BUTTON - "main_stack_panel/button_panel/feed_panel_with_unread_count/unread_story_count": T.PANEL - "main_stack_panel/padding_1": T.PANEL - "main_stack_panel/text_panel_0": T.PANEL - "main_stack_panel/text_panel_0/text": T.LABEL - "main_stack_panel/padding_2": T.PANEL - "main_stack_panel/worlds_panel": T.STACK_PANEL - "main_stack_panel/worlds_panel/world_slot_1": T.BUTTON - "main_stack_panel/worlds_panel/padding_0": T.PANEL - "main_stack_panel/worlds_panel/world_slot_2": T.BUTTON - "main_stack_panel/worlds_panel/padding_1": T.PANEL - "main_stack_panel/worlds_panel/world_slot_3": T.BUTTON - "main_stack_panel/padding_3": T.PANEL - "main_stack_panel/text_panel_1": T.PANEL - "main_stack_panel/text_panel_1/text": T.LABEL - realms_slots_screen: T.SCREEN - realms_slots_screen_content: T.PANEL - "realms_slots_screen_content/background": T.STACK_PANEL - realms_slots_screen_content_panel: T.PANEL - "realms_slots_screen_content_panel/main_scroll_panel": T.PANEL + "vertical_padding": T.PANEL, + "horizontal_padding": T.PANEL, + "horizontal_padding_sibling_height": T.PANEL, + "realms_background": T.PANEL, + "realms_background/gradient": T.IMAGE, + "realms_background/particle_1": T.IMAGE, + "realms_background/particle_2": T.IMAGE, + "plus": T.IMAGE, + "check": T.IMAGE, + "world_thumbnail": T.IMAGE, + "realms_stories_icon_glyph": T.IMAGE, + "realms_stories_icon_glyph/realms_stories_icon": T.IMAGE, + "play_button": T.BUTTON, + "edit_realm_button": T.BUTTON, + "realms_feed_button": T.BUTTON, + "unread_story_count_text": T.LABEL, + "unread_story_count_text_background": T.IMAGE, + "unread_story_count_panel": T.PANEL, + "unread_story_count_panel/text": T.LABEL, + "unread_story_count_panel/text/background": T.IMAGE, + "edit_world_button_panel": T.STACK_PANEL, + "edit_world_button_panel/edit_world_button": T.BUTTON, + "edit_world_button_panel/padding": T.PANEL, + "edit_world_button_panel/activate_world_button": T.BUTTON, + "world_slot_button": T.BUTTON, + "world_slot_button_content": T.STACK_PANEL, + "world_slot_button_content/world_slot_top": T.PANEL, + "world_slot_button_content/world_slot_top/background": T.IMAGE, + "world_slot_button_content/world_slot_top/add_world_image_panel": T.PANEL, + "world_slot_button_content/world_slot_top/add_world_image_panel/plus_image": T.IMAGE, + "world_slot_button_content/world_slot_top/world_thumbnail_image_panel": T.PANEL, + "world_slot_button_content/world_slot_top/world_thumbnail_image_panel/world_thumbnail": T.IMAGE, + "world_slot_button_content/world_slot_top/edit_world_button_panel": T.STACK_PANEL, + "world_slot_button_content/world_slot_top/foreground": T.IMAGE, + "world_slot_button_content/world_slot_top/check_image": T.IMAGE, + "world_slot_button_content/world_slot_bottom": T.PANEL, + "world_slot_button_content/world_slot_bottom/divider_line_black": T.IMAGE, + "world_slot_button_content/world_slot_bottom/divider_line_white": T.IMAGE, + "world_slot_button_content/world_slot_bottom/add_world_text_panel": T.PANEL, + "world_slot_button_content/world_slot_bottom/add_world_text_panel/background_grey": T.IMAGE, + "world_slot_button_content/world_slot_bottom/add_world_text_panel/background_green": T.IMAGE, + "world_slot_button_content/world_slot_bottom/add_world_text_panel/add_world_text": T.LABEL, + "world_slot_button_content/world_slot_bottom/world_info_panel": T.PANEL, + "world_slot_button_content/world_slot_bottom/world_info_panel/background": T.IMAGE, + "world_slot_button_content/world_slot_bottom/world_info_panel/background_green": T.IMAGE, + "world_slot_button_content/world_slot_bottom/world_info_panel/world_info_stack_panel": T.STACK_PANEL, + "world_info_stack_panel": T.STACK_PANEL, + "world_info_stack_panel/world_name_panel": T.PANEL, + "world_info_stack_panel/world_name_panel/world_name": T.LABEL, + "world_info_stack_panel/world_type_panel": T.PANEL, + "world_info_stack_panel/world_type_panel/world_type": T.LABEL, + "world_info_stack_panel/bottom_padding": T.PANEL, + "main_stack_panel": T.STACK_PANEL, + "main_stack_panel/padding_0": T.PANEL, + "main_stack_panel/button_panel": T.STACK_PANEL, + "main_stack_panel/button_panel/play_button": T.BUTTON, + "main_stack_panel/button_panel/left_padding": T.PANEL, + "main_stack_panel/button_panel/edit_realm_button": T.BUTTON, + "main_stack_panel/button_panel/right_padding": T.PANEL, + "main_stack_panel/button_panel/feed_panel_with_unread_count": T.PANEL, + "main_stack_panel/button_panel/feed_panel_with_unread_count/feed_panel": T.PANEL, + "main_stack_panel/button_panel/feed_panel_with_unread_count/feed_panel/realms_feed_button": T.BUTTON, + "main_stack_panel/button_panel/feed_panel_with_unread_count/unread_story_count": T.PANEL, + "main_stack_panel/padding_1": T.PANEL, + "main_stack_panel/text_panel_0": T.PANEL, + "main_stack_panel/text_panel_0/text": T.LABEL, + "main_stack_panel/padding_2": T.PANEL, + "main_stack_panel/worlds_panel": T.STACK_PANEL, + "main_stack_panel/worlds_panel/world_slot_1": T.BUTTON, + "main_stack_panel/worlds_panel/padding_0": T.PANEL, + "main_stack_panel/worlds_panel/world_slot_2": T.BUTTON, + "main_stack_panel/worlds_panel/padding_1": T.PANEL, + "main_stack_panel/worlds_panel/world_slot_3": T.BUTTON, + "main_stack_panel/padding_3": T.PANEL, + "main_stack_panel/text_panel_1": T.PANEL, + "main_stack_panel/text_panel_1/text": T.LABEL, + "realms_slots_screen": T.SCREEN, + "realms_slots_screen_content": T.PANEL, + "realms_slots_screen_content/background": T.STACK_PANEL, + "realms_slots_screen_content_panel": T.PANEL, + "realms_slots_screen_content_panel/main_scroll_panel": T.PANEL, } export type RealmsSettingsType = { - settings_screen: T.SCREEN - generic_section: T.STACK_PANEL - generic_section_wrapper: T.PANEL - "generic_section_wrapper/generic_section": T.STACK_PANEL - checkbox_image: T.IMAGE - checkbox_unchecked_state: T.IMAGE - checkbox_checked_state: T.IMAGE - checkbox_unchecked_hover_state: T.IMAGE - checkbox_checked_hover_state: T.IMAGE - checkbox_unchecked_locked_state: T.IMAGE - checkbox_checked_locked_state: T.IMAGE - player_count_label: T.PANEL - realm_duration_label: T.PANEL - realm_subscription_origin_label: T.IMAGE - realm_consumable_to_subscription_info_label: T.PANEL - manage_subscriptions_button: T.BUTTON - delete_realm_button: T.BUTTON - open_realm_button: T.BUTTON - close_realm_button: T.BUTTON - subscriptions_section: T.PANEL - "subscriptions_section/loading_view": T.LABEL - "subscriptions_section/loading_failed_view": T.LABEL - "subscriptions_section/loaded_view": T.STACK_PANEL - "subscriptions_section/loaded_view/player_count_label": T.PANEL - "subscriptions_section/loaded_view/realm_duration_label": T.PANEL - "subscriptions_section/loaded_view/possible_store_mismatch": T.PANEL - "subscriptions_section/loaded_view/realm_subscription_origin_label": T.IMAGE - "subscriptions_section/loaded_view/realm_consumable_to_subscription_info_label": T.PANEL - "subscriptions_section/loaded_view/_0": T.PANEL - "subscriptions_section/loaded_view/delete_realm_button": T.BUTTON - "subscriptions_section/loaded_view/open_realm_button": T.BUTTON - "subscriptions_section/loaded_view/close_realm_button": T.BUTTON - "subscriptions_section/loaded_view/_1": T.PANEL - "subscriptions_section/loaded_view/manage_subscriptions_button": T.BUTTON - invite_link_item_content: T.STACK_PANEL - "invite_link_item_content/invite_link_item_name_and_expiry_text": T.STACK_PANEL - "invite_link_item_content/invite_link_item_name_and_expiry_text/name_text": T.LABEL - "invite_link_item_content/invite_link_item_name_and_expiry_text/spacing_gap": T.PANEL - "invite_link_item_content/invite_link_item_name_and_expiry_text/expiry_text": T.LABEL - "invite_link_item_content/invite_link_item_state_text": T.PANEL - "invite_link_item_content/invite_link_item_state_text/state_text": T.LABEL - "invite_link_item_content/spacing_gap": T.PANEL - invite_link_item_template: T.PANEL - "invite_link_item_template/invite_link_item_button": T.BUTTON - invite_links_section: T.PANEL - "invite_links_section/loading_view": T.LABEL - "invite_links_section/loading_failed_view": T.LABEL - "invite_links_section/loaded_view": T.STACK_PANEL - "invite_links_section/loaded_view/spacing_gap_0": T.PANEL - "invite_links_section/loaded_view/invite_links_info": T.PANEL - "invite_links_section/loaded_view/invite_links_grid": T.STACK_PANEL - "invite_links_section/loaded_view/spacing_gap_1": T.PANEL - "invite_links_section/loaded_view/add_invite_link_button": T.BUTTON - advanced_section: T.PANEL - "advanced_section/loading_view": T.LABEL - "advanced_section/loading_failed_view": T.LABEL - "advanced_section/loaded_view": T.STACK_PANEL - "advanced_section/loaded_view/spacing_gap_0": T.PANEL - "advanced_section/loaded_view/server_preference": T.PANEL - "advanced_section/loaded_view/set_region_content": T.PANEL - "advanced_section/loaded_view/changes_not_applied_panel": T.STACK_PANEL - "advanced_section/loaded_view/changes_not_applied_panel/changes_not_applied_label": T.LABEL - "advanced_section/loaded_view/spacing_gap_1": T.PANEL - "advanced_section/loaded_view/region_help_button": T.BUTTON - set_region_dropdown: T.PANEL - region_dropdown_content: T.PANEL - region_dropdown_radio: T.PANEL - region_help_button_content: T.STACK_PANEL - "region_help_button_content/external_link_icon": T.IMAGE - "region_help_button_content/spacing_gap_1": T.PANEL - "region_help_button_content/help_text": T.LABEL - tts_focus_border: T.BUTTON - saves_section: T.STACK_PANEL - "saves_section/padding_saves_section_top": T.PANEL - "saves_section/loaded_view": T.STACK_PANEL - "saves_section/loaded_view/storage_bar_header_panel": T.PANEL - "saves_section/loaded_view/storage_bar_header_panel/storage_bar_with_header": T.STACK_PANEL - "saves_section/loaded_view/storage_bar_header_panel/focus_border": T.BUTTON - "saves_section/loaded_view/padding3": T.PANEL - "saves_section/loaded_view/save_active_world_button": T.BUTTON - "saves_section/loaded_view/padding4": T.PANEL - "saves_section/loaded_view/active_world_info": T.PANEL - "saves_section/loaded_view/padding5": T.PANEL - "saves_section/loaded_view/storage_warning": T.PANEL - "saves_section/loaded_view/storage_warning/warning_text_panel": T.STACK_PANEL - "saves_section/loaded_view/storage_warning/focus_border": T.BUTTON - "saves_section/loaded_view/padding6": T.PANEL - "saves_section/loaded_view/save_list_container": T.PANEL - "saves_section/loaded_view/save_list_container/tab_buttons": T.STACK_PANEL - "saves_section/loaded_view/save_list_container/tab_content_panel": T.IMAGE - "saves_section/loaded_view/padding_loaded_view_bottom": T.PANEL - "saves_section/loaded_view/restore_info": T.PANEL - "saves_section/loaded_view/saves_help_panel": T.STACK_PANEL - "saves_section/loading_indicator": T.STACK_PANEL - "saves_section/loading_indicator/restore_info": T.PANEL - "saves_section/loading_indicator/loading_text_panel": T.PANEL - "saves_section/loading_indicator/loading_text_panel/loading_text": T.LABEL - "saves_section/loading_indicator/loading_text_panel/loading_text_padding": T.PANEL - "saves_section/loading_indicator/loading_bars": T.PANEL - "saves_section/loading_indicator/loading_bars/progress_loading_bars": T.IMAGE - "saves_section/loading_failed_panel": T.STACK_PANEL - "saves_section/loading_failed_panel/restore_info": T.PANEL - "saves_section/loading_failed_panel/saves_help_panel": T.STACK_PANEL - "saves_section/loading_failed_panel/loading_failed_message": T.PANEL - saves_help_panel: T.STACK_PANEL - "saves_help_panel/padding_help_button_top": T.PANEL - "saves_help_panel/saves_help_button": T.BUTTON - "saves_help_panel/padding_help_button_bottom": T.PANEL - saves_help_button_content: T.STACK_PANEL - "saves_help_button_content/external_link_icon": T.IMAGE - "saves_help_button_content/spacing_gap_1": T.PANEL - "saves_help_button_content/help_text": T.LABEL - storage_bar_label_stack_panel: T.STACK_PANEL - "storage_bar_label_stack_panel/text_left": T.LABEL - "storage_bar_label_stack_panel/padding": T.PANEL - "storage_bar_label_stack_panel/text_right": T.LABEL - storage_bar_panel_with_header: T.STACK_PANEL - "storage_bar_panel_with_header/label_panel": T.PANEL - "storage_bar_panel_with_header/label_panel/heading_label": T.UNKNOWN - "storage_bar_panel_with_header/padding2": T.PANEL - "storage_bar_panel_with_header/storage_bar_panel": T.STACK_PANEL - realm_storage_heading_label: T.LABEL - storage_bar_panel: T.STACK_PANEL - "storage_bar_panel/storage_bar_label": T.STACK_PANEL - "storage_bar_panel/padding": T.PANEL - "storage_bar_panel/storage_bar": T.PANEL - storage_bar_panel_with_tts_focus_border: T.PANEL - "storage_bar_panel_with_tts_focus_border/storage_bar_panel": T.STACK_PANEL - "storage_bar_panel_with_tts_focus_border/focus_border": T.BUTTON - storage_bar: T.PANEL - "storage_bar/empty_progress_bar_beveled": T.IMAGE - "storage_bar/storage_fill": T.IMAGE - "storage_bar/storage_bar_beveled_overlay": T.IMAGE - active_world_info_panel: T.PANEL - "active_world_info_panel/active_world_info_label_stack_panel": T.STACK_PANEL - "active_world_info_panel/active_world_info_label_stack_panel/active_world_name_label": T.LABEL - "active_world_info_panel/active_world_info_label_stack_panel/active_world_size_label": T.LABEL - "active_world_info_panel/focus_border": T.BUTTON - warning_text_panel: T.STACK_PANEL - "warning_text_panel/warning_panel": T.STACK_PANEL - "warning_text_panel/warning_panel/padding1": T.PANEL - "warning_text_panel/warning_panel/warning_image": T.IMAGE - "warning_text_panel/warning_panel/padding2": T.PANEL - "warning_text_panel/padding1": T.PANEL - "warning_text_panel/text_label": T.LABEL - popup_dialog_background: T.IMAGE - popup_dialog_label: T.LABEL - delete_selected_saves_button: T.BUTTON - cancel_popup_button: T.BUTTON - free_up_space_popup_content: T.PANEL - "free_up_space_popup_content/common_panel": T.PANEL - "free_up_space_popup_content/title_label": T.PANEL - "free_up_space_popup_content/panel_indent": T.PANEL - "free_up_space_popup_content/panel_indent/inside_header_panel": T.UNKNOWN - "free_up_space_popup_content/button_panel": T.STACK_PANEL - "free_up_space_popup_content/button_panel/left_button_panel": T.BUTTON - "free_up_space_popup_content/button_panel/pad": T.PANEL - "free_up_space_popup_content/button_panel/right_button_panel": T.BUTTON - free_up_space_popup_scrolling_panel: T.PANEL - free_up_space_text_description: T.LABEL - free_up_space_popup_content_stack_panel: T.STACK_PANEL - "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel": T.PANEL - "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel/free_up_space_storage_bar_panel": T.STACK_PANEL - "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel/focus_border": T.BUTTON - "free_up_space_popup_content_stack_panel/padding_1": T.PANEL - "free_up_space_popup_content_stack_panel/free_up_space_manual_save_list_stack_panel": T.STACK_PANEL - popup_dialog__free_up_space: T.INPUT_PANEL - "popup_dialog__free_up_space/free_up_space_popup_background": T.IMAGE - "popup_dialog__free_up_space/free_up_space_popup_content": T.PANEL - top_tab: T.PANEL - tab_content: T.PANEL - "tab_content/text": T.LABEL - manual_navigation_tab: T.PANEL - automatic_navigation_tab: T.PANEL - tab_navigation_panel_layout: T.PANEL - "tab_navigation_panel_layout/content": T.UNKNOWN - button_tabs_container: T.STACK_PANEL - "button_tabs_container/manual_navigation_tab": T.PANEL - "button_tabs_container/automatic_navigation_tab": T.PANEL - tab_content_panel: T.IMAGE - "tab_content_panel/background": T.IMAGE - "tab_content_panel/background/manual_save_list": T.PANEL - "tab_content_panel/background/automatic_save_list": T.PANEL - save_list_panel: T.PANEL - "save_list_panel/save_list": T.UNKNOWN - manual_save_list_panel: T.PANEL - manual_tab_info_panel: T.PANEL - "manual_tab_info_panel/info_label": T.LABEL - manual_save_list_stack_panel: T.STACK_PANEL - "manual_save_list_stack_panel/padding1": T.PANEL - "manual_save_list_stack_panel/save_tab_info_label": T.PANEL - "manual_save_list_stack_panel/padding2": T.PANEL - "manual_save_list_stack_panel/stack_panel": T.STACK_PANEL - "manual_save_list_stack_panel/padding3": T.PANEL - automatic_save_list_panel: T.PANEL - automatic_tab_info_panel: T.PANEL - "automatic_tab_info_panel/info_label": T.LABEL - automatic_save_list_stack_panel: T.STACK_PANEL - "automatic_save_list_stack_panel/padding1": T.PANEL - "automatic_save_list_stack_panel/save_tab_info_label": T.PANEL - "automatic_save_list_stack_panel/padding2": T.PANEL - "automatic_save_list_stack_panel/stack_panel": T.STACK_PANEL - "automatic_save_list_stack_panel/padding3": T.PANEL - options_icon: T.IMAGE - saves_info_accordian: T.STACK_PANEL - "saves_info_accordian/main_content_panel": T.STACK_PANEL - "saves_info_accordian/main_content_panel/checkbox_button": T.BUTTON - "saves_info_accordian/main_content_panel/main_item_toggle": T.PANEL - "saves_info_accordian/main_content_panel/options_button": T.BUTTON - "saves_info_accordian/sub_content_panel": T.PANEL - "saves_info_accordian/sub_content_panel/saves_content": T.PANEL - saves_info_accordion_checkbox: T.PANEL - "saves_info_accordion_checkbox/unchecked_control": T.UNKNOWN - "saves_info_accordion_checkbox/checked_control": T.UNKNOWN - "saves_info_accordion_checkbox/unchecked_hover_control": T.UNKNOWN - "saves_info_accordion_checkbox/checked__hover_control": T.UNKNOWN - main_item_content: T.STACK_PANEL - "main_item_content/date_and_name": T.PANEL - "main_item_content/date_and_name/date_saved_label": T.LABEL - "main_item_content/date_and_name/world_name_label": T.LABEL - "main_item_content/time_and_size": T.PANEL - "main_item_content/time_and_size/save_data_time_label": T.LABEL - "main_item_content/time_and_size/save_data_size_label": T.LABEL - "main_item_content/padding_left_down_icon": T.PANEL - "main_item_content/down_icon": T.PANEL - "main_item_content/down_icon/options_icon": T.IMAGE - "main_item_content/padding_right_down_icon": T.PANEL - option_saves_info_label: T.PANEL - saves_info_container: T.IMAGE - "saves_info_container/saves_info_content": T.STACK_PANEL - saves_info_content: T.STACK_PANEL - "saves_info_content/version_panel": T.PANEL - "saves_info_content/pack_header_panel": T.PANEL - "saves_info_content/world_packs_label": T.LABEL - version_panel: T.PANEL - "version_panel/left_content": T.STACK_PANEL - "version_panel/left_content/save_version_label": T.LABEL - pack_header_panel: T.PANEL - "pack_header_panel/left_content": T.STACK_PANEL - "pack_header_panel/left_content/packs_label": T.LABEL - label_text: T.LABEL - branch_grid_item_content: T.STACK_PANEL - "branch_grid_item_content/branch_text": T.LABEL - "branch_grid_item_content/commit_text": T.LABEL - matching_item_button_content: T.STACK_PANEL - "matching_item_button_content/branch_text": T.LABEL - "matching_item_button_content/commit_text": T.LABEL - branch_item_template: T.PANEL - "branch_item_template/branch_item_button": T.BUTTON - branches_grid: T.GRID - branch_set_panel: T.STACK_PANEL - "branch_set_panel/set_branch_id_label": T.LABEL - version_filter_text_box: T.EDIT_BOX - branch_page_panel: T.PANEL - "branch_page_panel/prev_button": T.BUTTON - "branch_page_panel/page_text": T.LABEL - "branch_page_panel/next_button": T.BUTTON - branches_panel: T.STACK_PANEL - "branches_panel/branch_label": T.LABEL - "branches_panel/spacing_gap_1": T.PANEL - "branches_panel/set_branch_version_label": T.LABEL - "branches_panel/branch_set_panel": T.STACK_PANEL - "branches_panel/spacing_gap_2": T.PANEL - "branches_panel/matching_version_label": T.LABEL - "branches_panel/matching_item_button": T.BUTTON - "branches_panel/spacing_gap_3": T.PANEL - "branches_panel/all_commits_label": T.LABEL - "branches_panel/version_filter_text_box": T.EDIT_BOX - "branches_panel/branches_grid": T.GRID - "branches_panel/spacing_gap": T.PANEL - "branches_panel/branch_page_panel": T.PANEL - branch_section: T.STACK_PANEL - "branch_section/branches_panel": T.STACK_PANEL - popup_dialog__backups: T.INPUT_PANEL - "popup_dialog__backups/transparent_close_button": T.BUTTON - "popup_dialog__backups/backup_restore_popup_content": T.PANEL - backup_restore_popup_content: T.PANEL - "backup_restore_popup_content/popup_dialog_bg": T.IMAGE - "backup_restore_popup_content/backup_restore_popup_dialog_header": T.PANEL - "backup_restore_popup_content/backup_restore_popup_dialog_body": T.PANEL - backup_restore_popup_dialog_header: T.PANEL - "backup_restore_popup_dialog_header/backup_restore_popup_dialog_header_text": T.LABEL - backup_restore_popup_dialog_header_text: T.LABEL - backup_restore_popup_dialog_body: T.PANEL - "backup_restore_popup_dialog_body/backup_restore_loading_panel": T.IMAGE - backup_restore_loading_panel: T.IMAGE - "backup_restore_loading_panel/backup_restore_loading_stack_panel": T.STACK_PANEL - backup_restore_loading_stack_panel: T.STACK_PANEL - "backup_restore_loading_stack_panel/padding": T.PANEL - "backup_restore_loading_stack_panel/backup_restore_text_panel": T.PANEL - "backup_restore_loading_stack_panel/backup_restore_loading_bar_panel": T.PANEL - "backup_restore_loading_stack_panel/padding2": T.PANEL - backup_restore_text_panel: T.PANEL - "backup_restore_text_panel/loading_text": T.LABEL - backup_restore_loading_bar_panel: T.PANEL - "backup_restore_loading_bar_panel/progress_loading_bars": T.IMAGE - backup_replace_icon: T.IMAGE - backup_download_icon: T.IMAGE - backup_grid_item_content: T.STACK_PANEL - "backup_grid_item_content/backup_grid_item_icon_panel": T.PANEL - "backup_grid_item_content/backup_grid_item_name_and_time_since": T.STACK_PANEL - "backup_grid_item_content/backup_grid_item_date_and_time": T.STACK_PANEL - "backup_grid_item_content/spacing_gap": T.PANEL - backup_grid_item_name_and_time_since: T.STACK_PANEL - "backup_grid_item_name_and_time_since/date_text": T.LABEL - "backup_grid_item_name_and_time_since/spacing_gap": T.PANEL - "backup_grid_item_name_and_time_since/version_text": T.LABEL - backup_grid_item_date_and_time: T.STACK_PANEL - "backup_grid_item_date_and_time/time_text": T.LABEL - "backup_grid_item_date_and_time/spacing_gap": T.PANEL - "backup_grid_item_date_and_time/size_text": T.LABEL - backup_grid_item_icon_panel: T.PANEL - "backup_grid_item_icon_panel/backup_replace_icon": T.IMAGE - backup_item_template: T.STACK_PANEL - "backup_item_template/backup_item_button": T.BUTTON - "backup_item_template/download_backup_panel": T.PANEL - "backup_item_template/download_backup_panel/download_backup_button": T.BUTTON - download_backup_button: T.BUTTON - backup_grid: T.GRID - backup_section: T.STACK_PANEL - "backup_section/backup_panel": T.STACK_PANEL - backup_info_label: T.PANEL - backup_network_error_label: T.PANEL - backup_panel: T.STACK_PANEL - "backup_panel/spacing_gap": T.PANEL - "backup_panel/backup_info_label": T.PANEL - "backup_panel/spacing_gap2": T.PANEL - "backup_panel/progress_panel": T.PANEL - "backup_panel/progress_panel/progress_loading_bars": T.IMAGE - "backup_panel/backup_grid": T.GRID - "backup_panel/backup_network_error_label": T.PANEL - test_content: T.PANEL - "test_content/realms_allowlist_content_panel": T.PANEL - "test_content/gamepad_helpers": T.UNKNOWN - selector_panel: T.STACK_PANEL - "selector_panel/play_button": T.BUTTON - "selector_panel/disabled_play_button": T.BUTTON - "selector_panel/expired_play_button": T.BUTTON - "selector_panel/padding": T.PANEL - "selector_panel/selector_group_label": T.LABEL - "selector_panel/world_button": T.PANEL - "selector_panel/members_button": T.PANEL - "selector_panel/saves_button": T.PANEL - "selector_panel/subscription_button": T.PANEL - "selector_panel/backup_button": T.PANEL - "selector_panel/dev_options_button": T.PANEL - "selector_panel/invite_links_button": T.PANEL - "selector_panel/advanced_button": T.PANEL - section_content_panels: T.PANEL - "section_content_panels/world_section": T.PANEL - "section_content_panels/players_section": T.PANEL - "section_content_panels/subscription_section": T.PANEL - "section_content_panels/invite_links_section": T.PANEL - "section_content_panels/advanced_section": T.PANEL - "section_content_panels/dev_options_section": T.PANEL - "section_content_panels/backup_section": T.PANEL - "section_content_panels/saves_section": T.PANEL - popup_dialog__save_options: T.INPUT_PANEL - save_options_popup_content: T.STACK_PANEL - "save_options_popup_content/restore_button": T.BUTTON - "save_options_popup_content/spacing_1": T.PANEL - "save_options_popup_content/download_button": T.BUTTON - "save_options_popup_content/spacing_2": T.PANEL - "save_options_popup_content/save_button_container": T.STACK_PANEL - "save_options_popup_content/save_button_container/save_button": T.BUTTON - "save_options_popup_content/save_button_container/spacing_3": T.PANEL - "save_options_popup_content/delete_button_container": T.STACK_PANEL - "save_options_popup_content/delete_button_container/delete_button": T.BUTTON - standalone_dialog_title: T.STACK_PANEL - "standalone_dialog_title/left_padding": T.PANEL - "standalone_dialog_title/dialog_title_label": T.LABEL - "standalone_dialog_title/right_padding": T.PANEL - standalone_dialog_content: T.PANEL - "standalone_dialog_content/dialog_title": T.STACK_PANEL - "standalone_dialog_content/content_area": T.PANEL - standalone_content_area: T.PANEL - "standalone_content_area/control": T.STACK_PANEL - "standalone_content_area/control/scrolling_panel": T.PANEL - realms_settings_screen_base_no_selector_area: T.SCREEN - screen_realm_hub_manage_members: T.SCREEN - screen_realm_hub_invite_links: T.SCREEN + "settings_screen": T.SCREEN, + "generic_section": T.STACK_PANEL, + "generic_section_wrapper": T.PANEL, + "generic_section_wrapper/generic_section": T.STACK_PANEL, + "checkbox_image": T.IMAGE, + "checkbox_unchecked_state": T.IMAGE, + "checkbox_checked_state": T.IMAGE, + "checkbox_unchecked_hover_state": T.IMAGE, + "checkbox_checked_hover_state": T.IMAGE, + "checkbox_unchecked_locked_state": T.IMAGE, + "checkbox_checked_locked_state": T.IMAGE, + "player_count_label": T.PANEL, + "realm_duration_label": T.PANEL, + "realm_subscription_origin_label": T.IMAGE, + "realm_consumable_to_subscription_info_label": T.PANEL, + "manage_subscriptions_button": T.BUTTON, + "delete_realm_button": T.BUTTON, + "open_realm_button": T.BUTTON, + "close_realm_button": T.BUTTON, + "subscriptions_section": T.PANEL, + "subscriptions_section/loading_view": T.LABEL, + "subscriptions_section/loading_failed_view": T.LABEL, + "subscriptions_section/loaded_view": T.STACK_PANEL, + "subscriptions_section/loaded_view/player_count_label": T.PANEL, + "subscriptions_section/loaded_view/realm_duration_label": T.PANEL, + "subscriptions_section/loaded_view/possible_store_mismatch": T.PANEL, + "subscriptions_section/loaded_view/realm_subscription_origin_label": T.IMAGE, + "subscriptions_section/loaded_view/realm_consumable_to_subscription_info_label": T.PANEL, + "subscriptions_section/loaded_view/_0": T.PANEL, + "subscriptions_section/loaded_view/delete_realm_button": T.BUTTON, + "subscriptions_section/loaded_view/open_realm_button": T.BUTTON, + "subscriptions_section/loaded_view/close_realm_button": T.BUTTON, + "subscriptions_section/loaded_view/_1": T.PANEL, + "subscriptions_section/loaded_view/manage_subscriptions_button": T.BUTTON, + "invite_link_item_content": T.STACK_PANEL, + "invite_link_item_content/invite_link_item_name_and_expiry_text": T.STACK_PANEL, + "invite_link_item_content/invite_link_item_name_and_expiry_text/name_text": T.LABEL, + "invite_link_item_content/invite_link_item_name_and_expiry_text/spacing_gap": T.PANEL, + "invite_link_item_content/invite_link_item_name_and_expiry_text/expiry_text": T.LABEL, + "invite_link_item_content/invite_link_item_state_text": T.PANEL, + "invite_link_item_content/invite_link_item_state_text/state_text": T.LABEL, + "invite_link_item_content/spacing_gap": T.PANEL, + "invite_link_item_template": T.PANEL, + "invite_link_item_template/invite_link_item_button": T.BUTTON, + "invite_links_section": T.PANEL, + "invite_links_section/loading_view": T.LABEL, + "invite_links_section/loading_failed_view": T.LABEL, + "invite_links_section/loaded_view": T.STACK_PANEL, + "invite_links_section/loaded_view/spacing_gap_0": T.PANEL, + "invite_links_section/loaded_view/invite_links_info": T.PANEL, + "invite_links_section/loaded_view/invite_links_grid": T.STACK_PANEL, + "invite_links_section/loaded_view/spacing_gap_1": T.PANEL, + "invite_links_section/loaded_view/add_invite_link_button": T.BUTTON, + "advanced_section": T.PANEL, + "advanced_section/loading_view": T.LABEL, + "advanced_section/loading_failed_view": T.LABEL, + "advanced_section/loaded_view": T.STACK_PANEL, + "advanced_section/loaded_view/spacing_gap_0": T.PANEL, + "advanced_section/loaded_view/server_preference": T.PANEL, + "advanced_section/loaded_view/set_region_content": T.PANEL, + "advanced_section/loaded_view/changes_not_applied_panel": T.STACK_PANEL, + "advanced_section/loaded_view/changes_not_applied_panel/changes_not_applied_label": T.LABEL, + "advanced_section/loaded_view/spacing_gap_1": T.PANEL, + "advanced_section/loaded_view/region_help_button": T.BUTTON, + "set_region_dropdown": T.PANEL, + "region_dropdown_content": T.PANEL, + "region_dropdown_radio": T.PANEL, + "region_help_button_content": T.STACK_PANEL, + "region_help_button_content/external_link_icon": T.IMAGE, + "region_help_button_content/spacing_gap_1": T.PANEL, + "region_help_button_content/help_text": T.LABEL, + "tts_focus_border": T.BUTTON, + "saves_section": T.STACK_PANEL, + "saves_section/padding_saves_section_top": T.PANEL, + "saves_section/loaded_view": T.STACK_PANEL, + "saves_section/loaded_view/storage_bar_header_panel": T.PANEL, + "saves_section/loaded_view/storage_bar_header_panel/storage_bar_with_header": T.STACK_PANEL, + "saves_section/loaded_view/storage_bar_header_panel/focus_border": T.BUTTON, + "saves_section/loaded_view/padding3": T.PANEL, + "saves_section/loaded_view/save_active_world_button": T.BUTTON, + "saves_section/loaded_view/padding4": T.PANEL, + "saves_section/loaded_view/active_world_info": T.PANEL, + "saves_section/loaded_view/padding5": T.PANEL, + "saves_section/loaded_view/storage_warning": T.PANEL, + "saves_section/loaded_view/storage_warning/warning_text_panel": T.STACK_PANEL, + "saves_section/loaded_view/storage_warning/focus_border": T.BUTTON, + "saves_section/loaded_view/padding6": T.PANEL, + "saves_section/loaded_view/save_list_container": T.PANEL, + "saves_section/loaded_view/save_list_container/tab_buttons": T.STACK_PANEL, + "saves_section/loaded_view/save_list_container/tab_content_panel": T.IMAGE, + "saves_section/loaded_view/padding_loaded_view_bottom": T.PANEL, + "saves_section/loaded_view/restore_info": T.PANEL, + "saves_section/loaded_view/saves_help_panel": T.STACK_PANEL, + "saves_section/loading_indicator": T.STACK_PANEL, + "saves_section/loading_indicator/restore_info": T.PANEL, + "saves_section/loading_indicator/loading_text_panel": T.PANEL, + "saves_section/loading_indicator/loading_text_panel/loading_text": T.LABEL, + "saves_section/loading_indicator/loading_text_panel/loading_text_padding": T.PANEL, + "saves_section/loading_indicator/loading_bars": T.PANEL, + "saves_section/loading_indicator/loading_bars/progress_loading_bars": T.IMAGE, + "saves_section/loading_failed_panel": T.STACK_PANEL, + "saves_section/loading_failed_panel/restore_info": T.PANEL, + "saves_section/loading_failed_panel/saves_help_panel": T.STACK_PANEL, + "saves_section/loading_failed_panel/loading_failed_message": T.PANEL, + "saves_help_panel": T.STACK_PANEL, + "saves_help_panel/padding_help_button_top": T.PANEL, + "saves_help_panel/saves_help_button": T.BUTTON, + "saves_help_panel/padding_help_button_bottom": T.PANEL, + "saves_help_button_content": T.STACK_PANEL, + "saves_help_button_content/external_link_icon": T.IMAGE, + "saves_help_button_content/spacing_gap_1": T.PANEL, + "saves_help_button_content/help_text": T.LABEL, + "storage_bar_label_stack_panel": T.STACK_PANEL, + "storage_bar_label_stack_panel/text_left": T.LABEL, + "storage_bar_label_stack_panel/padding": T.PANEL, + "storage_bar_label_stack_panel/text_right": T.LABEL, + "storage_bar_panel_with_header": T.STACK_PANEL, + "storage_bar_panel_with_header/label_panel": T.PANEL, + "storage_bar_panel_with_header/label_panel/heading_label": T.UNKNOWN, + "storage_bar_panel_with_header/padding2": T.PANEL, + "storage_bar_panel_with_header/storage_bar_panel": T.STACK_PANEL, + "realm_storage_heading_label": T.LABEL, + "storage_bar_panel": T.STACK_PANEL, + "storage_bar_panel/storage_bar_label": T.STACK_PANEL, + "storage_bar_panel/padding": T.PANEL, + "storage_bar_panel/storage_bar": T.PANEL, + "storage_bar_panel_with_tts_focus_border": T.PANEL, + "storage_bar_panel_with_tts_focus_border/storage_bar_panel": T.STACK_PANEL, + "storage_bar_panel_with_tts_focus_border/focus_border": T.BUTTON, + "storage_bar": T.PANEL, + "storage_bar/empty_progress_bar_beveled": T.IMAGE, + "storage_bar/storage_fill": T.IMAGE, + "storage_bar/storage_bar_beveled_overlay": T.IMAGE, + "active_world_info_panel": T.PANEL, + "active_world_info_panel/active_world_info_label_stack_panel": T.STACK_PANEL, + "active_world_info_panel/active_world_info_label_stack_panel/active_world_name_label": T.LABEL, + "active_world_info_panel/active_world_info_label_stack_panel/active_world_size_label": T.LABEL, + "active_world_info_panel/focus_border": T.BUTTON, + "warning_text_panel": T.STACK_PANEL, + "warning_text_panel/warning_panel": T.STACK_PANEL, + "warning_text_panel/warning_panel/padding1": T.PANEL, + "warning_text_panel/warning_panel/warning_image": T.IMAGE, + "warning_text_panel/warning_panel/padding2": T.PANEL, + "warning_text_panel/padding1": T.PANEL, + "warning_text_panel/text_label": T.LABEL, + "popup_dialog_background": T.IMAGE, + "popup_dialog_label": T.LABEL, + "delete_selected_saves_button": T.BUTTON, + "cancel_popup_button": T.BUTTON, + "free_up_space_popup_content": T.PANEL, + "free_up_space_popup_content/common_panel": T.PANEL, + "free_up_space_popup_content/title_label": T.PANEL, + "free_up_space_popup_content/panel_indent": T.PANEL, + "free_up_space_popup_content/panel_indent/inside_header_panel": T.UNKNOWN, + "free_up_space_popup_content/button_panel": T.STACK_PANEL, + "free_up_space_popup_content/button_panel/left_button_panel": T.BUTTON, + "free_up_space_popup_content/button_panel/pad": T.PANEL, + "free_up_space_popup_content/button_panel/right_button_panel": T.BUTTON, + "free_up_space_popup_scrolling_panel": T.PANEL, + "free_up_space_text_description": T.LABEL, + "free_up_space_popup_content_stack_panel": T.STACK_PANEL, + "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel": T.PANEL, + "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel/free_up_space_storage_bar_panel": T.STACK_PANEL, + "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel/focus_border": T.BUTTON, + "free_up_space_popup_content_stack_panel/padding_1": T.PANEL, + "free_up_space_popup_content_stack_panel/free_up_space_manual_save_list_stack_panel": T.STACK_PANEL, + "popup_dialog__free_up_space": T.INPUT_PANEL, + "popup_dialog__free_up_space/free_up_space_popup_background": T.IMAGE, + "popup_dialog__free_up_space/free_up_space_popup_content": T.PANEL, + "top_tab": T.PANEL, + "tab_content": T.PANEL, + "tab_content/text": T.LABEL, + "manual_navigation_tab": T.PANEL, + "automatic_navigation_tab": T.PANEL, + "tab_navigation_panel_layout": T.PANEL, + "tab_navigation_panel_layout/content": T.UNKNOWN, + "button_tabs_container": T.STACK_PANEL, + "button_tabs_container/manual_navigation_tab": T.PANEL, + "button_tabs_container/automatic_navigation_tab": T.PANEL, + "tab_content_panel": T.IMAGE, + "tab_content_panel/background": T.IMAGE, + "tab_content_panel/background/manual_save_list": T.PANEL, + "tab_content_panel/background/automatic_save_list": T.PANEL, + "save_list_panel": T.PANEL, + "save_list_panel/save_list": T.UNKNOWN, + "manual_save_list_panel": T.PANEL, + "manual_tab_info_panel": T.PANEL, + "manual_tab_info_panel/info_label": T.LABEL, + "manual_save_list_stack_panel": T.STACK_PANEL, + "manual_save_list_stack_panel/padding1": T.PANEL, + "manual_save_list_stack_panel/save_tab_info_label": T.PANEL, + "manual_save_list_stack_panel/padding2": T.PANEL, + "manual_save_list_stack_panel/stack_panel": T.STACK_PANEL, + "manual_save_list_stack_panel/padding3": T.PANEL, + "automatic_save_list_panel": T.PANEL, + "automatic_tab_info_panel": T.PANEL, + "automatic_tab_info_panel/info_label": T.LABEL, + "automatic_save_list_stack_panel": T.STACK_PANEL, + "automatic_save_list_stack_panel/padding1": T.PANEL, + "automatic_save_list_stack_panel/save_tab_info_label": T.PANEL, + "automatic_save_list_stack_panel/padding2": T.PANEL, + "automatic_save_list_stack_panel/stack_panel": T.STACK_PANEL, + "automatic_save_list_stack_panel/padding3": T.PANEL, + "options_icon": T.IMAGE, + "saves_info_accordian": T.STACK_PANEL, + "saves_info_accordian/main_content_panel": T.STACK_PANEL, + "saves_info_accordian/main_content_panel/checkbox_button": T.BUTTON, + "saves_info_accordian/main_content_panel/main_item_toggle": T.PANEL, + "saves_info_accordian/main_content_panel/options_button": T.BUTTON, + "saves_info_accordian/sub_content_panel": T.PANEL, + "saves_info_accordian/sub_content_panel/saves_content": T.PANEL, + "saves_info_accordion_checkbox": T.PANEL, + "saves_info_accordion_checkbox/unchecked_control": T.UNKNOWN, + "saves_info_accordion_checkbox/checked_control": T.UNKNOWN, + "saves_info_accordion_checkbox/unchecked_hover_control": T.UNKNOWN, + "saves_info_accordion_checkbox/checked__hover_control": T.UNKNOWN, + "main_item_content": T.STACK_PANEL, + "main_item_content/date_and_name": T.PANEL, + "main_item_content/date_and_name/date_saved_label": T.LABEL, + "main_item_content/date_and_name/world_name_label": T.LABEL, + "main_item_content/time_and_size": T.PANEL, + "main_item_content/time_and_size/save_data_time_label": T.LABEL, + "main_item_content/time_and_size/save_data_size_label": T.LABEL, + "main_item_content/padding_left_down_icon": T.PANEL, + "main_item_content/down_icon": T.PANEL, + "main_item_content/down_icon/options_icon": T.IMAGE, + "main_item_content/padding_right_down_icon": T.PANEL, + "option_saves_info_label": T.PANEL, + "saves_info_container": T.IMAGE, + "saves_info_container/saves_info_content": T.STACK_PANEL, + "saves_info_content": T.STACK_PANEL, + "saves_info_content/version_panel": T.PANEL, + "saves_info_content/pack_header_panel": T.PANEL, + "saves_info_content/world_packs_label": T.LABEL, + "version_panel": T.PANEL, + "version_panel/left_content": T.STACK_PANEL, + "version_panel/left_content/save_version_label": T.LABEL, + "pack_header_panel": T.PANEL, + "pack_header_panel/left_content": T.STACK_PANEL, + "pack_header_panel/left_content/packs_label": T.LABEL, + "label_text": T.LABEL, + "branch_grid_item_content": T.STACK_PANEL, + "branch_grid_item_content/branch_text": T.LABEL, + "branch_grid_item_content/commit_text": T.LABEL, + "matching_item_button_content": T.STACK_PANEL, + "matching_item_button_content/branch_text": T.LABEL, + "matching_item_button_content/commit_text": T.LABEL, + "branch_item_template": T.PANEL, + "branch_item_template/branch_item_button": T.BUTTON, + "branches_grid": T.GRID, + "branch_set_panel": T.STACK_PANEL, + "branch_set_panel/set_branch_id_label": T.LABEL, + "version_filter_text_box": T.EDIT_BOX, + "branch_page_panel": T.PANEL, + "branch_page_panel/prev_button": T.BUTTON, + "branch_page_panel/page_text": T.LABEL, + "branch_page_panel/next_button": T.BUTTON, + "branches_panel": T.STACK_PANEL, + "branches_panel/branch_label": T.LABEL, + "branches_panel/spacing_gap_1": T.PANEL, + "branches_panel/set_branch_version_label": T.LABEL, + "branches_panel/branch_set_panel": T.STACK_PANEL, + "branches_panel/spacing_gap_2": T.PANEL, + "branches_panel/matching_version_label": T.LABEL, + "branches_panel/matching_item_button": T.BUTTON, + "branches_panel/spacing_gap_3": T.PANEL, + "branches_panel/all_commits_label": T.LABEL, + "branches_panel/version_filter_text_box": T.EDIT_BOX, + "branches_panel/branches_grid": T.GRID, + "branches_panel/spacing_gap": T.PANEL, + "branches_panel/branch_page_panel": T.PANEL, + "branch_section": T.STACK_PANEL, + "branch_section/branches_panel": T.STACK_PANEL, + "popup_dialog__backups": T.INPUT_PANEL, + "popup_dialog__backups/transparent_close_button": T.BUTTON, + "popup_dialog__backups/backup_restore_popup_content": T.PANEL, + "backup_restore_popup_content": T.PANEL, + "backup_restore_popup_content/popup_dialog_bg": T.IMAGE, + "backup_restore_popup_content/backup_restore_popup_dialog_header": T.PANEL, + "backup_restore_popup_content/backup_restore_popup_dialog_body": T.PANEL, + "backup_restore_popup_dialog_header": T.PANEL, + "backup_restore_popup_dialog_header/backup_restore_popup_dialog_header_text": T.LABEL, + "backup_restore_popup_dialog_header_text": T.LABEL, + "backup_restore_popup_dialog_body": T.PANEL, + "backup_restore_popup_dialog_body/backup_restore_loading_panel": T.IMAGE, + "backup_restore_loading_panel": T.IMAGE, + "backup_restore_loading_panel/backup_restore_loading_stack_panel": T.STACK_PANEL, + "backup_restore_loading_stack_panel": T.STACK_PANEL, + "backup_restore_loading_stack_panel/padding": T.PANEL, + "backup_restore_loading_stack_panel/backup_restore_text_panel": T.PANEL, + "backup_restore_loading_stack_panel/backup_restore_loading_bar_panel": T.PANEL, + "backup_restore_loading_stack_panel/padding2": T.PANEL, + "backup_restore_text_panel": T.PANEL, + "backup_restore_text_panel/loading_text": T.LABEL, + "backup_restore_loading_bar_panel": T.PANEL, + "backup_restore_loading_bar_panel/progress_loading_bars": T.IMAGE, + "backup_replace_icon": T.IMAGE, + "backup_download_icon": T.IMAGE, + "backup_grid_item_content": T.STACK_PANEL, + "backup_grid_item_content/backup_grid_item_icon_panel": T.PANEL, + "backup_grid_item_content/backup_grid_item_name_and_time_since": T.STACK_PANEL, + "backup_grid_item_content/backup_grid_item_date_and_time": T.STACK_PANEL, + "backup_grid_item_content/spacing_gap": T.PANEL, + "backup_grid_item_name_and_time_since": T.STACK_PANEL, + "backup_grid_item_name_and_time_since/date_text": T.LABEL, + "backup_grid_item_name_and_time_since/spacing_gap": T.PANEL, + "backup_grid_item_name_and_time_since/version_text": T.LABEL, + "backup_grid_item_date_and_time": T.STACK_PANEL, + "backup_grid_item_date_and_time/time_text": T.LABEL, + "backup_grid_item_date_and_time/spacing_gap": T.PANEL, + "backup_grid_item_date_and_time/size_text": T.LABEL, + "backup_grid_item_icon_panel": T.PANEL, + "backup_grid_item_icon_panel/backup_replace_icon": T.IMAGE, + "backup_item_template": T.STACK_PANEL, + "backup_item_template/backup_item_button": T.BUTTON, + "backup_item_template/download_backup_panel": T.PANEL, + "backup_item_template/download_backup_panel/download_backup_button": T.BUTTON, + "download_backup_button": T.BUTTON, + "backup_grid": T.GRID, + "backup_section": T.STACK_PANEL, + "backup_section/backup_panel": T.STACK_PANEL, + "backup_info_label": T.PANEL, + "backup_network_error_label": T.PANEL, + "backup_panel": T.STACK_PANEL, + "backup_panel/spacing_gap": T.PANEL, + "backup_panel/backup_info_label": T.PANEL, + "backup_panel/spacing_gap2": T.PANEL, + "backup_panel/progress_panel": T.PANEL, + "backup_panel/progress_panel/progress_loading_bars": T.IMAGE, + "backup_panel/backup_grid": T.GRID, + "backup_panel/backup_network_error_label": T.PANEL, + "test_content": T.PANEL, + "test_content/realms_allowlist_content_panel": T.PANEL, + "test_content/gamepad_helpers": T.UNKNOWN, + "selector_panel": T.STACK_PANEL, + "selector_panel/play_button": T.BUTTON, + "selector_panel/disabled_play_button": T.BUTTON, + "selector_panel/expired_play_button": T.BUTTON, + "selector_panel/padding": T.PANEL, + "selector_panel/selector_group_label": T.LABEL, + "selector_panel/world_button": T.PANEL, + "selector_panel/members_button": T.PANEL, + "selector_panel/saves_button": T.PANEL, + "selector_panel/subscription_button": T.PANEL, + "selector_panel/backup_button": T.PANEL, + "selector_panel/dev_options_button": T.PANEL, + "selector_panel/invite_links_button": T.PANEL, + "selector_panel/advanced_button": T.PANEL, + "section_content_panels": T.PANEL, + "section_content_panels/world_section": T.PANEL, + "section_content_panels/players_section": T.PANEL, + "section_content_panels/subscription_section": T.PANEL, + "section_content_panels/invite_links_section": T.PANEL, + "section_content_panels/advanced_section": T.PANEL, + "section_content_panels/dev_options_section": T.PANEL, + "section_content_panels/backup_section": T.PANEL, + "section_content_panels/saves_section": T.PANEL, + "popup_dialog__save_options": T.INPUT_PANEL, + "save_options_popup_content": T.STACK_PANEL, + "save_options_popup_content/restore_button": T.BUTTON, + "save_options_popup_content/spacing_1": T.PANEL, + "save_options_popup_content/download_button": T.BUTTON, + "save_options_popup_content/spacing_2": T.PANEL, + "save_options_popup_content/save_button_container": T.STACK_PANEL, + "save_options_popup_content/save_button_container/save_button": T.BUTTON, + "save_options_popup_content/save_button_container/spacing_3": T.PANEL, + "save_options_popup_content/delete_button_container": T.STACK_PANEL, + "save_options_popup_content/delete_button_container/delete_button": T.BUTTON, + "standalone_dialog_title": T.STACK_PANEL, + "standalone_dialog_title/left_padding": T.PANEL, + "standalone_dialog_title/dialog_title_label": T.LABEL, + "standalone_dialog_title/right_padding": T.PANEL, + "standalone_dialog_content": T.PANEL, + "standalone_dialog_content/dialog_title": T.STACK_PANEL, + "standalone_dialog_content/content_area": T.PANEL, + "standalone_content_area": T.PANEL, + "standalone_content_area/control": T.STACK_PANEL, + "standalone_content_area/control/scrolling_panel": T.PANEL, + "realms_settings_screen_base_no_selector_area": T.SCREEN, + "screen_realm_hub_manage_members": T.SCREEN, + "screen_realm_hub_invite_links": T.SCREEN, } export type RealmsAllowlistType = { - spacing_gap: T.PANEL - friends_containing_panel: T.PANEL - "friends_containing_panel/friends_panel": T.STACK_PANEL - friends_panel: T.STACK_PANEL - "friends_panel/add_friends_and_invite_link_panel": T.PANEL - "friends_panel/option_dropdown_permissions": T.PANEL - "friends_panel/player_filter_label": T.PANEL - "friends_panel/player_filter_text_box": T.EDIT_BOX - "friends_panel/spacing_gap_members_top": T.PANEL - "friends_panel/lists": T.STACK_PANEL - "friends_panel/lists/members_label": T.STACK_PANEL - "friends_panel/lists/members_stack": T.STACK_PANEL - "friends_panel/lists/spacing_gap_members_bottom": T.PANEL - "friends_panel/lists/members_page_panel": T.PANEL - "friends_panel/lists/invited_friends_label": T.PANEL - "friends_panel/lists/invited_stack": T.STACK_PANEL - "friends_panel/lists/spacing_gap_invited_friends": T.PANEL - "friends_panel/lists/invited_friends_page_panel": T.PANEL - "friends_panel/lists/uninvited_friends_label": T.PANEL - "friends_panel/lists/uninvited_stack": T.STACK_PANEL - "friends_panel/lists/spacing_gap_uninvited_friends": T.PANEL - "friends_panel/lists/uninvited_friends_page_panel": T.PANEL - "friends_panel/lists/blocked_players_label": T.PANEL - "friends_panel/lists/blocked_players_stack": T.STACK_PANEL - "friends_panel/lists/spacing_gap_blocked_players": T.PANEL - "friends_panel/lists/blocked_players_page_panel": T.PANEL - "friends_panel/lists/no_invites_label": T.LABEL - "friends_panel/loading_friends": T.LABEL - add_friends_and_invite_link_panel: T.PANEL - "add_friends_and_invite_link_panel/allowlist_stack_panel": T.STACK_PANEL - "add_friends_and_invite_link_panel/allowlist_stack_panel/find_friends_button_panel": T.PANEL - "add_friends_and_invite_link_panel/allowlist_stack_panel/spacing_1": T.PANEL - "add_friends_and_invite_link_panel/allowlist_stack_panel/invite_links_panel": T.PANEL - "add_friends_and_invite_link_panel/allowlist_stack_panel/invite_links_panel/invite_links_button": T.BUTTON - "add_friends_and_invite_link_panel/allowlist_stack_panel/spacing_2": T.PANEL - "add_friends_and_invite_link_panel/allowlist_stack_panel/options_panel": T.PANEL - "add_friends_and_invite_link_panel/allowlist_stack_panel/options_panel/clear_members_button": T.BUTTON - options_icon: T.IMAGE - account_link_image: T.IMAGE - account_link_icon: T.STACK_PANEL - "account_link_icon/space_01": T.PANEL - "account_link_icon/account_link_image": T.IMAGE - "account_link_icon/space_03": T.PANEL - find_friends_button_panel: T.PANEL - "find_friends_button_panel/find_friends_button": T.BUTTON - invited_friends_label: T.PANEL - "invited_friends_label/friend_title": T.LABEL - player_filter_label: T.PANEL - "player_filter_label/player_filter_title": T.LABEL - members_label: T.STACK_PANEL - "members_label/friend_title": T.LABEL - "members_label/padding_panel": T.PANEL - "members_label/loading_text": T.LABEL - blocked_players_label: T.PANEL - "blocked_players_label/friend_title": T.LABEL - uninvited_friends_label: T.PANEL - "uninvited_friends_label/friend_title": T.LABEL - no_invites_label: T.LABEL - loading_friends: T.LABEL - blocked_grid_item: T.PANEL - "blocked_grid_item/blocked_panel": T.IMAGE - factory_stack: T.STACK_PANEL - member_factory_xbl_profile: T.STACK_PANEL - member_factory_linked_account: T.STACK_PANEL - invited_factory_xbl_profile: T.STACK_PANEL - invited_factory_linked_account: T.STACK_PANEL - uninvited_factory_xbl_profile: T.STACK_PANEL - uninvited_factory_linked_account: T.STACK_PANEL - blocked_factory_xbl_profile: T.STACK_PANEL - blocked_factory_linked_account: T.STACK_PANEL - xbl_profile_panel_factory: T.STACK_PANEL - xbl_profile_blocked_panel_factory: T.STACK_PANEL - linked_account_panel_factory: T.STACK_PANEL - linked_account_blocked_panel_factory: T.STACK_PANEL - xbl_profile_panel: T.IMAGE - "xbl_profile_panel/player_status_panel": T.PANEL - "xbl_profile_panel/xbl_user_panel": T.STACK_PANEL - "xbl_profile_panel/right_controls_panel": T.PANEL - "xbl_profile_panel/progress": T.IMAGE - factory_gap_template: T.STACK_PANEL - "factory_gap_template/gapped_control": T.UNKNOWN - "factory_gap_template/spacing1": T.PANEL - gapped_xbl_profile_panel: T.STACK_PANEL - gapped_linked_account_panel: T.STACK_PANEL - gapped_blocked_xbl_profile_panel: T.STACK_PANEL - gapped_blocked_linked_account_panel: T.STACK_PANEL - blocked_panel: T.IMAGE - "blocked_panel/xbl_user_panel": T.STACK_PANEL - "blocked_panel/unblock_button": T.BUTTON - linked_account_panel: T.IMAGE - "linked_account_panel/linked_account_positioning_panel": T.STACK_PANEL - "linked_account_panel/right_controls_panel": T.PANEL - "linked_account_panel/progress": T.IMAGE - linked_account_blocked_panel: T.IMAGE - "linked_account_blocked_panel/linked_account_positioning_panel": T.STACK_PANEL - "linked_account_blocked_panel/unblock_button": T.BUTTON - "linked_account_blocked_panel/progress": T.IMAGE - xbl_user_panel: T.STACK_PANEL - "xbl_user_panel/spacing1": T.PANEL - "xbl_user_panel/platform_icon_positioner": T.PANEL - "xbl_user_panel/gamerpic_panel": T.PANEL - "xbl_user_panel/spacing2": T.PANEL - "xbl_user_panel/gamertag_label_panel": T.PANEL - third_party_user_panel: T.STACK_PANEL - "third_party_user_panel/spacing1": T.PANEL - "third_party_user_panel/profile_picture": T.PANEL - "third_party_user_panel/spacing2": T.PANEL - "third_party_user_panel/third_party_profile_label": T.PANEL - linked_profile_pictures_panel: T.STACK_PANEL - "linked_profile_pictures_panel/pp2": T.PANEL - "linked_profile_pictures_panel/account_link": T.STACK_PANEL - "linked_profile_pictures_panel/pp1": T.PANEL - platform_profile_names: T.STACK_PANEL - "platform_profile_names/friend_grid_third_party_tag": T.PANEL - "platform_profile_names/spacer_02": T.PANEL - "platform_profile_names/friend_grid_xbl_gamertag": T.PANEL - "platform_profile_names/spacer_03": T.PANEL - linked_user_stack_panel: T.STACK_PANEL - "linked_user_stack_panel/allow_offset_control": T.PANEL - "linked_user_stack_panel/allow_offset_control/player_status_panel": T.PANEL - "linked_user_stack_panel/platform_icon_positioner": T.PANEL - "linked_user_stack_panel/platform_icon_positioner/platform_icon": T.PANEL - "linked_user_stack_panel/spacing1": T.PANEL - "linked_user_stack_panel/profile_picture": T.STACK_PANEL - "linked_user_stack_panel/spacing2": T.PANEL - "linked_user_stack_panel/platform_names_label": T.STACK_PANEL - "linked_user_stack_panel/spacing3": T.PANEL - horizontal_indent: T.PANEL - vertical_indent: T.PANEL - gamerpic_panel: T.PANEL - "gamerpic_panel/black_border": T.IMAGE - "gamerpic_panel/gamer_pic": T.CUSTOM - third_party_profile_pic_panel: T.PANEL - "third_party_profile_pic_panel/black_border": T.IMAGE - "third_party_profile_pic_panel/third_party_profile_picture": T.IMAGE - gamertag_label_panel: T.PANEL - "gamertag_label_panel/gamertag_label": T.LABEL - "gamertag_label_panel/real_name_label": T.LABEL - third_party_profile_label: T.PANEL - "third_party_profile_label/profile_name_label": T.LABEL - panel_text: T.LABEL - gamertag_label: T.LABEL - third_party_profile_name_label: T.LABEL - real_name_label: T.LABEL - right_settings_panel: T.STACK_PANEL - "right_settings_panel/member_settings": T.STACK_PANEL - member_settings: T.STACK_PANEL - "member_settings/minus_button": T.BUTTON - "member_settings/horizontal_space": T.PANEL - "member_settings/member_permissions": T.STACK_PANEL - "member_settings/op_deop_button": T.PANEL - right_controls_panel: T.PANEL - "right_controls_panel/right_settings_panel": T.STACK_PANEL - "right_controls_panel/uninvited_friends_invite_button": T.BUTTON - player_status_panel: T.PANEL - "player_status_panel/player_online_icon": T.IMAGE - "player_status_panel/player_offline_icon": T.IMAGE - permissions_dropdown: T.STACK_PANEL - "permissions_dropdown/vertical_space": T.PANEL - "permissions_dropdown/option_dropdown_permissions": T.PANEL - invite_button: T.BUTTON - minus_button: T.BUTTON - unblock_label: T.LABEL - unblock_button: T.BUTTON - op_deop_button: T.PANEL - find_friends_button: T.BUTTON - black_border: T.IMAGE - gamer_pic: T.CUSTOM - third_party_profile_picture: T.IMAGE - player_online_icon: T.IMAGE - player_offline_icon: T.IMAGE - plus_icon: T.IMAGE - more_icon: T.IMAGE - share_icon: T.IMAGE - minus_icon: T.IMAGE - op_icon: T.IMAGE - deop_icon: T.IMAGE - player_filter_text_box: T.EDIT_BOX - page_panel: T.PANEL - "page_panel/prev_button": T.BUTTON - "page_panel/page_text": T.LABEL - "page_panel/next_button": T.BUTTON - realms_allowlist_panel_content: T.PANEL - realms_allowlist_content_panel: T.PANEL - realms_allowlist_content_panel_children: T.PANEL - "realms_allowlist_content_panel_children/realms_allowlist_panel_content": T.PANEL - "realms_allowlist_content_panel_children/done_button": T.BUTTON - realms_allowlist_screen: T.SCREEN - realms_allowlist_content: T.PANEL - "realms_allowlist_content/root_panel": T.INPUT_PANEL - "realms_allowlist_content/root_panel/realms_allowlist_content_panel": T.PANEL - transparent_close_button: T.BUTTON + "spacing_gap": T.PANEL, + "friends_containing_panel": T.PANEL, + "friends_containing_panel/friends_panel": T.STACK_PANEL, + "friends_panel": T.STACK_PANEL, + "friends_panel/add_friends_and_invite_link_panel": T.PANEL, + "friends_panel/option_dropdown_permissions": T.PANEL, + "friends_panel/player_filter_label": T.PANEL, + "friends_panel/player_filter_text_box": T.EDIT_BOX, + "friends_panel/spacing_gap_members_top": T.PANEL, + "friends_panel/lists": T.STACK_PANEL, + "friends_panel/lists/members_label": T.STACK_PANEL, + "friends_panel/lists/members_stack": T.STACK_PANEL, + "friends_panel/lists/spacing_gap_members_bottom": T.PANEL, + "friends_panel/lists/members_page_panel": T.PANEL, + "friends_panel/lists/invited_friends_label": T.PANEL, + "friends_panel/lists/invited_stack": T.STACK_PANEL, + "friends_panel/lists/spacing_gap_invited_friends": T.PANEL, + "friends_panel/lists/invited_friends_page_panel": T.PANEL, + "friends_panel/lists/uninvited_friends_label": T.PANEL, + "friends_panel/lists/uninvited_stack": T.STACK_PANEL, + "friends_panel/lists/spacing_gap_uninvited_friends": T.PANEL, + "friends_panel/lists/uninvited_friends_page_panel": T.PANEL, + "friends_panel/lists/blocked_players_label": T.PANEL, + "friends_panel/lists/blocked_players_stack": T.STACK_PANEL, + "friends_panel/lists/spacing_gap_blocked_players": T.PANEL, + "friends_panel/lists/blocked_players_page_panel": T.PANEL, + "friends_panel/lists/no_invites_label": T.LABEL, + "friends_panel/loading_friends": T.LABEL, + "add_friends_and_invite_link_panel": T.PANEL, + "add_friends_and_invite_link_panel/allowlist_stack_panel": T.STACK_PANEL, + "add_friends_and_invite_link_panel/allowlist_stack_panel/find_friends_button_panel": T.PANEL, + "add_friends_and_invite_link_panel/allowlist_stack_panel/spacing_1": T.PANEL, + "add_friends_and_invite_link_panel/allowlist_stack_panel/invite_links_panel": T.PANEL, + "add_friends_and_invite_link_panel/allowlist_stack_panel/invite_links_panel/invite_links_button": T.BUTTON, + "add_friends_and_invite_link_panel/allowlist_stack_panel/spacing_2": T.PANEL, + "add_friends_and_invite_link_panel/allowlist_stack_panel/options_panel": T.PANEL, + "add_friends_and_invite_link_panel/allowlist_stack_panel/options_panel/clear_members_button": T.BUTTON, + "options_icon": T.IMAGE, + "account_link_image": T.IMAGE, + "account_link_icon": T.STACK_PANEL, + "account_link_icon/space_01": T.PANEL, + "account_link_icon/account_link_image": T.IMAGE, + "account_link_icon/space_03": T.PANEL, + "find_friends_button_panel": T.PANEL, + "find_friends_button_panel/find_friends_button": T.BUTTON, + "invited_friends_label": T.PANEL, + "invited_friends_label/friend_title": T.LABEL, + "player_filter_label": T.PANEL, + "player_filter_label/player_filter_title": T.LABEL, + "members_label": T.STACK_PANEL, + "members_label/friend_title": T.LABEL, + "members_label/padding_panel": T.PANEL, + "members_label/loading_text": T.LABEL, + "blocked_players_label": T.PANEL, + "blocked_players_label/friend_title": T.LABEL, + "uninvited_friends_label": T.PANEL, + "uninvited_friends_label/friend_title": T.LABEL, + "no_invites_label": T.LABEL, + "loading_friends": T.LABEL, + "blocked_grid_item": T.PANEL, + "blocked_grid_item/blocked_panel": T.IMAGE, + "factory_stack": T.STACK_PANEL, + "member_factory_xbl_profile": T.STACK_PANEL, + "member_factory_linked_account": T.STACK_PANEL, + "invited_factory_xbl_profile": T.STACK_PANEL, + "invited_factory_linked_account": T.STACK_PANEL, + "uninvited_factory_xbl_profile": T.STACK_PANEL, + "uninvited_factory_linked_account": T.STACK_PANEL, + "blocked_factory_xbl_profile": T.STACK_PANEL, + "blocked_factory_linked_account": T.STACK_PANEL, + "xbl_profile_panel_factory": T.STACK_PANEL, + "xbl_profile_blocked_panel_factory": T.STACK_PANEL, + "linked_account_panel_factory": T.STACK_PANEL, + "linked_account_blocked_panel_factory": T.STACK_PANEL, + "xbl_profile_panel": T.IMAGE, + "xbl_profile_panel/player_status_panel": T.PANEL, + "xbl_profile_panel/xbl_user_panel": T.STACK_PANEL, + "xbl_profile_panel/right_controls_panel": T.PANEL, + "xbl_profile_panel/progress": T.IMAGE, + "factory_gap_template": T.STACK_PANEL, + "factory_gap_template/gapped_control": T.UNKNOWN, + "factory_gap_template/spacing1": T.PANEL, + "gapped_xbl_profile_panel": T.STACK_PANEL, + "gapped_linked_account_panel": T.STACK_PANEL, + "gapped_blocked_xbl_profile_panel": T.STACK_PANEL, + "gapped_blocked_linked_account_panel": T.STACK_PANEL, + "blocked_panel": T.IMAGE, + "blocked_panel/xbl_user_panel": T.STACK_PANEL, + "blocked_panel/unblock_button": T.BUTTON, + "linked_account_panel": T.IMAGE, + "linked_account_panel/linked_account_positioning_panel": T.STACK_PANEL, + "linked_account_panel/right_controls_panel": T.PANEL, + "linked_account_panel/progress": T.IMAGE, + "linked_account_blocked_panel": T.IMAGE, + "linked_account_blocked_panel/linked_account_positioning_panel": T.STACK_PANEL, + "linked_account_blocked_panel/unblock_button": T.BUTTON, + "linked_account_blocked_panel/progress": T.IMAGE, + "xbl_user_panel": T.STACK_PANEL, + "xbl_user_panel/spacing1": T.PANEL, + "xbl_user_panel/platform_icon_positioner": T.PANEL, + "xbl_user_panel/gamerpic_panel": T.PANEL, + "xbl_user_panel/spacing2": T.PANEL, + "xbl_user_panel/gamertag_label_panel": T.PANEL, + "third_party_user_panel": T.STACK_PANEL, + "third_party_user_panel/spacing1": T.PANEL, + "third_party_user_panel/profile_picture": T.PANEL, + "third_party_user_panel/spacing2": T.PANEL, + "third_party_user_panel/third_party_profile_label": T.PANEL, + "linked_profile_pictures_panel": T.STACK_PANEL, + "linked_profile_pictures_panel/pp2": T.PANEL, + "linked_profile_pictures_panel/account_link": T.STACK_PANEL, + "linked_profile_pictures_panel/pp1": T.PANEL, + "platform_profile_names": T.STACK_PANEL, + "platform_profile_names/friend_grid_third_party_tag": T.PANEL, + "platform_profile_names/spacer_02": T.PANEL, + "platform_profile_names/friend_grid_xbl_gamertag": T.PANEL, + "platform_profile_names/spacer_03": T.PANEL, + "linked_user_stack_panel": T.STACK_PANEL, + "linked_user_stack_panel/allow_offset_control": T.PANEL, + "linked_user_stack_panel/allow_offset_control/player_status_panel": T.PANEL, + "linked_user_stack_panel/platform_icon_positioner": T.PANEL, + "linked_user_stack_panel/platform_icon_positioner/platform_icon": T.PANEL, + "linked_user_stack_panel/spacing1": T.PANEL, + "linked_user_stack_panel/profile_picture": T.STACK_PANEL, + "linked_user_stack_panel/spacing2": T.PANEL, + "linked_user_stack_panel/platform_names_label": T.STACK_PANEL, + "linked_user_stack_panel/spacing3": T.PANEL, + "horizontal_indent": T.PANEL, + "vertical_indent": T.PANEL, + "gamerpic_panel": T.PANEL, + "gamerpic_panel/black_border": T.IMAGE, + "gamerpic_panel/gamer_pic": T.CUSTOM, + "third_party_profile_pic_panel": T.PANEL, + "third_party_profile_pic_panel/black_border": T.IMAGE, + "third_party_profile_pic_panel/third_party_profile_picture": T.IMAGE, + "gamertag_label_panel": T.PANEL, + "gamertag_label_panel/gamertag_label": T.LABEL, + "gamertag_label_panel/real_name_label": T.LABEL, + "third_party_profile_label": T.PANEL, + "third_party_profile_label/profile_name_label": T.LABEL, + "panel_text": T.LABEL, + "gamertag_label": T.LABEL, + "third_party_profile_name_label": T.LABEL, + "real_name_label": T.LABEL, + "right_settings_panel": T.STACK_PANEL, + "right_settings_panel/member_settings": T.STACK_PANEL, + "member_settings": T.STACK_PANEL, + "member_settings/minus_button": T.BUTTON, + "member_settings/horizontal_space": T.PANEL, + "member_settings/member_permissions": T.STACK_PANEL, + "member_settings/op_deop_button": T.PANEL, + "right_controls_panel": T.PANEL, + "right_controls_panel/right_settings_panel": T.STACK_PANEL, + "right_controls_panel/uninvited_friends_invite_button": T.BUTTON, + "player_status_panel": T.PANEL, + "player_status_panel/player_online_icon": T.IMAGE, + "player_status_panel/player_offline_icon": T.IMAGE, + "permissions_dropdown": T.STACK_PANEL, + "permissions_dropdown/vertical_space": T.PANEL, + "permissions_dropdown/option_dropdown_permissions": T.PANEL, + "invite_button": T.BUTTON, + "minus_button": T.BUTTON, + "unblock_label": T.LABEL, + "unblock_button": T.BUTTON, + "op_deop_button": T.PANEL, + "find_friends_button": T.BUTTON, + "black_border": T.IMAGE, + "gamer_pic": T.CUSTOM, + "third_party_profile_picture": T.IMAGE, + "player_online_icon": T.IMAGE, + "player_offline_icon": T.IMAGE, + "plus_icon": T.IMAGE, + "more_icon": T.IMAGE, + "share_icon": T.IMAGE, + "minus_icon": T.IMAGE, + "op_icon": T.IMAGE, + "deop_icon": T.IMAGE, + "player_filter_text_box": T.EDIT_BOX, + "page_panel": T.PANEL, + "page_panel/prev_button": T.BUTTON, + "page_panel/page_text": T.LABEL, + "page_panel/next_button": T.BUTTON, + "realms_allowlist_panel_content": T.PANEL, + "realms_allowlist_content_panel": T.PANEL, + "realms_allowlist_content_panel_children": T.PANEL, + "realms_allowlist_content_panel_children/realms_allowlist_panel_content": T.PANEL, + "realms_allowlist_content_panel_children/done_button": T.BUTTON, + "realms_allowlist_screen": T.SCREEN, + "realms_allowlist_content": T.PANEL, + "realms_allowlist_content/root_panel": T.INPUT_PANEL, + "realms_allowlist_content/root_panel/realms_allowlist_content_panel": T.PANEL, + "transparent_close_button": T.BUTTON, } export type RealmsInviteLinkSettingsType = { - generic_section_wrapper: T.PANEL - "generic_section_wrapper/generic_section": T.STACK_PANEL - link_banner: T.IMAGE - clipboard_icon: T.IMAGE - description_wrap: T.PANEL - "description_wrap/description": T.LABEL - invite_link_url: T.LABEL - link_panel: T.IMAGE - "link_panel/invite_link_url_wrapper": T.PANEL - "link_panel/link_copy_container": T.PANEL - "link_panel/link_copy_container/link_copy": T.BUTTON - general_content: T.STACK_PANEL - "general_content/spacing_gap_0": T.PANEL - "general_content/invite_link_title": T.LABEL - "general_content/invite_link_description": T.PANEL - "general_content/spacing_gap_1": T.PANEL - "general_content/link_panel": T.IMAGE - "general_content/spacing_gap_2": T.PANEL - "general_content/activate_link_toggle": T.PANEL - "general_content/activate_link_description": T.PANEL - "general_content/spacing_gap_3": T.PANEL - "general_content/infinite_link_toggle": T.PANEL - "general_content/spacing_gap_4": T.PANEL - "general_content/share_link_title": T.LABEL - "general_content/share_link_description": T.PANEL - "general_content/spacing_gap_5": T.PANEL - "general_content/share_link_button": T.BUTTON - "general_content/spacing_gap_6": T.PANEL - "general_content/remove_link_title": T.LABEL - "general_content/remove_invite_link_button": T.BUTTON - invite_link_expiration: T.LABEL - advanced_content: T.STACK_PANEL - "advanced_content/spacing_gap_0": T.PANEL - "advanced_content/expiry_title": T.LABEL - "advanced_content/spacing_gap_1": T.PANEL - "advanced_content/expiration_description": T.PANEL - "advanced_content/spacing_gap_2": T.PANEL - "advanced_content/expiration_panel": T.IMAGE - "advanced_content/expiration_panel/invite_link_expiration_wrapper": T.PANEL - "advanced_content/expiration_dropdown": T.PANEL - expiration_dropdown_content: T.PANEL - selector_panel: T.STACK_PANEL - "selector_panel/spacing_gap_0": T.PANEL - "selector_panel/general_button": T.PANEL - "selector_panel/advanced_button": T.PANEL - section_content_panels: T.PANEL - "section_content_panels/general_section": T.PANEL - "section_content_panels/advanced_section": T.PANEL + "generic_section_wrapper": T.PANEL, + "generic_section_wrapper/generic_section": T.STACK_PANEL, + "link_banner": T.IMAGE, + "clipboard_icon": T.IMAGE, + "description_wrap": T.PANEL, + "description_wrap/description": T.LABEL, + "invite_link_url": T.LABEL, + "link_panel": T.IMAGE, + "link_panel/invite_link_url_wrapper": T.PANEL, + "link_panel/link_copy_container": T.PANEL, + "link_panel/link_copy_container/link_copy": T.BUTTON, + "general_content": T.STACK_PANEL, + "general_content/spacing_gap_0": T.PANEL, + "general_content/invite_link_title": T.LABEL, + "general_content/invite_link_description": T.PANEL, + "general_content/spacing_gap_1": T.PANEL, + "general_content/link_panel": T.IMAGE, + "general_content/spacing_gap_2": T.PANEL, + "general_content/activate_link_toggle": T.PANEL, + "general_content/activate_link_description": T.PANEL, + "general_content/spacing_gap_3": T.PANEL, + "general_content/infinite_link_toggle": T.PANEL, + "general_content/spacing_gap_4": T.PANEL, + "general_content/share_link_title": T.LABEL, + "general_content/share_link_description": T.PANEL, + "general_content/spacing_gap_5": T.PANEL, + "general_content/share_link_button": T.BUTTON, + "general_content/spacing_gap_6": T.PANEL, + "general_content/remove_link_title": T.LABEL, + "general_content/remove_invite_link_button": T.BUTTON, + "invite_link_expiration": T.LABEL, + "advanced_content": T.STACK_PANEL, + "advanced_content/spacing_gap_0": T.PANEL, + "advanced_content/expiry_title": T.LABEL, + "advanced_content/spacing_gap_1": T.PANEL, + "advanced_content/expiration_description": T.PANEL, + "advanced_content/spacing_gap_2": T.PANEL, + "advanced_content/expiration_panel": T.IMAGE, + "advanced_content/expiration_panel/invite_link_expiration_wrapper": T.PANEL, + "advanced_content/expiration_dropdown": T.PANEL, + "expiration_dropdown_content": T.PANEL, + "selector_panel": T.STACK_PANEL, + "selector_panel/spacing_gap_0": T.PANEL, + "selector_panel/general_button": T.PANEL, + "selector_panel/advanced_button": T.PANEL, + "section_content_panels": T.PANEL, + "section_content_panels/general_section": T.PANEL, + "section_content_panels/advanced_section": T.PANEL, } export type RealmsPlusEndedType = { - subscription_ended_screen: T.SCREEN - subscription_ended_screen_content: T.PANEL - "subscription_ended_screen_content/root_panel": T.PANEL - "subscription_ended_screen_content/root_panel/gamepad_helpers": T.PANEL - "subscription_ended_screen_content/root_panel/main_panel": T.INPUT_PANEL - main_panel: T.INPUT_PANEL - "main_panel/dialog": T.PANEL - gamepad_helpers: T.PANEL - "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL - content_stack_panel: T.STACK_PANEL - "content_stack_panel/pad_0": T.PANEL - "content_stack_panel/main_content": T.PANEL - "content_stack_panel/pad_1": T.PANEL - "content_stack_panel/button_center_panel": T.PANEL - "content_stack_panel/button_center_panel/buttons": T.STACK_PANEL - "content_stack_panel/pad_2": T.PANEL - main_content_panel: T.PANEL - "main_content_panel/main_content_stack_panel": T.STACK_PANEL - "main_content_panel/main_content_stack_panel/image_panel": T.PANEL - "main_content_panel/main_content_stack_panel/pad": T.PANEL - "main_content_panel/main_content_stack_panel/text_panel": T.PANEL - "main_content_panel/main_content_stack_panel/text_panel/text": T.LABEL - buttons_panel: T.STACK_PANEL - "buttons_panel/more_info_button": T.BUTTON - "buttons_panel/pad": T.PANEL - "buttons_panel/renew_subscription_button": T.BUTTON + "subscription_ended_screen": T.SCREEN, + "subscription_ended_screen_content": T.PANEL, + "subscription_ended_screen_content/root_panel": T.PANEL, + "subscription_ended_screen_content/root_panel/gamepad_helpers": T.PANEL, + "subscription_ended_screen_content/root_panel/main_panel": T.INPUT_PANEL, + "main_panel": T.INPUT_PANEL, + "main_panel/dialog": T.PANEL, + "gamepad_helpers": T.PANEL, + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL, + "content_stack_panel": T.STACK_PANEL, + "content_stack_panel/pad_0": T.PANEL, + "content_stack_panel/main_content": T.PANEL, + "content_stack_panel/pad_1": T.PANEL, + "content_stack_panel/button_center_panel": T.PANEL, + "content_stack_panel/button_center_panel/buttons": T.STACK_PANEL, + "content_stack_panel/pad_2": T.PANEL, + "main_content_panel": T.PANEL, + "main_content_panel/main_content_stack_panel": T.STACK_PANEL, + "main_content_panel/main_content_stack_panel/image_panel": T.PANEL, + "main_content_panel/main_content_stack_panel/pad": T.PANEL, + "main_content_panel/main_content_stack_panel/text_panel": T.PANEL, + "main_content_panel/main_content_stack_panel/text_panel/text": T.LABEL, + "buttons_panel": T.STACK_PANEL, + "buttons_panel/more_info_button": T.BUTTON, + "buttons_panel/pad": T.PANEL, + "buttons_panel/renew_subscription_button": T.BUTTON, } export type RealmsPlusType = { - realms_plus_pdp_screen: T.SCREEN - realms_plus_upgrade_notice_screen: T.SCREEN - purple_background: T.IMAGE - "purple_background/bottom_left_particles": T.IMAGE - "purple_background/top_right_particles": T.IMAGE - main_background: T.PANEL - "main_background/dark_blue": T.IMAGE - "main_background/grey_gradient": T.IMAGE - dark_blue_background: T.IMAGE - gradient_image_stack: T.STACK_PANEL - "gradient_image_stack/solid_pink": T.IMAGE - "gradient_image_stack/gradient": T.IMAGE - gradient_content_panel: T.PANEL - "gradient_content_panel/gradient": T.STACK_PANEL - "gradient_content_panel/content_panel": T.UNKNOWN - realmsPlus_screen_main_panel: T.INPUT_PANEL - realmsPlus_main_panel: T.PANEL - "realmsPlus_main_panel/root_panel": T.PANEL - "realmsPlus_main_panel/root_panel/main_panel": T.STACK_PANEL - "realmsPlus_main_panel/popup_dialog_factory": T.FACTORY - dialog_content: T.PANEL - "dialog_content/selector_area": T.PANEL - "dialog_content/content_area": T.PANEL - "dialog_content/left_right_pane_divider": T.IMAGE - selector_area: T.PANEL - "selector_area/scrolling_panel": T.PANEL - scrollable_selector_area_content: T.STACK_PANEL - "scrollable_selector_area_content/realmsPlus_toggle": T.STACK_PANEL - "scrollable_selector_area_content/content_toggle": T.STACK_PANEL - "scrollable_selector_area_content/faq_toggle": T.STACK_PANEL - "scrollable_selector_area_content/toggle_section_divider": T.STACK_PANEL - "scrollable_selector_area_content/buy_now_toggle": T.STACK_PANEL - "scrollable_selector_area_content/xbl_btn_panel": T.PANEL - "scrollable_selector_area_content/xbl_btn_panel/xbl_btn": T.BUTTON - "scrollable_selector_area_content/focus_reset_input_panel": T.INPUT_PANEL - section_toggle_base: T.PANEL - tab_button_text: T.LABEL - toggle_base: T.STACK_PANEL - "toggle_base/toggle": T.PANEL - "toggle_base/padding": T.PANEL - realmsPlus_toggle: T.STACK_PANEL - content_toggle: T.STACK_PANEL - faq_toggle: T.STACK_PANEL - buy_now_toggle: T.STACK_PANEL - left_right_pane_divider: T.IMAGE - content_area: T.PANEL - "content_area/control": T.STACK_PANEL - "content_area/control/scrolling_panel": T.PANEL - section_content_panels: T.STACK_PANEL - content_section_top_padding: T.PANEL - section_base: T.STACK_PANEL - buy_now_content_section: T.STACK_PANEL - "buy_now_content_section/content_section_top_padding": T.PANEL - "buy_now_content_section/content": T.STACK_PANEL - markdown_background_animated: T.PANEL - "markdown_background_animated/realms_banner": T.STACK_PANEL - "markdown_background_animated/realms_plus_normal": T.IMAGE - "markdown_background_animated/realms_plus_hover": T.IMAGE - markdown_background: T.STACK_PANEL - "markdown_background/banner_panel": T.PANEL - "markdown_background/banner_panel/banner": T.IMAGE - "markdown_background/banner_panel/banner/banner_stack_panel": T.STACK_PANEL - "markdown_background/banner_panel/banner/banner_stack_panel/0": T.UNKNOWN - "markdown_background/triangle_panel": T.PANEL - "markdown_background/triangle_panel/triangle": T.IMAGE - empty_label: T.PANEL - full_width_section_divider: T.STACK_PANEL + "realms_plus_pdp_screen": T.SCREEN, + "realms_plus_upgrade_notice_screen": T.SCREEN, + "purple_background": T.IMAGE, + "purple_background/bottom_left_particles": T.IMAGE, + "purple_background/top_right_particles": T.IMAGE, + "main_background": T.PANEL, + "main_background/dark_blue": T.IMAGE, + "main_background/grey_gradient": T.IMAGE, + "dark_blue_background": T.IMAGE, + "gradient_image_stack": T.STACK_PANEL, + "gradient_image_stack/solid_pink": T.IMAGE, + "gradient_image_stack/gradient": T.IMAGE, + "gradient_content_panel": T.PANEL, + "gradient_content_panel/gradient": T.STACK_PANEL, + "gradient_content_panel/content_panel": T.UNKNOWN, + "realmsPlus_screen_main_panel": T.INPUT_PANEL, + "realmsPlus_main_panel": T.PANEL, + "realmsPlus_main_panel/root_panel": T.PANEL, + "realmsPlus_main_panel/root_panel/main_panel": T.STACK_PANEL, + "realmsPlus_main_panel/popup_dialog_factory": T.FACTORY, + "dialog_content": T.PANEL, + "dialog_content/selector_area": T.PANEL, + "dialog_content/content_area": T.PANEL, + "dialog_content/left_right_pane_divider": T.IMAGE, + "selector_area": T.PANEL, + "selector_area/scrolling_panel": T.PANEL, + "scrollable_selector_area_content": T.STACK_PANEL, + "scrollable_selector_area_content/realmsPlus_toggle": T.STACK_PANEL, + "scrollable_selector_area_content/content_toggle": T.STACK_PANEL, + "scrollable_selector_area_content/faq_toggle": T.STACK_PANEL, + "scrollable_selector_area_content/toggle_section_divider": T.STACK_PANEL, + "scrollable_selector_area_content/buy_now_toggle": T.STACK_PANEL, + "scrollable_selector_area_content/xbl_btn_panel": T.PANEL, + "scrollable_selector_area_content/xbl_btn_panel/xbl_btn": T.BUTTON, + "scrollable_selector_area_content/focus_reset_input_panel": T.INPUT_PANEL, + "section_toggle_base": T.PANEL, + "tab_button_text": T.LABEL, + "toggle_base": T.STACK_PANEL, + "toggle_base/toggle": T.PANEL, + "toggle_base/padding": T.PANEL, + "realmsPlus_toggle": T.STACK_PANEL, + "content_toggle": T.STACK_PANEL, + "faq_toggle": T.STACK_PANEL, + "buy_now_toggle": T.STACK_PANEL, + "left_right_pane_divider": T.IMAGE, + "content_area": T.PANEL, + "content_area/control": T.STACK_PANEL, + "content_area/control/scrolling_panel": T.PANEL, + "section_content_panels": T.STACK_PANEL, + "content_section_top_padding": T.PANEL, + "section_base": T.STACK_PANEL, + "buy_now_content_section": T.STACK_PANEL, + "buy_now_content_section/content_section_top_padding": T.PANEL, + "buy_now_content_section/content": T.STACK_PANEL, + "markdown_background_animated": T.PANEL, + "markdown_background_animated/realms_banner": T.STACK_PANEL, + "markdown_background_animated/realms_plus_normal": T.IMAGE, + "markdown_background_animated/realms_plus_hover": T.IMAGE, + "markdown_background": T.STACK_PANEL, + "markdown_background/banner_panel": T.PANEL, + "markdown_background/banner_panel/banner": T.IMAGE, + "markdown_background/banner_panel/banner/banner_stack_panel": T.STACK_PANEL, + "markdown_background/banner_panel/banner/banner_stack_panel/0": T.UNKNOWN, + "markdown_background/triangle_panel": T.PANEL, + "markdown_background/triangle_panel/triangle": T.IMAGE, + "empty_label": T.PANEL, + "full_width_section_divider": T.STACK_PANEL, } export type RealmsPlusContentType = { - realmsPlus_content_section: T.STACK_PANEL - "realmsPlus_content_section/content_section_top_padding": T.PANEL - "realmsPlus_content_section/content_sections": T.STACK_PANEL - "realmsPlus_content_section/content_section_bottom_padding": T.PANEL - content_pack_types_section: T.STACK_PANEL - "content_pack_types_section/includes_marketplace_pass_wrapper": T.PANEL - "content_pack_types_section/padding_contentSub": T.PANEL - "content_pack_types_section/pack_types_wrapper": T.PANEL - content_packs_included_section: T.STACK_PANEL - "content_packs_included_section/popular_packs": T.STACK_PANEL - "content_packs_included_section/section_divider": T.STACK_PANEL - persona_row: T.PANEL - "persona_row/persona": T.STACK_PANEL - worlds_row: T.STACK_PANEL - pack_types: T.STACK_PANEL - "pack_types/middle_row": T.PANEL - "pack_types/middle_row/worlds_contentSub": T.STACK_PANEL - "pack_types/middle_row/textures": T.STACK_PANEL - "pack_types/bottom_row": T.PANEL - "pack_types/bottom_row/skins_persona_contentSub": T.STACK_PANEL - "pack_types/bottom_row/mashups": T.STACK_PANEL - "pack_types/bottom_contentSub": T.PANEL - skins: T.STACK_PANEL - friends_get_access: T.LABEL - pack_type_row_panel: T.PANEL - pack_type_description: T.STACK_PANEL - "pack_type_description/image_nesting_panel": T.PANEL - "pack_type_description/image_nesting_panel/texture": T.UNKNOWN - "pack_type_description/padding_0": T.PANEL - "pack_type_description/description_nesting_panel": T.PANEL - "pack_type_description/description_nesting_panel/description_label": T.LABEL - popular_packs: T.STACK_PANEL - "popular_packs/padding_0": T.PANEL - "popular_packs/pack_grid": T.STACK_PANEL - "popular_packs/view_all_packs_panel": T.PANEL - "popular_packs/view_all_packs_panel/view_all_packs_button": T.BUTTON - "popular_packs/padding_1": T.PANEL - "popular_packs/view_character_creator_items_button": T.BUTTON - "popular_packs/padding_2": T.PANEL - popular_packs_label: T.LABEL - includes_marketplace_pass: T.PANEL - includes_marketplace_pass_label: T.LABEL - packs_collection: T.STACK_PANEL - "packs_collection/row_1": T.STACK_PANEL - "packs_collection/row_1/pack_image_grid_item_0": T.PANEL - "packs_collection/row_1/padding": T.PANEL - "packs_collection/row_1/pack_image_grid_item_1": T.PANEL - "packs_collection/padding_1": T.PANEL - "packs_collection/row_2": T.STACK_PANEL - "packs_collection/row_2/pack_image_grid_item_0": T.PANEL - "packs_collection/row_2/padding": T.PANEL - "packs_collection/row_2/pack_image_grid_item_1": T.PANEL - "packs_collection/padding_2": T.PANEL - pack_image_grid_item: T.PANEL - "pack_image_grid_item/bg": T.IMAGE - "pack_image_grid_item/bg/featured_key_art": T.IMAGE - "pack_image_grid_item/bg/progress_loading": T.PANEL - "pack_image_grid_item/offer_button": T.BUTTON - "pack_image_grid_item/offer_button/default": T.IMAGE - "pack_image_grid_item/offer_button/hover": T.IMAGE - "pack_image_grid_item/offer_button/pressed": T.IMAGE + "realmsPlus_content_section": T.STACK_PANEL, + "realmsPlus_content_section/content_section_top_padding": T.PANEL, + "realmsPlus_content_section/content_sections": T.STACK_PANEL, + "realmsPlus_content_section/content_section_bottom_padding": T.PANEL, + "content_pack_types_section": T.STACK_PANEL, + "content_pack_types_section/includes_marketplace_pass_wrapper": T.PANEL, + "content_pack_types_section/padding_contentSub": T.PANEL, + "content_pack_types_section/pack_types_wrapper": T.PANEL, + "content_packs_included_section": T.STACK_PANEL, + "content_packs_included_section/popular_packs": T.STACK_PANEL, + "content_packs_included_section/section_divider": T.STACK_PANEL, + "persona_row": T.PANEL, + "persona_row/persona": T.STACK_PANEL, + "worlds_row": T.STACK_PANEL, + "pack_types": T.STACK_PANEL, + "pack_types/middle_row": T.PANEL, + "pack_types/middle_row/worlds_contentSub": T.STACK_PANEL, + "pack_types/middle_row/textures": T.STACK_PANEL, + "pack_types/bottom_row": T.PANEL, + "pack_types/bottom_row/skins_persona_contentSub": T.STACK_PANEL, + "pack_types/bottom_row/mashups": T.STACK_PANEL, + "pack_types/bottom_contentSub": T.PANEL, + "skins": T.STACK_PANEL, + "friends_get_access": T.LABEL, + "pack_type_row_panel": T.PANEL, + "pack_type_description": T.STACK_PANEL, + "pack_type_description/image_nesting_panel": T.PANEL, + "pack_type_description/image_nesting_panel/texture": T.UNKNOWN, + "pack_type_description/padding_0": T.PANEL, + "pack_type_description/description_nesting_panel": T.PANEL, + "pack_type_description/description_nesting_panel/description_label": T.LABEL, + "popular_packs": T.STACK_PANEL, + "popular_packs/padding_0": T.PANEL, + "popular_packs/pack_grid": T.STACK_PANEL, + "popular_packs/view_all_packs_panel": T.PANEL, + "popular_packs/view_all_packs_panel/view_all_packs_button": T.BUTTON, + "popular_packs/padding_1": T.PANEL, + "popular_packs/view_character_creator_items_button": T.BUTTON, + "popular_packs/padding_2": T.PANEL, + "popular_packs_label": T.LABEL, + "includes_marketplace_pass": T.PANEL, + "includes_marketplace_pass_label": T.LABEL, + "packs_collection": T.STACK_PANEL, + "packs_collection/row_1": T.STACK_PANEL, + "packs_collection/row_1/pack_image_grid_item_0": T.PANEL, + "packs_collection/row_1/padding": T.PANEL, + "packs_collection/row_1/pack_image_grid_item_1": T.PANEL, + "packs_collection/padding_1": T.PANEL, + "packs_collection/row_2": T.STACK_PANEL, + "packs_collection/row_2/pack_image_grid_item_0": T.PANEL, + "packs_collection/row_2/padding": T.PANEL, + "packs_collection/row_2/pack_image_grid_item_1": T.PANEL, + "packs_collection/padding_2": T.PANEL, + "pack_image_grid_item": T.PANEL, + "pack_image_grid_item/bg": T.IMAGE, + "pack_image_grid_item/bg/featured_key_art": T.IMAGE, + "pack_image_grid_item/bg/progress_loading": T.PANEL, + "pack_image_grid_item/offer_button": T.BUTTON, + "pack_image_grid_item/offer_button/default": T.IMAGE, + "pack_image_grid_item/offer_button/hover": T.IMAGE, + "pack_image_grid_item/offer_button/pressed": T.IMAGE, } export type RealmsPlusFaqType = { - faq_image_section: T.PANEL - faq_image_local: T.IMAGE - faq_image_type: T.PANEL - "faq_image_type/0": T.UNKNOWN - faq_text_section_body: T.STACK_PANEL - faq_text_question: T.LABEL - faq_text_section: T.STACK_PANEL - "faq_text_section/faq_text_question": T.LABEL - "faq_text_section/faq_text_answer": T.LABEL - faq_price_bound_text_section: T.STACK_PANEL - "faq_price_bound_text_section/faq_text_question": T.LABEL - "faq_price_bound_text_section/faq_text_answer": T.LABEL - faq_question_body: T.STACK_PANEL - "faq_question_body/0": T.UNKNOWN - faq_question_body_stack: T.STACK_PANEL - faq_question_body_horz_padding: T.PANEL - image_left_faq_question_body: T.BUTTON - image_right_faq_question_body: T.BUTTON - image_left_faq_question_body_flip: T.PANEL - "image_left_faq_question_body_flip/faq_question_left": T.BUTTON - image_right_faq_question_body_flip: T.PANEL - "image_right_faq_question_body_flip/faq_question_right": T.BUTTON - image_left_faq_price_bound: T.BUTTON - faq_section_header_space: T.PANEL - faq_section_divider: T.STACK_PANEL - faq_content_section: T.STACK_PANEL - "faq_content_section/content_section_top_padding_1": T.PANEL - "faq_content_section/faq_header": T.LABEL - "faq_content_section/content_section_top_padding_2": T.PANEL - "faq_content_section/faq_question_1": T.BUTTON - "faq_content_section/faq_question_1_divider": T.STACK_PANEL - "faq_content_section/faq_question_2": T.BUTTON - "faq_content_section/faq_question_2_divider": T.STACK_PANEL - "faq_content_section/faq_question_3": T.BUTTON - "faq_content_section/faq_question_3_divider": T.STACK_PANEL - "faq_content_section/faq_question_4": T.BUTTON - "faq_content_section/faq_question_4_divider": T.STACK_PANEL - "faq_content_section/faq_question_5": T.PANEL - "faq_content_section/faq_question_5_divider": T.STACK_PANEL - "faq_content_section/faq_question_6": T.PANEL - "faq_content_section/faq_question_6_divider": T.STACK_PANEL - "faq_content_section/faq_question_7": T.PANEL - "faq_content_section/faq_question_7_divider": T.STACK_PANEL - "faq_content_section/faq_question_8": T.PANEL - "faq_content_section/faq_question_8_divider": T.STACK_PANEL - "faq_content_section/faq_question_9": T.PANEL - "faq_content_section/faq_question_9_divider": T.STACK_PANEL - "faq_content_section/faq_question_10": T.PANEL - "faq_content_section/faq_question_10_divider": T.STACK_PANEL - "faq_content_section/faq_question_11": T.PANEL - "faq_content_section/content_section_top_padding_3": T.PANEL + "faq_image_section": T.PANEL, + "faq_image_local": T.IMAGE, + "faq_image_type": T.PANEL, + "faq_image_type/0": T.UNKNOWN, + "faq_text_section_body": T.STACK_PANEL, + "faq_text_question": T.LABEL, + "faq_text_section": T.STACK_PANEL, + "faq_text_section/faq_text_question": T.LABEL, + "faq_text_section/faq_text_answer": T.LABEL, + "faq_price_bound_text_section": T.STACK_PANEL, + "faq_price_bound_text_section/faq_text_question": T.LABEL, + "faq_price_bound_text_section/faq_text_answer": T.LABEL, + "faq_question_body": T.STACK_PANEL, + "faq_question_body/0": T.UNKNOWN, + "faq_question_body_stack": T.STACK_PANEL, + "faq_question_body_horz_padding": T.PANEL, + "image_left_faq_question_body": T.BUTTON, + "image_right_faq_question_body": T.BUTTON, + "image_left_faq_question_body_flip": T.PANEL, + "image_left_faq_question_body_flip/faq_question_left": T.BUTTON, + "image_right_faq_question_body_flip": T.PANEL, + "image_right_faq_question_body_flip/faq_question_right": T.BUTTON, + "image_left_faq_price_bound": T.BUTTON, + "faq_section_header_space": T.PANEL, + "faq_section_divider": T.STACK_PANEL, + "faq_content_section": T.STACK_PANEL, + "faq_content_section/content_section_top_padding_1": T.PANEL, + "faq_content_section/faq_header": T.LABEL, + "faq_content_section/content_section_top_padding_2": T.PANEL, + "faq_content_section/faq_question_1": T.BUTTON, + "faq_content_section/faq_question_1_divider": T.STACK_PANEL, + "faq_content_section/faq_question_2": T.BUTTON, + "faq_content_section/faq_question_2_divider": T.STACK_PANEL, + "faq_content_section/faq_question_3": T.BUTTON, + "faq_content_section/faq_question_3_divider": T.STACK_PANEL, + "faq_content_section/faq_question_4": T.BUTTON, + "faq_content_section/faq_question_4_divider": T.STACK_PANEL, + "faq_content_section/faq_question_5": T.PANEL, + "faq_content_section/faq_question_5_divider": T.STACK_PANEL, + "faq_content_section/faq_question_6": T.PANEL, + "faq_content_section/faq_question_6_divider": T.STACK_PANEL, + "faq_content_section/faq_question_7": T.PANEL, + "faq_content_section/faq_question_7_divider": T.STACK_PANEL, + "faq_content_section/faq_question_8": T.PANEL, + "faq_content_section/faq_question_8_divider": T.STACK_PANEL, + "faq_content_section/faq_question_9": T.PANEL, + "faq_content_section/faq_question_9_divider": T.STACK_PANEL, + "faq_content_section/faq_question_10": T.PANEL, + "faq_content_section/faq_question_10_divider": T.STACK_PANEL, + "faq_content_section/faq_question_11": T.PANEL, + "faq_content_section/content_section_top_padding_3": T.PANEL, } export type RealmsPlusLandingType = { - landing_content_section: T.STACK_PANEL - "landing_content_section/landing_content": T.STACK_PANEL - "landing_content_section/landing_content/title_stack": T.STACK_PANEL - "landing_content_section/landing_content/vertical_small_spacer_0": T.PANEL - "landing_content_section/landing_content/divider_panel": T.PANEL - "landing_content_section/landing_content/divider_panel/section_divider": T.STACK_PANEL - "landing_content_section/landing_content/vertical_small_spacer_1": T.PANEL - "landing_content_section/landing_content/info_stack": T.STACK_PANEL - "landing_content_section/landing_content/vertical_small_spacer_2": T.PANEL - horizontal_small_spacer: T.PANEL - vertical_small_spacer: T.PANEL - vertical_med_spacer: T.PANEL - vertical_large_spacer: T.PANEL - title_stack: T.STACK_PANEL - "title_stack/title_image_panel": T.PANEL - "title_stack/gradient_panel": T.PANEL - "title_stack/gradient_panel/label_with_gradient_wrapper": T.PANEL - "title_stack/vertical_space": T.PANEL - "title_stack/action_button": T.PANEL - "title_stack/sign_in_button": T.PANEL - "title_stack/vertical_space2": T.PANEL - label_with_gradient: T.PANEL - free_trial_text: T.LABEL - title_image_panel: T.PANEL - "title_image_panel/title_image_container": T.STACK_PANEL - "title_image_panel/title_image_container/title_image": T.IMAGE - "title_image_panel/title_image_container/title_art_image": T.IMAGE - "title_image_panel/title_image_pre_release_container": T.PANEL - "title_image_panel/title_image_pre_release_container/title_image_pre_release": T.IMAGE - info_stack: T.STACK_PANEL - "info_stack/info_stack": T.PANEL - "info_stack/info_stack/info_description_stack_retail": T.STACK_PANEL - "info_stack/info_stack/info_description_stack_preview": T.PANEL - info_description_stack_retail: T.STACK_PANEL - "info_description_stack_retail/info_section_stack_1": T.STACK_PANEL - "info_description_stack_retail/info_section_stack_1/horizontal_small_spacer": T.PANEL - "info_description_stack_retail/info_section_stack_1/info_section_text_1_wrapper": T.PANEL - "info_description_stack_retail/vertical_med_spacer0": T.PANEL - "info_description_stack_retail/divider_centering_panel": T.PANEL - "info_description_stack_retail/divider_centering_panel/divider": T.STACK_PANEL - "info_description_stack_retail/vertical_med_spacer1": T.PANEL - "info_description_stack_retail/info_section_stack_recently_added": T.STACK_PANEL - "info_description_stack_retail/info_section_stack_recently_added/horizontal_small_spacer": T.PANEL - "info_description_stack_retail/info_section_stack_recently_added/info_section_text_recently_added_wrapper": T.PANEL - "info_description_stack_retail/vertical_med_spacer2": T.PANEL - "info_description_stack_retail/divider_centering_panel2": T.PANEL - "info_description_stack_retail/divider_centering_panel2/divider2": T.STACK_PANEL - "info_description_stack_retail/vertical_med_spacer3": T.PANEL - "info_description_stack_retail/info_section_stack_2": T.STACK_PANEL - "info_description_stack_retail/info_section_stack_2/horizontal_small_spacer": T.PANEL - "info_description_stack_retail/info_section_stack_2/info_section_text_2_wrapper": T.PANEL - info_description_stack_prerelease: T.PANEL - "info_description_stack_prerelease/info_section_stack": T.STACK_PANEL - "info_description_stack_prerelease/info_section_stack/horizontal_large_spacer": T.PANEL - "info_description_stack_prerelease/info_section_stack/info_section_text_3_wrapper": T.PANEL - info_section_stack: T.STACK_PANEL - info_section_text_1: T.STACK_PANEL - "info_section_text_1/info_text_bullet_1": T.STACK_PANEL - "info_section_text_1/vertical_small_spacer_0": T.PANEL - "info_section_text_1/info_text_bullet_2": T.STACK_PANEL - "info_section_text_1/vertical_small_spacer_1": T.PANEL - "info_section_text_1/info_text_bullet_3": T.STACK_PANEL - info_section_text_recently_added: T.STACK_PANEL - "info_section_text_recently_added/recently_added_header": T.LABEL - "info_section_text_recently_added/info_text_bullet_contentSub": T.STACK_PANEL - "info_section_text_recently_added/info_text_bullet_contentSub/vertical_small_spacer_0": T.PANEL - "info_section_text_recently_added/info_text_bullet_contentSub/info_text_bullet_0": T.STACK_PANEL - "info_section_text_recently_added/vertical_small_spacer_1": T.PANEL - "info_section_text_recently_added/info_text_bullet_1": T.STACK_PANEL - "info_section_text_recently_added/vertical_small_spacer_2": T.PANEL - "info_section_text_recently_added/info_text_bullet_2": T.STACK_PANEL - info_section_text_2: T.STACK_PANEL - "info_section_text_2/info_text_bullet_2": T.STACK_PANEL - "info_section_text_2/vertical_small_spacer_0": T.PANEL - "info_section_text_2/info_text_bullet_3": T.STACK_PANEL - "info_section_text_2/vertical_small_spacer_1": T.PANEL - "info_section_text_2/info_text_bullet_4": T.STACK_PANEL - "info_section_text_2/info_text_bullet_notFreeTrial": T.STACK_PANEL - "info_section_text_2/info_text_bullet_notFreeTrial/vertical_small_spacer": T.PANEL - "info_section_text_2/info_text_bullet_notFreeTrial/info_text_bullet_4": T.STACK_PANEL - info_section_text_3: T.STACK_PANEL - "info_section_text_3/info_text_unbulletted_1": T.PANEL - "info_section_text_3/vertical_large_spacer_0": T.PANEL - "info_section_text_3/info_text_unbulletted_2": T.PANEL - "info_section_text_3/vertical_large_spacer_1": T.PANEL - "info_section_text_3/info_text_unbulletted_3": T.PANEL - "info_section_text_3/vertical_large_spacer_2": T.PANEL - "info_section_text_3/info_text_unbulletted_4": T.PANEL - info_section_text: T.STACK_PANEL - info_text_bullet: T.STACK_PANEL - "info_text_bullet/info_text_bullet_bullet": T.LABEL - "info_text_bullet/info_text_bullet_body": T.LABEL - info_text_unbulletted: T.PANEL - "info_text_unbulletted/info_text_bullet_body": T.LABEL + "landing_content_section": T.STACK_PANEL, + "landing_content_section/landing_content": T.STACK_PANEL, + "landing_content_section/landing_content/title_stack": T.STACK_PANEL, + "landing_content_section/landing_content/vertical_small_spacer_0": T.PANEL, + "landing_content_section/landing_content/divider_panel": T.PANEL, + "landing_content_section/landing_content/divider_panel/section_divider": T.STACK_PANEL, + "landing_content_section/landing_content/vertical_small_spacer_1": T.PANEL, + "landing_content_section/landing_content/info_stack": T.STACK_PANEL, + "landing_content_section/landing_content/vertical_small_spacer_2": T.PANEL, + "horizontal_small_spacer": T.PANEL, + "vertical_small_spacer": T.PANEL, + "vertical_med_spacer": T.PANEL, + "vertical_large_spacer": T.PANEL, + "title_stack": T.STACK_PANEL, + "title_stack/title_image_panel": T.PANEL, + "title_stack/gradient_panel": T.PANEL, + "title_stack/gradient_panel/label_with_gradient_wrapper": T.PANEL, + "title_stack/vertical_space": T.PANEL, + "title_stack/action_button": T.PANEL, + "title_stack/sign_in_button": T.PANEL, + "title_stack/vertical_space2": T.PANEL, + "label_with_gradient": T.PANEL, + "free_trial_text": T.LABEL, + "title_image_panel": T.PANEL, + "title_image_panel/title_image_container": T.STACK_PANEL, + "title_image_panel/title_image_container/title_image": T.IMAGE, + "title_image_panel/title_image_container/title_art_image": T.IMAGE, + "title_image_panel/title_image_pre_release_container": T.PANEL, + "title_image_panel/title_image_pre_release_container/title_image_pre_release": T.IMAGE, + "info_stack": T.STACK_PANEL, + "info_stack/info_stack": T.PANEL, + "info_stack/info_stack/info_description_stack_retail": T.STACK_PANEL, + "info_stack/info_stack/info_description_stack_preview": T.PANEL, + "info_description_stack_retail": T.STACK_PANEL, + "info_description_stack_retail/info_section_stack_1": T.STACK_PANEL, + "info_description_stack_retail/info_section_stack_1/horizontal_small_spacer": T.PANEL, + "info_description_stack_retail/info_section_stack_1/info_section_text_1_wrapper": T.PANEL, + "info_description_stack_retail/vertical_med_spacer0": T.PANEL, + "info_description_stack_retail/divider_centering_panel": T.PANEL, + "info_description_stack_retail/divider_centering_panel/divider": T.STACK_PANEL, + "info_description_stack_retail/vertical_med_spacer1": T.PANEL, + "info_description_stack_retail/info_section_stack_recently_added": T.STACK_PANEL, + "info_description_stack_retail/info_section_stack_recently_added/horizontal_small_spacer": T.PANEL, + "info_description_stack_retail/info_section_stack_recently_added/info_section_text_recently_added_wrapper": T.PANEL, + "info_description_stack_retail/vertical_med_spacer2": T.PANEL, + "info_description_stack_retail/divider_centering_panel2": T.PANEL, + "info_description_stack_retail/divider_centering_panel2/divider2": T.STACK_PANEL, + "info_description_stack_retail/vertical_med_spacer3": T.PANEL, + "info_description_stack_retail/info_section_stack_2": T.STACK_PANEL, + "info_description_stack_retail/info_section_stack_2/horizontal_small_spacer": T.PANEL, + "info_description_stack_retail/info_section_stack_2/info_section_text_2_wrapper": T.PANEL, + "info_description_stack_prerelease": T.PANEL, + "info_description_stack_prerelease/info_section_stack": T.STACK_PANEL, + "info_description_stack_prerelease/info_section_stack/horizontal_large_spacer": T.PANEL, + "info_description_stack_prerelease/info_section_stack/info_section_text_3_wrapper": T.PANEL, + "info_section_stack": T.STACK_PANEL, + "info_section_text_1": T.STACK_PANEL, + "info_section_text_1/info_text_bullet_1": T.STACK_PANEL, + "info_section_text_1/vertical_small_spacer_0": T.PANEL, + "info_section_text_1/info_text_bullet_2": T.STACK_PANEL, + "info_section_text_1/vertical_small_spacer_1": T.PANEL, + "info_section_text_1/info_text_bullet_3": T.STACK_PANEL, + "info_section_text_recently_added": T.STACK_PANEL, + "info_section_text_recently_added/recently_added_header": T.LABEL, + "info_section_text_recently_added/info_text_bullet_contentSub": T.STACK_PANEL, + "info_section_text_recently_added/info_text_bullet_contentSub/vertical_small_spacer_0": T.PANEL, + "info_section_text_recently_added/info_text_bullet_contentSub/info_text_bullet_0": T.STACK_PANEL, + "info_section_text_recently_added/vertical_small_spacer_1": T.PANEL, + "info_section_text_recently_added/info_text_bullet_1": T.STACK_PANEL, + "info_section_text_recently_added/vertical_small_spacer_2": T.PANEL, + "info_section_text_recently_added/info_text_bullet_2": T.STACK_PANEL, + "info_section_text_2": T.STACK_PANEL, + "info_section_text_2/info_text_bullet_2": T.STACK_PANEL, + "info_section_text_2/vertical_small_spacer_0": T.PANEL, + "info_section_text_2/info_text_bullet_3": T.STACK_PANEL, + "info_section_text_2/vertical_small_spacer_1": T.PANEL, + "info_section_text_2/info_text_bullet_4": T.STACK_PANEL, + "info_section_text_2/info_text_bullet_notFreeTrial": T.STACK_PANEL, + "info_section_text_2/info_text_bullet_notFreeTrial/vertical_small_spacer": T.PANEL, + "info_section_text_2/info_text_bullet_notFreeTrial/info_text_bullet_4": T.STACK_PANEL, + "info_section_text_3": T.STACK_PANEL, + "info_section_text_3/info_text_unbulletted_1": T.PANEL, + "info_section_text_3/vertical_large_spacer_0": T.PANEL, + "info_section_text_3/info_text_unbulletted_2": T.PANEL, + "info_section_text_3/vertical_large_spacer_1": T.PANEL, + "info_section_text_3/info_text_unbulletted_3": T.PANEL, + "info_section_text_3/vertical_large_spacer_2": T.PANEL, + "info_section_text_3/info_text_unbulletted_4": T.PANEL, + "info_section_text": T.STACK_PANEL, + "info_text_bullet": T.STACK_PANEL, + "info_text_bullet/info_text_bullet_bullet": T.LABEL, + "info_text_bullet/info_text_bullet_body": T.LABEL, + "info_text_unbulletted": T.PANEL, + "info_text_unbulletted/info_text_bullet_body": T.LABEL, } export type RealmsPlusBuyType = { - buy_now_content: T.STACK_PANEL - "buy_now_content/description_stack": T.STACK_PANEL - "buy_now_content/realm_name": T.STACK_PANEL - "buy_now_content/terms_and_conditions": T.PANEL - "buy_now_content/padding_2": T.PANEL - "buy_now_content/buy_button": T.PANEL - "buy_now_content/padding_3": T.PANEL - "buy_now_content/platform_terms_factory": T.STACK_PANEL - content_text_section: T.STACK_PANEL - "content_text_section/text_description_wrapper": T.PANEL - "content_text_section/padding": T.PANEL - content_description: T.PANEL - "content_description/content_description_label": T.LABEL - trial_image_and_description: T.STACK_PANEL - "trial_image_and_description/realms_image": T.IMAGE - "trial_image_and_description/padding": T.PANEL - "trial_image_and_description/description_text_wrapper": T.PANEL - description_text: T.LABEL - title_text: T.LABEL - title_with_gradient: T.PANEL - description_stack: T.STACK_PANEL - "description_stack/title_with_gradient_wrapper": T.PANEL - "description_stack/padding": T.PANEL - "description_stack/image_and_description": T.STACK_PANEL - realm_name_stack: T.STACK_PANEL - "realm_name_stack/realm_name_label": T.LABEL - "realm_name_stack/padding_0": T.PANEL - "realm_name_stack/realm_name_text_box": T.EDIT_BOX - terms_and_conditions: T.PANEL - "terms_and_conditions/terms_panel": T.PANEL - terms_and_conditions_panel: T.PANEL - "terms_and_conditions_panel/name_label": T.LABEL - "terms_and_conditions_panel/terms_string_panel": T.PANEL - "terms_and_conditions_panel/terms_string_panel/banner_fill": T.IMAGE - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": T.STACK_PANEL - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": T.PANEL - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": T.TOGGLE - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": T.BUTTON - "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": T.BUTTON - button_text: T.LABEL - view_terms_button: T.BUTTON - privacy_policy_button: T.BUTTON - buy_button_panel: T.PANEL - "buy_button_panel/buy_button": T.BUTTON - buy_button_content: T.PANEL - "buy_button_content/button_chevron_panel": T.STACK_PANEL - "buy_button_content/button_chevron_panel/buy_button_chevron": T.PANEL - "buy_button_content/button_text": T.LABEL + "buy_now_content": T.STACK_PANEL, + "buy_now_content/description_stack": T.STACK_PANEL, + "buy_now_content/realm_name": T.STACK_PANEL, + "buy_now_content/terms_and_conditions": T.PANEL, + "buy_now_content/padding_2": T.PANEL, + "buy_now_content/buy_button": T.PANEL, + "buy_now_content/padding_3": T.PANEL, + "buy_now_content/platform_terms_factory": T.STACK_PANEL, + "content_text_section": T.STACK_PANEL, + "content_text_section/text_description_wrapper": T.PANEL, + "content_text_section/padding": T.PANEL, + "content_description": T.PANEL, + "content_description/content_description_label": T.LABEL, + "trial_image_and_description": T.STACK_PANEL, + "trial_image_and_description/realms_image": T.IMAGE, + "trial_image_and_description/padding": T.PANEL, + "trial_image_and_description/description_text_wrapper": T.PANEL, + "description_text": T.LABEL, + "title_text": T.LABEL, + "title_with_gradient": T.PANEL, + "description_stack": T.STACK_PANEL, + "description_stack/title_with_gradient_wrapper": T.PANEL, + "description_stack/padding": T.PANEL, + "description_stack/image_and_description": T.STACK_PANEL, + "realm_name_stack": T.STACK_PANEL, + "realm_name_stack/realm_name_label": T.LABEL, + "realm_name_stack/padding_0": T.PANEL, + "realm_name_stack/realm_name_text_box": T.EDIT_BOX, + "terms_and_conditions": T.PANEL, + "terms_and_conditions/terms_panel": T.PANEL, + "terms_and_conditions_panel": T.PANEL, + "terms_and_conditions_panel/name_label": T.LABEL, + "terms_and_conditions_panel/terms_string_panel": T.PANEL, + "terms_and_conditions_panel/terms_string_panel/banner_fill": T.IMAGE, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": T.STACK_PANEL, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": T.PANEL, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": T.TOGGLE, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": T.BUTTON, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": T.BUTTON, + "button_text": T.LABEL, + "view_terms_button": T.BUTTON, + "privacy_policy_button": T.BUTTON, + "buy_button_panel": T.PANEL, + "buy_button_panel/buy_button": T.BUTTON, + "buy_button_content": T.PANEL, + "buy_button_content/button_chevron_panel": T.STACK_PANEL, + "buy_button_content/button_chevron_panel/buy_button_chevron": T.PANEL, + "buy_button_content/button_text": T.LABEL, } export type RealmsPlusPacksType = { - view_all_packs_screen: T.SCREEN - view_packs_screen_content: T.PANEL - "view_packs_screen_content/main_panel": T.STACK_PANEL - realmsPlus_view_packs_screen_main_panel: T.INPUT_PANEL - main_panel: T.INPUT_PANEL - "main_panel/offers": T.PANEL - "main_panel/progress_loading": T.PANEL - scrolling_content_stack: T.STACK_PANEL - "scrolling_content_stack/padding_0": T.PANEL - "scrolling_content_stack/store_factory": T.STACK_PANEL + "view_all_packs_screen": T.SCREEN, + "view_packs_screen_content": T.PANEL, + "view_packs_screen_content/main_panel": T.STACK_PANEL, + "realmsPlus_view_packs_screen_main_panel": T.INPUT_PANEL, + "main_panel": T.INPUT_PANEL, + "main_panel/offers": T.PANEL, + "main_panel/progress_loading": T.PANEL, + "scrolling_content_stack": T.STACK_PANEL, + "scrolling_content_stack/padding_0": T.PANEL, + "scrolling_content_stack/store_factory": T.STACK_PANEL, } export type RealmsPlusPurchaseWarningType = { - realmsPlus_purchase_warning_screen: T.SCREEN - purchase_warning_screen_content: T.PANEL - "purchase_warning_screen_content/main_panel": T.PANEL - warning_modal_main_panel: T.STACK_PANEL - "warning_modal_main_panel/art_panel": T.PANEL - "warning_modal_main_panel/art_panel/art": T.IMAGE - "warning_modal_main_panel/padding": T.PANEL - "warning_modal_main_panel/text_panel": T.STACK_PANEL - "warning_modal_main_panel/text_panel/description_panel": T.PANEL - "warning_modal_main_panel/text_panel/description_panel/description_text": T.LABEL - "warning_modal_main_panel/text_panel/padding": T.PANEL - "warning_modal_main_panel/text_panel/checkbox_with_label_panel": T.STACK_PANEL - "warning_modal_main_panel/text_panel/checkbox_with_label_panel/checkbox_panel": T.TOGGLE - "warning_modal_main_panel/text_panel/checkbox_with_label_panel/padding": T.PANEL - "warning_modal_main_panel/text_panel/checkbox_with_label_panel/label_panel": T.PANEL - "warning_modal_main_panel/text_panel/checkbox_with_label_panel/label_panel/label_text": T.LABEL - warning_modal_button_panel: T.STACK_PANEL - "warning_modal_button_panel/back_button": T.BUTTON - "warning_modal_button_panel/padding": T.PANEL - "warning_modal_button_panel/continue_button": T.BUTTON + "realmsPlus_purchase_warning_screen": T.SCREEN, + "purchase_warning_screen_content": T.PANEL, + "purchase_warning_screen_content/main_panel": T.PANEL, + "warning_modal_main_panel": T.STACK_PANEL, + "warning_modal_main_panel/art_panel": T.PANEL, + "warning_modal_main_panel/art_panel/art": T.IMAGE, + "warning_modal_main_panel/padding": T.PANEL, + "warning_modal_main_panel/text_panel": T.STACK_PANEL, + "warning_modal_main_panel/text_panel/description_panel": T.PANEL, + "warning_modal_main_panel/text_panel/description_panel/description_text": T.LABEL, + "warning_modal_main_panel/text_panel/padding": T.PANEL, + "warning_modal_main_panel/text_panel/checkbox_with_label_panel": T.STACK_PANEL, + "warning_modal_main_panel/text_panel/checkbox_with_label_panel/checkbox_panel": T.TOGGLE, + "warning_modal_main_panel/text_panel/checkbox_with_label_panel/padding": T.PANEL, + "warning_modal_main_panel/text_panel/checkbox_with_label_panel/label_panel": T.PANEL, + "warning_modal_main_panel/text_panel/checkbox_with_label_panel/label_panel/label_text": T.LABEL, + "warning_modal_button_panel": T.STACK_PANEL, + "warning_modal_button_panel/back_button": T.BUTTON, + "warning_modal_button_panel/padding": T.PANEL, + "warning_modal_button_panel/continue_button": T.BUTTON, } export type RealmsStoriesTransitionType = { - realms_stories_transition_screen: T.SCREEN + "realms_stories_transition_screen": T.SCREEN, } export type RedstoneType = { - item_dropper_label: T.LABEL - dispenser_label: T.LABEL - crafter_label: T.LABEL - dropper_label: T.LABEL - hopper_label: T.LABEL - redstone_input_grid: T.GRID - redstone_panel_top_half: T.PANEL - "redstone_panel_top_half/redstone_input_grid": T.GRID - panel: T.PANEL - "panel/container_gamepad_helpers": T.STACK_PANEL - "panel/selected_item_details_factory": T.FACTORY - "panel/item_lock_notification_factory": T.FACTORY - "panel/root_panel": T.INPUT_PANEL - "panel/root_panel/common_panel": T.PANEL - "panel/root_panel/redstone_screen_inventory": T.PANEL - "panel/root_panel/redstone_screen_inventory/red_panel": T.PANEL - "panel/root_panel/redstone_screen_inventory/red_bottom_half": T.PANEL - "panel/root_panel/redstone_screen_inventory/hotbar_grid": T.GRID - "panel/root_panel/redstone_screen_inventory/red_hold_icon": T.BUTTON - "panel/root_panel/red_icon": T.BUTTON - "panel/root_panel/gamepad_cursor": T.BUTTON - "panel/flying_item_renderer": T.CUSTOM - crafter_input_grid: T.GRID - cell_image: T.IMAGE - crafter_highlight_slot: T.IMAGE - crafter_container_slot_button_prototype: T.BUTTON - crafter_highlight_slot_panel: T.PANEL - "crafter_highlight_slot_panel/highlight": T.IMAGE - "crafter_highlight_slot_panel/highlight/hover_text": T.CUSTOM - "crafter_highlight_slot_panel/white_border": T.IMAGE - crafter_enabled_slot_template: T.INPUT_PANEL - crafter_disabled_slot: T.BUTTON - "crafter_disabled_slot/default": T.IMAGE - "crafter_disabled_slot/hover": T.IMAGE - "crafter_disabled_slot/pressed": T.IMAGE - output_slot_hover_info: T.BUTTON - "output_slot_hover_info/hover": T.CUSTOM - "output_slot_hover_info/output_slot": T.CUSTOM - "output_slot_hover_info/output_slot_border": T.IMAGE - "output_slot_hover_info/output_count": T.LABEL - panel_crafter: T.PANEL - "panel_crafter/container_gamepad_helpers": T.STACK_PANEL - "panel_crafter/selected_item_details_factory": T.FACTORY - "panel_crafter/item_lock_notification_factory": T.FACTORY - "panel_crafter/root_panel": T.INPUT_PANEL - "panel_crafter/root_panel/common_panel": T.PANEL - "panel_crafter/root_panel/disabled_slot_0_button": T.BUTTON - "panel_crafter/root_panel/disabled_slot_1_button": T.BUTTON - "panel_crafter/root_panel/disabled_slot_2_button": T.BUTTON - "panel_crafter/root_panel/disabled_slot_3_button": T.BUTTON - "panel_crafter/root_panel/disabled_slot_4_button": T.BUTTON - "panel_crafter/root_panel/disabled_slot_5_button": T.BUTTON - "panel_crafter/root_panel/disabled_slot_6_button": T.BUTTON - "panel_crafter/root_panel/disabled_slot_7_button": T.BUTTON - "panel_crafter/root_panel/disabled_slot_8_button": T.BUTTON - "panel_crafter/root_panel/redstone_screen_inventory": T.PANEL - "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid": T.PANEL - "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid/crafter_input_grid": T.GRID - "panel_crafter/root_panel/redstone_screen_inventory/red_bottom_half": T.PANEL - "panel_crafter/root_panel/redstone_screen_inventory/hotbar_grid": T.GRID - "panel_crafter/root_panel/redstone_screen_inventory/red_hold_icon": T.BUTTON - "panel_crafter/root_panel/redstone_screen_inventory/redstone_wire_line": T.IMAGE - "panel_crafter/root_panel/redstone_screen_inventory/crafter_output": T.BUTTON - "panel_crafter/root_panel/red_icon": T.BUTTON - "panel_crafter/root_panel/gamepad_cursor": T.BUTTON - "panel_crafter/flying_item_renderer": T.CUSTOM - hopper_screen: T.SCREEN - dispenser_screen: T.SCREEN - crafter_screen: T.SCREEN - dropper_screen: T.SCREEN + "item_dropper_label": T.LABEL, + "dispenser_label": T.LABEL, + "crafter_label": T.LABEL, + "dropper_label": T.LABEL, + "hopper_label": T.LABEL, + "redstone_input_grid": T.GRID, + "redstone_panel_top_half": T.PANEL, + "redstone_panel_top_half/redstone_input_grid": T.GRID, + "panel": T.PANEL, + "panel/container_gamepad_helpers": T.STACK_PANEL, + "panel/selected_item_details_factory": T.FACTORY, + "panel/item_lock_notification_factory": T.FACTORY, + "panel/root_panel": T.INPUT_PANEL, + "panel/root_panel/common_panel": T.PANEL, + "panel/root_panel/redstone_screen_inventory": T.PANEL, + "panel/root_panel/redstone_screen_inventory/red_panel": T.PANEL, + "panel/root_panel/redstone_screen_inventory/red_bottom_half": T.PANEL, + "panel/root_panel/redstone_screen_inventory/hotbar_grid": T.GRID, + "panel/root_panel/redstone_screen_inventory/red_hold_icon": T.BUTTON, + "panel/root_panel/red_icon": T.BUTTON, + "panel/root_panel/gamepad_cursor": T.BUTTON, + "panel/flying_item_renderer": T.CUSTOM, + "crafter_input_grid": T.GRID, + "cell_image": T.IMAGE, + "crafter_highlight_slot": T.IMAGE, + "crafter_container_slot_button_prototype": T.BUTTON, + "crafter_highlight_slot_panel": T.PANEL, + "crafter_highlight_slot_panel/highlight": T.IMAGE, + "crafter_highlight_slot_panel/highlight/hover_text": T.CUSTOM, + "crafter_highlight_slot_panel/white_border": T.IMAGE, + "crafter_enabled_slot_template": T.INPUT_PANEL, + "crafter_disabled_slot": T.BUTTON, + "crafter_disabled_slot/default": T.IMAGE, + "crafter_disabled_slot/hover": T.IMAGE, + "crafter_disabled_slot/pressed": T.IMAGE, + "output_slot_hover_info": T.BUTTON, + "output_slot_hover_info/hover": T.CUSTOM, + "output_slot_hover_info/output_slot": T.CUSTOM, + "output_slot_hover_info/output_slot_border": T.IMAGE, + "output_slot_hover_info/output_count": T.LABEL, + "panel_crafter": T.PANEL, + "panel_crafter/container_gamepad_helpers": T.STACK_PANEL, + "panel_crafter/selected_item_details_factory": T.FACTORY, + "panel_crafter/item_lock_notification_factory": T.FACTORY, + "panel_crafter/root_panel": T.INPUT_PANEL, + "panel_crafter/root_panel/common_panel": T.PANEL, + "panel_crafter/root_panel/disabled_slot_0_button": T.BUTTON, + "panel_crafter/root_panel/disabled_slot_1_button": T.BUTTON, + "panel_crafter/root_panel/disabled_slot_2_button": T.BUTTON, + "panel_crafter/root_panel/disabled_slot_3_button": T.BUTTON, + "panel_crafter/root_panel/disabled_slot_4_button": T.BUTTON, + "panel_crafter/root_panel/disabled_slot_5_button": T.BUTTON, + "panel_crafter/root_panel/disabled_slot_6_button": T.BUTTON, + "panel_crafter/root_panel/disabled_slot_7_button": T.BUTTON, + "panel_crafter/root_panel/disabled_slot_8_button": T.BUTTON, + "panel_crafter/root_panel/redstone_screen_inventory": T.PANEL, + "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid": T.PANEL, + "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid/crafter_input_grid": T.GRID, + "panel_crafter/root_panel/redstone_screen_inventory/red_bottom_half": T.PANEL, + "panel_crafter/root_panel/redstone_screen_inventory/hotbar_grid": T.GRID, + "panel_crafter/root_panel/redstone_screen_inventory/red_hold_icon": T.BUTTON, + "panel_crafter/root_panel/redstone_screen_inventory/redstone_wire_line": T.IMAGE, + "panel_crafter/root_panel/redstone_screen_inventory/crafter_output": T.BUTTON, + "panel_crafter/root_panel/red_icon": T.BUTTON, + "panel_crafter/root_panel/gamepad_cursor": T.BUTTON, + "panel_crafter/flying_item_renderer": T.CUSTOM, + "hopper_screen": T.SCREEN, + "dispenser_screen": T.SCREEN, + "crafter_screen": T.SCREEN, + "dropper_screen": T.SCREEN, } export type ResourcePacksType = { - black_image: T.IMAGE - gray_image: T.IMAGE - yellow_image: T.IMAGE - white_image: T.PANEL - "white_image/border": T.IMAGE - icon_image: T.IMAGE - resource_packs_toggle_button_control: T.PANEL - "resource_packs_toggle_button_control/icon_border": T.PANEL - "resource_packs_toggle_button_control/cycling_icon": T.IMAGE - "resource_packs_toggle_button_control/tab_button_text": T.LABEL - resource_packs_section_toggle_base: T.PANEL - selected_icon_image: T.IMAGE - available_icon_image: T.IMAGE - realms_icon_image: T.IMAGE - unowned_icon_image: T.IMAGE - invalid_icon_image: T.IMAGE - minus_image: T.IMAGE - plus_image: T.IMAGE - minus_text: T.LABEL - plus_text: T.LABEL - store_text: T.LABEL - error_image: T.IMAGE - error_image_hover: T.IMAGE - error_image_panel: T.PANEL - "error_image_panel/default": T.IMAGE - "error_image_panel/hover": T.IMAGE - warning_image: T.IMAGE - warning_image_hover: T.IMAGE - warning_panel: T.PANEL - "warning_panel/default": T.IMAGE - "warning_panel/hover": T.IMAGE - no_error_image: T.IMAGE - no_error_image_hover: T.IMAGE - no_error_panel: T.PANEL - "no_error_panel/default": T.IMAGE - "no_error_panel/hover": T.IMAGE - up_arrow_image: T.IMAGE - down_arrow_image: T.IMAGE - up_arrow_image_hover: T.IMAGE - down_arrow_image_hover: T.IMAGE - up_arrow_panel: T.PANEL - "up_arrow_panel/default": T.IMAGE - "up_arrow_panel/hover": T.IMAGE - up_arrow_wrapper: T.PANEL - "up_arrow_wrapper/down_arrow": T.PANEL - "up_arrow_wrapper/divider_right": T.PANEL - down_arrow_panel: T.PANEL - "down_arrow_panel/default": T.IMAGE - "down_arrow_panel/hover": T.IMAGE - down_arrow_wrapper: T.PANEL - "down_arrow_wrapper/down_arrow": T.PANEL - "down_arrow_wrapper/divider_right": T.PANEL - progress_loading_bars: T.IMAGE - warning_image_wrapper: T.PANEL - "warning_image_wrapper/error_image": T.PANEL - "warning_image_wrapper/warning_image": T.PANEL - "warning_image_wrapper/no_error_panel": T.PANEL - "warning_image_wrapper/progress_loading_bars": T.IMAGE - tooltip_image_wrapper: T.PANEL - "tooltip_image_wrapper/error_image": T.IMAGE - "tooltip_image_wrapper/warning_image": T.IMAGE - options_image: T.IMAGE - options_image_hover: T.IMAGE - options_image_panel: T.PANEL - "options_image_panel/default": T.IMAGE - "options_image_panel/hover": T.PANEL - "options_image_panel/hover/image": T.IMAGE - "options_image_panel/hover/border": T.IMAGE - options_wrapper: T.PANEL - "options_wrapper/options": T.PANEL - "options_wrapper/divider_right": T.PANEL - common_pack_button: T.BUTTON - available_text_panel: T.STACK_PANEL - "available_text_panel/name_panel": T.STACK_PANEL - "available_text_panel/name_panel/available_pack_name_label": T.LABEL - "available_text_panel/name_panel/available_file_size_label": T.LABEL - "available_text_panel/full_panel": T.STACK_PANEL - "available_text_panel/full_panel/description_panel": T.PANEL - "available_text_panel/full_panel/description_panel/available_pack_description_label": T.LABEL - realms_text_panel: T.STACK_PANEL - "realms_text_panel/name_panel": T.STACK_PANEL - "realms_text_panel/name_panel/realms_pack_name_label": T.LABEL - "realms_text_panel/name_panel/realms_file_size_label": T.LABEL - "realms_text_panel/description_panel": T.PANEL - "realms_text_panel/description_panel/realms_pack_description_label": T.LABEL - unowned_text_panel: T.STACK_PANEL - "unowned_text_panel/name_panel": T.STACK_PANEL - "unowned_text_panel/name_panel/unowned_pack_name_label": T.LABEL - "unowned_text_panel/name_panel/unowned_file_size_label": T.LABEL - "unowned_text_panel/description_panel": T.PANEL - "unowned_text_panel/description_panel/unowned_pack_description_label": T.LABEL - selected_text_panel: T.STACK_PANEL - "selected_text_panel/name_panel": T.STACK_PANEL - "selected_text_panel/name_panel/selected_pack_name_label": T.LABEL - "selected_text_panel/name_panel/selected_file_size_label": T.LABEL - "selected_text_panel/name_panel/active_dot_panel": T.PANEL - "selected_text_panel/name_panel/active_dot_panel/active_dot": T.IMAGE - "selected_text_panel/full_panel": T.STACK_PANEL - "selected_text_panel/full_panel/warning_line": T.STACK_PANEL - "selected_text_panel/full_panel/warning_line/warning_text": T.LABEL - "selected_text_panel/full_panel/warning_line/warning_number": T.LABEL - "selected_text_panel/full_panel/error_line": T.STACK_PANEL - "selected_text_panel/full_panel/error_line/error_text": T.LABEL - "selected_text_panel/full_panel/error_line/error_number": T.LABEL - "selected_text_panel/full_panel/expired_line": T.PANEL - "selected_text_panel/full_panel/expired_line/expired_text": T.LABEL - "selected_text_panel/full_panel/description_panel": T.PANEL - "selected_text_panel/full_panel/description_panel/selected_pack_description_label": T.LABEL - invalid_text_panel: T.STACK_PANEL - "invalid_text_panel/full_panel": T.STACK_PANEL - "invalid_text_panel/full_panel/error_line": T.STACK_PANEL - "invalid_text_panel/full_panel/error_line/error_text": T.LABEL - "invalid_text_panel/full_panel/error_line/error_number": T.LABEL - available_pack_button_layout: T.PANEL - "available_pack_button_layout/available_icon_image": T.IMAGE - "available_pack_button_layout/text_panel_small": T.STACK_PANEL - "available_pack_button_layout/text_panel_full": T.STACK_PANEL - "available_pack_button_layout/read_more_button_panel": T.PANEL - "available_pack_button_layout/read_less_button_panel": T.PANEL - available_pack_button_layout_hover: T.PANEL - "available_pack_button_layout_hover/hover_small": T.IMAGE - "available_pack_button_layout_hover/available_icon_image": T.IMAGE - "available_pack_button_layout_hover/text_panel_small": T.STACK_PANEL - "available_pack_button_layout_hover/text_panel_full_hover": T.PANEL - "available_pack_button_layout_hover/text_panel_full_hover/text_panel_full": T.STACK_PANEL - "available_pack_button_layout_hover/read_more_button_panel": T.PANEL - "available_pack_button_layout_hover/read_less_button_panel": T.PANEL - available_pack_button: T.BUTTON - "available_pack_button/default": T.PANEL - "available_pack_button/pressed": T.PANEL - "available_pack_button/hover": T.PANEL - realms_pack_button_layout: T.PANEL - "realms_pack_button_layout/realms_icon_image": T.IMAGE - "realms_pack_button_layout/text_panel_small": T.STACK_PANEL - "realms_pack_button_layout/text_panel_full": T.STACK_PANEL - "realms_pack_button_layout/read_more_button_panel": T.PANEL - "realms_pack_button_layout/read_less_button_panel": T.PANEL - realms_pack_button_layout_hover: T.PANEL - "realms_pack_button_layout_hover/hover_small": T.IMAGE - "realms_pack_button_layout_hover/realms_icon_image": T.IMAGE - "realms_pack_button_layout_hover/text_panel_small": T.STACK_PANEL - "realms_pack_button_layout_hover/text_panel_full_hover": T.PANEL - "realms_pack_button_layout_hover/text_panel_full_hover/text_panel_full": T.STACK_PANEL - "realms_pack_button_layout_hover/read_more_button_panel": T.PANEL - "realms_pack_button_layout_hover/read_less_button_panel": T.PANEL - realms_pack_button: T.BUTTON - "realms_pack_button/default": T.PANEL - "realms_pack_button/pressed": T.PANEL - "realms_pack_button/hover": T.PANEL - unowned_pack_button_layout: T.PANEL - "unowned_pack_button_layout/unowned_icon_image": T.IMAGE - "unowned_pack_button_layout/text_panel_small": T.STACK_PANEL - "unowned_pack_button_layout/text_panel_full": T.STACK_PANEL - "unowned_pack_button_layout/read_more_button_panel": T.PANEL - "unowned_pack_button_layout/read_less_button_panel": T.PANEL - unowned_pack_button_layout_hover: T.PANEL - "unowned_pack_button_layout_hover/hover_small": T.IMAGE - "unowned_pack_button_layout_hover/unowned_icon_image": T.IMAGE - "unowned_pack_button_layout_hover/text_panel_small": T.STACK_PANEL - "unowned_pack_button_layout_hover/text_panel_full_hover": T.PANEL - "unowned_pack_button_layout_hover/text_panel_full_hover/text_panel_full": T.STACK_PANEL - "unowned_pack_button_layout_hover/read_more_button_panel": T.PANEL - "unowned_pack_button_layout_hover/read_less_button_panel": T.PANEL - unowned_pack_button: T.BUTTON - "unowned_pack_button/default": T.PANEL - "unowned_pack_button/pressed": T.PANEL - "unowned_pack_button/hover": T.PANEL - invalid_pack_button_layout: T.PANEL - "invalid_pack_button_layout/invalid_icon_image": T.IMAGE - "invalid_pack_button_layout/text_panel": T.STACK_PANEL - invalid_pack_button_layout_hover: T.PANEL - "invalid_pack_button_layout_hover/hover_small": T.IMAGE - "invalid_pack_button_layout_hover/invalid_icon_image": T.IMAGE - "invalid_pack_button_layout_hover/text_panel_full_hover": T.PANEL - "invalid_pack_button_layout_hover/text_panel_full_hover/text_panel": T.STACK_PANEL - invalid_pack_button: T.BUTTON - "invalid_pack_button/default": T.PANEL - "invalid_pack_button/pressed": T.PANEL - "invalid_pack_button/hover": T.PANEL - empty_resource_pack_button: T.PANEL - resource_pack_button_padding: T.PANEL - input_button_panel: T.INPUT_PANEL - "input_button_panel/border_image": T.IMAGE - "input_button_panel/border_image/button_panel": T.STACK_PANEL - "input_button_panel/border_image/button_panel/padding_0": T.PANEL - "input_button_panel/border_image/button_panel/padding_1": T.PANEL - "input_button_panel/border_image/button_panel/padding_2": T.PANEL - "input_button_panel/border_image/button_panel/padding_3": T.PANEL - "input_button_panel/border_image/button_panel/padding_4": T.PANEL - "input_button_panel/background": T.IMAGE - selected_pack_button_layout: T.PANEL - "selected_pack_button_layout/selected_icon_image": T.IMAGE - "selected_pack_button_layout/text_panel_small": T.STACK_PANEL - "selected_pack_button_layout/text_panel_full": T.STACK_PANEL - "selected_pack_button_layout/read_more_button_panel": T.PANEL - "selected_pack_button_layout/read_less_button_panel": T.PANEL - selected_pack_button_layout_hover: T.PANEL - "selected_pack_button_layout_hover/hover_small": T.IMAGE - "selected_pack_button_layout_hover/selected_icon_image": T.IMAGE - "selected_pack_button_layout_hover/text_panel_small": T.STACK_PANEL - "selected_pack_button_layout_hover/text_panel_full_hover": T.PANEL - "selected_pack_button_layout_hover/text_panel_full_hover/text_panel_full": T.STACK_PANEL - "selected_pack_button_layout_hover/read_more_button_panel": T.PANEL - "selected_pack_button_layout_hover/read_less_button_panel": T.PANEL - selected_pack_button: T.BUTTON - "selected_pack_button/default": T.PANEL - "selected_pack_button/pressed": T.PANEL - "selected_pack_button/hover": T.PANEL - selected_pack_movement_button: T.BUTTON - selected_pack_transparent_movement_button: T.BUTTON - selected_pack_minus_button: T.BUTTON - selected_pack_plus_button: T.BUTTON - selected_pack_store_button: T.BUTTON - selected_pack_store_button_fill: T.BUTTON - selected_pack_up_button: T.BUTTON - selected_pack_down_button: T.BUTTON - selected_pack_warning_button: T.BUTTON - selected_pack_options_button: T.BUTTON - white_label: T.LABEL - gray_label: T.LABEL - suggested_content_offers_title_label: T.LABEL - available_packs_title_content: T.STACK_PANEL - realms_packs_title_content: T.STACK_PANEL - unowned_packs_title_content: T.STACK_PANEL - selected_packs_title_content: T.STACK_PANEL - "selected_packs_title_content/selected_packs_title_label": T.LABEL - "selected_packs_title_content/fill_pad": T.PANEL - "selected_packs_title_content/icon_panel": T.PANEL - "selected_packs_title_content/icon_panel/block_icon": T.IMAGE - "selected_packs_title_content/pad_0": T.PANEL - "selected_packs_title_content/count": T.LABEL - "selected_packs_title_content/pad_1": T.PANEL - "selected_packs_title_content/plus_panel": T.PANEL - "selected_packs_title_content/plus_panel/plus": T.IMAGE - "selected_packs_title_content/minus_panel": T.PANEL - "selected_packs_title_content/minus_panel/minus": T.IMAGE - available_packs_title_button: T.BUTTON - realms_packs_title_button: T.BUTTON - unowned_packs_title_button: T.BUTTON - selected_packs_title_button: T.BUTTON - name_label: T.LABEL - size_label: T.LABEL - description_label: T.LABEL - pack_label: T.LABEL - selected_pack_description_label: T.LABEL - available_pack_description_label: T.LABEL - realms_pack_description_label: T.LABEL - unowned_pack_description_label: T.LABEL - selected_pack_name_label: T.LABEL - selected_file_size_label: T.LABEL - available_pack_name_label: T.LABEL - available_file_size_label: T.LABEL - realms_pack_name_label: T.LABEL - realms_file_size_label: T.LABEL - unowned_pack_name_label: T.LABEL - unowned_file_size_label: T.LABEL - invalid_pack_name_label: T.LABEL - invalid_pack_description_label: T.LABEL - available_panel: T.PANEL - "available_panel/selected_packs": T.PANEL - checkbox_visuals: T.PANEL - header_control: T.TOGGLE - "header_control/header_description_stack_panel": T.STACK_PANEL - "header_control/header_description_stack_panel/checkbox_visuals": T.PANEL - "header_control/header_description_stack_panel/buffer_panel": T.PANEL - "header_control/header_description_stack_panel/buffer_panel/label": T.LABEL - addon_header_control: T.PANEL - "addon_header_control/header_description_stack_panel": T.STACK_PANEL - "addon_header_control/header_description_stack_panel/padding_0": T.PANEL - "addon_header_control/header_description_stack_panel/description_center_panel": T.PANEL - "addon_header_control/header_description_stack_panel/description_center_panel/label": T.LABEL - "addon_header_control/header_description_stack_panel/padding_1": T.PANEL - "addon_header_control/header_description_stack_panel/link_center_panel": T.PANEL - "addon_header_control/header_description_stack_panel/link_center_panel/addon_link_button": T.BUTTON - "addon_header_control/header_description_stack_panel/padding_2": T.PANEL - panel_bg: T.PANEL - "panel_bg/black_background": T.IMAGE - "panel_bg/gray": T.IMAGE - addon_panel_bg: T.PANEL - "addon_panel_bg/black_background": T.IMAGE - "addon_panel_bg/yellow": T.IMAGE - error_panel: T.PANEL - "error_panel/black_background": T.IMAGE - "error_panel/black_background/gray": T.IMAGE - "error_panel/black_background/gray/panel": T.PANEL - "error_panel/black_background/gray/panel/error_label": T.LABEL - selected_stack_panel: T.STACK_PANEL - "selected_stack_panel/world_template_option_lock_panel": T.PANEL - "selected_stack_panel/world_template_option_lock_panel/option_info_label": T.PANEL - "selected_stack_panel/top_panel": T.PANEL - "selected_stack_panel/top_panel/panel_bg": T.PANEL - "selected_stack_panel/top_panel/header_control": T.TOGGLE - "selected_stack_panel/offset_0": T.PANEL - "selected_stack_panel/addon_stacking_warning_panel": T.PANEL - "selected_stack_panel/addon_stacking_warning_panel/addon_panel_bg": T.PANEL - "selected_stack_panel/addon_stacking_warning_panel/header_control": T.PANEL - "selected_stack_panel/offset_1": T.PANEL - "selected_stack_panel/selected_packs_title_panel": T.STACK_PANEL - "selected_stack_panel/selected_packs_title_panel/selected_packs_title_button": T.BUTTON - "selected_stack_panel/selected_packs_title_panel/tooltip": T.PANEL - "selected_stack_panel/selected_packs_title_panel/tooltip/button": T.BUTTON - "selected_stack_panel/selected_pack_section": T.STACK_PANEL - "selected_stack_panel/selected_pack_section/offset": T.PANEL - "selected_stack_panel/selected_pack_section/selected_pack_grid": T.STACK_PANEL - "selected_stack_panel/selected_pack_section/default_item": T.PANEL - "selected_stack_panel/selected_pack_section/default_item/icon_image": T.IMAGE - "selected_stack_panel/selected_pack_section/default_item/name_panel": T.PANEL - "selected_stack_panel/selected_pack_section/default_item/name_panel/white_label": T.LABEL - "selected_stack_panel/selected_pack_section/default_item/description_panel": T.PANEL - "selected_stack_panel/selected_pack_section/default_item/description_panel/white_label": T.LABEL - "selected_stack_panel/selected_pack_section/filler_panel": T.PANEL - "selected_stack_panel/selected_pack_section/filler_panel/description_label": T.LABEL - "selected_stack_panel/offset_2": T.PANEL - "selected_stack_panel/available_packs_title_panel": T.STACK_PANEL - "selected_stack_panel/available_packs_title_panel/available_packs_title_button": T.BUTTON - "selected_stack_panel/available_packs_title_panel/tooltip": T.PANEL - "selected_stack_panel/available_packs_title_panel/tooltip/button": T.BUTTON - "selected_stack_panel/available_packs_section": T.STACK_PANEL - "selected_stack_panel/available_packs_section/offset": T.PANEL - "selected_stack_panel/available_packs_section/empty_panel": T.STACK_PANEL - "selected_stack_panel/available_packs_section/empty_panel/no_packs_panel": T.PANEL - "selected_stack_panel/available_packs_section/empty_panel/no_packs_panel/no_packs_text": T.LABEL - "selected_stack_panel/available_packs_section/empty_panel/to_store_button": T.BUTTON - "selected_stack_panel/available_packs_section/available_pack_grid": T.STACK_PANEL - "selected_stack_panel/available_packs_section/invalid_pack_grid": T.STACK_PANEL - "selected_stack_panel/offset_3": T.PANEL - "selected_stack_panel/realms_packs_title_button": T.BUTTON - "selected_stack_panel/realms_packs_section": T.STACK_PANEL - "selected_stack_panel/realms_packs_section/offset": T.PANEL - "selected_stack_panel/realms_packs_section/realms_pack_grid": T.STACK_PANEL - "selected_stack_panel/realms_packs_section/offset_4": T.PANEL - "selected_stack_panel/offset_4": T.PANEL - "selected_stack_panel/unowned_packs_title_button": T.BUTTON - "selected_stack_panel/unowned_packs_section": T.STACK_PANEL - "selected_stack_panel/unowned_packs_section/offset": T.PANEL - "selected_stack_panel/unowned_packs_section/unowned_pack_grid": T.STACK_PANEL - "selected_stack_panel/unowned_packs_section/to_store_button": T.BUTTON - "selected_stack_panel/unowned_packs_section/offset_4": T.PANEL - available_stack_panel: T.STACK_PANEL - "available_stack_panel/available_packs_title_button": T.BUTTON - "available_stack_panel/available_pack_grid": T.STACK_PANEL - pack_background: T.PANEL - "pack_background/white_image": T.PANEL - "pack_background/gray_image": T.IMAGE - selected_pack_panel: T.STACK_PANEL - "selected_pack_panel/selected_pack_button": T.BUTTON - "selected_pack_panel/pad_0": T.PANEL - "selected_pack_panel/center_panel": T.PANEL - "selected_pack_panel/center_panel/visibility_panel": T.PANEL - "selected_pack_panel/center_panel/visibility_panel/selected_pack_direction_buttons": T.INPUT_PANEL - "selected_pack_panel/divider": T.PANEL - "selected_pack_panel/pad_1": T.PANEL - available_pack_panel: T.STACK_PANEL - "available_pack_panel/available_pack_button": T.BUTTON - "available_pack_panel/pad_0": T.PANEL - "available_pack_panel/center_panel": T.PANEL - "available_pack_panel/center_panel/available_pack_direction_buttons": T.INPUT_PANEL - "available_pack_panel/divider": T.PANEL - "available_pack_panel/pad_1": T.PANEL - realms_pack_panel: T.STACK_PANEL - "realms_pack_panel/realms_pack_button": T.BUTTON - "realms_pack_panel/pad_0": T.PANEL - "realms_pack_panel/center_panel": T.PANEL - "realms_pack_panel/center_panel/realms_pack_direction_buttons": T.INPUT_PANEL - "realms_pack_panel/divider": T.PANEL - "realms_pack_panel/pad_1": T.PANEL - unowned_pack_panel: T.STACK_PANEL - "unowned_pack_panel/unowned_pack_button": T.BUTTON - "unowned_pack_panel/pad_0": T.PANEL - "unowned_pack_panel/center_panel": T.PANEL - "unowned_pack_panel/center_panel/realms_pack_direction_buttons": T.INPUT_PANEL - "unowned_pack_panel/divider": T.PANEL - "unowned_pack_panel/pad_1": T.PANEL - invalid_pack_panel: T.STACK_PANEL - "invalid_pack_panel/invalid_pack_button": T.BUTTON - "invalid_pack_panel/pad_0": T.PANEL - "invalid_pack_panel/divider": T.PANEL - "invalid_pack_panel/pad_1": T.PANEL - selected_pack_grid: T.STACK_PANEL - available_pack_grid: T.STACK_PANEL - realms_pack_grid: T.STACK_PANEL - unowned_pack_grid: T.STACK_PANEL - invalid_pack_grid: T.STACK_PANEL + "black_image": T.IMAGE, + "gray_image": T.IMAGE, + "yellow_image": T.IMAGE, + "white_image": T.PANEL, + "white_image/border": T.IMAGE, + "icon_image": T.IMAGE, + "resource_packs_toggle_button_control": T.PANEL, + "resource_packs_toggle_button_control/icon_border": T.PANEL, + "resource_packs_toggle_button_control/cycling_icon": T.IMAGE, + "resource_packs_toggle_button_control/tab_button_text": T.LABEL, + "resource_packs_section_toggle_base": T.PANEL, + "selected_icon_image": T.IMAGE, + "available_icon_image": T.IMAGE, + "realms_icon_image": T.IMAGE, + "unowned_icon_image": T.IMAGE, + "invalid_icon_image": T.IMAGE, + "minus_image": T.IMAGE, + "plus_image": T.IMAGE, + "minus_text": T.LABEL, + "plus_text": T.LABEL, + "store_text": T.LABEL, + "error_image": T.IMAGE, + "error_image_hover": T.IMAGE, + "error_image_panel": T.PANEL, + "error_image_panel/default": T.IMAGE, + "error_image_panel/hover": T.IMAGE, + "warning_image": T.IMAGE, + "warning_image_hover": T.IMAGE, + "warning_panel": T.PANEL, + "warning_panel/default": T.IMAGE, + "warning_panel/hover": T.IMAGE, + "no_error_image": T.IMAGE, + "no_error_image_hover": T.IMAGE, + "no_error_panel": T.PANEL, + "no_error_panel/default": T.IMAGE, + "no_error_panel/hover": T.IMAGE, + "up_arrow_image": T.IMAGE, + "down_arrow_image": T.IMAGE, + "up_arrow_image_hover": T.IMAGE, + "down_arrow_image_hover": T.IMAGE, + "up_arrow_panel": T.PANEL, + "up_arrow_panel/default": T.IMAGE, + "up_arrow_panel/hover": T.IMAGE, + "up_arrow_wrapper": T.PANEL, + "up_arrow_wrapper/down_arrow": T.PANEL, + "up_arrow_wrapper/divider_right": T.PANEL, + "down_arrow_panel": T.PANEL, + "down_arrow_panel/default": T.IMAGE, + "down_arrow_panel/hover": T.IMAGE, + "down_arrow_wrapper": T.PANEL, + "down_arrow_wrapper/down_arrow": T.PANEL, + "down_arrow_wrapper/divider_right": T.PANEL, + "progress_loading_bars": T.IMAGE, + "warning_image_wrapper": T.PANEL, + "warning_image_wrapper/error_image": T.PANEL, + "warning_image_wrapper/warning_image": T.PANEL, + "warning_image_wrapper/no_error_panel": T.PANEL, + "warning_image_wrapper/progress_loading_bars": T.IMAGE, + "tooltip_image_wrapper": T.PANEL, + "tooltip_image_wrapper/error_image": T.IMAGE, + "tooltip_image_wrapper/warning_image": T.IMAGE, + "options_image": T.IMAGE, + "options_image_hover": T.IMAGE, + "options_image_panel": T.PANEL, + "options_image_panel/default": T.IMAGE, + "options_image_panel/hover": T.PANEL, + "options_image_panel/hover/image": T.IMAGE, + "options_image_panel/hover/border": T.IMAGE, + "options_wrapper": T.PANEL, + "options_wrapper/options": T.PANEL, + "options_wrapper/divider_right": T.PANEL, + "common_pack_button": T.BUTTON, + "available_text_panel": T.STACK_PANEL, + "available_text_panel/name_panel": T.STACK_PANEL, + "available_text_panel/name_panel/available_pack_name_label": T.LABEL, + "available_text_panel/name_panel/available_file_size_label": T.LABEL, + "available_text_panel/full_panel": T.STACK_PANEL, + "available_text_panel/full_panel/description_panel": T.PANEL, + "available_text_panel/full_panel/description_panel/available_pack_description_label": T.LABEL, + "realms_text_panel": T.STACK_PANEL, + "realms_text_panel/name_panel": T.STACK_PANEL, + "realms_text_panel/name_panel/realms_pack_name_label": T.LABEL, + "realms_text_panel/name_panel/realms_file_size_label": T.LABEL, + "realms_text_panel/description_panel": T.PANEL, + "realms_text_panel/description_panel/realms_pack_description_label": T.LABEL, + "unowned_text_panel": T.STACK_PANEL, + "unowned_text_panel/name_panel": T.STACK_PANEL, + "unowned_text_panel/name_panel/unowned_pack_name_label": T.LABEL, + "unowned_text_panel/name_panel/unowned_file_size_label": T.LABEL, + "unowned_text_panel/description_panel": T.PANEL, + "unowned_text_panel/description_panel/unowned_pack_description_label": T.LABEL, + "selected_text_panel": T.STACK_PANEL, + "selected_text_panel/name_panel": T.STACK_PANEL, + "selected_text_panel/name_panel/selected_pack_name_label": T.LABEL, + "selected_text_panel/name_panel/selected_file_size_label": T.LABEL, + "selected_text_panel/name_panel/active_dot_panel": T.PANEL, + "selected_text_panel/name_panel/active_dot_panel/active_dot": T.IMAGE, + "selected_text_panel/full_panel": T.STACK_PANEL, + "selected_text_panel/full_panel/warning_line": T.STACK_PANEL, + "selected_text_panel/full_panel/warning_line/warning_text": T.LABEL, + "selected_text_panel/full_panel/warning_line/warning_number": T.LABEL, + "selected_text_panel/full_panel/error_line": T.STACK_PANEL, + "selected_text_panel/full_panel/error_line/error_text": T.LABEL, + "selected_text_panel/full_panel/error_line/error_number": T.LABEL, + "selected_text_panel/full_panel/expired_line": T.PANEL, + "selected_text_panel/full_panel/expired_line/expired_text": T.LABEL, + "selected_text_panel/full_panel/description_panel": T.PANEL, + "selected_text_panel/full_panel/description_panel/selected_pack_description_label": T.LABEL, + "invalid_text_panel": T.STACK_PANEL, + "invalid_text_panel/full_panel": T.STACK_PANEL, + "invalid_text_panel/full_panel/error_line": T.STACK_PANEL, + "invalid_text_panel/full_panel/error_line/error_text": T.LABEL, + "invalid_text_panel/full_panel/error_line/error_number": T.LABEL, + "available_pack_button_layout": T.PANEL, + "available_pack_button_layout/available_icon_image": T.IMAGE, + "available_pack_button_layout/text_panel_small": T.STACK_PANEL, + "available_pack_button_layout/text_panel_full": T.STACK_PANEL, + "available_pack_button_layout/read_more_button_panel": T.PANEL, + "available_pack_button_layout/read_less_button_panel": T.PANEL, + "available_pack_button_layout_hover": T.PANEL, + "available_pack_button_layout_hover/hover_small": T.IMAGE, + "available_pack_button_layout_hover/available_icon_image": T.IMAGE, + "available_pack_button_layout_hover/text_panel_small": T.STACK_PANEL, + "available_pack_button_layout_hover/text_panel_full_hover": T.PANEL, + "available_pack_button_layout_hover/text_panel_full_hover/text_panel_full": T.STACK_PANEL, + "available_pack_button_layout_hover/read_more_button_panel": T.PANEL, + "available_pack_button_layout_hover/read_less_button_panel": T.PANEL, + "available_pack_button": T.BUTTON, + "available_pack_button/default": T.PANEL, + "available_pack_button/pressed": T.PANEL, + "available_pack_button/hover": T.PANEL, + "realms_pack_button_layout": T.PANEL, + "realms_pack_button_layout/realms_icon_image": T.IMAGE, + "realms_pack_button_layout/text_panel_small": T.STACK_PANEL, + "realms_pack_button_layout/text_panel_full": T.STACK_PANEL, + "realms_pack_button_layout/read_more_button_panel": T.PANEL, + "realms_pack_button_layout/read_less_button_panel": T.PANEL, + "realms_pack_button_layout_hover": T.PANEL, + "realms_pack_button_layout_hover/hover_small": T.IMAGE, + "realms_pack_button_layout_hover/realms_icon_image": T.IMAGE, + "realms_pack_button_layout_hover/text_panel_small": T.STACK_PANEL, + "realms_pack_button_layout_hover/text_panel_full_hover": T.PANEL, + "realms_pack_button_layout_hover/text_panel_full_hover/text_panel_full": T.STACK_PANEL, + "realms_pack_button_layout_hover/read_more_button_panel": T.PANEL, + "realms_pack_button_layout_hover/read_less_button_panel": T.PANEL, + "realms_pack_button": T.BUTTON, + "realms_pack_button/default": T.PANEL, + "realms_pack_button/pressed": T.PANEL, + "realms_pack_button/hover": T.PANEL, + "unowned_pack_button_layout": T.PANEL, + "unowned_pack_button_layout/unowned_icon_image": T.IMAGE, + "unowned_pack_button_layout/text_panel_small": T.STACK_PANEL, + "unowned_pack_button_layout/text_panel_full": T.STACK_PANEL, + "unowned_pack_button_layout/read_more_button_panel": T.PANEL, + "unowned_pack_button_layout/read_less_button_panel": T.PANEL, + "unowned_pack_button_layout_hover": T.PANEL, + "unowned_pack_button_layout_hover/hover_small": T.IMAGE, + "unowned_pack_button_layout_hover/unowned_icon_image": T.IMAGE, + "unowned_pack_button_layout_hover/text_panel_small": T.STACK_PANEL, + "unowned_pack_button_layout_hover/text_panel_full_hover": T.PANEL, + "unowned_pack_button_layout_hover/text_panel_full_hover/text_panel_full": T.STACK_PANEL, + "unowned_pack_button_layout_hover/read_more_button_panel": T.PANEL, + "unowned_pack_button_layout_hover/read_less_button_panel": T.PANEL, + "unowned_pack_button": T.BUTTON, + "unowned_pack_button/default": T.PANEL, + "unowned_pack_button/pressed": T.PANEL, + "unowned_pack_button/hover": T.PANEL, + "invalid_pack_button_layout": T.PANEL, + "invalid_pack_button_layout/invalid_icon_image": T.IMAGE, + "invalid_pack_button_layout/text_panel": T.STACK_PANEL, + "invalid_pack_button_layout_hover": T.PANEL, + "invalid_pack_button_layout_hover/hover_small": T.IMAGE, + "invalid_pack_button_layout_hover/invalid_icon_image": T.IMAGE, + "invalid_pack_button_layout_hover/text_panel_full_hover": T.PANEL, + "invalid_pack_button_layout_hover/text_panel_full_hover/text_panel": T.STACK_PANEL, + "invalid_pack_button": T.BUTTON, + "invalid_pack_button/default": T.PANEL, + "invalid_pack_button/pressed": T.PANEL, + "invalid_pack_button/hover": T.PANEL, + "empty_resource_pack_button": T.PANEL, + "resource_pack_button_padding": T.PANEL, + "input_button_panel": T.INPUT_PANEL, + "input_button_panel/border_image": T.IMAGE, + "input_button_panel/border_image/button_panel": T.STACK_PANEL, + "input_button_panel/border_image/button_panel/padding_0": T.PANEL, + "input_button_panel/border_image/button_panel/padding_1": T.PANEL, + "input_button_panel/border_image/button_panel/padding_2": T.PANEL, + "input_button_panel/border_image/button_panel/padding_3": T.PANEL, + "input_button_panel/border_image/button_panel/padding_4": T.PANEL, + "input_button_panel/background": T.IMAGE, + "selected_pack_button_layout": T.PANEL, + "selected_pack_button_layout/selected_icon_image": T.IMAGE, + "selected_pack_button_layout/text_panel_small": T.STACK_PANEL, + "selected_pack_button_layout/text_panel_full": T.STACK_PANEL, + "selected_pack_button_layout/read_more_button_panel": T.PANEL, + "selected_pack_button_layout/read_less_button_panel": T.PANEL, + "selected_pack_button_layout_hover": T.PANEL, + "selected_pack_button_layout_hover/hover_small": T.IMAGE, + "selected_pack_button_layout_hover/selected_icon_image": T.IMAGE, + "selected_pack_button_layout_hover/text_panel_small": T.STACK_PANEL, + "selected_pack_button_layout_hover/text_panel_full_hover": T.PANEL, + "selected_pack_button_layout_hover/text_panel_full_hover/text_panel_full": T.STACK_PANEL, + "selected_pack_button_layout_hover/read_more_button_panel": T.PANEL, + "selected_pack_button_layout_hover/read_less_button_panel": T.PANEL, + "selected_pack_button": T.BUTTON, + "selected_pack_button/default": T.PANEL, + "selected_pack_button/pressed": T.PANEL, + "selected_pack_button/hover": T.PANEL, + "selected_pack_movement_button": T.BUTTON, + "selected_pack_transparent_movement_button": T.BUTTON, + "selected_pack_minus_button": T.BUTTON, + "selected_pack_plus_button": T.BUTTON, + "selected_pack_store_button": T.BUTTON, + "selected_pack_store_button_fill": T.BUTTON, + "selected_pack_up_button": T.BUTTON, + "selected_pack_down_button": T.BUTTON, + "selected_pack_warning_button": T.BUTTON, + "selected_pack_options_button": T.BUTTON, + "white_label": T.LABEL, + "gray_label": T.LABEL, + "suggested_content_offers_title_label": T.LABEL, + "available_packs_title_content": T.STACK_PANEL, + "realms_packs_title_content": T.STACK_PANEL, + "unowned_packs_title_content": T.STACK_PANEL, + "selected_packs_title_content": T.STACK_PANEL, + "selected_packs_title_content/selected_packs_title_label": T.LABEL, + "selected_packs_title_content/fill_pad": T.PANEL, + "selected_packs_title_content/icon_panel": T.PANEL, + "selected_packs_title_content/icon_panel/block_icon": T.IMAGE, + "selected_packs_title_content/pad_0": T.PANEL, + "selected_packs_title_content/count": T.LABEL, + "selected_packs_title_content/pad_1": T.PANEL, + "selected_packs_title_content/plus_panel": T.PANEL, + "selected_packs_title_content/plus_panel/plus": T.IMAGE, + "selected_packs_title_content/minus_panel": T.PANEL, + "selected_packs_title_content/minus_panel/minus": T.IMAGE, + "available_packs_title_button": T.BUTTON, + "realms_packs_title_button": T.BUTTON, + "unowned_packs_title_button": T.BUTTON, + "selected_packs_title_button": T.BUTTON, + "name_label": T.LABEL, + "size_label": T.LABEL, + "description_label": T.LABEL, + "pack_label": T.LABEL, + "selected_pack_description_label": T.LABEL, + "available_pack_description_label": T.LABEL, + "realms_pack_description_label": T.LABEL, + "unowned_pack_description_label": T.LABEL, + "selected_pack_name_label": T.LABEL, + "selected_file_size_label": T.LABEL, + "available_pack_name_label": T.LABEL, + "available_file_size_label": T.LABEL, + "realms_pack_name_label": T.LABEL, + "realms_file_size_label": T.LABEL, + "unowned_pack_name_label": T.LABEL, + "unowned_file_size_label": T.LABEL, + "invalid_pack_name_label": T.LABEL, + "invalid_pack_description_label": T.LABEL, + "available_panel": T.PANEL, + "available_panel/selected_packs": T.PANEL, + "checkbox_visuals": T.PANEL, + "header_control": T.TOGGLE, + "header_control/header_description_stack_panel": T.STACK_PANEL, + "header_control/header_description_stack_panel/checkbox_visuals": T.PANEL, + "header_control/header_description_stack_panel/buffer_panel": T.PANEL, + "header_control/header_description_stack_panel/buffer_panel/label": T.LABEL, + "addon_header_control": T.PANEL, + "addon_header_control/header_description_stack_panel": T.STACK_PANEL, + "addon_header_control/header_description_stack_panel/padding_0": T.PANEL, + "addon_header_control/header_description_stack_panel/description_center_panel": T.PANEL, + "addon_header_control/header_description_stack_panel/description_center_panel/label": T.LABEL, + "addon_header_control/header_description_stack_panel/padding_1": T.PANEL, + "addon_header_control/header_description_stack_panel/link_center_panel": T.PANEL, + "addon_header_control/header_description_stack_panel/link_center_panel/addon_link_button": T.BUTTON, + "addon_header_control/header_description_stack_panel/padding_2": T.PANEL, + "panel_bg": T.PANEL, + "panel_bg/black_background": T.IMAGE, + "panel_bg/gray": T.IMAGE, + "addon_panel_bg": T.PANEL, + "addon_panel_bg/black_background": T.IMAGE, + "addon_panel_bg/yellow": T.IMAGE, + "error_panel": T.PANEL, + "error_panel/black_background": T.IMAGE, + "error_panel/black_background/gray": T.IMAGE, + "error_panel/black_background/gray/panel": T.PANEL, + "error_panel/black_background/gray/panel/error_label": T.LABEL, + "selected_stack_panel": T.STACK_PANEL, + "selected_stack_panel/world_template_option_lock_panel": T.PANEL, + "selected_stack_panel/world_template_option_lock_panel/option_info_label": T.PANEL, + "selected_stack_panel/top_panel": T.PANEL, + "selected_stack_panel/top_panel/panel_bg": T.PANEL, + "selected_stack_panel/top_panel/header_control": T.TOGGLE, + "selected_stack_panel/offset_0": T.PANEL, + "selected_stack_panel/addon_stacking_warning_panel": T.PANEL, + "selected_stack_panel/addon_stacking_warning_panel/addon_panel_bg": T.PANEL, + "selected_stack_panel/addon_stacking_warning_panel/header_control": T.PANEL, + "selected_stack_panel/offset_1": T.PANEL, + "selected_stack_panel/selected_packs_title_panel": T.STACK_PANEL, + "selected_stack_panel/selected_packs_title_panel/selected_packs_title_button": T.BUTTON, + "selected_stack_panel/selected_packs_title_panel/tooltip": T.PANEL, + "selected_stack_panel/selected_packs_title_panel/tooltip/button": T.BUTTON, + "selected_stack_panel/selected_pack_section": T.STACK_PANEL, + "selected_stack_panel/selected_pack_section/offset": T.PANEL, + "selected_stack_panel/selected_pack_section/selected_pack_grid": T.STACK_PANEL, + "selected_stack_panel/selected_pack_section/default_item": T.PANEL, + "selected_stack_panel/selected_pack_section/default_item/icon_image": T.IMAGE, + "selected_stack_panel/selected_pack_section/default_item/name_panel": T.PANEL, + "selected_stack_panel/selected_pack_section/default_item/name_panel/white_label": T.LABEL, + "selected_stack_panel/selected_pack_section/default_item/description_panel": T.PANEL, + "selected_stack_panel/selected_pack_section/default_item/description_panel/white_label": T.LABEL, + "selected_stack_panel/selected_pack_section/filler_panel": T.PANEL, + "selected_stack_panel/selected_pack_section/filler_panel/description_label": T.LABEL, + "selected_stack_panel/offset_2": T.PANEL, + "selected_stack_panel/available_packs_title_panel": T.STACK_PANEL, + "selected_stack_panel/available_packs_title_panel/available_packs_title_button": T.BUTTON, + "selected_stack_panel/available_packs_title_panel/tooltip": T.PANEL, + "selected_stack_panel/available_packs_title_panel/tooltip/button": T.BUTTON, + "selected_stack_panel/available_packs_section": T.STACK_PANEL, + "selected_stack_panel/available_packs_section/offset": T.PANEL, + "selected_stack_panel/available_packs_section/empty_panel": T.STACK_PANEL, + "selected_stack_panel/available_packs_section/empty_panel/no_packs_panel": T.PANEL, + "selected_stack_panel/available_packs_section/empty_panel/no_packs_panel/no_packs_text": T.LABEL, + "selected_stack_panel/available_packs_section/empty_panel/to_store_button": T.BUTTON, + "selected_stack_panel/available_packs_section/available_pack_grid": T.STACK_PANEL, + "selected_stack_panel/available_packs_section/invalid_pack_grid": T.STACK_PANEL, + "selected_stack_panel/offset_3": T.PANEL, + "selected_stack_panel/realms_packs_title_button": T.BUTTON, + "selected_stack_panel/realms_packs_section": T.STACK_PANEL, + "selected_stack_panel/realms_packs_section/offset": T.PANEL, + "selected_stack_panel/realms_packs_section/realms_pack_grid": T.STACK_PANEL, + "selected_stack_panel/realms_packs_section/offset_4": T.PANEL, + "selected_stack_panel/offset_4": T.PANEL, + "selected_stack_panel/unowned_packs_title_button": T.BUTTON, + "selected_stack_panel/unowned_packs_section": T.STACK_PANEL, + "selected_stack_panel/unowned_packs_section/offset": T.PANEL, + "selected_stack_panel/unowned_packs_section/unowned_pack_grid": T.STACK_PANEL, + "selected_stack_panel/unowned_packs_section/to_store_button": T.BUTTON, + "selected_stack_panel/unowned_packs_section/offset_4": T.PANEL, + "available_stack_panel": T.STACK_PANEL, + "available_stack_panel/available_packs_title_button": T.BUTTON, + "available_stack_panel/available_pack_grid": T.STACK_PANEL, + "pack_background": T.PANEL, + "pack_background/white_image": T.PANEL, + "pack_background/gray_image": T.IMAGE, + "selected_pack_panel": T.STACK_PANEL, + "selected_pack_panel/selected_pack_button": T.BUTTON, + "selected_pack_panel/pad_0": T.PANEL, + "selected_pack_panel/center_panel": T.PANEL, + "selected_pack_panel/center_panel/visibility_panel": T.PANEL, + "selected_pack_panel/center_panel/visibility_panel/selected_pack_direction_buttons": T.INPUT_PANEL, + "selected_pack_panel/divider": T.PANEL, + "selected_pack_panel/pad_1": T.PANEL, + "available_pack_panel": T.STACK_PANEL, + "available_pack_panel/available_pack_button": T.BUTTON, + "available_pack_panel/pad_0": T.PANEL, + "available_pack_panel/center_panel": T.PANEL, + "available_pack_panel/center_panel/available_pack_direction_buttons": T.INPUT_PANEL, + "available_pack_panel/divider": T.PANEL, + "available_pack_panel/pad_1": T.PANEL, + "realms_pack_panel": T.STACK_PANEL, + "realms_pack_panel/realms_pack_button": T.BUTTON, + "realms_pack_panel/pad_0": T.PANEL, + "realms_pack_panel/center_panel": T.PANEL, + "realms_pack_panel/center_panel/realms_pack_direction_buttons": T.INPUT_PANEL, + "realms_pack_panel/divider": T.PANEL, + "realms_pack_panel/pad_1": T.PANEL, + "unowned_pack_panel": T.STACK_PANEL, + "unowned_pack_panel/unowned_pack_button": T.BUTTON, + "unowned_pack_panel/pad_0": T.PANEL, + "unowned_pack_panel/center_panel": T.PANEL, + "unowned_pack_panel/center_panel/realms_pack_direction_buttons": T.INPUT_PANEL, + "unowned_pack_panel/divider": T.PANEL, + "unowned_pack_panel/pad_1": T.PANEL, + "invalid_pack_panel": T.STACK_PANEL, + "invalid_pack_panel/invalid_pack_button": T.BUTTON, + "invalid_pack_panel/pad_0": T.PANEL, + "invalid_pack_panel/divider": T.PANEL, + "invalid_pack_panel/pad_1": T.PANEL, + "selected_pack_grid": T.STACK_PANEL, + "available_pack_grid": T.STACK_PANEL, + "realms_pack_grid": T.STACK_PANEL, + "unowned_pack_grid": T.STACK_PANEL, + "invalid_pack_grid": T.STACK_PANEL, } export type SafeZoneType = { - corner_image_common: T.IMAGE - corner_bl: T.IMAGE - corner_br: T.IMAGE - corner_tr: T.IMAGE - corner_tl: T.IMAGE - confirm_button: T.BUTTON - title_text: T.LABEL - instructions_text: T.PANEL - "instructions_text/inner_label": T.LABEL - label_button: T.BUTTON - label_button_hover: T.PANEL - "label_button_hover/hover": T.IMAGE - "label_button_hover/hover/button_hover_text": T.PANEL - content_panel: T.STACK_PANEL - "content_panel/safe_zone_slider_all": T.PANEL - "content_panel/safe_zone_slider_x": T.PANEL - "content_panel/safe_zone_slider_y": T.PANEL - "content_panel/screen_position_slider_x": T.PANEL - "content_panel/screen_position_slider_y": T.PANEL - "content_panel/instruction_text_button": T.BUTTON - "content_panel/instruction_text_button/default": T.PANEL - "content_panel/instruction_text_button/pressed": T.PANEL - "content_panel/instruction_text_button/hover": T.PANEL - safe_zone_screen: T.SCREEN - "safe_zone_screen/safe_zone_bounds_markers": T.PANEL - "safe_zone_screen/safe_zone_bounds_markers/top_left_marker": T.IMAGE - "safe_zone_screen/safe_zone_bounds_markers/top_right_marker": T.IMAGE - "safe_zone_screen/safe_zone_bounds_markers/bottom_left_marker": T.IMAGE - "safe_zone_screen/safe_zone_bounds_markers/bottom_right_marker": T.IMAGE - "safe_zone_screen/main_content_panel": T.PANEL - "safe_zone_screen/main_content_panel/common_panel": T.PANEL - "safe_zone_screen/main_content_panel/title_text": T.LABEL - "safe_zone_screen/main_content_panel/scrolling_panel": T.PANEL - "safe_zone_screen/main_content_panel/confirm_button": T.BUTTON + "corner_image_common": T.IMAGE, + "corner_bl": T.IMAGE, + "corner_br": T.IMAGE, + "corner_tr": T.IMAGE, + "corner_tl": T.IMAGE, + "confirm_button": T.BUTTON, + "title_text": T.LABEL, + "instructions_text": T.PANEL, + "instructions_text/inner_label": T.LABEL, + "label_button": T.BUTTON, + "label_button_hover": T.PANEL, + "label_button_hover/hover": T.IMAGE, + "label_button_hover/hover/button_hover_text": T.PANEL, + "content_panel": T.STACK_PANEL, + "content_panel/safe_zone_slider_all": T.PANEL, + "content_panel/safe_zone_slider_x": T.PANEL, + "content_panel/safe_zone_slider_y": T.PANEL, + "content_panel/screen_position_slider_x": T.PANEL, + "content_panel/screen_position_slider_y": T.PANEL, + "content_panel/instruction_text_button": T.BUTTON, + "content_panel/instruction_text_button/default": T.PANEL, + "content_panel/instruction_text_button/pressed": T.PANEL, + "content_panel/instruction_text_button/hover": T.PANEL, + "safe_zone_screen": T.SCREEN, + "safe_zone_screen/safe_zone_bounds_markers": T.PANEL, + "safe_zone_screen/safe_zone_bounds_markers/top_left_marker": T.IMAGE, + "safe_zone_screen/safe_zone_bounds_markers/top_right_marker": T.IMAGE, + "safe_zone_screen/safe_zone_bounds_markers/bottom_left_marker": T.IMAGE, + "safe_zone_screen/safe_zone_bounds_markers/bottom_right_marker": T.IMAGE, + "safe_zone_screen/main_content_panel": T.PANEL, + "safe_zone_screen/main_content_panel/common_panel": T.PANEL, + "safe_zone_screen/main_content_panel/title_text": T.LABEL, + "safe_zone_screen/main_content_panel/scrolling_panel": T.PANEL, + "safe_zone_screen/main_content_panel/confirm_button": T.BUTTON, } export type StorageMigrationCommonType = { - progress_panel: T.PANEL - "progress_panel/common_panel": T.PANEL - "progress_panel/base_content": T.PANEL - "progress_panel/base_content/progress_title_text": T.LABEL - "progress_panel/base_content/progress_bar_text": T.LABEL - "progress_panel/inside_content": T.STACK_PANEL - "progress_panel/inside_content/size_label": T.LABEL - "progress_panel/inside_content/padding_1": T.PANEL - "progress_panel/inside_content/loading_bar_panel": T.PANEL - "progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars": T.PANEL - "progress_panel/inside_content/loading_bar_panel/progress_loading_bars": T.IMAGE - "progress_panel/inside_content/padding_3": T.PANEL - label: T.LABEL - base_button: T.BUTTON - retry_button: T.BUTTON - go_to_faq_button: T.BUTTON - next_button: T.BUTTON - get_started_button: T.BUTTON - start_transfer_button: T.BUTTON - finished_main_menu_button: T.BUTTON - start_transfer_out_of_space_button: T.BUTTON - continue_out_of_space_button: T.BUTTON - resume_transfer_button: T.BUTTON - exit_button: T.BUTTON - retry_help_button_panel: T.STACK_PANEL - "retry_help_button_panel/retry": T.BUTTON - "retry_help_button_panel/padding": T.PANEL - "retry_help_button_panel/help": T.BUTTON - modal_no_buttons: T.PANEL - modal_one_button: T.PANEL - modal_two_buttons: T.PANEL - base_child_control: T.PANEL - "base_child_control/scrolling_panel": T.PANEL - file_size_description: T.STACK_PANEL - "file_size_description/description": T.LABEL - "file_size_description/padding": T.PANEL - "file_size_description/size_stack": T.STACK_PANEL - "file_size_description/size_stack/file_text": T.LABEL - "file_size_description/size_stack/padding_1": T.PANEL - "file_size_description/size_stack/file_size_total": T.LABEL - "file_size_description/size_stack/padding_2": T.PANEL - "file_size_description/size_stack/file_size_available": T.LABEL - "file_size_description/file_location": T.LABEL - error_icon_and_description: T.STACK_PANEL - "error_icon_and_description/error_image": T.IMAGE - "error_icon_and_description/description": T.LABEL - file_size_description_with_error: T.STACK_PANEL - "file_size_description_with_error/file_size": T.STACK_PANEL - "file_size_description_with_error/padding": T.PANEL - "file_size_description_with_error/error_icon_and_description": T.STACK_PANEL - start_transfer: T.PANEL - start_transfer_content: T.STACK_PANEL - resume_transfer: T.PANEL - resume_transfer_content: T.STACK_PANEL - "resume_transfer_content/file_size": T.STACK_PANEL - transfer_error_out_of_space: T.PANEL - transfer_error_out_of_space_content: T.STACK_PANEL + "progress_panel": T.PANEL, + "progress_panel/common_panel": T.PANEL, + "progress_panel/base_content": T.PANEL, + "progress_panel/base_content/progress_title_text": T.LABEL, + "progress_panel/base_content/progress_bar_text": T.LABEL, + "progress_panel/inside_content": T.STACK_PANEL, + "progress_panel/inside_content/size_label": T.LABEL, + "progress_panel/inside_content/padding_1": T.PANEL, + "progress_panel/inside_content/loading_bar_panel": T.PANEL, + "progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars": T.PANEL, + "progress_panel/inside_content/loading_bar_panel/progress_loading_bars": T.IMAGE, + "progress_panel/inside_content/padding_3": T.PANEL, + "label": T.LABEL, + "base_button": T.BUTTON, + "retry_button": T.BUTTON, + "go_to_faq_button": T.BUTTON, + "next_button": T.BUTTON, + "get_started_button": T.BUTTON, + "start_transfer_button": T.BUTTON, + "finished_main_menu_button": T.BUTTON, + "start_transfer_out_of_space_button": T.BUTTON, + "continue_out_of_space_button": T.BUTTON, + "resume_transfer_button": T.BUTTON, + "exit_button": T.BUTTON, + "retry_help_button_panel": T.STACK_PANEL, + "retry_help_button_panel/retry": T.BUTTON, + "retry_help_button_panel/padding": T.PANEL, + "retry_help_button_panel/help": T.BUTTON, + "modal_no_buttons": T.PANEL, + "modal_one_button": T.PANEL, + "modal_two_buttons": T.PANEL, + "base_child_control": T.PANEL, + "base_child_control/scrolling_panel": T.PANEL, + "file_size_description": T.STACK_PANEL, + "file_size_description/description": T.LABEL, + "file_size_description/padding": T.PANEL, + "file_size_description/size_stack": T.STACK_PANEL, + "file_size_description/size_stack/file_text": T.LABEL, + "file_size_description/size_stack/padding_1": T.PANEL, + "file_size_description/size_stack/file_size_total": T.LABEL, + "file_size_description/size_stack/padding_2": T.PANEL, + "file_size_description/size_stack/file_size_available": T.LABEL, + "file_size_description/file_location": T.LABEL, + "error_icon_and_description": T.STACK_PANEL, + "error_icon_and_description/error_image": T.IMAGE, + "error_icon_and_description/description": T.LABEL, + "file_size_description_with_error": T.STACK_PANEL, + "file_size_description_with_error/file_size": T.STACK_PANEL, + "file_size_description_with_error/padding": T.PANEL, + "file_size_description_with_error/error_icon_and_description": T.STACK_PANEL, + "start_transfer": T.PANEL, + "start_transfer_content": T.STACK_PANEL, + "resume_transfer": T.PANEL, + "resume_transfer_content": T.STACK_PANEL, + "resume_transfer_content/file_size": T.STACK_PANEL, + "transfer_error_out_of_space": T.PANEL, + "transfer_error_out_of_space_content": T.STACK_PANEL, } export type StorageMigrationGenericType = { - storage_migration_generic_screen: T.SCREEN - modal_screen_content: T.PANEL - "modal_screen_content/modal_progress_panel_no_cancel": T.PANEL - "modal_screen_content/popup_dialog_factory": T.FACTORY - start_transfer: T.PANEL - start_transfer_out_of_space: T.PANEL - start_transfer_out_of_space_content: T.STACK_PANEL - "start_transfer_out_of_space_content/base_start_content": T.STACK_PANEL - "start_transfer_out_of_space_content/padding": T.PANEL - "start_transfer_out_of_space_content/error_icon_and_description": T.STACK_PANEL - finished: T.PANEL - finished_content: T.STACK_PANEL - "finished_content/description": T.LABEL - resume_transfer_out_of_space: T.PANEL - resume_transfer_out_of_space_content: T.STACK_PANEL - transfer_error: T.PANEL - transfer_error_content: T.STACK_PANEL - "transfer_error_content/description": T.LABEL - transfer_error_out_of_space: T.PANEL + "storage_migration_generic_screen": T.SCREEN, + "modal_screen_content": T.PANEL, + "modal_screen_content/modal_progress_panel_no_cancel": T.PANEL, + "modal_screen_content/popup_dialog_factory": T.FACTORY, + "start_transfer": T.PANEL, + "start_transfer_out_of_space": T.PANEL, + "start_transfer_out_of_space_content": T.STACK_PANEL, + "start_transfer_out_of_space_content/base_start_content": T.STACK_PANEL, + "start_transfer_out_of_space_content/padding": T.PANEL, + "start_transfer_out_of_space_content/error_icon_and_description": T.STACK_PANEL, + "finished": T.PANEL, + "finished_content": T.STACK_PANEL, + "finished_content/description": T.LABEL, + "resume_transfer_out_of_space": T.PANEL, + "resume_transfer_out_of_space_content": T.STACK_PANEL, + "transfer_error": T.PANEL, + "transfer_error_content": T.STACK_PANEL, + "transfer_error_content/description": T.LABEL, + "transfer_error_out_of_space": T.PANEL, } export type ScoreboardType = { - scoreboard_sidebar_score: T.LABEL - scoreboard_sidebar_player: T.LABEL - scoreboard_sidebar: T.PANEL - "scoreboard_sidebar/main": T.IMAGE - "scoreboard_sidebar/main/displayed_objective": T.LABEL - "scoreboard_sidebar/main/lists": T.PANEL - "scoreboard_sidebar/main/lists/players": T.STACK_PANEL - "scoreboard_sidebar/main/lists/horizontal_padding": T.PANEL - "scoreboard_sidebar/main/lists/scores": T.STACK_PANEL - "scoreboard_sidebar/displayed_objective_background": T.IMAGE - scoreboard_player_list: T.STACK_PANEL - "scoreboard_player_list/vertical_padding_0": T.PANEL - "scoreboard_player_list/social_buttons_panel": T.STACK_PANEL - "scoreboard_player_list/vertical_padding_1": T.PANEL - "scoreboard_player_list/permissions_button": T.BUTTON - "scoreboard_player_list/vertical_padding_2": T.PANEL - "scoreboard_player_list/players_label": T.LABEL - "scoreboard_player_list/vertical_padding_3": T.PANEL - "scoreboard_player_list/scored_players_grid_panel": T.STACK_PANEL - "scoreboard_player_list/vertical_padding_4": T.PANEL - "scoreboard_player_list/unscored_players_grid_panel": T.STACK_PANEL - "scoreboard_player_list/vertical_padding_5": T.PANEL - "scoreboard_player_list/invite_players_button_panel": T.PANEL - "scoreboard_player_list/vertical_padding_6": T.PANEL - "scoreboard_player_list/disconnected_from_multiplayer_label_panel": T.STACK_PANEL - "scoreboard_player_list/vertical_padding_7": T.PANEL - list_objective_label: T.LABEL - player_rank_panel: T.PANEL - "player_rank_panel/player_rank_bg": T.IMAGE - "player_rank_panel/player_rank_bg/player_rank": T.LABEL - player_icon_panel: T.PANEL - "player_icon_panel/player_icon": T.IMAGE - "player_icon_panel/player_icon/player_panel_black_border": T.IMAGE - "player_icon_panel/permission_icon": T.IMAGE - player_name: T.LABEL - player_score: T.LABEL - player_details: T.STACK_PANEL - "player_details/name_panel": T.PANEL - "player_details/name_panel/name": T.LABEL - "player_details/score_panel": T.PANEL - "player_details/score_panel/score": T.LABEL - player_content: T.STACK_PANEL - "player_content/icon": T.PANEL - "player_content/padding": T.PANEL - "player_content/details": T.STACK_PANEL - base_player_button: T.BUTTON - player_panel: T.STACK_PANEL - "player_panel/rank_base": T.PANEL - "player_panel/rank_base/player_rank": T.PANEL - "player_panel/player_button": T.BUTTON - players_grid_list: T.STACK_PANEL - players_unscored_grid_list: T.STACK_PANEL - players_scored_grid_list: T.STACK_PANEL + "scoreboard_sidebar_score": T.LABEL, + "scoreboard_sidebar_player": T.LABEL, + "scoreboard_sidebar": T.PANEL, + "scoreboard_sidebar/main": T.IMAGE, + "scoreboard_sidebar/main/displayed_objective": T.LABEL, + "scoreboard_sidebar/main/lists": T.PANEL, + "scoreboard_sidebar/main/lists/players": T.STACK_PANEL, + "scoreboard_sidebar/main/lists/horizontal_padding": T.PANEL, + "scoreboard_sidebar/main/lists/scores": T.STACK_PANEL, + "scoreboard_sidebar/displayed_objective_background": T.IMAGE, + "scoreboard_player_list": T.STACK_PANEL, + "scoreboard_player_list/vertical_padding_0": T.PANEL, + "scoreboard_player_list/social_buttons_panel": T.STACK_PANEL, + "scoreboard_player_list/vertical_padding_1": T.PANEL, + "scoreboard_player_list/permissions_button": T.BUTTON, + "scoreboard_player_list/vertical_padding_2": T.PANEL, + "scoreboard_player_list/players_label": T.LABEL, + "scoreboard_player_list/vertical_padding_3": T.PANEL, + "scoreboard_player_list/scored_players_grid_panel": T.STACK_PANEL, + "scoreboard_player_list/vertical_padding_4": T.PANEL, + "scoreboard_player_list/unscored_players_grid_panel": T.STACK_PANEL, + "scoreboard_player_list/vertical_padding_5": T.PANEL, + "scoreboard_player_list/invite_players_button_panel": T.PANEL, + "scoreboard_player_list/vertical_padding_6": T.PANEL, + "scoreboard_player_list/disconnected_from_multiplayer_label_panel": T.STACK_PANEL, + "scoreboard_player_list/vertical_padding_7": T.PANEL, + "list_objective_label": T.LABEL, + "player_rank_panel": T.PANEL, + "player_rank_panel/player_rank_bg": T.IMAGE, + "player_rank_panel/player_rank_bg/player_rank": T.LABEL, + "player_icon_panel": T.PANEL, + "player_icon_panel/player_icon": T.IMAGE, + "player_icon_panel/player_icon/player_panel_black_border": T.IMAGE, + "player_icon_panel/permission_icon": T.IMAGE, + "player_name": T.LABEL, + "player_score": T.LABEL, + "player_details": T.STACK_PANEL, + "player_details/name_panel": T.PANEL, + "player_details/name_panel/name": T.LABEL, + "player_details/score_panel": T.PANEL, + "player_details/score_panel/score": T.LABEL, + "player_content": T.STACK_PANEL, + "player_content/icon": T.PANEL, + "player_content/padding": T.PANEL, + "player_content/details": T.STACK_PANEL, + "base_player_button": T.BUTTON, + "player_panel": T.STACK_PANEL, + "player_panel/rank_base": T.PANEL, + "player_panel/rank_base/player_rank": T.PANEL, + "player_panel/player_button": T.BUTTON, + "players_grid_list": T.STACK_PANEL, + "players_unscored_grid_list": T.STACK_PANEL, + "players_scored_grid_list": T.STACK_PANEL, } export type ScreenshotType = { - screenshot_flash_image: T.IMAGE - screenshot_screen: T.SCREEN - screenshot_screen_content: T.PANEL - "screenshot_screen_content/transparent_background": T.IMAGE - "screenshot_screen_content/screenshot_flash": T.IMAGE + "screenshot_flash_image": T.IMAGE, + "screenshot_screen": T.SCREEN, + "screenshot_screen_content": T.PANEL, + "screenshot_screen_content/transparent_background": T.IMAGE, + "screenshot_screen_content/screenshot_flash": T.IMAGE, } export type SelectWorldType = { - popup_dialog__add_on_common: T.INPUT_PANEL - popup_dialog__add_on_common_no_buttons: T.INPUT_PANEL - "popup_dialog__add_on_common_no_buttons/popup_dialog_bg": T.IMAGE - "popup_dialog__add_on_common_no_buttons/popup_dialog_message": T.LABEL - "popup_dialog__add_on_common_no_buttons/close_button": T.BUTTON - "popup_dialog__add_on_common_no_buttons/add_on_popup_content_panel": T.PANEL - popup_dialog__add_on_common_two_buttons: T.INPUT_PANEL - "popup_dialog__add_on_common_two_buttons/popup_dialog_bg": T.IMAGE - "popup_dialog__add_on_common_two_buttons/popup_dialog_message": T.LABEL - "popup_dialog__add_on_common_two_buttons/close_button": T.BUTTON - "popup_dialog__add_on_common_two_buttons/add_on_popup_content_panel": T.PANEL - "popup_dialog__add_on_common_two_buttons/button_copy": T.BUTTON - "popup_dialog__add_on_common_two_buttons/button_continue": T.BUTTON - add_on_button_copy: T.BUTTON - add_on_button_continue: T.BUTTON - add_on_popup_content_panel: T.PANEL - "add_on_popup_content_panel/popup_content": T.UNKNOWN - popup_dialog__activate_add_on: T.INPUT_PANEL - popup_dialog__activate_add_on_select_world: T.INPUT_PANEL - popup_dialog__copy_local_world: T.INPUT_PANEL - popup_dialog__copy_realms_world: T.INPUT_PANEL - copy_local_world_panel: T.STACK_PANEL - "copy_local_world_panel/padding_top": T.PANEL - "copy_local_world_panel/text_box": T.LABEL - "copy_local_world_panel/padding_middle": T.PANEL - "copy_local_world_panel/text_box2": T.LABEL - copy_realms_world_panel: T.STACK_PANEL - "copy_realms_world_panel/padding_top": T.PANEL - "copy_realms_world_panel/text_box": T.LABEL - "copy_realms_world_panel/padding_middle": T.PANEL - "copy_realms_world_panel/text_box2": T.LABEL - new_or_existing_world_panel: T.STACK_PANEL - "new_or_existing_world_panel/padding_left": T.PANEL - "new_or_existing_world_panel/world_icon_existing": T.STACK_PANEL - "new_or_existing_world_panel/padding_middle": T.PANEL - "new_or_existing_world_panel/world_icon_new": T.STACK_PANEL - "new_or_existing_world_panel/padding_right": T.PANEL - world_icon_with_button: T.STACK_PANEL - "world_icon_with_button/padding_top": T.PANEL - "world_icon_with_button/world_icon": T.PANEL - "world_icon_with_button/button": T.BUTTON - "world_icon_with_button/padding_bottom": T.PANEL - world_icon_new: T.IMAGE - "world_icon_new/plus_button": T.IMAGE - world_icon_existing: T.IMAGE - select_world_panel: T.PANEL - select_world_list: T.STACK_PANEL - "select_world_list/realms_world_label": T.LABEL - "select_world_list/realms_world_list": T.GRID - "select_world_list/padding_middle": T.PANEL - "select_world_list/local_world_label": T.LABEL - "select_world_list/local_world_list": T.GRID - "select_world_list/padding_end": T.PANEL - local_world_item_button: T.BUTTON - realms_world_item_button: T.BUTTON - select_world_screen_content: T.PANEL - "select_world_screen_content/popup_dialog_factory": T.FACTORY - select_world_popup_screen: T.SCREEN + "popup_dialog__add_on_common": T.INPUT_PANEL, + "popup_dialog__add_on_common_no_buttons": T.INPUT_PANEL, + "popup_dialog__add_on_common_no_buttons/popup_dialog_bg": T.IMAGE, + "popup_dialog__add_on_common_no_buttons/popup_dialog_message": T.LABEL, + "popup_dialog__add_on_common_no_buttons/close_button": T.BUTTON, + "popup_dialog__add_on_common_no_buttons/add_on_popup_content_panel": T.PANEL, + "popup_dialog__add_on_common_two_buttons": T.INPUT_PANEL, + "popup_dialog__add_on_common_two_buttons/popup_dialog_bg": T.IMAGE, + "popup_dialog__add_on_common_two_buttons/popup_dialog_message": T.LABEL, + "popup_dialog__add_on_common_two_buttons/close_button": T.BUTTON, + "popup_dialog__add_on_common_two_buttons/add_on_popup_content_panel": T.PANEL, + "popup_dialog__add_on_common_two_buttons/button_copy": T.BUTTON, + "popup_dialog__add_on_common_two_buttons/button_continue": T.BUTTON, + "add_on_button_copy": T.BUTTON, + "add_on_button_continue": T.BUTTON, + "add_on_popup_content_panel": T.PANEL, + "add_on_popup_content_panel/popup_content": T.UNKNOWN, + "popup_dialog__activate_add_on": T.INPUT_PANEL, + "popup_dialog__activate_add_on_select_world": T.INPUT_PANEL, + "popup_dialog__copy_local_world": T.INPUT_PANEL, + "popup_dialog__copy_realms_world": T.INPUT_PANEL, + "copy_local_world_panel": T.STACK_PANEL, + "copy_local_world_panel/padding_top": T.PANEL, + "copy_local_world_panel/text_box": T.LABEL, + "copy_local_world_panel/padding_middle": T.PANEL, + "copy_local_world_panel/text_box2": T.LABEL, + "copy_realms_world_panel": T.STACK_PANEL, + "copy_realms_world_panel/padding_top": T.PANEL, + "copy_realms_world_panel/text_box": T.LABEL, + "copy_realms_world_panel/padding_middle": T.PANEL, + "copy_realms_world_panel/text_box2": T.LABEL, + "new_or_existing_world_panel": T.STACK_PANEL, + "new_or_existing_world_panel/padding_left": T.PANEL, + "new_or_existing_world_panel/world_icon_existing": T.STACK_PANEL, + "new_or_existing_world_panel/padding_middle": T.PANEL, + "new_or_existing_world_panel/world_icon_new": T.STACK_PANEL, + "new_or_existing_world_panel/padding_right": T.PANEL, + "world_icon_with_button": T.STACK_PANEL, + "world_icon_with_button/padding_top": T.PANEL, + "world_icon_with_button/world_icon": T.PANEL, + "world_icon_with_button/button": T.BUTTON, + "world_icon_with_button/padding_bottom": T.PANEL, + "world_icon_new": T.IMAGE, + "world_icon_new/plus_button": T.IMAGE, + "world_icon_existing": T.IMAGE, + "select_world_panel": T.PANEL, + "select_world_list": T.STACK_PANEL, + "select_world_list/realms_world_label": T.LABEL, + "select_world_list/realms_world_list": T.GRID, + "select_world_list/padding_middle": T.PANEL, + "select_world_list/local_world_label": T.LABEL, + "select_world_list/local_world_list": T.GRID, + "select_world_list/padding_end": T.PANEL, + "local_world_item_button": T.BUTTON, + "realms_world_item_button": T.BUTTON, + "select_world_screen_content": T.PANEL, + "select_world_screen_content/popup_dialog_factory": T.FACTORY, + "select_world_popup_screen": T.SCREEN, } export type ServerFormType = { - third_party_server_screen: T.SCREEN - main_screen_content: T.PANEL - "main_screen_content/server_form_factory": T.FACTORY - long_form: T.PANEL - long_form_panel: T.STACK_PANEL - "long_form_panel/scrolling_panel": T.PANEL - long_form_scrolling_content: T.STACK_PANEL - "long_form_scrolling_content/label_offset_panel": T.PANEL - "long_form_scrolling_content/label_offset_panel/main_label": T.LABEL - "long_form_scrolling_content/padding": T.PANEL - "long_form_scrolling_content/wrapping_panel": T.PANEL - "long_form_scrolling_content/wrapping_panel/long_form_dynamic_buttons_panel": T.STACK_PANEL - long_form_dynamic_buttons_panel: T.STACK_PANEL - dynamic_button: T.STACK_PANEL - "dynamic_button/panel_name": T.PANEL - "dynamic_button/panel_name/image": T.IMAGE - "dynamic_button/panel_name/progress": T.IMAGE - "dynamic_button/form_button": T.BUTTON - dynamic_label: T.PANEL - dynamic_header: T.PANEL - custom_form: T.PANEL - custom_form_panel: T.PANEL - generated_contents: T.STACK_PANEL - custom_form_scrolling_content: T.STACK_PANEL - "custom_form_scrolling_content/generated_form": T.STACK_PANEL - "custom_form_scrolling_content/submit_button": T.BUTTON - custom_label: T.PANEL - custom_header: T.PANEL - custom_toggle: T.PANEL - custom_slider: T.PANEL - custom_step_slider: T.PANEL - custom_dropdown: T.PANEL - "custom_dropdown/dropdown": T.PANEL - custom_dropdown_content: T.PANEL - custom_dropdown_radio: T.PANEL - custom_input: T.PANEL + "third_party_server_screen": T.SCREEN, + "main_screen_content": T.PANEL, + "main_screen_content/server_form_factory": T.FACTORY, + "long_form": T.PANEL, + "long_form_panel": T.STACK_PANEL, + "long_form_panel/scrolling_panel": T.PANEL, + "long_form_scrolling_content": T.STACK_PANEL, + "long_form_scrolling_content/label_offset_panel": T.PANEL, + "long_form_scrolling_content/label_offset_panel/main_label": T.LABEL, + "long_form_scrolling_content/padding": T.PANEL, + "long_form_scrolling_content/wrapping_panel": T.PANEL, + "long_form_scrolling_content/wrapping_panel/long_form_dynamic_buttons_panel": T.STACK_PANEL, + "long_form_dynamic_buttons_panel": T.STACK_PANEL, + "dynamic_button": T.STACK_PANEL, + "dynamic_button/panel_name": T.PANEL, + "dynamic_button/panel_name/image": T.IMAGE, + "dynamic_button/panel_name/progress": T.IMAGE, + "dynamic_button/form_button": T.BUTTON, + "dynamic_label": T.PANEL, + "dynamic_header": T.PANEL, + "custom_form": T.PANEL, + "custom_form_panel": T.PANEL, + "generated_contents": T.STACK_PANEL, + "custom_form_scrolling_content": T.STACK_PANEL, + "custom_form_scrolling_content/generated_form": T.STACK_PANEL, + "custom_form_scrolling_content/submit_button": T.BUTTON, + "custom_label": T.PANEL, + "custom_header": T.PANEL, + "custom_toggle": T.PANEL, + "custom_slider": T.PANEL, + "custom_step_slider": T.PANEL, + "custom_dropdown": T.PANEL, + "custom_dropdown/dropdown": T.PANEL, + "custom_dropdown_content": T.PANEL, + "custom_dropdown_radio": T.PANEL, + "custom_input": T.PANEL, } export type SettingsType = { - settings_screen_base: T.SCREEN - screen_world_create: T.SCREEN - screen_template_create: T.SCREEN - screen_world_edit: T.SCREEN - screen_controls_and_settings: T.SCREEN - screen_world_controls_and_settings: T.SCREEN - screen_realm_controls_and_settings: T.SCREEN - screen_realm_member_controls_and_settings: T.SCREEN - screen_realm_settings: T.SCREEN - screen_world_slot_edit: T.SCREEN - screen_realm_manage: T.SCREEN - screen_realm_invite_link_settings: T.SCREEN - selector_stack_panel: T.STACK_PANEL - "selector_stack_panel/spacer_0": T.PANEL - "selector_stack_panel/accessibility_button": T.PANEL - "selector_stack_panel/spacer_1": T.PANEL - "selector_stack_panel/how_to_play_button": T.PANEL - "selector_stack_panel/spacer_01": T.PANEL - "selector_stack_panel/world_selector_pane": T.STACK_PANEL - "selector_stack_panel/realm_selector_pane": T.STACK_PANEL - "selector_stack_panel/controls_and_settings_selector_pane": T.STACK_PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_1": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_1_no_spatial": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_1": T.LABEL - "selector_stack_panel/controls_and_settings_selector_pane/keyboard_and_mouse_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_01": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/controller_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_02": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/switch_controller_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_03": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/touch_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_04": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_04_no_spatial": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_2": T.LABEL - "selector_stack_panel/controls_and_settings_selector_pane/party_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_05": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_05_no_spatial": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_3": T.LABEL - "selector_stack_panel/controls_and_settings_selector_pane/general_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_06": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/video_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_07": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/sound_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_08": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/account_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_09": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/view_subscriptions_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_10": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/global_texture_pack_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_11": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/storage_management_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_12": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/edu_cloud_storage_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_13": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/language_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_14": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/creator_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_15": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/preview_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_4": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_4_no_spatial": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_4": T.LABEL - "selector_stack_panel/controls_and_settings_selector_pane/debug_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_16": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/discovery_debug_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_17": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/ui_debug_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_18": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/edu_debug_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_19": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/marketplace_debug_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_20": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/gatherings_debug_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_21": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/flighting_debug_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_22": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/realms_debug_button": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/spacer_23": T.PANEL - "selector_stack_panel/controls_and_settings_selector_pane/automation_button": T.PANEL - "selector_stack_panel/spacer_24": T.PANEL - "selector_stack_panel/addons_selector_panel": T.STACK_PANEL - "selector_stack_panel/realms_invite_link_settings_pane": T.STACK_PANEL - section_content_panels: T.PANEL - "section_content_panels/realm_invite_link_settings_content_panels": T.PANEL - "section_content_panels/world_sections": T.STACK_PANEL - "section_content_panels/world_sections/game_section": T.STACK_PANEL - "section_content_panels/world_sections/classroom_section_panel": T.PANEL - "section_content_panels/world_sections/classroom_section_panel/classroom_section": T.UNKNOWN - "section_content_panels/world_sections/server_section": T.STACK_PANEL - "section_content_panels/world_sections/multiplayer_section": T.STACK_PANEL - "section_content_panels/world_sections/edu_cloud_section": T.STACK_PANEL - "section_content_panels/world_sections/debug_section": T.STACK_PANEL - "section_content_panels/packs_sections": T.STACK_PANEL - "section_content_panels/packs_sections/level_texture_pack_section": T.STACK_PANEL - "section_content_panels/packs_sections/addon_section": T.STACK_PANEL - "section_content_panels/section_content_panels": T.PANEL - "section_content_panels/general_and_controls_sections": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/accessibility_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/accessibility_section_ore_ui": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/keyboard_and_mouse_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/keyboard_and_mouse_section_ore_ui": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/controller_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/touch_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/party_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/general_tab_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/general_tab_section_ore_ui": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/account_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/account_section_ore_ui": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/global_texture_pack_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/storage_management_header": T.PANEL - "section_content_panels/general_and_controls_sections/storage_management_section": T.PANEL - "section_content_panels/general_and_controls_sections/edu_cloud_storage_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/creator_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/video_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/video_section_ore_ui": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/view_subscriptions_prerelease_section": T.PANEL - "section_content_panels/general_and_controls_sections/view_subscriptions_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/sound_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/sound_section_ore_ui": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/language_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/language_section_ore_ui": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/preview_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/debug_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/ui_debug_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/edu_debug_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/marketplace_debug_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/gatherings_debug_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/flighting_debug_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/realms_debug_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/automation_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/discovery_debug_section": T.STACK_PANEL - "section_content_panels/general_and_controls_sections/how_to_play_section": T.STACK_PANEL - section_header_panels: T.PANEL - "section_header_panels/world_sections": T.STACK_PANEL - "section_header_panels/general_and_controls_sections": T.STACK_PANEL - section_footer_panels: T.PANEL - "section_footer_panels/world_sections": T.STACK_PANEL - "section_footer_panels/general_and_controls_sections": T.STACK_PANEL - "section_footer_panels/general_and_controls_sections/storage_management_footer": T.PANEL + "settings_screen_base": T.SCREEN, + "screen_world_create": T.SCREEN, + "screen_template_create": T.SCREEN, + "screen_world_edit": T.SCREEN, + "screen_controls_and_settings": T.SCREEN, + "screen_world_controls_and_settings": T.SCREEN, + "screen_realm_controls_and_settings": T.SCREEN, + "screen_realm_member_controls_and_settings": T.SCREEN, + "screen_realm_settings": T.SCREEN, + "screen_world_slot_edit": T.SCREEN, + "screen_realm_manage": T.SCREEN, + "screen_realm_invite_link_settings": T.SCREEN, + "selector_stack_panel": T.STACK_PANEL, + "selector_stack_panel/spacer_0": T.PANEL, + "selector_stack_panel/accessibility_button": T.PANEL, + "selector_stack_panel/spacer_1": T.PANEL, + "selector_stack_panel/how_to_play_button": T.PANEL, + "selector_stack_panel/spacer_01": T.PANEL, + "selector_stack_panel/world_selector_pane": T.STACK_PANEL, + "selector_stack_panel/realm_selector_pane": T.STACK_PANEL, + "selector_stack_panel/controls_and_settings_selector_pane": T.STACK_PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_1": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_1_no_spatial": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_1": T.LABEL, + "selector_stack_panel/controls_and_settings_selector_pane/keyboard_and_mouse_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_01": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/controller_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_02": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/switch_controller_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_03": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/touch_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_04": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_04_no_spatial": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_2": T.LABEL, + "selector_stack_panel/controls_and_settings_selector_pane/party_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_05": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_05_no_spatial": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_3": T.LABEL, + "selector_stack_panel/controls_and_settings_selector_pane/general_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_06": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/video_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_07": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/sound_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_08": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/account_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_09": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/view_subscriptions_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_10": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/global_texture_pack_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_11": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/storage_management_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_12": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/edu_cloud_storage_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_13": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/language_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_14": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/creator_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_15": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/preview_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_4": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_4_no_spatial": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_4": T.LABEL, + "selector_stack_panel/controls_and_settings_selector_pane/debug_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_16": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/discovery_debug_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_17": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/ui_debug_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_18": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/edu_debug_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_19": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/marketplace_debug_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_20": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/gatherings_debug_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_21": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/flighting_debug_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_22": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/realms_debug_button": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_23": T.PANEL, + "selector_stack_panel/controls_and_settings_selector_pane/automation_button": T.PANEL, + "selector_stack_panel/spacer_24": T.PANEL, + "selector_stack_panel/addons_selector_panel": T.STACK_PANEL, + "selector_stack_panel/realms_invite_link_settings_pane": T.STACK_PANEL, + "section_content_panels": T.PANEL, + "section_content_panels/realm_invite_link_settings_content_panels": T.PANEL, + "section_content_panels/world_sections": T.STACK_PANEL, + "section_content_panels/world_sections/game_section": T.STACK_PANEL, + "section_content_panels/world_sections/classroom_section_panel": T.PANEL, + "section_content_panels/world_sections/classroom_section_panel/classroom_section": T.UNKNOWN, + "section_content_panels/world_sections/server_section": T.STACK_PANEL, + "section_content_panels/world_sections/multiplayer_section": T.STACK_PANEL, + "section_content_panels/world_sections/edu_cloud_section": T.STACK_PANEL, + "section_content_panels/world_sections/debug_section": T.STACK_PANEL, + "section_content_panels/packs_sections": T.STACK_PANEL, + "section_content_panels/packs_sections/level_texture_pack_section": T.STACK_PANEL, + "section_content_panels/packs_sections/addon_section": T.STACK_PANEL, + "section_content_panels/section_content_panels": T.PANEL, + "section_content_panels/general_and_controls_sections": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/accessibility_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/accessibility_section_ore_ui": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/keyboard_and_mouse_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/keyboard_and_mouse_section_ore_ui": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/controller_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/touch_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/party_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/general_tab_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/general_tab_section_ore_ui": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/account_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/account_section_ore_ui": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/global_texture_pack_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/storage_management_header": T.PANEL, + "section_content_panels/general_and_controls_sections/storage_management_section": T.PANEL, + "section_content_panels/general_and_controls_sections/edu_cloud_storage_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/creator_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/video_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/video_section_ore_ui": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/view_subscriptions_prerelease_section": T.PANEL, + "section_content_panels/general_and_controls_sections/view_subscriptions_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/sound_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/sound_section_ore_ui": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/language_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/language_section_ore_ui": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/preview_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/debug_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/ui_debug_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/edu_debug_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/marketplace_debug_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/gatherings_debug_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/flighting_debug_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/realms_debug_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/automation_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/discovery_debug_section": T.STACK_PANEL, + "section_content_panels/general_and_controls_sections/how_to_play_section": T.STACK_PANEL, + "section_header_panels": T.PANEL, + "section_header_panels/world_sections": T.STACK_PANEL, + "section_header_panels/general_and_controls_sections": T.STACK_PANEL, + "section_footer_panels": T.PANEL, + "section_footer_panels/world_sections": T.STACK_PANEL, + "section_footer_panels/general_and_controls_sections": T.STACK_PANEL, + "section_footer_panels/general_and_controls_sections/storage_management_footer": T.PANEL, } export type ControlsSectionType = { - binding_button: T.BUTTON - binding_button_content: T.PANEL - "binding_button_content/default_label": T.LABEL - image_binding_button: T.BUTTON - image_binding_button_content: T.PANEL - "image_binding_button_content/base_icon_image": T.IMAGE - "image_binding_button_content/default_label": T.LABEL - arrow_reset: T.IMAGE - reset_binding_button: T.BUTTON - keymapping_item_parent: T.STACK_PANEL - "keymapping_item_parent/keymapping_row": T.STACK_PANEL - keymapping_item: T.STACK_PANEL - "keymapping_item/option_info_label_control": T.IMAGE - "keymapping_item/option_info_label_control/keymapping_label_control": T.LABEL - "keymapping_item/keymapping_button_0": T.BUTTON - "keymapping_item/keymapping_button_1": T.BUTTON - keymapping_grid: T.GRID - full_keymapping_grid: T.GRID - gamepad_mapping_item: T.STACK_PANEL - "gamepad_mapping_item/option_info_label_control": T.IMAGE - "gamepad_mapping_item/option_info_label_control/keymapping_label_control": T.LABEL - "gamepad_mapping_item/keymapping_button_0": T.BUTTON - "gamepad_mapping_item/keymapping_button_1": T.BUTTON - gamepad_mapping_grid: T.GRID - keyboard_and_mouse_button: T.PANEL - keyboard_and_mouse_section_ore_ui: T.STACK_PANEL - "keyboard_and_mouse_section_ore_ui/spacer_0": T.PANEL - "keyboard_and_mouse_section_ore_ui/generic_label": T.LABEL - "keyboard_and_mouse_section_ore_ui/spacer_1": T.PANEL - "keyboard_and_mouse_section_ore_ui/gamepad_helper_label": T.LABEL - keyboard_and_mouse_section: T.STACK_PANEL - "keyboard_and_mouse_section/option_slider_0": T.PANEL - "keyboard_and_mouse_section/option_slider_damen": T.PANEL - "keyboard_and_mouse_section/option_toggle_0": T.PANEL - "keyboard_and_mouse_section/option_toggle_1": T.PANEL - "keyboard_and_mouse_section/option_toggle_2": T.PANEL - "keyboard_and_mouse_section/option_toggle_full_keyboard_gameplay": T.PANEL - "keyboard_and_mouse_section/option_toggle_show_keyboard_prompts": T.PANEL - "keyboard_and_mouse_section/option_toggle_show_learning_prompts": T.PANEL - "keyboard_and_mouse_section/keyboard_section": T.STACK_PANEL - "keyboard_and_mouse_section/keyboard_section/option_group_label": T.PANEL - "keyboard_and_mouse_section/keyboard_section/keyboard_keymapping_grid": T.GRID - "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section": T.STACK_PANEL - "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/option_group_label": T.PANEL - "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/control_alt_chord_keymapping_grid": T.GRID - "keyboard_and_mouse_section/full_keyboard_section": T.STACK_PANEL - "keyboard_and_mouse_section/full_keyboard_section/option_slider_smooth_rotation_speed": T.PANEL - "keyboard_and_mouse_section/full_keyboard_section/full_keyboard_label": T.PANEL - "keyboard_and_mouse_section/full_keyboard_section/keyboard_full_keymapping_grid": T.GRID - "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section": T.STACK_PANEL - "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/option_group_label": T.PANEL - "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/control_alt_chord_keymapping_grid": T.GRID - "keyboard_and_mouse_section/reset_button": T.BUTTON - controller_button: T.PANEL - controller_section: T.STACK_PANEL - "controller_section/option_slider_0": T.PANEL - "controller_section/option_slider_damen": T.PANEL - "controller_section/option_toggle_0": T.PANEL - "controller_section/option_toggle_1": T.PANEL - "controller_section/option_toggle9": T.PANEL - "controller_section/option_toggle10": T.PANEL - "controller_section/option_toggle_11": T.PANEL - "controller_section/gamepad_swap_ab": T.PANEL - "controller_section/gamepad_swap_xy": T.PANEL - "controller_section/gamepad_cursor_sensitivity_option_slider": T.PANEL - "controller_section/option_toggle_3": T.PANEL - "controller_section/option_toggle_4": T.PANEL - "controller_section/option_toggle_5": T.PANEL - "controller_section/option_group_label": T.PANEL - "controller_section/gamepad_keymapping_grid": T.GRID - "controller_section/reset_button": T.BUTTON - touch_button: T.PANEL - touch_section: T.STACK_PANEL - "touch_section/common_touch_settings": T.STACK_PANEL - "touch_section/common_touch_settings/option_enable_new_touch_control_schemes_button": T.PANEL - "touch_section/common_touch_settings/control_scheme_section": T.STACK_PANEL - "touch_section/common_touch_settings/control_scheme_section/section_label": T.LABEL - "touch_section/common_touch_settings/control_scheme_section/padding_0": T.PANEL - "touch_section/common_touch_settings/control_scheme_section/image_and_button": T.STACK_PANEL - "touch_section/common_touch_settings/control_scheme_section/image_and_button/images": T.PANEL - "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/touch_image": T.IMAGE - "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/crosshair_image": T.IMAGE - "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/classic_image": T.IMAGE - "touch_section/common_touch_settings/control_scheme_section/image_and_button/padding": T.PANEL - "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section": T.PANEL - "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption": T.STACK_PANEL - "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption/selected_label": T.LABEL - "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption/selected_control": T.LABEL - "touch_section/common_touch_settings/control_scheme_section/padding_1": T.PANEL - "touch_section/common_touch_settings/control_scheme_section/select_control_mode": T.BUTTON - "touch_section/common_touch_settings/control_scheme_section/padding_2": T.PANEL - "touch_section/common_touch_settings/modify_control_layout_section": T.STACK_PANEL - "touch_section/common_touch_settings/modify_control_layout_section/modify_control_layout_button": T.BUTTON - "touch_section/common_touch_settings/modify_control_layout_section/customize_tooltip_option": T.PANEL - "touch_section/common_touch_settings/modify_control_layout_section/padding": T.PANEL - "touch_section/common_touch_settings/option_slider_0": T.PANEL - "touch_section/common_touch_settings/option_slider_damen": T.PANEL - "touch_section/common_touch_settings/option_show_action_button": T.PANEL - "touch_section/common_touch_settings/option_show_block_select_button": T.PANEL - "touch_section/common_touch_settings/option_toggle_left_handed": T.PANEL - "touch_section/common_touch_settings/option_toggle_auto_jump": T.PANEL - "touch_section/common_touch_settings/option_bool_sprint_on_movement": T.PANEL - "touch_section/common_touch_settings/option_show_toggle_camera_perspective_button": T.PANEL - "touch_section/common_touch_settings/joystick_visibility_dropdown": T.PANEL - "touch_section/common_touch_settings/top_button_scale": T.PANEL - "touch_section/common_touch_settings/sneak_dropdown": T.PANEL - "touch_section/common_touch_settings/option_toggle_destroy_vibration": T.PANEL - "touch_section/common_touch_settings/option_toggle_split_vibration": T.PANEL - "touch_section/common_touch_settings/option_creative_delayed_block_breaking": T.PANEL - "touch_section/common_touch_settings/option_toggle_invert_y": T.PANEL - "touch_section/common_touch_settings/option_always_highlight_hovering_box_in_crosshair": T.PANEL - "touch_section/common_touch_settings/option_toggle_use_touchpad": T.PANEL - "touch_section/common_touch_settings/option_toggle_swap_jump_and_sneak": T.PANEL - "touch_section/common_touch_settings/hotbar_only_touch_toggle": T.PANEL - "touch_section/reset_button": T.BUTTON - joystick_visibility_dropdown_content: T.PANEL - top_button_scale_dropdown_content: T.PANEL - sneak_dropdown_content: T.PANEL - customize_tooltip_option_image: T.IMAGE - customize_tooltip_option_popup: T.IMAGE - customize_tooltip_option: T.PANEL - "customize_tooltip_option/customize_tooltip_option_image": T.IMAGE - "customize_tooltip_option/customize_tooltip_option_image/hover_detection_input_panel": T.INPUT_PANEL - "customize_tooltip_option/customize_tooltip_option_popup": T.IMAGE + "binding_button": T.BUTTON, + "binding_button_content": T.PANEL, + "binding_button_content/default_label": T.LABEL, + "image_binding_button": T.BUTTON, + "image_binding_button_content": T.PANEL, + "image_binding_button_content/base_icon_image": T.IMAGE, + "image_binding_button_content/default_label": T.LABEL, + "arrow_reset": T.IMAGE, + "reset_binding_button": T.BUTTON, + "keymapping_item_parent": T.STACK_PANEL, + "keymapping_item_parent/keymapping_row": T.STACK_PANEL, + "keymapping_item": T.STACK_PANEL, + "keymapping_item/option_info_label_control": T.IMAGE, + "keymapping_item/option_info_label_control/keymapping_label_control": T.LABEL, + "keymapping_item/keymapping_button_0": T.BUTTON, + "keymapping_item/keymapping_button_1": T.BUTTON, + "keymapping_grid": T.GRID, + "full_keymapping_grid": T.GRID, + "gamepad_mapping_item": T.STACK_PANEL, + "gamepad_mapping_item/option_info_label_control": T.IMAGE, + "gamepad_mapping_item/option_info_label_control/keymapping_label_control": T.LABEL, + "gamepad_mapping_item/keymapping_button_0": T.BUTTON, + "gamepad_mapping_item/keymapping_button_1": T.BUTTON, + "gamepad_mapping_grid": T.GRID, + "keyboard_and_mouse_button": T.PANEL, + "keyboard_and_mouse_section_ore_ui": T.STACK_PANEL, + "keyboard_and_mouse_section_ore_ui/spacer_0": T.PANEL, + "keyboard_and_mouse_section_ore_ui/generic_label": T.LABEL, + "keyboard_and_mouse_section_ore_ui/spacer_1": T.PANEL, + "keyboard_and_mouse_section_ore_ui/gamepad_helper_label": T.LABEL, + "keyboard_and_mouse_section": T.STACK_PANEL, + "keyboard_and_mouse_section/option_slider_0": T.PANEL, + "keyboard_and_mouse_section/option_slider_damen": T.PANEL, + "keyboard_and_mouse_section/option_toggle_0": T.PANEL, + "keyboard_and_mouse_section/option_toggle_1": T.PANEL, + "keyboard_and_mouse_section/option_toggle_2": T.PANEL, + "keyboard_and_mouse_section/option_toggle_full_keyboard_gameplay": T.PANEL, + "keyboard_and_mouse_section/option_toggle_show_keyboard_prompts": T.PANEL, + "keyboard_and_mouse_section/option_toggle_show_learning_prompts": T.PANEL, + "keyboard_and_mouse_section/keyboard_section": T.STACK_PANEL, + "keyboard_and_mouse_section/keyboard_section/option_group_label": T.PANEL, + "keyboard_and_mouse_section/keyboard_section/keyboard_keymapping_grid": T.GRID, + "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section": T.STACK_PANEL, + "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/option_group_label": T.PANEL, + "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/control_alt_chord_keymapping_grid": T.GRID, + "keyboard_and_mouse_section/full_keyboard_section": T.STACK_PANEL, + "keyboard_and_mouse_section/full_keyboard_section/option_slider_smooth_rotation_speed": T.PANEL, + "keyboard_and_mouse_section/full_keyboard_section/full_keyboard_label": T.PANEL, + "keyboard_and_mouse_section/full_keyboard_section/keyboard_full_keymapping_grid": T.GRID, + "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section": T.STACK_PANEL, + "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/option_group_label": T.PANEL, + "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/control_alt_chord_keymapping_grid": T.GRID, + "keyboard_and_mouse_section/reset_button": T.BUTTON, + "controller_button": T.PANEL, + "controller_section": T.STACK_PANEL, + "controller_section/option_slider_0": T.PANEL, + "controller_section/option_slider_damen": T.PANEL, + "controller_section/option_toggle_0": T.PANEL, + "controller_section/option_toggle_1": T.PANEL, + "controller_section/option_toggle9": T.PANEL, + "controller_section/option_toggle10": T.PANEL, + "controller_section/option_toggle_11": T.PANEL, + "controller_section/gamepad_swap_ab": T.PANEL, + "controller_section/gamepad_swap_xy": T.PANEL, + "controller_section/gamepad_cursor_sensitivity_option_slider": T.PANEL, + "controller_section/option_toggle_3": T.PANEL, + "controller_section/option_toggle_4": T.PANEL, + "controller_section/option_toggle_5": T.PANEL, + "controller_section/option_group_label": T.PANEL, + "controller_section/gamepad_keymapping_grid": T.GRID, + "controller_section/reset_button": T.BUTTON, + "touch_button": T.PANEL, + "touch_section": T.STACK_PANEL, + "touch_section/common_touch_settings": T.STACK_PANEL, + "touch_section/common_touch_settings/option_enable_new_touch_control_schemes_button": T.PANEL, + "touch_section/common_touch_settings/control_scheme_section": T.STACK_PANEL, + "touch_section/common_touch_settings/control_scheme_section/section_label": T.LABEL, + "touch_section/common_touch_settings/control_scheme_section/padding_0": T.PANEL, + "touch_section/common_touch_settings/control_scheme_section/image_and_button": T.STACK_PANEL, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/images": T.PANEL, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/touch_image": T.IMAGE, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/crosshair_image": T.IMAGE, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/classic_image": T.IMAGE, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/padding": T.PANEL, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section": T.PANEL, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption": T.STACK_PANEL, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption/selected_label": T.LABEL, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption/selected_control": T.LABEL, + "touch_section/common_touch_settings/control_scheme_section/padding_1": T.PANEL, + "touch_section/common_touch_settings/control_scheme_section/select_control_mode": T.BUTTON, + "touch_section/common_touch_settings/control_scheme_section/padding_2": T.PANEL, + "touch_section/common_touch_settings/modify_control_layout_section": T.STACK_PANEL, + "touch_section/common_touch_settings/modify_control_layout_section/modify_control_layout_button": T.BUTTON, + "touch_section/common_touch_settings/modify_control_layout_section/customize_tooltip_option": T.PANEL, + "touch_section/common_touch_settings/modify_control_layout_section/padding": T.PANEL, + "touch_section/common_touch_settings/option_slider_0": T.PANEL, + "touch_section/common_touch_settings/option_slider_damen": T.PANEL, + "touch_section/common_touch_settings/option_show_action_button": T.PANEL, + "touch_section/common_touch_settings/option_show_block_select_button": T.PANEL, + "touch_section/common_touch_settings/option_toggle_left_handed": T.PANEL, + "touch_section/common_touch_settings/option_toggle_auto_jump": T.PANEL, + "touch_section/common_touch_settings/option_bool_sprint_on_movement": T.PANEL, + "touch_section/common_touch_settings/option_show_toggle_camera_perspective_button": T.PANEL, + "touch_section/common_touch_settings/joystick_visibility_dropdown": T.PANEL, + "touch_section/common_touch_settings/top_button_scale": T.PANEL, + "touch_section/common_touch_settings/sneak_dropdown": T.PANEL, + "touch_section/common_touch_settings/option_toggle_destroy_vibration": T.PANEL, + "touch_section/common_touch_settings/option_toggle_split_vibration": T.PANEL, + "touch_section/common_touch_settings/option_creative_delayed_block_breaking": T.PANEL, + "touch_section/common_touch_settings/option_toggle_invert_y": T.PANEL, + "touch_section/common_touch_settings/option_always_highlight_hovering_box_in_crosshair": T.PANEL, + "touch_section/common_touch_settings/option_toggle_use_touchpad": T.PANEL, + "touch_section/common_touch_settings/option_toggle_swap_jump_and_sneak": T.PANEL, + "touch_section/common_touch_settings/hotbar_only_touch_toggle": T.PANEL, + "touch_section/reset_button": T.BUTTON, + "joystick_visibility_dropdown_content": T.PANEL, + "top_button_scale_dropdown_content": T.PANEL, + "sneak_dropdown_content": T.PANEL, + "customize_tooltip_option_image": T.IMAGE, + "customize_tooltip_option_popup": T.IMAGE, + "customize_tooltip_option": T.PANEL, + "customize_tooltip_option/customize_tooltip_option_image": T.IMAGE, + "customize_tooltip_option/customize_tooltip_option_image/hover_detection_input_panel": T.INPUT_PANEL, + "customize_tooltip_option/customize_tooltip_option_popup": T.IMAGE, } export type GeneralSectionType = { - general_button: T.PANEL - general_tab_section_ore_ui: T.STACK_PANEL - "general_tab_section_ore_ui/spacer_0": T.PANEL - "general_tab_section_ore_ui/generic_label": T.LABEL - "general_tab_section_ore_ui/spacer_1": T.PANEL - "general_tab_section_ore_ui/gamepad_helper_label": T.LABEL - general_tab_section: T.STACK_PANEL - "general_tab_section/option_toggle_fail_realms_purchase_fulfillment": T.PANEL - "general_tab_section/network_label_header": T.LABEL - "general_tab_section/paddingCrossPlatform": T.PANEL - "general_tab_section/cross_platform_enabled_toggle": T.PANEL - "general_tab_section/paddingCellularData": T.PANEL - "general_tab_section/mobile_data_option_toggle": T.PANEL - "general_tab_section/paddingWebSockets": T.PANEL - "general_tab_section/websockets_enabled_toggle": T.PANEL - "general_tab_section/websocket_encryption_toggle": T.PANEL - "general_tab_section/paddingAutoUpdate": T.PANEL - "general_tab_section/auto_update_mode_dropdown": T.PANEL - "general_tab_section/paddingAutoUpdateToggle": T.PANEL - "general_tab_section/auto_update_enabled_toggle": T.PANEL - "general_tab_section/paddingGameTipsFeature": T.PANEL - "general_tab_section/tutorial_toggle": T.PANEL - "general_tab_section/tutorial_animation_toggle": T.PANEL - "general_tab_section/tutorial_restart_button": T.BUTTON - "general_tab_section/paddingTrustedSkins": T.PANEL - "general_tab_section/only_allow_trusted_skins_toggle": T.PANEL - "general_tab_section/paddingFilterProfanity": T.PANEL - "general_tab_section/filter_profanity_toggle": T.PANEL - "general_tab_section/filter_profanity_toggle/option_generic_core": T.STACK_PANEL - "general_tab_section/pause_label_header": T.LABEL - "general_tab_section/paddingPauseFeature": T.PANEL - "general_tab_section/pause_toggle": T.PANEL - "general_tab_section/paddingLinkEduSupport": T.PANEL - "general_tab_section/link_button": T.BUTTON - "general_tab_section/paddingDividerSustainability": T.PANEL - "general_tab_section/ecomode_label_header": T.LABEL - "general_tab_section/paddingEcoMode": T.PANEL - "general_tab_section/ecomode_enabled_toggle": T.PANEL - "general_tab_section/paddingDividerTermsCreditsAttribution": T.PANEL - "general_tab_section/dividerTermsCreditsAttribution": T.PANEL - "general_tab_section/dividerTermsCreditsAttribution/section_divider": T.IMAGE - "general_tab_section/paddingDividerTermsCreditsAttributionAfter": T.PANEL - "general_tab_section/paddingTermsNConditions": T.PANEL - "general_tab_section/terms_and_conditions_link_button": T.BUTTON - "general_tab_section/paddingCreditsButton": T.PANEL - "general_tab_section/credits_button": T.BUTTON - "general_tab_section/paddingAttribution": T.PANEL - "general_tab_section/attribution_link_button": T.BUTTON - "general_tab_section/paddingfeedback": T.PANEL - "general_tab_section/feedback_link_button": T.BUTTON - "general_tab_section/paddingLicenses": T.PANEL - "general_tab_section/dividerLicenses": T.PANEL - "general_tab_section/dividerLicenses/section_divider": T.IMAGE - "general_tab_section/paddingLicensesAfter": T.PANEL - "general_tab_section/paddingLicensesHeader": T.PANEL - "general_tab_section/licenses_label_header": T.LABEL - "general_tab_section/paddingLicensedContent": T.PANEL - "general_tab_section/licensed_content_link_button": T.BUTTON - "general_tab_section/paddingFontLicense": T.PANEL - "general_tab_section/font_license_popup_button": T.BUTTON - "general_tab_section/third_party_copyright_info_label_panel": T.STACK_PANEL - "general_tab_section/third_party_copyright_info_label_panel/spacer_0": T.PANEL - "general_tab_section/third_party_copyright_info_label_panel/copyright_label": T.LABEL - "general_tab_section/third_party_copyright_info_label_panel/spacer_1": T.PANEL - "general_tab_section/third_party_copyright_info_label_panel/copyright_icon": T.IMAGE - "general_tab_section/paddingSectionDividerContentLog": T.PANEL - "general_tab_section/build_info_label_panel": T.BUTTON - "general_tab_section/build_info_label_panel/build_info_label": T.LABEL - "general_tab_section/paddingSectionDividerBuildInfo": T.PANEL - "general_tab_section/treatment_ids_label": T.LABEL - account_section_ore_ui: T.STACK_PANEL - "account_section_ore_ui/spacer_0": T.PANEL - "account_section_ore_ui/generic_label": T.LABEL - "account_section_ore_ui/spacer_1": T.PANEL - "account_section_ore_ui/gamepad_helper_label": T.LABEL - account_button: T.PANEL - view_account_errors_button_content: T.LABEL - switch_accounts_button_content: T.STACK_PANEL - "switch_accounts_button_content/padded_icon": T.PANEL - "switch_accounts_button_content/padded_icon/icon": T.IMAGE - "switch_accounts_button_content/padded_label": T.PANEL - "switch_accounts_button_content/padded_label/label": T.LABEL - sign_out_button_content: T.STACK_PANEL - "sign_out_button_content/padded_label": T.PANEL - "sign_out_button_content/padded_label/label": T.LABEL - switch_accounts_panel: T.STACK_PANEL - "switch_accounts_panel/name_label": T.LABEL - "switch_accounts_panel/paddingSwitchAccounts": T.PANEL - "switch_accounts_panel/switch_accounts": T.BUTTON - sign_out_panel: T.STACK_PANEL - "sign_out_panel/sign_out": T.BUTTON - sign_out_fail_popup: T.INPUT_PANEL - sign_out_fail_body_panel: T.PANEL - sign_out_fail_body_content_stack: T.STACK_PANEL - "sign_out_fail_body_content_stack/body_text_centering_panel1": T.PANEL - "sign_out_fail_body_content_stack/body_text_centering_panel1/body_text1": T.LABEL - "sign_out_fail_body_content_stack/body_text_centering_panel2": T.PANEL - "sign_out_fail_body_content_stack/body_text_centering_panel2/body_text2": T.LABEL - "sign_out_fail_body_content_stack/padding1": T.PANEL - "sign_out_fail_body_content_stack/learn_more_button": T.BUTTON - "sign_out_fail_body_content_stack/padding2": T.PANEL - "sign_out_fail_body_content_stack/close_button": T.BUTTON - account_section: T.STACK_PANEL - "account_section/use_edu_remember_me": T.PANEL - "account_section/paddingUseSSO": T.PANEL - "account_section/switch_accounts": T.STACK_PANEL - "account_section/sign_out": T.STACK_PANEL - "account_section/paddingNameControls": T.PANEL - "account_section/name_controls": T.PANEL - "account_section/paddingSignInControls": T.PANEL - "account_section/signin_controls": T.PANEL - "account_section/paddingGamerTagControls": T.PANEL - "account_section/gamertag_controls": T.PANEL - "account_section/paddingClearMSAToken": T.PANEL - "account_section/clear_msa_token": T.PANEL - "account_section/clear_msa_token/clear_msa_token_button": T.BUTTON - "account_section/paddingUnlinkMSAAccount": T.PANEL - "account_section/unlink_msa_account": T.BUTTON - "account_section/unlink_msa_account_nx": T.BUTTON - "account_section/paddingDeleteAccount": T.PANEL - "account_section/delete_account": T.BUTTON - "account_section/paddingUseRemoteConnect": T.PANEL - "account_section/remote_connect_toggle": T.PANEL - "account_section/paddingInfoLabels": T.PANEL - "account_section/account_info_buttom": T.BUTTON - "account_section/account_info_buttom/account_info_label": T.LABEL - name_controls: T.STACK_PANEL - "name_controls/option_text_edit_control": T.EDIT_BOX - signin_controls: T.STACK_PANEL - "signin_controls/sign_in": T.PANEL - "signin_controls/sign_in/action_button": T.BUTTON - signin_subscription: T.STACK_PANEL - "signin_subscription/sign_in": T.PANEL - "signin_subscription/sign_in/please_signin_label": T.LABEL - gamertag_controls: T.STACK_PANEL - "gamertag_controls/gamertag_label": T.STACK_PANEL - "gamertag_controls/gamertag_label/panel_descriptor": T.PANEL - "gamertag_controls/gamertag_label/panel_descriptor/label_descriptor": T.LABEL - "gamertag_controls/gamertag_label/spacer": T.PANEL - "gamertag_controls/gamertag_label/gamerpic": T.CUSTOM - "gamertag_controls/gamertag_label/spacer_2": T.PANEL - "gamertag_controls/gamertag_label/panel_gamertag": T.PANEL - "gamertag_controls/gamertag_label/panel_gamertag/gamertag_label": T.LABEL - "gamertag_controls/paddingXboxAccountButtons": T.PANEL - "gamertag_controls/xboxlive_deep_link_buttons": T.PANEL - "gamertag_controls/xboxlive_deep_link_buttons/change_gamertag_button": T.BUTTON - "gamertag_controls/xboxlive_deep_link_buttons/change_gamertag_button_mobile": T.BUTTON - "gamertag_controls/xboxlive_deep_link_buttons/manage_account_button": T.BUTTON - "gamertag_controls/xboxlive_deep_link_buttons/manage_account_button_mobile": T.BUTTON - "gamertag_controls/xboxlive_deep_link_buttons/paddingXboxSettingsPrivacyControl": T.PANEL - "gamertag_controls/xboxlive_deep_link_buttons/link_button": T.BUTTON - "gamertag_controls/paddingSignOut": T.PANEL - "gamertag_controls/realms_invites": T.PANEL - "gamertag_controls/realms_invites/check_realms_invites_button": T.BUTTON - "gamertag_controls/sign_out": T.PANEL - "gamertag_controls/sign_out/action_button": T.BUTTON - "gamertag_controls/offline_token_authorization": T.PANEL - "gamertag_controls/offline_token_authorization/request_psn_authorization_button": T.BUTTON - auto_update_mode_dropdown_content: T.PANEL - global_texture_pack_button: T.PANEL - global_texture_pack_section: T.STACK_PANEL - storage_management_button: T.PANEL - storage_management_section: T.PANEL - storage_management_header: T.PANEL - storage_management_footer: T.PANEL - edu_cloud_storage_button: T.PANEL - edu_cloud_storage_section: T.STACK_PANEL - "edu_cloud_storage_section/spacing1": T.PANEL - "edu_cloud_storage_section/edu_cloud_backup_toggle": T.PANEL - "edu_cloud_storage_section/spacing2": T.PANEL - "edu_cloud_storage_section/body_wrapper_panel": T.PANEL - "edu_cloud_storage_section/body_wrapper_panel/tts_border": T.BUTTON - "edu_cloud_storage_section/body_wrapper_panel/edu_cloud_storage_body_label": T.LABEL - "edu_cloud_storage_section/spacing3": T.PANEL - "edu_cloud_storage_section/edu_cloud_onedrive_button": T.BUTTON - "edu_cloud_storage_section/spacing4": T.PANEL - "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel": T.STACK_PANEL - "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/learn_more_button": T.BUTTON - "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/padded_icon": T.PANEL - "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/padded_icon/icon": T.IMAGE - edu_cloud_onedrive_button_content: T.STACK_PANEL - "edu_cloud_onedrive_button_content/padded_label": T.PANEL - "edu_cloud_onedrive_button_content/padded_label/label": T.LABEL - "edu_cloud_onedrive_button_content/padded_icon": T.PANEL - "edu_cloud_onedrive_button_content/padded_icon/icon": T.IMAGE - edu_cloud_onedrive_error_popup: T.INPUT_PANEL - edu_cloud_onedrive_error_content: T.STACK_PANEL - "edu_cloud_onedrive_error_content/body_text_centering_panel2": T.PANEL - "edu_cloud_onedrive_error_content/body_text_centering_panel2/body_text2": T.LABEL - "edu_cloud_onedrive_error_content/padding2": T.PANEL - "edu_cloud_onedrive_error_content/learn_more_button": T.BUTTON - "edu_cloud_onedrive_error_content/padding3": T.PANEL - "edu_cloud_onedrive_error_content/ok_button": T.BUTTON - creator_button: T.PANEL - editor_toggle_panel: T.STACK_PANEL - "editor_toggle_panel/editor_confirmation_panel": T.STACK_PANEL - "editor_toggle_panel/editor_confirmation_panel/editor_active_label": T.LABEL - "editor_toggle_panel/editor_confirmation_panel/toggle_spacer": T.PANEL - "editor_toggle_panel/editor_confirmation_panel/editor_confirmation_section_label": T.LABEL - "editor_toggle_panel/editor_toggle_spacer": T.PANEL - "editor_toggle_panel/editor_image_panel": T.STACK_PANEL - "editor_toggle_panel/editor_image_panel/editor_icon": T.IMAGE - creator_toggles_panel: T.STACK_PANEL - "creator_toggles_panel/section_panel_1": T.PANEL - "creator_toggles_panel/section_panel_1/section_divider": T.IMAGE - "creator_toggles_panel/copy_coordinate_section_stack_panel": T.STACK_PANEL - "creator_toggles_panel/copy_coordinate_section_stack_panel/content_log_section_label": T.LABEL - "creator_toggles_panel/copy_coordinate_section_stack_panel/content_log_section_label_spacer": T.PANEL - "creator_toggles_panel/copy_coordinate_section_stack_panel/option_content_file_log": T.PANEL - "creator_toggles_panel/creator_setting_button": T.STACK_PANEL - "creator_toggles_panel/creator_setting_button/go_to_keybinds": T.BUTTON - "creator_toggles_panel/creator_setting_button/creator_settings_section_label_spacer": T.PANEL - debugger_toggles_panel: T.STACK_PANEL - "debugger_toggles_panel/section_panel_1": T.PANEL - "debugger_toggles_panel/section_panel_1/section_divider": T.IMAGE - "debugger_toggles_panel/primary_panel": T.STACK_PANEL - "debugger_toggles_panel/primary_panel/heading": T.LABEL - "debugger_toggles_panel/primary_panel/spacer": T.PANEL - "debugger_toggles_panel/primary_panel/passcode_required_toggle": T.PANEL - "debugger_toggles_panel/primary_panel/passcode_input": T.PANEL - "debugger_toggles_panel/primary_panel/auto_attach_toggle": T.PANEL - "debugger_toggles_panel/primary_panel/all_options_panel": T.STACK_PANEL - "debugger_toggles_panel/primary_panel/all_options_panel/attach_mode_option": T.PANEL - "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel": T.STACK_PANEL - "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/host_input": T.PANEL - "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/spacer": T.PANEL - "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/port_input": T.PANEL - "debugger_toggles_panel/primary_panel/all_options_panel/auto_attach_timeout_slider": T.PANEL - diagnostics_toggles_panel: T.STACK_PANEL - "diagnostics_toggles_panel/section_panel_1": T.PANEL - "diagnostics_toggles_panel/section_panel_1/section_divider": T.IMAGE - "diagnostics_toggles_panel/primary_panel": T.STACK_PANEL - "diagnostics_toggles_panel/primary_panel/heading": T.LABEL - "diagnostics_toggles_panel/primary_panel/spacer": T.PANEL - "diagnostics_toggles_panel/primary_panel/serverbound_client_diagnostics_toggle": T.PANEL - "diagnostics_toggles_panel/primary_panel/diagnostics_capture_buttons": T.STACK_PANEL - "diagnostics_toggles_panel/primary_panel/diagnostics_capture_buttons/clear_diagnostics_capture_files": T.BUTTON - watchdog_toggles_panel: T.STACK_PANEL - "watchdog_toggles_panel/section_panel_1": T.PANEL - "watchdog_toggles_panel/section_panel_1/section_divider": T.IMAGE - "watchdog_toggles_panel/primary_panel": T.STACK_PANEL - "watchdog_toggles_panel/primary_panel/heading": T.LABEL - "watchdog_toggles_panel/primary_panel/spacer": T.PANEL - "watchdog_toggles_panel/primary_panel/hang_threshold_slider": T.PANEL - "watchdog_toggles_panel/primary_panel/spike_warning_toggle": T.PANEL - "watchdog_toggles_panel/primary_panel/spike_threshold_slider": T.PANEL - "watchdog_toggles_panel/primary_panel/slow_warning_toggle": T.PANEL - "watchdog_toggles_panel/primary_panel/slow_threshold_slider": T.PANEL - device_info_toggles_panel: T.STACK_PANEL - "device_info_toggles_panel/section_panel_1": T.PANEL - "device_info_toggles_panel/section_panel_1/section_divider": T.IMAGE - "device_info_toggles_panel/primary_panel": T.STACK_PANEL - "device_info_toggles_panel/primary_panel/heading": T.LABEL - "device_info_toggles_panel/primary_panel/spacer": T.PANEL - "device_info_toggles_panel/primary_panel/device_info_memory_tier_use_override_toggle": T.PANEL - "device_info_toggles_panel/device_info_memory_tier_dropdown": T.PANEL - content_memory_tier_dropdown_content: T.PANEL - content_log_gui_level_content: T.PANEL - content_log_panel: T.STACK_PANEL - "content_log_panel/section_panel_1": T.PANEL - "content_log_panel/section_panel_1/section_divider": T.IMAGE - "content_log_panel/content_log_section_label": T.LABEL - "content_log_panel/content_log_section_label_spacer": T.PANEL - "content_log_panel/option_content_file_log": T.PANEL - "content_log_panel/option_content_gui_log": T.PANEL - "content_log_panel/option_content_gui_log_show_on_errors": T.PANEL - "content_log_panel/option_content_log_gui_level": T.PANEL - "content_log_panel/content_log_buttons": T.STACK_PANEL - "content_log_panel/content_log_buttons/open_content_log_history": T.BUTTON - "content_log_panel/content_log_buttons/content_log_section_label_spacer": T.PANEL - "content_log_panel/content_log_buttons/clear_content_log_files": T.BUTTON - "content_log_panel/content_log_section_label_spacer_2": T.PANEL - "content_log_panel/content_log_location_label_header": T.LABEL - "content_log_panel/content_log_location_label": T.LABEL - creator_section: T.STACK_PANEL - "creator_section/editor_toggle": T.STACK_PANEL - "creator_section/creator_toggles": T.STACK_PANEL - "creator_section/debugger_toggles_panel": T.STACK_PANEL - "creator_section/diagnostics_toggle_panel": T.STACK_PANEL - "creator_section/watchdog_toggles_panel": T.STACK_PANEL - "creator_section/device_info_toggles_panel": T.STACK_PANEL - "creator_section/content_log_panel": T.STACK_PANEL - video_button: T.PANEL - advanced_video_options_toggle: T.TOGGLE - video_section_ore_ui: T.STACK_PANEL - "video_section_ore_ui/spacer_0": T.PANEL - "video_section_ore_ui/generic_label": T.LABEL - "video_section_ore_ui/spacer_1": T.PANEL - "video_section_ore_ui/gamepad_helper_label": T.LABEL - video_menu_slider_step_progress: T.IMAGE - video_menu_slider_progress: T.IMAGE - video_menu_slider_bar_default: T.IMAGE - video_menu_customization_slider_control: T.PANEL - "video_menu_customization_slider_control/slider": T.SLIDER - "video_menu_customization_slider_control/slider/slider_box": T.SLIDER_BOX - "video_menu_customization_slider_control/slider/slider_bar_default": T.IMAGE - "video_menu_customization_slider_control/slider/slider_bar_hover": T.IMAGE - video_menu_customization_option_slider: T.PANEL - video_section: T.STACK_PANEL - "video_section/advanced_graphics_options_panel": T.STACK_PANEL - "video_section/advanced_graphics_options_panel/graphics_mode": T.PANEL - "video_section/advanced_graphics_options_panel/graphics_quality_preset_mode_dropdown_content": T.PANEL - "video_section/advanced_graphics_options_panel/spacer_0": T.PANEL - "video_section/advanced_graphics_options_panel/advanced_graphics_options_button": T.BUTTON - "video_section/advanced_graphics_options_panel/advanced_graphics_options_section": T.STACK_PANEL - "video_section/spacer_1": T.PANEL - "video_section/graphics_api_dropdown": T.PANEL - "video_section/raytracing_render_distance_slider": T.PANEL - "video_section/raytracing_render_distance_slider/option_generic_core": T.STACK_PANEL - "video_section/deferred_render_distance_slider": T.PANEL - "video_section/deferred_render_distance_slider/option_generic_core": T.STACK_PANEL - "video_section/render_distance_slider": T.PANEL - "video_section/render_distance_slider/render_distance_warning": T.PANEL - "video_section/render_distance_slider/option_generic_core": T.STACK_PANEL - "video_section/render_distance_warning_text": T.PANEL - "video_section/render_distance_warning_text/render_distance_popup": T.IMAGE - "video_section/spacer_2": T.PANEL - "video_section/brightness_slider": T.PANEL - "video_section/spacer_3": T.PANEL - "video_section/perspective_dropdown": T.PANEL - "video_section/spacer_4": T.PANEL - "video_section/fullscreen_toggle": T.PANEL - "video_section/spacer_5": T.PANEL - "video_section/option_toggle_hidehand": T.PANEL - "video_section/spacer_6": T.PANEL - "video_section/hide_paperdoll_toggle": T.PANEL - "video_section/spacer_7": T.PANEL - "video_section/option_toggle_hidehud": T.PANEL - "video_section/spacer_8": T.PANEL - "video_section/option_toggle_screen_animations": T.PANEL - "video_section/spacer_9": T.PANEL - "video_section/hud_opacity_slider": T.PANEL - "video_section/spacer_10": T.PANEL - "video_section/splitscreen_hud_opacity_slider": T.PANEL - "video_section/spacer_11": T.PANEL - "video_section/setup_safe_zone": T.PANEL - "video_section/setup_safe_zone/action_button": T.BUTTON - "video_section/spacer_12": T.PANEL - "video_section/fov_slider": T.PANEL - "video_section/spacer_13": T.PANEL - "video_section/split_screen_dropdown": T.PANEL - "video_section/spacer_14": T.PANEL - "video_section/auto_save_icon_toggle": T.PANEL - "video_section/spacer_15": T.PANEL - "video_section/outline_selection_toggle": T.PANEL - "video_section/spacer_16": T.PANEL - "video_section/player_names_toggle": T.PANEL - "video_section/spacer_17": T.PANEL - "video_section/splitscreen_player_names_toggle": T.PANEL - "video_section/spacer_18": T.PANEL - "video_section/view_bobbing_toggle": T.PANEL - "video_section/spacer_19": T.PANEL - "video_section/camera_shake_toggle": T.PANEL - "video_section/spacer_20": T.PANEL - "video_section/fancy_leaves_toggle": T.PANEL - "video_section/spacer_21": T.PANEL - "video_section/fancy_bubbles_toggle": T.PANEL - "video_section/spacer_22": T.PANEL - "video_section/render_clouds_toggle": T.PANEL - "video_section/spacer_23": T.PANEL - "video_section/fancy_clouds_toggle": T.PANEL - "video_section/spacer_24": T.PANEL - "video_section/smooth_lighting_toggle": T.PANEL - "video_section/spacer_25": T.PANEL - "video_section/rendering_profile_option_slider": T.PANEL - "video_section/field_of_view_toggle": T.PANEL - "video_section/spacer_26": T.PANEL - "video_section/damage_bob_option_slider": T.PANEL - "video_section/spacer_26.5": T.PANEL - "video_section/super_fancy_panel": T.PANEL - "video_section/super_fancy_panel/super_fancy_section": T.IMAGE - "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents": T.STACK_PANEL - "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/atmospherics_toggle": T.PANEL - "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/edge_highlight_toggle": T.PANEL - "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/bloom_toggle": T.PANEL - "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/terrain_shadows_toggle": T.PANEL - "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/super_fancy_water_toggle": T.PANEL - "video_section/ui_profile_dropdown": T.PANEL - "video_section/spacer_27": T.PANEL - "video_section/gui_scale_slider": T.PANEL - "video_section/gui_scale_slider/option_generic_core": T.STACK_PANEL - "video_section/spacer_28": T.PANEL - "video_section/gui_accessibility_scaling_toggle": T.PANEL - "video_section/gui_accessibility_scaling_toggle/option_generic_core": T.STACK_PANEL - "video_section/spacer_29": T.PANEL - "video_section/option_toggle_improved_input_response": T.PANEL - "video_section/option_toggle_improved_input_response/option_generic_core": T.STACK_PANEL - "video_section/spacer_30": T.PANEL - "video_section/frame_pacing_toggle": T.PANEL - "video_section/frame_pacing_toggle/option_generic_core": T.STACK_PANEL - "video_section/spacer_31": T.PANEL - "video_section/graphics_mode_switch_toggle": T.PANEL - "video_section/spacer_32": T.PANEL - "video_section/upscaling_toggle": T.PANEL - "video_section/spacer_33": T.PANEL - "video_section/max_framerate_slider": T.PANEL - "video_section/spacer_34": T.PANEL - "video_section/msaa_slider": T.PANEL - "video_section/spacer_35": T.PANEL - "video_section/texel_anti_aliasing_toggle": T.PANEL - "video_section/spacer_36": T.PANEL - "video_section/reset_button": T.BUTTON - max_framerate_slider: T.PANEL - "max_framerate_slider/option_generic_core": T.STACK_PANEL - msaa_slider: T.PANEL - upscaling_toggle: T.PANEL - "upscaling_toggle/option_generic_core": T.STACK_PANEL - render_distance_warning_image: T.IMAGE - render_distance_warning: T.PANEL - "render_distance_warning/render_distance_warning_image": T.IMAGE - ui_profile_dropdown_content: T.PANEL - split_screen_dropdown_content: T.PANEL - third_person_dropdown_content: T.PANEL - toast_notification_duration_dropdown_content: T.PANEL - chat_message_duration_dropdown_content: T.PANEL - file_storage_location_content: T.PANEL - background: T.PANEL - "background/fill": T.IMAGE - "background/border": T.IMAGE - left_button_label: T.LABEL - right_button_label: T.LABEL - realms_button_panel: T.STACK_PANEL - "realms_button_panel/pad_0": T.PANEL - "realms_button_panel/left_button_panel": T.PANEL - "realms_button_panel/left_button_panel/left_button": T.BUTTON - "realms_button_panel/left_button_panel/left_button_loading": T.PANEL - "realms_button_panel/pad_1": T.PANEL - "realms_button_panel/right_button": T.BUTTON - "realms_button_panel/pad_2": T.PANEL - consumable_not_extendable: T.PANEL - "consumable_not_extendable/panel_content": T.STACK_PANEL - "consumable_not_extendable/panel_content/padded_icon_0": T.PANEL - "consumable_not_extendable/panel_content/limited_status_image": T.IMAGE - "consumable_not_extendable/panel_content/padded_icon_1": T.PANEL - "consumable_not_extendable/panel_content/label_panel": T.PANEL - "consumable_not_extendable/panel_content/label_panel/name_label2": T.LABEL - possible_store_mismatch: T.PANEL - "possible_store_mismatch/panel_content": T.STACK_PANEL - "possible_store_mismatch/panel_content/padded_icon_0": T.PANEL - "possible_store_mismatch/panel_content/limited_status_image": T.IMAGE - "possible_store_mismatch/panel_content/padded_icon_1": T.PANEL - "possible_store_mismatch/panel_content/label_panel": T.PANEL - "possible_store_mismatch/panel_content/label_panel/name_label2": T.LABEL - realms_subscription_stack: T.STACK_PANEL - "realms_subscription_stack/image_panel": T.PANEL - "realms_subscription_stack/image_panel/0": T.UNKNOWN - "realms_subscription_stack/pad": T.PANEL - "realms_subscription_stack/info": T.STACK_PANEL - "realms_subscription_stack/info/realm_name": T.LABEL - "realms_subscription_stack/info/realms_desc_label": T.LABEL - "realms_subscription_stack/info/bottom_pad": T.PANEL - realms_subscription_main: T.PANEL - "realms_subscription_main/black_background": T.PANEL - "realms_subscription_main/realms_plus_subscription_stack": T.STACK_PANEL - "realms_subscription_main/realms_plus_subscription_stack/realms_plus_subscription_top_stack": T.STACK_PANEL - "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack": T.STACK_PANEL - "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/top_pad": T.PANEL - "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/realms_plus_bottom_button_panel": T.STACK_PANEL - "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/bottom_pad": T.PANEL - realms_subscription_panel: T.STACK_PANEL - "realms_subscription_panel/top_panel": T.PANEL - "realms_subscription_panel/pad_1": T.PANEL - "realms_subscription_panel/middle_panel": T.PANEL - "realms_subscription_panel/middle_panel/black_background": T.PANEL - "realms_subscription_panel/middle_panel/renews_text": T.LABEL - "realms_subscription_panel/pad_2": T.PANEL - "realms_subscription_panel/lower_panel": T.PANEL - "realms_subscription_panel/lower_panel/black_background": T.PANEL - "realms_subscription_panel/lower_panel/consumable_not_extendable": T.PANEL - "realms_subscription_panel/pad_3": T.PANEL - "realms_subscription_panel/platform_mismatch_container": T.PANEL - "realms_subscription_panel/platform_mismatch_container/black_background": T.PANEL - "realms_subscription_panel/platform_mismatch_container/possible_store_mismatch": T.PANEL - "realms_subscription_panel/pad_4": T.PANEL - realms_plus_subscription_panel: T.STACK_PANEL - additional_subscription_panel: T.STACK_PANEL - view_subscriptions_button: T.PANEL - view_subscriptions_prerelease_section: T.PANEL - "view_subscriptions_prerelease_section/black_background": T.PANEL - "view_subscriptions_prerelease_section/renews_text": T.LABEL - view_subscriptions_section: T.STACK_PANEL - "view_subscriptions_section/sunsetting_label": T.IMAGE - "view_subscriptions_section/failed_loading_subscriptions_label": T.LABEL - "view_subscriptions_section/loading_subscriptions_label": T.LABEL - "view_subscriptions_section/no_active_subscriptions_panel": T.PANEL - "view_subscriptions_section/no_active_subscriptions_panel/header_no_active_csub_or_realms_subscriptions": T.PANEL - "view_subscriptions_section/no_active_subscriptions_panel/header_no_active_csub_or_realms_subscriptions/text": T.LABEL - "view_subscriptions_section/no_active_subscriptions_panel/background_panel": T.IMAGE - "view_subscriptions_section/realms_plus_header_my_subscriptions": T.PANEL - "view_subscriptions_section/realms_plus_header_my_subscriptions/text": T.LABEL - "view_subscriptions_section/realms_plus_subscriptions_grid": T.STACK_PANEL - "view_subscriptions_section/csb_purchased_with_cancel": T.PANEL - "view_subscriptions_section/csb_purchased_with_buy": T.PANEL - "view_subscriptions_section/csb_purchased_padding": T.PANEL - "view_subscriptions_section/platform_mismatch_container": T.PANEL - "view_subscriptions_section/platform_mismatch_container/black_background": T.PANEL - "view_subscriptions_section/platform_mismatch_container/possible_store_mismatch": T.PANEL - "view_subscriptions_section/csb_expiration_container": T.PANEL - "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container": T.STACK_PANEL - "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container/csb_expiration_text_padding": T.PANEL - "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container/csb_expiration": T.LABEL - "view_subscriptions_section/csb_expiration_container/background_panel": T.IMAGE - "view_subscriptions_section/csb_expiration_and_platform_mismatch_padding": T.PANEL - "view_subscriptions_section/additional_realms_subscriptions_grid": T.STACK_PANEL - "view_subscriptions_section/settings_additional_subscription_offers_section": T.STACK_PANEL - "view_subscriptions_section/pad_3": T.PANEL - settings_additional_subscription_offers_section: T.STACK_PANEL - "settings_additional_subscription_offers_section/active_available_divider": T.STACK_PANEL - "settings_additional_subscription_offers_section/realms_plus_header_label": T.LABEL - "settings_additional_subscription_offers_section/pad_0": T.PANEL - "settings_additional_subscription_offers_section/additional_realms_buy_offer": T.PANEL - "settings_additional_subscription_offers_section/pad_8": T.PANEL - "settings_additional_subscription_offers_section/csb_buy_panel": T.PANEL - accessibility_button: T.PANEL - toast_notification_duration_label: T.LABEL - toast_notification_duration_info_label: T.LABEL - toast_notification_duration_info_edu_label: T.LABEL - chat_message_duration_label: T.LABEL - chat_message_duration_info_label: T.LABEL - accessibility_section: T.STACK_PANEL - "accessibility_section/option_toggle0": T.PANEL - "accessibility_section/option_toggle1": T.PANEL - "accessibility_section/option_toggle2": T.PANEL - "accessibility_section/option_slider_0": T.PANEL - "accessibility_section/option_toggle3": T.PANEL - "accessibility_section/hud_text_background_opacity_slider": T.PANEL - "accessibility_section/chat_opacity_slider": T.PANEL - "accessibility_section/actionbar_text_background_opacity_slider": T.PANEL - "accessibility_section/camera_shake_toggle": T.PANEL - "accessibility_section/hide_endflash_toggle": T.PANEL - "accessibility_section/enable_dithering_blocks_toggle": T.PANEL - "accessibility_section/enable_dithering_mobs_toggle": T.PANEL - "accessibility_section/darkness_slider": T.PANEL - "accessibility_section/glint_strength_slider": T.PANEL - "accessibility_section/glint_speed_slider": T.PANEL - "accessibility_section/toast_notification_duration_options_panel": T.STACK_PANEL - "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_label_wrapper": T.PANEL - "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_info_label_wrapper": T.PANEL - "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_info_label_edu_wrapper": T.PANEL - "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_dropdown_spacer_pre": T.PANEL - "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_dropdown": T.PANEL - "accessibility_section/chat_message_duration_options_panel": T.STACK_PANEL - "accessibility_section/chat_message_duration_options_panel/chat_message_duration_label_wrapper": T.PANEL - "accessibility_section/chat_message_duration_options_panel/chat_message_duration_info_label_wrapper": T.PANEL - "accessibility_section/chat_message_duration_options_panel/chat_message_duration_dropdown_spacer_pre": T.PANEL - "accessibility_section/chat_message_duration_options_panel/chat_message_duration_dropdown": T.PANEL - "accessibility_section/gui_scale_slider": T.PANEL - "accessibility_section/gui_scale_slider/option_generic_core": T.STACK_PANEL - "accessibility_section/gui_accessibility_scaling_toggle": T.PANEL - "accessibility_section/gui_accessibility_scaling_toggle/option_generic_core": T.STACK_PANEL - "accessibility_section/reset_button": T.BUTTON - accessibility_section_ore_ui: T.STACK_PANEL - "accessibility_section_ore_ui/spacer_0": T.PANEL - "accessibility_section_ore_ui/generic_label": T.LABEL - "accessibility_section_ore_ui/spacer_1": T.PANEL - "accessibility_section_ore_ui/gamepad_helper_label": T.LABEL - "accessibility_section_ore_ui/accessibility_button": T.BUTTON - sound_button: T.PANEL - sound_section_ore_ui: T.STACK_PANEL - "sound_section_ore_ui/spacer_0": T.PANEL - "sound_section_ore_ui/generic_label": T.LABEL - "sound_section_ore_ui/spacer_1": T.PANEL - "sound_section_ore_ui/gamepad_helper_label": T.LABEL - sound_section: T.STACK_PANEL - "sound_section/paddingMainVolume": T.PANEL - "sound_section/option_slider_0": T.PANEL - "sound_section/paddingDividerAudioSettings": T.PANEL - "sound_section/dividerAudioSettings": T.PANEL - "sound_section/dividerAudioSettings/section_divider": T.IMAGE - "sound_section/paddingMusic": T.PANEL - "sound_section/option_slider_1": T.PANEL - "sound_section/paddingSound": T.PANEL - "sound_section/option_slider_2": T.PANEL - "sound_section/paddingAmbient": T.PANEL - "sound_section/option_slider_3": T.PANEL - "sound_section/paddingBlockVolume": T.PANEL - "sound_section/option_slider_4": T.PANEL - "sound_section/paddingHostile": T.PANEL - "sound_section/option_slider_5": T.PANEL - "sound_section/paddingNeutralVolume": T.PANEL - "sound_section/option_slider_6": T.PANEL - "sound_section/paddingPlayervolume": T.PANEL - "sound_section/option_slider_7": T.PANEL - "sound_section/paddingRecordVolume": T.PANEL - "sound_section/option_slider_8": T.PANEL - "sound_section/paddingWeatherVolume": T.PANEL - "sound_section/option_slider_9": T.PANEL - "sound_section/paddingTTSVolume": T.PANEL - "sound_section/option_slider_10": T.PANEL - "sound_section/paddingResetVolumes": T.PANEL - "sound_section/reset_button": T.BUTTON - "sound_section/paddingEndOfList": T.PANEL - language_button: T.PANEL - language_grid_item: T.PANEL - language_section: T.STACK_PANEL - "language_section/language_list_grid": T.GRID - language_section_ore_ui: T.STACK_PANEL - "language_section_ore_ui/spacer_0": T.PANEL - "language_section_ore_ui/generic_label": T.LABEL - "language_section_ore_ui/spacer_1": T.PANEL - "language_section_ore_ui/gamepad_helper_label": T.LABEL - preview_button: T.PANEL - preview_section: T.STACK_PANEL - "preview_section/spacer_0": T.PANEL - "preview_section/generic_label": T.LABEL - "preview_section/preview_store_launch_app1_button": T.BUTTON - "preview_section/preview_store_launch_app2_button": T.BUTTON - override_date_panel: T.STACK_PANEL - "override_date_panel/year_text_box": T.PANEL - "override_date_panel/year_month_slash": T.LABEL - "override_date_panel/month_text_box": T.PANEL - "override_date_panel/month_day_slash": T.LABEL - "override_date_panel/day_text_box": T.PANEL - "override_date_panel/day_hour_slash": T.LABEL - "override_date_panel/hour_text_box": T.PANEL - "override_date_panel/hour_minute_slash": T.LABEL - "override_date_panel/minute_text_box": T.PANEL - timezonetype_dropdown_content: T.PANEL - date_options_panel: T.STACK_PANEL - "date_options_panel/padding0": T.PANEL - "date_options_panel/display_override_datetime_option_toggle": T.PANEL - "date_options_panel/option_toggle_date_override": T.PANEL - "date_options_panel/override_date_options_panel": T.PANEL - override_date_options_panel: T.PANEL - "override_date_options_panel/override_date_options_background_panel": T.STACK_PANEL - "override_date_options_panel/override_date_options_background_panel/load_override_date_option_toggle": T.PANEL - "override_date_options_panel/override_date_options_background_panel/select_dropdown": T.PANEL - "override_date_options_panel/override_date_options_background_panel/override_date_panel": T.STACK_PANEL - "override_date_options_panel/override_date_options_background_panel/padding1": T.PANEL - "override_date_options_panel/override_date_options_background_panel/override_time_scale_option": T.PANEL - "override_date_options_panel/override_date_options_background_panel/reset_time_button": T.BUTTON - "override_date_options_panel/override_date_options_background_panel/padding2": T.PANEL - debug_display_logged_error_panel: T.PANEL - "debug_display_logged_error_panel/debug_display_logged_error_panel_background": T.STACK_PANEL - "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_marketplace": T.PANEL - "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_ui": T.PANEL - "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_osi": T.PANEL - "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_other": T.PANEL - "debug_display_logged_error_panel/debug_display_logged_error_panel_background/spacer_0": T.PANEL - xbox_sandbox_panel: T.STACK_PANEL - "xbox_sandbox_panel/padding0": T.PANEL - "xbox_sandbox_panel/display_override_xbox_sandbox_toggle_windows": T.PANEL - "xbox_sandbox_panel/display_override_xbox_sandbox_toggle": T.PANEL - "xbox_sandbox_panel/override_xbox_options_panel": T.PANEL - override_xbox_options_panel: T.PANEL - "override_xbox_options_panel/override_xbox_options": T.STACK_PANEL - "override_xbox_options_panel/override_xbox_options/option_dropdown_xbox": T.PANEL - override_version_options_panel: T.STACK_PANEL - "override_version_options_panel/override_version_panel": T.STACK_PANEL - "override_version_options_panel/override_version_button_panel": T.PANEL - "override_version_options_panel/override_version_button_panel/update_override_version_button": T.BUTTON - "override_version_options_panel/override_date_panel_bottom_padding": T.PANEL - override_version_panel: T.STACK_PANEL - "override_version_panel/major_version_text_box": T.PANEL - "override_version_panel/first_dot": T.LABEL - "override_version_panel/minor_version_text_box": T.PANEL - "override_version_panel/second_dot": T.LABEL - "override_version_panel/patch_version_text_box": T.PANEL - dot_label: T.LABEL - debug_override_treatments_panel: T.PANEL - "debug_override_treatments_panel/override_treatments_panel_background": T.STACK_PANEL - "debug_override_treatments_panel/override_treatments_panel_background/option_toggle_treatment_override": T.PANEL - "debug_override_treatments_panel/override_treatments_panel_background/spacer_0": T.PANEL - "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel": T.STACK_PANEL - "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/apply_treatments_button": T.BUTTON - "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel": T.STACK_PANEL - "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/text_edit_treatment": T.PANEL - "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/add_button_panel": T.PANEL - "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/add_button_panel/add_button": T.BUTTON - "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel": T.STACK_PANEL - "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/reset_to_default": T.BUTTON - "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/clear_treatments": T.BUTTON - "debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel": T.IMAGE - "debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel/treatments_label": T.LABEL - "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1": T.PANEL - "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1/progress_loading_spinner_1": T.IMAGE - "debug_override_treatments_panel/override_treatments_panel_background/treatment_grid": T.GRID - "debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel": T.IMAGE - "debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel/treatments_label": T.LABEL - "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2": T.PANEL - "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2/progress_loading_spinner_2": T.IMAGE - "debug_override_treatments_panel/override_treatments_panel_background/unused_treatment_grid": T.GRID - "debug_override_treatments_panel/override_treatments_panel_background/spacer_1": T.PANEL - debug_override_configurations_panel: T.PANEL - "debug_override_configurations_panel/override_configurations_panel_background": T.STACK_PANEL - "debug_override_configurations_panel/override_configurations_panel_background/option_toggle_configuration_override": T.PANEL - "debug_override_configurations_panel/override_configurations_panel_background/spacer_0": T.PANEL - "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel": T.STACK_PANEL - "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel": T.STACK_PANEL - "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/text_edit_configuration": T.PANEL - "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/add_button_panel": T.PANEL - "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/add_button_panel/add_button": T.BUTTON - "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel": T.STACK_PANEL - "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel/reset_to_default": T.BUTTON - "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel/clear_configurations": T.BUTTON - "debug_override_configurations_panel/override_configurations_panel_background/configuration_grid": T.GRID - debug_override_realms_features_panel: T.PANEL - "debug_override_realms_features_panel/override_realms_features_panel_background": T.STACK_PANEL - "debug_override_realms_features_panel/override_realms_features_panel_background/option_toggle_realms_feature_override": T.PANEL - "debug_override_realms_features_panel/override_realms_features_panel_background/spacer_0": T.PANEL - "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel": T.STACK_PANEL - "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel": T.STACK_PANEL - "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/text_edit_realms_features": T.PANEL - "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/add_button_panel": T.PANEL - "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/add_button_panel/add_button": T.BUTTON - "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel": T.STACK_PANEL - "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel/reset_to_default": T.BUTTON - "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel/clear_realms_features": T.BUTTON - "debug_override_realms_features_panel/override_realms_features_panel_background/current_realms_features_label_panel": T.IMAGE - "debug_override_realms_features_panel/override_realms_features_panel_background/current_realms_features_label_panel/realms_features_label": T.LABEL - "debug_override_realms_features_panel/override_realms_features_panel_background/realms_features_grid": T.GRID - "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_label_panel": T.IMAGE - "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_label_panel/realms_features_label": T.LABEL - "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_grid": T.GRID - configuration_grid_item: T.STACK_PANEL - "configuration_grid_item/configuration_id_panel": T.IMAGE - "configuration_grid_item/configuration_id_panel/configuration_id": T.LABEL - "configuration_grid_item/remove_button": T.BUTTON - remove_configuration_icon: T.IMAGE - realms_feature_grid_item: T.STACK_PANEL - "realms_feature_grid_item/realms_feature_id_panel": T.IMAGE - "realms_feature_grid_item/realms_feature_id_panel/realms_feature_id": T.LABEL - "realms_feature_grid_item/disable_button": T.BUTTON - disable_realms_feature_icon: T.IMAGE - unused_realms_feature_grid_item: T.STACK_PANEL - "unused_realms_feature_grid_item/unused_realms_feature_id_panel": T.IMAGE - "unused_realms_feature_grid_item/unused_realms_feature_id_panel/unused_realms_feature_id": T.LABEL - "unused_realms_feature_grid_item/enable_button": T.BUTTON - enable_realms_feature_icon: T.IMAGE - treatment_grid_item: T.STACK_PANEL - "treatment_grid_item/treatment_id_panel": T.IMAGE - "treatment_grid_item/treatment_id_panel/treatment_id": T.LABEL - "treatment_grid_item/remove_button": T.BUTTON - remove_treatment_icon: T.IMAGE - unused_treatment_grid_item: T.STACK_PANEL - "unused_treatment_grid_item/unused_treatment_id_panel": T.IMAGE - "unused_treatment_grid_item/unused_treatment_id_panel/unused_treatment_id": T.LABEL - "unused_treatment_grid_item/add_button": T.BUTTON - add_treatment_icon: T.IMAGE - debug_select_windows_store_panel: T.STACK_PANEL - "debug_select_windows_store_panel/select_store_dropdown": T.PANEL - "debug_select_windows_store_panel/stores_label": T.LABEL - "debug_select_windows_store_panel/sandbox_label": T.LABEL - windows_store_dropdown_content: T.PANEL - mock_http_panel: T.STACK_PANEL - "mock_http_panel/display_mock_http_panel_toggle": T.PANEL - "mock_http_panel/mock_http_panel_content": T.PANEL - mock_http_panel_content: T.PANEL - "mock_http_panel_content/mock_http_panel_background": T.STACK_PANEL - "mock_http_panel_content/mock_http_panel_background/add_mock_rules_button": T.BUTTON - "mock_http_panel_content/mock_http_panel_background/remove_all_mock_rules_button": T.BUTTON - "mock_http_panel_content/mock_http_panel_background/active_rules_label": T.LABEL - "mock_http_panel_content/mock_http_panel_background/rule_list": T.STACK_PANEL - "mock_http_panel_content/mock_http_panel_background/divider": T.STACK_PANEL - mock_http_rule_list: T.STACK_PANEL - mock_http_rule: T.STACK_PANEL - "mock_http_rule/rule_details_label": T.LABEL - "mock_http_rule/rule_spacer": T.PANEL - automation_button: T.PANEL - automation_section: T.STACK_PANEL - "automation_section/automation_tab_label": T.LABEL - "automation_section/padding": T.PANEL - "automation_section/automation_test_asset_sas_text_box": T.PANEL - "automation_section/automation_functional_test_tags_text_box": T.PANEL - "automation_section/automation_server_test_tags_text_box": T.PANEL - "automation_section/automation_unit_test_tags_text_box": T.PANEL - "automation_section/automation_broken_functional_test_tags_text_box": T.PANEL - "automation_section/automation_broken_server_test_tags_text_box": T.PANEL - "automation_section/automation_broken_unit_test_tags_text_box": T.PANEL - "automation_section/automation_repeat_count_text_box": T.PANEL - "automation_section/automation_soak_test_duration_minutes_text_box": T.PANEL - "automation_section/automation_repeat_failures_only_toggle": T.PANEL - "automation_section/automation_run_entire_server_test_group": T.PANEL - "automation_section/automation_testbuild_id_text_box": T.PANEL - "automation_section/automation_functional_test_block_input_toggle": T.PANEL - "automation_section/automation_server_test_assert_on_level_diff_toggle": T.PANEL - discovery_debug_button: T.PANEL - discovery_debug_section: T.STACK_PANEL - "discovery_debug_section/option_discovery_environment": T.PANEL - "discovery_debug_section/debug_override_discovery_panel": T.PANEL - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background": T.STACK_PANEL - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/option_toggle_discovery_override": T.PANEL - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/spacer_0": T.PANEL - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel": T.STACK_PANEL - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_name": T.PANEL - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_type": T.PANEL - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_branch": T.PANEL - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_custom": T.PANEL - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel": T.STACK_PANEL - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel/reset_endpoint_override": T.BUTTON - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel/apply_endpoint_override": T.BUTTON - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_1": T.PANEL - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/active_service_overrides_label": T.LABEL - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_2": T.PANEL - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/reset_all_endpoint_overrides_button": T.BUTTON - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/discovery_overrides_do_not_save_label": T.LABEL - "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_3": T.PANEL - debug_button: T.PANEL - feature_toggle: T.PANEL - debug_section: T.STACK_PANEL - "debug_section/options_for_qa_convenience": T.LABEL - "debug_section/options_for_qa_convenience_spacer": T.PANEL - "debug_section/option_toggle_dev_console_button_0": T.PANEL - "debug_section/option_toggle_assertions_debug_break": T.PANEL - "debug_section/option_toggle_assertions_show_dialog": T.PANEL - "debug_section/option_dev_show_display_logged_error": T.PANEL - "debug_section/display_logged_error_panel": T.PANEL - "debug_section/option_dev_force_trial_mode": T.PANEL - "debug_section/option_dev_force_trial_mode_spacer": T.PANEL - "debug_section/debug_overlay_pages_label": T.LABEL - "debug_section/debug_overlay_button_panel": T.PANEL - "debug_section/debug_overlay_button_panel/debug_overlay_previous_button": T.BUTTON - "debug_section/debug_overlay_button_panel/debug_overlay_next_button": T.BUTTON - "debug_section/pre_feature_toggles_label_spacer": T.PANEL - "debug_section/feature_toggles_label": T.LABEL - "debug_section/feature_toggles_label_spacer": T.PANEL - "debug_section/feature_toggles": T.STACK_PANEL - "debug_section/end_of_feature_toggles_label_spacer": T.PANEL - "debug_section/option_toggle_dev_disable_lan_signaling": T.PANEL - "debug_section/option_dropdown_nethernet_logging_verbosity": T.PANEL - "debug_section/option_dropdown_http_logging_verbosity": T.PANEL - "debug_section/option_dropdown_xsapi_logging_verbosity": T.PANEL - "debug_section/option_toggle_remote_imgui": T.PANEL - "debug_section/option_dropdown_0": T.PANEL - "debug_section/option_toggle_extra_debug_hud_info": T.PANEL - "debug_section/option_toggle_0_1": T.PANEL - "debug_section/option_toggle_0_2": T.PANEL - "debug_section/option_slider_0": T.PANEL - "debug_section/option_toggle_3": T.PANEL - "debug_section/option_toggle_4": T.PANEL - "debug_section/option_toggle_5": T.PANEL - "debug_section/option_toggle_6": T.PANEL - "debug_section/option_dropdown_server_chunk_map": T.PANEL - "debug_section/option_toggle_9": T.PANEL - "debug_section/option_toggle_disable_render_terrain": T.PANEL - "debug_section/option_toggle_disable_render_entities": T.PANEL - "debug_section/option_toggle_disable_render_blockentities": T.PANEL - "debug_section/option_toggle_disable_render_particles": T.PANEL - "debug_section/option_toggle_disable_render_sky": T.PANEL - "debug_section/option_toggle_disable_render_weather": T.PANEL - "debug_section/option_toggle_disable_render_hud": T.PANEL - "debug_section/option_toggle_disable_render_item_in_hand": T.PANEL - "debug_section/option_toggle_disable_render_main_menu_cubemap": T.PANEL - "debug_section/option_toggle_disable_render_main_menu_paperdoll_animation": T.PANEL - "debug_section/leak_memory": T.PANEL - "debug_section/log_area": T.PANEL - "debug_section/log_priority": T.PANEL - "debug_section/option_toggle_build_info": T.PANEL - "debug_section/option_perf_turtle": T.PANEL - "debug_section/option_default_profiling_option": T.PANEL - "debug_section/option_toggle_7": T.PANEL - "debug_section/option_toggle_8": T.PANEL - "debug_section/option_toggle_game_tip": T.PANEL - "debug_section/option_toggle_10": T.PANEL - "debug_section/dev_disable_client_blob_cache_toggle": T.PANEL - "debug_section/dev_force_client_blob_cache_toggle": T.PANEL - "debug_section/devquality_dropdown": T.PANEL - "debug_section/dev_add_http_delay_seconds": T.PANEL - "debug_section/dev_show_latency_graph_toggle": T.PANEL - "debug_section/xbox_sandbox_panel": T.STACK_PANEL - "debug_section/multithreaded_rendering_toggle": T.PANEL - "debug_section/filewatcher_rendering_toggle": T.PANEL - "debug_section/enable_texture_hot_reloader_toggle": T.PANEL - "debug_section/mock_http_panel": T.STACK_PANEL - "debug_section/vsync_dropdown": T.PANEL - "debug_section/sunsetting_use_overrides_toggle": T.PANEL - "debug_section/padding_sunsetting": T.PANEL - "debug_section/sunseting_state_toggle": T.PANEL - "debug_section/sunsetting_tier_dropdown": T.PANEL - "debug_section/padding_sunsetting_2": T.PANEL - "debug_section/padding1": T.PANEL - "debug_section/copy_internal_settings_folder_to_external": T.BUTTON - "debug_section/padding_reset_day_one": T.PANEL - "debug_section/reset_new_player_flow": T.BUTTON - "debug_section/reset_day_one_experience": T.BUTTON - "debug_section/option_text_edit_1": T.PANEL - "debug_section/option_text_edit_2": T.PANEL - "debug_section/option_text_edit_3": T.PANEL - "debug_section/reset_report_timer_option": T.BUTTON - "debug_section/reset_online_safety_option": T.BUTTON - "debug_section/reset_ip_safety_option": T.BUTTON - "debug_section/padding_graphics_options": T.PANEL - "debug_section/option_shadersdk_service_ip": T.PANEL - "debug_section/option_shadersdk_service_port": T.PANEL - "debug_section/option_shadersdk_target_port": T.PANEL - "debug_section/padding_graphics_buttons": T.PANEL - "debug_section/trigger_graphics_device_loss": T.BUTTON - "debug_section/allocate_texture_handles": T.BUTTON - "debug_section/padding_deferred_debug": T.PANEL - "debug_section/deferred_platform_override": T.PANEL - realms_debug_button: T.PANEL - realms_debug_section: T.STACK_PANEL - "realms_debug_section/realms_menu_title": T.LABEL - "realms_debug_section/realms_title_spacer": T.PANEL - "realms_debug_section/feature_toggles_label": T.LABEL - "realms_debug_section/feature_toggles_label_spacer": T.PANEL - "realms_debug_section/feature_toggles": T.STACK_PANEL - "realms_debug_section/end_of_feature_toggles_label_spacer": T.PANEL - "realms_debug_section/realms_dev_toggles_title": T.LABEL - "realms_debug_section/realms_dev_toggle_spacer": T.PANEL - "realms_debug_section/realms_without_purchase_toggle": T.PANEL - "realms_debug_section/realms_debug_options_title": T.LABEL - "realms_debug_section/realms_debug_options_spacer": T.PANEL - "realms_debug_section/option_dropdown_1": T.PANEL - "realms_debug_section/option_dropdown_2": T.PANEL - "realms_debug_section/option_text_edit_0": T.PANEL - "realms_debug_section/realms_features_override_panel": T.STACK_PANEL - "realms_debug_section/realms_features_override_panel/option_toggle_realms_features_override": T.PANEL - "realms_debug_section/realms_features_override_panel/override_realms_features_panel": T.PANEL - "realms_debug_section/realms_debug_options_spacer_2": T.PANEL - realms_feature_toggle: T.PANEL - marketplace_debug_button: T.PANEL - marketplace_debug_section: T.STACK_PANEL - "marketplace_debug_section/marketplace_feature_toggles_label": T.LABEL - "marketplace_debug_section/marketplace_feature_toggles_label_spacer": T.PANEL - "marketplace_debug_section/marketplace_feature_toggles": T.STACK_PANEL - "marketplace_debug_section/playfab_token_refresh_threshold": T.PANEL - "marketplace_debug_section/option_dropdown_skin_rotation_speed": T.PANEL - "marketplace_debug_section/option_toggle_all_skins_rotate": T.PANEL - "marketplace_debug_section/option_toggle_display_marketplace_document_id": T.PANEL - "marketplace_debug_section/option_toggle_display_platform_offer_check": T.PANEL - "marketplace_debug_section/version_options_panel": T.STACK_PANEL - "marketplace_debug_section/version_options_panel/option_version_override": T.PANEL - "marketplace_debug_section/version_options_panel/override_version_options_panel": T.STACK_PANEL - "marketplace_debug_section/select_windows_store_panel": T.STACK_PANEL - "marketplace_debug_section/date_options_panel": T.STACK_PANEL - "marketplace_debug_section/option_clear_store_cache_button": T.BUTTON - "marketplace_debug_section/option_clear_all_cache_button": T.BUTTON - "marketplace_debug_section/option_delete_all_personas_button": T.BUTTON - "marketplace_debug_section/option_delete_legacy_personas_button": T.BUTTON - "marketplace_debug_section/padding2": T.PANEL - "marketplace_debug_section/enable_coin_debug_switch_toggle": T.PANEL - "marketplace_debug_section/add_500_coins": T.BUTTON - "marketplace_debug_section/add_100000_coins": T.BUTTON - "marketplace_debug_section/padding3": T.PANEL - "marketplace_debug_section/reset_entitlements": T.BUTTON - "marketplace_debug_section/reset_wallet": T.BUTTON - marketplace_feature_toggle: T.PANEL - gatherings_debug_button: T.PANEL - gatherings_debug_section: T.STACK_PANEL - "gatherings_debug_section/refresh_gatherings_button": T.BUTTON - "gatherings_debug_section/spacer_1": T.PANEL - "gatherings_debug_section/clear_system_service_pack_cache_button": T.BUTTON - "gatherings_debug_section/spacer_2": T.PANEL - "gatherings_debug_section/active_gathering_label": T.LABEL - "gatherings_debug_section/spacer_3": T.PANEL - "gatherings_debug_section/text_edit_filter_gatherings": T.PANEL - "gatherings_debug_section/spacer_4": T.PANEL - "gatherings_debug_section/available_gatherings_section": T.STACK_PANEL - gathering_grid_item_content: T.STACK_PANEL - "gathering_grid_item_content/gathering_name": T.LABEL - "gathering_grid_item_content/gathering_uuid": T.LABEL - gathering_item_template: T.PANEL - "gathering_item_template/gathering_item_button": T.BUTTON - available_gatherings_grid: T.GRID - available_gatherings_panel: T.STACK_PANEL - "available_gatherings_panel/available_label": T.LABEL - "available_gatherings_panel/gatherings_grid": T.GRID - "available_gatherings_panel/spacing_gap": T.PANEL - available_gatherings_section: T.STACK_PANEL - "available_gatherings_section/available_gatherings_panel": T.STACK_PANEL - ui_debug_button: T.PANEL - ui_feature_toggle: T.PANEL - edu_debug_button: T.PANEL - edu_feature_toggle: T.PANEL - new_create_world_grid_item: T.PANEL - new_edu_create_world_screen_grid_item: T.PANEL - new_play_screen_grid_item: T.PANEL - new_edit_world_screen_grid_item: T.PANEL - new_player_permissions_screen_grid_item: T.PANEL - new_send_invites_screen_grid_item: T.PANEL - new_death_grid_item: T.PANEL - new_bed_grid_item: T.PANEL - ore_ui_gameplay_ui_grid_item: T.PANEL - new_settings_screen_grid_item: T.PANEL - ui_debug_section: T.STACK_PANEL - "ui_debug_section/ui_feature_toggles_label": T.LABEL - "ui_debug_section/ui_feature_toggles_info_label": T.LABEL - "ui_debug_section/ui_feature_toggles_label_spacer": T.PANEL - "ui_debug_section/ui_feature_toggles": T.STACK_PANEL - "ui_debug_section/end_of_ui_feature_toggles_label_divider": T.PANEL - "ui_debug_section/end_of_ui_feature_toggles_label_divider/section_divider": T.IMAGE - "ui_debug_section/end_of_ui_feature_toggles_label_divider_spacer": T.PANEL - "ui_debug_section/end_of_ui_feature_toggles_label_spacer": T.PANEL - "ui_debug_section/screen_override_label": T.LABEL - "ui_debug_section/screen_override_info_label": T.LABEL - "ui_debug_section/screen_override_label_spacer": T.PANEL - "ui_debug_section/new_edu_create_world_screen_radio_label": T.LABEL - "ui_debug_section/new_edu_create_world_screen_radio_label_spacer": T.PANEL - "ui_debug_section/new_edu_create_world_screen_radio_button": T.GRID - "ui_debug_section/new_edu_create_world_screen_radio_button_spacer": T.PANEL - "ui_debug_section/new_play_screen_radio_label": T.LABEL - "ui_debug_section/new_play_screen_radio_label_spacer": T.PANEL - "ui_debug_section/new_play_screen_radio_button": T.GRID - "ui_debug_section/new_play_screen_radio_button_spacer": T.PANEL - "ui_debug_section/new_edit_world_screen_radio_label": T.LABEL - "ui_debug_section/new_edit_world_screen_radio_label_spacer": T.PANEL - "ui_debug_section/new_edit_world_screen_radio_button": T.GRID - "ui_debug_section/new_edit_world_screen_radio_button_spacer": T.PANEL - "ui_debug_section/new_send_invites_radio_label": T.LABEL - "ui_debug_section/new_send_invites_screen_radio_label_spacer": T.PANEL - "ui_debug_section/new_send_invites_screen_radio_button": T.GRID - "ui_debug_section/new_send_invites_screen_radio_button_spacer": T.PANEL - "ui_debug_section/new_death_screen_radio_label": T.LABEL - "ui_debug_section/new_death_screen_radio_label_spacer": T.PANEL - "ui_debug_section/new_death_screen_radio_button": T.GRID - "ui_debug_section/new_death_screen_radio_button_spacer": T.PANEL - "ui_debug_section/new_bed_screen_radio_label": T.LABEL - "ui_debug_section/new_bed_screen_radio_label_spacer": T.PANEL - "ui_debug_section/new_bed_screen_radio_button": T.GRID - "ui_debug_section/new_bed_screen_radio_button_spacer": T.PANEL - "ui_debug_section/ore_ui_gameplay_ui_radio_label": T.LABEL - "ui_debug_section/ore_ui_gameplay_ui_radio_label_spacer": T.PANEL - "ui_debug_section/ore_ui_gameplay_ui_radio_button": T.GRID - "ui_debug_section/ore_ui_gameplay_ui_radio_button_spacer": T.PANEL - "ui_debug_section/end_of_ui_screen_override_divider": T.PANEL - "ui_debug_section/end_of_ui_screen_override_divider/section_divider": T.IMAGE - "ui_debug_section/end_of_ui_sceen_override_divider_spacer": T.PANEL - "ui_debug_section/new_settings_screen_radio_label": T.LABEL - "ui_debug_section/new_settings_screen_radio_label_spacer": T.PANEL - "ui_debug_section/new_settings_screen_radio_button": T.GRID - "ui_debug_section/new_settings_screen_radio_button_spacer": T.PANEL - "ui_debug_section/screen_opt_in_options_label": T.LABEL - "ui_debug_section/screen_opt_in_info_label": T.LABEL - "ui_debug_section/screen_opt_in_options_label_spacer": T.PANEL - "ui_debug_section/end_of_ui_screen_opt_in_divider": T.PANEL - "ui_debug_section/end_of_ui_screen_opt_in_divider/section_divider": T.IMAGE - "ui_debug_section/end_of_ui_sceen_opt_in_divider_spacer": T.PANEL - "ui_debug_section/other_ui_options_label": T.LABEL - "ui_debug_section/other_ui_options_label_spacer": T.PANEL - "ui_debug_section/option_toggle_default_font_override": T.PANEL - "ui_debug_section/option_toggle_dev_show_tcui_replacement": T.PANEL - "ui_debug_section/option_toggle_use_mobile_data_blocked_modal": T.PANEL - "ui_debug_section/ui_feature_toggles_spacer": T.PANEL - "ui_debug_section/option_show_touch_control_selection_screen": T.PANEL - "ui_debug_section/option_reset_on_start": T.PANEL - "ui_debug_section/option_slider_drag_dwell": T.PANEL - "ui_debug_section/option_slider_stack_splitting": T.PANEL - "ui_debug_section/reset_render_distance_warning_modal_label": T.LABEL - "ui_debug_section/reset_render_distance_warning_modal_label_spacer": T.PANEL - "ui_debug_section/reset_render_distance_warning_modal": T.BUTTON - "ui_debug_section/reset_render_distance_warning_modal_spacer": T.PANEL - "ui_debug_section/ore_ui_developer_pages_divider": T.PANEL - "ui_debug_section/ore_ui_developer_pages_divider/section_divider": T.IMAGE - "ui_debug_section/ore_ui_developer_pages_spacer": T.PANEL - "ui_debug_section/open_ore_ui_label": T.LABEL - "ui_debug_section/open_ore_ui_info_label": T.LABEL - "ui_debug_section/open_ore_ui_label_spacer": T.PANEL - "ui_debug_section/open_ore_ui_docs": T.BUTTON - "ui_debug_section/open_ore_ui_tests": T.BUTTON - "ui_debug_section/open_ore_ui_perf": T.BUTTON - "ui_debug_section/open_ore_ui_test_modal": T.BUTTON - "ui_debug_section/open_ore_ui_tests_spacer": T.PANEL - edu_debug_section: T.STACK_PANEL - "edu_debug_section/edu_feature_toggles_label": T.LABEL - "edu_debug_section/edu_feature_toggles_label_spacer": T.PANEL - "edu_debug_section/edu_demo": T.PANEL - "edu_debug_section/edu_ad_debug_panel": T.PANEL - "edu_debug_section/edu_ad_token_refresh_threshold": T.PANEL - "edu_debug_section/edu_ad_max_signin_token_refresh": T.PANEL - "edu_debug_section/edu_ad_max_graph_token_refresh": T.PANEL - "edu_debug_section/edu_environment_divider": T.PANEL - "edu_debug_section/edu_environment_divider/section_divider": T.IMAGE - "edu_debug_section/edu_environment_spacer": T.PANEL - "edu_debug_section/edu_env_dropdown": T.PANEL - flighting_debug_button: T.PANEL - flighting_debug_section: T.STACK_PANEL - "flighting_debug_section/treatment_override_panel": T.STACK_PANEL - "flighting_debug_section/treatment_override_panel/option_toggle_treatment_override": T.PANEL - "flighting_debug_section/treatment_override_panel/override_treatments_panel": T.PANEL - "flighting_debug_section/configuration_override_panel": T.STACK_PANEL - "flighting_debug_section/configuration_override_panel/option_toggle_configuration_override": T.PANEL - "flighting_debug_section/configuration_override_panel/override_configurations_panel": T.PANEL - how_to_play_button: T.PANEL - how_to_play_section: T.STACK_PANEL - "how_to_play_section/spacer_0": T.PANEL - "how_to_play_section/generic_label": T.LABEL - "how_to_play_section/spacer_1": T.PANEL - "how_to_play_section/gamepad_helper_label": T.LABEL - dev_xbox_environment_dropdown_content: T.PANEL - dev_discovery_environment_dropdown_content: T.PANEL - dev_service_override_type_dropdown_content: T.PANEL - dev_realms_environment_dropdown_content: T.PANEL - dev_realms_sku_dropdown_content: T.PANEL - default_profiling_group_dropdown_content: T.PANEL - dev_nethernet_logging_verbosity_dropdown_content: T.PANEL - dev_http_logging_verbosity_dropdown_content: T.PANEL - dev_xsapi_logging_verbosity_dropdown_content: T.PANEL - dev_debug_speed_multiplier_options: T.PANEL - dev_debug_hud_dropdown_content: T.PANEL - dev_chunkMapMode_content: T.PANEL - dev_quality_dropdown_content: T.PANEL - vysnc_dropdown_content: T.PANEL - deferred_platform_override_dropdown_content: T.PANEL - dev_education_environment_dropdown_content: T.PANEL - dev_sunsetting_tier_dropdown_content: T.PANEL - graphics_api_dropdown_content: T.PANEL - graphics_mode_dropdown_content: T.PANEL - upscaling_mode_dropdown_content: T.PANEL - advanced_graphics_options_button_content: T.STACK_PANEL - "advanced_graphics_options_button_content/advanced_graphics_options_label": T.LABEL - "advanced_graphics_options_button_content/fill_pad": T.PANEL - "advanced_graphics_options_button_content/plus_panel": T.PANEL - "advanced_graphics_options_button_content/plus_panel/plus": T.IMAGE - "advanced_graphics_options_button_content/minus_panel": T.PANEL - "advanced_graphics_options_button_content/minus_panel/minus": T.IMAGE - advanced_graphics_options_section: T.STACK_PANEL - "advanced_graphics_options_section/spacer_0": T.PANEL - "advanced_graphics_options_section/gamma_calibration": T.BUTTON - "advanced_graphics_options_section/spacer_1": T.PANEL - "advanced_graphics_options_section/max_framerate_slider": T.PANEL - "advanced_graphics_options_section/spacer_2": T.PANEL - "advanced_graphics_options_section/msaa_slider": T.PANEL - "advanced_graphics_options_section/spacer_3": T.PANEL - "advanced_graphics_options_section/shadow_quality_slider": T.PANEL - "advanced_graphics_options_section/spacer_4": T.PANEL - "advanced_graphics_options_section/point_light_shadow_quality_slider": T.PANEL - "advanced_graphics_options_section/spacer_5": T.PANEL - "advanced_graphics_options_section/point_light_loding_quality_slider": T.PANEL - "advanced_graphics_options_section/spacer_6": T.PANEL - "advanced_graphics_options_section/cloud_quality_slider": T.PANEL - "advanced_graphics_options_section/spacer_7": T.PANEL - "advanced_graphics_options_section/volumetric_fog_quality_slider": T.PANEL - "advanced_graphics_options_section/spacer_8": T.PANEL - "advanced_graphics_options_section/reflections_quality_slider": T.PANEL - "advanced_graphics_options_section/spacer_9": T.PANEL - "advanced_graphics_options_section/bloom_strength": T.PANEL - "advanced_graphics_options_section/spacer_10": T.PANEL - "advanced_graphics_options_section/upscaling_toggle": T.PANEL - "advanced_graphics_options_section/spacer_11": T.PANEL - "advanced_graphics_options_section/upscaling_mode": T.PANEL - "advanced_graphics_options_section/spacer_12": T.PANEL - "advanced_graphics_options_section/upscaling_percentage": T.PANEL - "advanced_graphics_options_section/fancy_clouds_toggle": T.PANEL - "advanced_graphics_options_section/spacer_13": T.PANEL - "advanced_graphics_options_section/smooth_lighting_toggle": T.PANEL + "general_button": T.PANEL, + "general_tab_section_ore_ui": T.STACK_PANEL, + "general_tab_section_ore_ui/spacer_0": T.PANEL, + "general_tab_section_ore_ui/generic_label": T.LABEL, + "general_tab_section_ore_ui/spacer_1": T.PANEL, + "general_tab_section_ore_ui/gamepad_helper_label": T.LABEL, + "general_tab_section": T.STACK_PANEL, + "general_tab_section/option_toggle_fail_realms_purchase_fulfillment": T.PANEL, + "general_tab_section/network_label_header": T.LABEL, + "general_tab_section/paddingCrossPlatform": T.PANEL, + "general_tab_section/cross_platform_enabled_toggle": T.PANEL, + "general_tab_section/paddingCellularData": T.PANEL, + "general_tab_section/mobile_data_option_toggle": T.PANEL, + "general_tab_section/paddingWebSockets": T.PANEL, + "general_tab_section/websockets_enabled_toggle": T.PANEL, + "general_tab_section/websocket_encryption_toggle": T.PANEL, + "general_tab_section/paddingAutoUpdate": T.PANEL, + "general_tab_section/auto_update_mode_dropdown": T.PANEL, + "general_tab_section/paddingAutoUpdateToggle": T.PANEL, + "general_tab_section/auto_update_enabled_toggle": T.PANEL, + "general_tab_section/paddingGameTipsFeature": T.PANEL, + "general_tab_section/tutorial_toggle": T.PANEL, + "general_tab_section/tutorial_animation_toggle": T.PANEL, + "general_tab_section/tutorial_restart_button": T.BUTTON, + "general_tab_section/paddingTrustedSkins": T.PANEL, + "general_tab_section/only_allow_trusted_skins_toggle": T.PANEL, + "general_tab_section/paddingFilterProfanity": T.PANEL, + "general_tab_section/filter_profanity_toggle": T.PANEL, + "general_tab_section/filter_profanity_toggle/option_generic_core": T.STACK_PANEL, + "general_tab_section/pause_label_header": T.LABEL, + "general_tab_section/paddingPauseFeature": T.PANEL, + "general_tab_section/pause_toggle": T.PANEL, + "general_tab_section/paddingLinkEduSupport": T.PANEL, + "general_tab_section/link_button": T.BUTTON, + "general_tab_section/paddingDividerSustainability": T.PANEL, + "general_tab_section/ecomode_label_header": T.LABEL, + "general_tab_section/paddingEcoMode": T.PANEL, + "general_tab_section/ecomode_enabled_toggle": T.PANEL, + "general_tab_section/paddingDividerTermsCreditsAttribution": T.PANEL, + "general_tab_section/dividerTermsCreditsAttribution": T.PANEL, + "general_tab_section/dividerTermsCreditsAttribution/section_divider": T.IMAGE, + "general_tab_section/paddingDividerTermsCreditsAttributionAfter": T.PANEL, + "general_tab_section/paddingTermsNConditions": T.PANEL, + "general_tab_section/terms_and_conditions_link_button": T.BUTTON, + "general_tab_section/paddingCreditsButton": T.PANEL, + "general_tab_section/credits_button": T.BUTTON, + "general_tab_section/paddingAttribution": T.PANEL, + "general_tab_section/attribution_link_button": T.BUTTON, + "general_tab_section/paddingfeedback": T.PANEL, + "general_tab_section/feedback_link_button": T.BUTTON, + "general_tab_section/paddingLicenses": T.PANEL, + "general_tab_section/dividerLicenses": T.PANEL, + "general_tab_section/dividerLicenses/section_divider": T.IMAGE, + "general_tab_section/paddingLicensesAfter": T.PANEL, + "general_tab_section/paddingLicensesHeader": T.PANEL, + "general_tab_section/licenses_label_header": T.LABEL, + "general_tab_section/paddingLicensedContent": T.PANEL, + "general_tab_section/licensed_content_link_button": T.BUTTON, + "general_tab_section/paddingFontLicense": T.PANEL, + "general_tab_section/font_license_popup_button": T.BUTTON, + "general_tab_section/third_party_copyright_info_label_panel": T.STACK_PANEL, + "general_tab_section/third_party_copyright_info_label_panel/spacer_0": T.PANEL, + "general_tab_section/third_party_copyright_info_label_panel/copyright_label": T.LABEL, + "general_tab_section/third_party_copyright_info_label_panel/spacer_1": T.PANEL, + "general_tab_section/third_party_copyright_info_label_panel/copyright_icon": T.IMAGE, + "general_tab_section/paddingSectionDividerContentLog": T.PANEL, + "general_tab_section/build_info_label_panel": T.BUTTON, + "general_tab_section/build_info_label_panel/build_info_label": T.LABEL, + "general_tab_section/paddingSectionDividerBuildInfo": T.PANEL, + "general_tab_section/treatment_ids_label": T.LABEL, + "account_section_ore_ui": T.STACK_PANEL, + "account_section_ore_ui/spacer_0": T.PANEL, + "account_section_ore_ui/generic_label": T.LABEL, + "account_section_ore_ui/spacer_1": T.PANEL, + "account_section_ore_ui/gamepad_helper_label": T.LABEL, + "account_button": T.PANEL, + "view_account_errors_button_content": T.LABEL, + "switch_accounts_button_content": T.STACK_PANEL, + "switch_accounts_button_content/padded_icon": T.PANEL, + "switch_accounts_button_content/padded_icon/icon": T.IMAGE, + "switch_accounts_button_content/padded_label": T.PANEL, + "switch_accounts_button_content/padded_label/label": T.LABEL, + "sign_out_button_content": T.STACK_PANEL, + "sign_out_button_content/padded_label": T.PANEL, + "sign_out_button_content/padded_label/label": T.LABEL, + "switch_accounts_panel": T.STACK_PANEL, + "switch_accounts_panel/name_label": T.LABEL, + "switch_accounts_panel/paddingSwitchAccounts": T.PANEL, + "switch_accounts_panel/switch_accounts": T.BUTTON, + "sign_out_panel": T.STACK_PANEL, + "sign_out_panel/sign_out": T.BUTTON, + "sign_out_fail_popup": T.INPUT_PANEL, + "sign_out_fail_body_panel": T.PANEL, + "sign_out_fail_body_content_stack": T.STACK_PANEL, + "sign_out_fail_body_content_stack/body_text_centering_panel1": T.PANEL, + "sign_out_fail_body_content_stack/body_text_centering_panel1/body_text1": T.LABEL, + "sign_out_fail_body_content_stack/body_text_centering_panel2": T.PANEL, + "sign_out_fail_body_content_stack/body_text_centering_panel2/body_text2": T.LABEL, + "sign_out_fail_body_content_stack/padding1": T.PANEL, + "sign_out_fail_body_content_stack/learn_more_button": T.BUTTON, + "sign_out_fail_body_content_stack/padding2": T.PANEL, + "sign_out_fail_body_content_stack/close_button": T.BUTTON, + "account_section": T.STACK_PANEL, + "account_section/use_edu_remember_me": T.PANEL, + "account_section/paddingUseSSO": T.PANEL, + "account_section/switch_accounts": T.STACK_PANEL, + "account_section/sign_out": T.STACK_PANEL, + "account_section/paddingNameControls": T.PANEL, + "account_section/name_controls": T.PANEL, + "account_section/paddingSignInControls": T.PANEL, + "account_section/signin_controls": T.PANEL, + "account_section/paddingGamerTagControls": T.PANEL, + "account_section/gamertag_controls": T.PANEL, + "account_section/paddingClearMSAToken": T.PANEL, + "account_section/clear_msa_token": T.PANEL, + "account_section/clear_msa_token/clear_msa_token_button": T.BUTTON, + "account_section/paddingUnlinkMSAAccount": T.PANEL, + "account_section/unlink_msa_account": T.BUTTON, + "account_section/unlink_msa_account_nx": T.BUTTON, + "account_section/paddingDeleteAccount": T.PANEL, + "account_section/delete_account": T.BUTTON, + "account_section/paddingUseRemoteConnect": T.PANEL, + "account_section/remote_connect_toggle": T.PANEL, + "account_section/paddingInfoLabels": T.PANEL, + "account_section/account_info_buttom": T.BUTTON, + "account_section/account_info_buttom/account_info_label": T.LABEL, + "name_controls": T.STACK_PANEL, + "name_controls/option_text_edit_control": T.EDIT_BOX, + "signin_controls": T.STACK_PANEL, + "signin_controls/sign_in": T.PANEL, + "signin_controls/sign_in/action_button": T.BUTTON, + "signin_subscription": T.STACK_PANEL, + "signin_subscription/sign_in": T.PANEL, + "signin_subscription/sign_in/please_signin_label": T.LABEL, + "gamertag_controls": T.STACK_PANEL, + "gamertag_controls/gamertag_label": T.STACK_PANEL, + "gamertag_controls/gamertag_label/panel_descriptor": T.PANEL, + "gamertag_controls/gamertag_label/panel_descriptor/label_descriptor": T.LABEL, + "gamertag_controls/gamertag_label/spacer": T.PANEL, + "gamertag_controls/gamertag_label/gamerpic": T.CUSTOM, + "gamertag_controls/gamertag_label/spacer_2": T.PANEL, + "gamertag_controls/gamertag_label/panel_gamertag": T.PANEL, + "gamertag_controls/gamertag_label/panel_gamertag/gamertag_label": T.LABEL, + "gamertag_controls/paddingXboxAccountButtons": T.PANEL, + "gamertag_controls/xboxlive_deep_link_buttons": T.PANEL, + "gamertag_controls/xboxlive_deep_link_buttons/change_gamertag_button": T.BUTTON, + "gamertag_controls/xboxlive_deep_link_buttons/change_gamertag_button_mobile": T.BUTTON, + "gamertag_controls/xboxlive_deep_link_buttons/manage_account_button": T.BUTTON, + "gamertag_controls/xboxlive_deep_link_buttons/manage_account_button_mobile": T.BUTTON, + "gamertag_controls/xboxlive_deep_link_buttons/paddingXboxSettingsPrivacyControl": T.PANEL, + "gamertag_controls/xboxlive_deep_link_buttons/link_button": T.BUTTON, + "gamertag_controls/paddingSignOut": T.PANEL, + "gamertag_controls/realms_invites": T.PANEL, + "gamertag_controls/realms_invites/check_realms_invites_button": T.BUTTON, + "gamertag_controls/sign_out": T.PANEL, + "gamertag_controls/sign_out/action_button": T.BUTTON, + "gamertag_controls/offline_token_authorization": T.PANEL, + "gamertag_controls/offline_token_authorization/request_psn_authorization_button": T.BUTTON, + "auto_update_mode_dropdown_content": T.PANEL, + "global_texture_pack_button": T.PANEL, + "global_texture_pack_section": T.STACK_PANEL, + "storage_management_button": T.PANEL, + "storage_management_section": T.PANEL, + "storage_management_header": T.PANEL, + "storage_management_footer": T.PANEL, + "edu_cloud_storage_button": T.PANEL, + "edu_cloud_storage_section": T.STACK_PANEL, + "edu_cloud_storage_section/spacing1": T.PANEL, + "edu_cloud_storage_section/edu_cloud_backup_toggle": T.PANEL, + "edu_cloud_storage_section/spacing2": T.PANEL, + "edu_cloud_storage_section/body_wrapper_panel": T.PANEL, + "edu_cloud_storage_section/body_wrapper_panel/tts_border": T.BUTTON, + "edu_cloud_storage_section/body_wrapper_panel/edu_cloud_storage_body_label": T.LABEL, + "edu_cloud_storage_section/spacing3": T.PANEL, + "edu_cloud_storage_section/edu_cloud_onedrive_button": T.BUTTON, + "edu_cloud_storage_section/spacing4": T.PANEL, + "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel": T.STACK_PANEL, + "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/learn_more_button": T.BUTTON, + "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/padded_icon": T.PANEL, + "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/padded_icon/icon": T.IMAGE, + "edu_cloud_onedrive_button_content": T.STACK_PANEL, + "edu_cloud_onedrive_button_content/padded_label": T.PANEL, + "edu_cloud_onedrive_button_content/padded_label/label": T.LABEL, + "edu_cloud_onedrive_button_content/padded_icon": T.PANEL, + "edu_cloud_onedrive_button_content/padded_icon/icon": T.IMAGE, + "edu_cloud_onedrive_error_popup": T.INPUT_PANEL, + "edu_cloud_onedrive_error_content": T.STACK_PANEL, + "edu_cloud_onedrive_error_content/body_text_centering_panel2": T.PANEL, + "edu_cloud_onedrive_error_content/body_text_centering_panel2/body_text2": T.LABEL, + "edu_cloud_onedrive_error_content/padding2": T.PANEL, + "edu_cloud_onedrive_error_content/learn_more_button": T.BUTTON, + "edu_cloud_onedrive_error_content/padding3": T.PANEL, + "edu_cloud_onedrive_error_content/ok_button": T.BUTTON, + "creator_button": T.PANEL, + "editor_toggle_panel": T.STACK_PANEL, + "editor_toggle_panel/editor_confirmation_panel": T.STACK_PANEL, + "editor_toggle_panel/editor_confirmation_panel/editor_active_label": T.LABEL, + "editor_toggle_panel/editor_confirmation_panel/toggle_spacer": T.PANEL, + "editor_toggle_panel/editor_confirmation_panel/editor_confirmation_section_label": T.LABEL, + "editor_toggle_panel/editor_toggle_spacer": T.PANEL, + "editor_toggle_panel/editor_image_panel": T.STACK_PANEL, + "editor_toggle_panel/editor_image_panel/editor_icon": T.IMAGE, + "creator_toggles_panel": T.STACK_PANEL, + "creator_toggles_panel/section_panel_1": T.PANEL, + "creator_toggles_panel/section_panel_1/section_divider": T.IMAGE, + "creator_toggles_panel/copy_coordinate_section_stack_panel": T.STACK_PANEL, + "creator_toggles_panel/copy_coordinate_section_stack_panel/content_log_section_label": T.LABEL, + "creator_toggles_panel/copy_coordinate_section_stack_panel/content_log_section_label_spacer": T.PANEL, + "creator_toggles_panel/copy_coordinate_section_stack_panel/option_content_file_log": T.PANEL, + "creator_toggles_panel/creator_setting_button": T.STACK_PANEL, + "creator_toggles_panel/creator_setting_button/go_to_keybinds": T.BUTTON, + "creator_toggles_panel/creator_setting_button/creator_settings_section_label_spacer": T.PANEL, + "debugger_toggles_panel": T.STACK_PANEL, + "debugger_toggles_panel/section_panel_1": T.PANEL, + "debugger_toggles_panel/section_panel_1/section_divider": T.IMAGE, + "debugger_toggles_panel/primary_panel": T.STACK_PANEL, + "debugger_toggles_panel/primary_panel/heading": T.LABEL, + "debugger_toggles_panel/primary_panel/spacer": T.PANEL, + "debugger_toggles_panel/primary_panel/passcode_required_toggle": T.PANEL, + "debugger_toggles_panel/primary_panel/passcode_input": T.PANEL, + "debugger_toggles_panel/primary_panel/auto_attach_toggle": T.PANEL, + "debugger_toggles_panel/primary_panel/all_options_panel": T.STACK_PANEL, + "debugger_toggles_panel/primary_panel/all_options_panel/attach_mode_option": T.PANEL, + "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel": T.STACK_PANEL, + "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/host_input": T.PANEL, + "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/spacer": T.PANEL, + "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/port_input": T.PANEL, + "debugger_toggles_panel/primary_panel/all_options_panel/auto_attach_timeout_slider": T.PANEL, + "diagnostics_toggles_panel": T.STACK_PANEL, + "diagnostics_toggles_panel/section_panel_1": T.PANEL, + "diagnostics_toggles_panel/section_panel_1/section_divider": T.IMAGE, + "diagnostics_toggles_panel/primary_panel": T.STACK_PANEL, + "diagnostics_toggles_panel/primary_panel/heading": T.LABEL, + "diagnostics_toggles_panel/primary_panel/spacer": T.PANEL, + "diagnostics_toggles_panel/primary_panel/serverbound_client_diagnostics_toggle": T.PANEL, + "diagnostics_toggles_panel/primary_panel/diagnostics_capture_buttons": T.STACK_PANEL, + "diagnostics_toggles_panel/primary_panel/diagnostics_capture_buttons/clear_diagnostics_capture_files": T.BUTTON, + "watchdog_toggles_panel": T.STACK_PANEL, + "watchdog_toggles_panel/section_panel_1": T.PANEL, + "watchdog_toggles_panel/section_panel_1/section_divider": T.IMAGE, + "watchdog_toggles_panel/primary_panel": T.STACK_PANEL, + "watchdog_toggles_panel/primary_panel/heading": T.LABEL, + "watchdog_toggles_panel/primary_panel/spacer": T.PANEL, + "watchdog_toggles_panel/primary_panel/hang_threshold_slider": T.PANEL, + "watchdog_toggles_panel/primary_panel/spike_warning_toggle": T.PANEL, + "watchdog_toggles_panel/primary_panel/spike_threshold_slider": T.PANEL, + "watchdog_toggles_panel/primary_panel/slow_warning_toggle": T.PANEL, + "watchdog_toggles_panel/primary_panel/slow_threshold_slider": T.PANEL, + "device_info_toggles_panel": T.STACK_PANEL, + "device_info_toggles_panel/section_panel_1": T.PANEL, + "device_info_toggles_panel/section_panel_1/section_divider": T.IMAGE, + "device_info_toggles_panel/primary_panel": T.STACK_PANEL, + "device_info_toggles_panel/primary_panel/heading": T.LABEL, + "device_info_toggles_panel/primary_panel/spacer": T.PANEL, + "device_info_toggles_panel/primary_panel/device_info_memory_tier_use_override_toggle": T.PANEL, + "device_info_toggles_panel/device_info_memory_tier_dropdown": T.PANEL, + "content_memory_tier_dropdown_content": T.PANEL, + "content_log_gui_level_content": T.PANEL, + "content_log_panel": T.STACK_PANEL, + "content_log_panel/section_panel_1": T.PANEL, + "content_log_panel/section_panel_1/section_divider": T.IMAGE, + "content_log_panel/content_log_section_label": T.LABEL, + "content_log_panel/content_log_section_label_spacer": T.PANEL, + "content_log_panel/option_content_file_log": T.PANEL, + "content_log_panel/option_content_gui_log": T.PANEL, + "content_log_panel/option_content_gui_log_show_on_errors": T.PANEL, + "content_log_panel/option_content_log_gui_level": T.PANEL, + "content_log_panel/content_log_buttons": T.STACK_PANEL, + "content_log_panel/content_log_buttons/open_content_log_history": T.BUTTON, + "content_log_panel/content_log_buttons/content_log_section_label_spacer": T.PANEL, + "content_log_panel/content_log_buttons/clear_content_log_files": T.BUTTON, + "content_log_panel/content_log_section_label_spacer_2": T.PANEL, + "content_log_panel/content_log_location_label_header": T.LABEL, + "content_log_panel/content_log_location_label": T.LABEL, + "creator_section": T.STACK_PANEL, + "creator_section/editor_toggle": T.STACK_PANEL, + "creator_section/creator_toggles": T.STACK_PANEL, + "creator_section/debugger_toggles_panel": T.STACK_PANEL, + "creator_section/diagnostics_toggle_panel": T.STACK_PANEL, + "creator_section/watchdog_toggles_panel": T.STACK_PANEL, + "creator_section/device_info_toggles_panel": T.STACK_PANEL, + "creator_section/content_log_panel": T.STACK_PANEL, + "video_button": T.PANEL, + "advanced_video_options_toggle": T.TOGGLE, + "video_section_ore_ui": T.STACK_PANEL, + "video_section_ore_ui/spacer_0": T.PANEL, + "video_section_ore_ui/generic_label": T.LABEL, + "video_section_ore_ui/spacer_1": T.PANEL, + "video_section_ore_ui/gamepad_helper_label": T.LABEL, + "video_menu_slider_step_progress": T.IMAGE, + "video_menu_slider_progress": T.IMAGE, + "video_menu_slider_bar_default": T.IMAGE, + "video_menu_customization_slider_control": T.PANEL, + "video_menu_customization_slider_control/slider": T.SLIDER, + "video_menu_customization_slider_control/slider/slider_box": T.SLIDER_BOX, + "video_menu_customization_slider_control/slider/slider_bar_default": T.IMAGE, + "video_menu_customization_slider_control/slider/slider_bar_hover": T.IMAGE, + "video_menu_customization_option_slider": T.PANEL, + "video_section": T.STACK_PANEL, + "video_section/advanced_graphics_options_panel": T.STACK_PANEL, + "video_section/advanced_graphics_options_panel/graphics_mode": T.PANEL, + "video_section/advanced_graphics_options_panel/graphics_quality_preset_mode_dropdown_content": T.PANEL, + "video_section/advanced_graphics_options_panel/spacer_0": T.PANEL, + "video_section/advanced_graphics_options_panel/advanced_graphics_options_button": T.BUTTON, + "video_section/advanced_graphics_options_panel/advanced_graphics_options_section": T.STACK_PANEL, + "video_section/spacer_1": T.PANEL, + "video_section/graphics_api_dropdown": T.PANEL, + "video_section/raytracing_render_distance_slider": T.PANEL, + "video_section/raytracing_render_distance_slider/option_generic_core": T.STACK_PANEL, + "video_section/deferred_render_distance_slider": T.PANEL, + "video_section/deferred_render_distance_slider/option_generic_core": T.STACK_PANEL, + "video_section/render_distance_slider": T.PANEL, + "video_section/render_distance_slider/render_distance_warning": T.PANEL, + "video_section/render_distance_slider/option_generic_core": T.STACK_PANEL, + "video_section/render_distance_warning_text": T.PANEL, + "video_section/render_distance_warning_text/render_distance_popup": T.IMAGE, + "video_section/spacer_2": T.PANEL, + "video_section/brightness_slider": T.PANEL, + "video_section/spacer_3": T.PANEL, + "video_section/perspective_dropdown": T.PANEL, + "video_section/spacer_4": T.PANEL, + "video_section/fullscreen_toggle": T.PANEL, + "video_section/spacer_5": T.PANEL, + "video_section/option_toggle_hidehand": T.PANEL, + "video_section/spacer_6": T.PANEL, + "video_section/hide_paperdoll_toggle": T.PANEL, + "video_section/spacer_7": T.PANEL, + "video_section/option_toggle_hidehud": T.PANEL, + "video_section/spacer_8": T.PANEL, + "video_section/option_toggle_screen_animations": T.PANEL, + "video_section/spacer_9": T.PANEL, + "video_section/hud_opacity_slider": T.PANEL, + "video_section/spacer_10": T.PANEL, + "video_section/splitscreen_hud_opacity_slider": T.PANEL, + "video_section/spacer_11": T.PANEL, + "video_section/setup_safe_zone": T.PANEL, + "video_section/setup_safe_zone/action_button": T.BUTTON, + "video_section/spacer_12": T.PANEL, + "video_section/fov_slider": T.PANEL, + "video_section/spacer_13": T.PANEL, + "video_section/split_screen_dropdown": T.PANEL, + "video_section/spacer_14": T.PANEL, + "video_section/auto_save_icon_toggle": T.PANEL, + "video_section/spacer_15": T.PANEL, + "video_section/outline_selection_toggle": T.PANEL, + "video_section/spacer_16": T.PANEL, + "video_section/player_names_toggle": T.PANEL, + "video_section/spacer_17": T.PANEL, + "video_section/splitscreen_player_names_toggle": T.PANEL, + "video_section/spacer_18": T.PANEL, + "video_section/view_bobbing_toggle": T.PANEL, + "video_section/spacer_19": T.PANEL, + "video_section/camera_shake_toggle": T.PANEL, + "video_section/spacer_20": T.PANEL, + "video_section/fancy_leaves_toggle": T.PANEL, + "video_section/spacer_21": T.PANEL, + "video_section/fancy_bubbles_toggle": T.PANEL, + "video_section/spacer_22": T.PANEL, + "video_section/render_clouds_toggle": T.PANEL, + "video_section/spacer_23": T.PANEL, + "video_section/fancy_clouds_toggle": T.PANEL, + "video_section/spacer_24": T.PANEL, + "video_section/smooth_lighting_toggle": T.PANEL, + "video_section/spacer_25": T.PANEL, + "video_section/rendering_profile_option_slider": T.PANEL, + "video_section/field_of_view_toggle": T.PANEL, + "video_section/spacer_26": T.PANEL, + "video_section/damage_bob_option_slider": T.PANEL, + "video_section/spacer_26.5": T.PANEL, + "video_section/super_fancy_panel": T.PANEL, + "video_section/super_fancy_panel/super_fancy_section": T.IMAGE, + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents": T.STACK_PANEL, + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/atmospherics_toggle": T.PANEL, + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/edge_highlight_toggle": T.PANEL, + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/bloom_toggle": T.PANEL, + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/terrain_shadows_toggle": T.PANEL, + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/super_fancy_water_toggle": T.PANEL, + "video_section/ui_profile_dropdown": T.PANEL, + "video_section/spacer_27": T.PANEL, + "video_section/gui_scale_slider": T.PANEL, + "video_section/gui_scale_slider/option_generic_core": T.STACK_PANEL, + "video_section/spacer_28": T.PANEL, + "video_section/gui_accessibility_scaling_toggle": T.PANEL, + "video_section/gui_accessibility_scaling_toggle/option_generic_core": T.STACK_PANEL, + "video_section/spacer_29": T.PANEL, + "video_section/option_toggle_improved_input_response": T.PANEL, + "video_section/option_toggle_improved_input_response/option_generic_core": T.STACK_PANEL, + "video_section/spacer_30": T.PANEL, + "video_section/frame_pacing_toggle": T.PANEL, + "video_section/frame_pacing_toggle/option_generic_core": T.STACK_PANEL, + "video_section/spacer_31": T.PANEL, + "video_section/graphics_mode_switch_toggle": T.PANEL, + "video_section/spacer_32": T.PANEL, + "video_section/upscaling_toggle": T.PANEL, + "video_section/spacer_33": T.PANEL, + "video_section/max_framerate_slider": T.PANEL, + "video_section/spacer_34": T.PANEL, + "video_section/msaa_slider": T.PANEL, + "video_section/spacer_35": T.PANEL, + "video_section/texel_anti_aliasing_toggle": T.PANEL, + "video_section/spacer_36": T.PANEL, + "video_section/reset_button": T.BUTTON, + "max_framerate_slider": T.PANEL, + "max_framerate_slider/option_generic_core": T.STACK_PANEL, + "msaa_slider": T.PANEL, + "upscaling_toggle": T.PANEL, + "upscaling_toggle/option_generic_core": T.STACK_PANEL, + "render_distance_warning_image": T.IMAGE, + "render_distance_warning": T.PANEL, + "render_distance_warning/render_distance_warning_image": T.IMAGE, + "ui_profile_dropdown_content": T.PANEL, + "split_screen_dropdown_content": T.PANEL, + "third_person_dropdown_content": T.PANEL, + "toast_notification_duration_dropdown_content": T.PANEL, + "chat_message_duration_dropdown_content": T.PANEL, + "file_storage_location_content": T.PANEL, + "background": T.PANEL, + "background/fill": T.IMAGE, + "background/border": T.IMAGE, + "left_button_label": T.LABEL, + "right_button_label": T.LABEL, + "realms_button_panel": T.STACK_PANEL, + "realms_button_panel/pad_0": T.PANEL, + "realms_button_panel/left_button_panel": T.PANEL, + "realms_button_panel/left_button_panel/left_button": T.BUTTON, + "realms_button_panel/left_button_panel/left_button_loading": T.PANEL, + "realms_button_panel/pad_1": T.PANEL, + "realms_button_panel/right_button": T.BUTTON, + "realms_button_panel/pad_2": T.PANEL, + "consumable_not_extendable": T.PANEL, + "consumable_not_extendable/panel_content": T.STACK_PANEL, + "consumable_not_extendable/panel_content/padded_icon_0": T.PANEL, + "consumable_not_extendable/panel_content/limited_status_image": T.IMAGE, + "consumable_not_extendable/panel_content/padded_icon_1": T.PANEL, + "consumable_not_extendable/panel_content/label_panel": T.PANEL, + "consumable_not_extendable/panel_content/label_panel/name_label2": T.LABEL, + "possible_store_mismatch": T.PANEL, + "possible_store_mismatch/panel_content": T.STACK_PANEL, + "possible_store_mismatch/panel_content/padded_icon_0": T.PANEL, + "possible_store_mismatch/panel_content/limited_status_image": T.IMAGE, + "possible_store_mismatch/panel_content/padded_icon_1": T.PANEL, + "possible_store_mismatch/panel_content/label_panel": T.PANEL, + "possible_store_mismatch/panel_content/label_panel/name_label2": T.LABEL, + "realms_subscription_stack": T.STACK_PANEL, + "realms_subscription_stack/image_panel": T.PANEL, + "realms_subscription_stack/image_panel/0": T.UNKNOWN, + "realms_subscription_stack/pad": T.PANEL, + "realms_subscription_stack/info": T.STACK_PANEL, + "realms_subscription_stack/info/realm_name": T.LABEL, + "realms_subscription_stack/info/realms_desc_label": T.LABEL, + "realms_subscription_stack/info/bottom_pad": T.PANEL, + "realms_subscription_main": T.PANEL, + "realms_subscription_main/black_background": T.PANEL, + "realms_subscription_main/realms_plus_subscription_stack": T.STACK_PANEL, + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_subscription_top_stack": T.STACK_PANEL, + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack": T.STACK_PANEL, + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/top_pad": T.PANEL, + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/realms_plus_bottom_button_panel": T.STACK_PANEL, + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/bottom_pad": T.PANEL, + "realms_subscription_panel": T.STACK_PANEL, + "realms_subscription_panel/top_panel": T.PANEL, + "realms_subscription_panel/pad_1": T.PANEL, + "realms_subscription_panel/middle_panel": T.PANEL, + "realms_subscription_panel/middle_panel/black_background": T.PANEL, + "realms_subscription_panel/middle_panel/renews_text": T.LABEL, + "realms_subscription_panel/pad_2": T.PANEL, + "realms_subscription_panel/lower_panel": T.PANEL, + "realms_subscription_panel/lower_panel/black_background": T.PANEL, + "realms_subscription_panel/lower_panel/consumable_not_extendable": T.PANEL, + "realms_subscription_panel/pad_3": T.PANEL, + "realms_subscription_panel/platform_mismatch_container": T.PANEL, + "realms_subscription_panel/platform_mismatch_container/black_background": T.PANEL, + "realms_subscription_panel/platform_mismatch_container/possible_store_mismatch": T.PANEL, + "realms_subscription_panel/pad_4": T.PANEL, + "realms_plus_subscription_panel": T.STACK_PANEL, + "additional_subscription_panel": T.STACK_PANEL, + "view_subscriptions_button": T.PANEL, + "view_subscriptions_prerelease_section": T.PANEL, + "view_subscriptions_prerelease_section/black_background": T.PANEL, + "view_subscriptions_prerelease_section/renews_text": T.LABEL, + "view_subscriptions_section": T.STACK_PANEL, + "view_subscriptions_section/sunsetting_label": T.IMAGE, + "view_subscriptions_section/failed_loading_subscriptions_label": T.LABEL, + "view_subscriptions_section/loading_subscriptions_label": T.LABEL, + "view_subscriptions_section/no_active_subscriptions_panel": T.PANEL, + "view_subscriptions_section/no_active_subscriptions_panel/header_no_active_csub_or_realms_subscriptions": T.PANEL, + "view_subscriptions_section/no_active_subscriptions_panel/header_no_active_csub_or_realms_subscriptions/text": T.LABEL, + "view_subscriptions_section/no_active_subscriptions_panel/background_panel": T.IMAGE, + "view_subscriptions_section/realms_plus_header_my_subscriptions": T.PANEL, + "view_subscriptions_section/realms_plus_header_my_subscriptions/text": T.LABEL, + "view_subscriptions_section/realms_plus_subscriptions_grid": T.STACK_PANEL, + "view_subscriptions_section/csb_purchased_with_cancel": T.PANEL, + "view_subscriptions_section/csb_purchased_with_buy": T.PANEL, + "view_subscriptions_section/csb_purchased_padding": T.PANEL, + "view_subscriptions_section/platform_mismatch_container": T.PANEL, + "view_subscriptions_section/platform_mismatch_container/black_background": T.PANEL, + "view_subscriptions_section/platform_mismatch_container/possible_store_mismatch": T.PANEL, + "view_subscriptions_section/csb_expiration_container": T.PANEL, + "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container": T.STACK_PANEL, + "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container/csb_expiration_text_padding": T.PANEL, + "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container/csb_expiration": T.LABEL, + "view_subscriptions_section/csb_expiration_container/background_panel": T.IMAGE, + "view_subscriptions_section/csb_expiration_and_platform_mismatch_padding": T.PANEL, + "view_subscriptions_section/additional_realms_subscriptions_grid": T.STACK_PANEL, + "view_subscriptions_section/settings_additional_subscription_offers_section": T.STACK_PANEL, + "view_subscriptions_section/pad_3": T.PANEL, + "settings_additional_subscription_offers_section": T.STACK_PANEL, + "settings_additional_subscription_offers_section/active_available_divider": T.STACK_PANEL, + "settings_additional_subscription_offers_section/realms_plus_header_label": T.LABEL, + "settings_additional_subscription_offers_section/pad_0": T.PANEL, + "settings_additional_subscription_offers_section/additional_realms_buy_offer": T.PANEL, + "settings_additional_subscription_offers_section/pad_8": T.PANEL, + "settings_additional_subscription_offers_section/csb_buy_panel": T.PANEL, + "accessibility_button": T.PANEL, + "toast_notification_duration_label": T.LABEL, + "toast_notification_duration_info_label": T.LABEL, + "toast_notification_duration_info_edu_label": T.LABEL, + "chat_message_duration_label": T.LABEL, + "chat_message_duration_info_label": T.LABEL, + "accessibility_section": T.STACK_PANEL, + "accessibility_section/option_toggle0": T.PANEL, + "accessibility_section/option_toggle1": T.PANEL, + "accessibility_section/option_toggle2": T.PANEL, + "accessibility_section/option_slider_0": T.PANEL, + "accessibility_section/option_toggle3": T.PANEL, + "accessibility_section/hud_text_background_opacity_slider": T.PANEL, + "accessibility_section/chat_opacity_slider": T.PANEL, + "accessibility_section/actionbar_text_background_opacity_slider": T.PANEL, + "accessibility_section/camera_shake_toggle": T.PANEL, + "accessibility_section/hide_endflash_toggle": T.PANEL, + "accessibility_section/enable_dithering_blocks_toggle": T.PANEL, + "accessibility_section/enable_dithering_mobs_toggle": T.PANEL, + "accessibility_section/darkness_slider": T.PANEL, + "accessibility_section/glint_strength_slider": T.PANEL, + "accessibility_section/glint_speed_slider": T.PANEL, + "accessibility_section/toast_notification_duration_options_panel": T.STACK_PANEL, + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_label_wrapper": T.PANEL, + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_info_label_wrapper": T.PANEL, + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_info_label_edu_wrapper": T.PANEL, + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_dropdown_spacer_pre": T.PANEL, + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_dropdown": T.PANEL, + "accessibility_section/chat_message_duration_options_panel": T.STACK_PANEL, + "accessibility_section/chat_message_duration_options_panel/chat_message_duration_label_wrapper": T.PANEL, + "accessibility_section/chat_message_duration_options_panel/chat_message_duration_info_label_wrapper": T.PANEL, + "accessibility_section/chat_message_duration_options_panel/chat_message_duration_dropdown_spacer_pre": T.PANEL, + "accessibility_section/chat_message_duration_options_panel/chat_message_duration_dropdown": T.PANEL, + "accessibility_section/gui_scale_slider": T.PANEL, + "accessibility_section/gui_scale_slider/option_generic_core": T.STACK_PANEL, + "accessibility_section/gui_accessibility_scaling_toggle": T.PANEL, + "accessibility_section/gui_accessibility_scaling_toggle/option_generic_core": T.STACK_PANEL, + "accessibility_section/reset_button": T.BUTTON, + "accessibility_section_ore_ui": T.STACK_PANEL, + "accessibility_section_ore_ui/spacer_0": T.PANEL, + "accessibility_section_ore_ui/generic_label": T.LABEL, + "accessibility_section_ore_ui/spacer_1": T.PANEL, + "accessibility_section_ore_ui/gamepad_helper_label": T.LABEL, + "accessibility_section_ore_ui/accessibility_button": T.BUTTON, + "sound_button": T.PANEL, + "sound_section_ore_ui": T.STACK_PANEL, + "sound_section_ore_ui/spacer_0": T.PANEL, + "sound_section_ore_ui/generic_label": T.LABEL, + "sound_section_ore_ui/spacer_1": T.PANEL, + "sound_section_ore_ui/gamepad_helper_label": T.LABEL, + "sound_section": T.STACK_PANEL, + "sound_section/paddingMainVolume": T.PANEL, + "sound_section/option_slider_0": T.PANEL, + "sound_section/paddingDividerAudioSettings": T.PANEL, + "sound_section/dividerAudioSettings": T.PANEL, + "sound_section/dividerAudioSettings/section_divider": T.IMAGE, + "sound_section/paddingMusic": T.PANEL, + "sound_section/option_slider_1": T.PANEL, + "sound_section/paddingSound": T.PANEL, + "sound_section/option_slider_2": T.PANEL, + "sound_section/paddingAmbient": T.PANEL, + "sound_section/option_slider_3": T.PANEL, + "sound_section/paddingBlockVolume": T.PANEL, + "sound_section/option_slider_4": T.PANEL, + "sound_section/paddingHostile": T.PANEL, + "sound_section/option_slider_5": T.PANEL, + "sound_section/paddingNeutralVolume": T.PANEL, + "sound_section/option_slider_6": T.PANEL, + "sound_section/paddingPlayervolume": T.PANEL, + "sound_section/option_slider_7": T.PANEL, + "sound_section/paddingRecordVolume": T.PANEL, + "sound_section/option_slider_8": T.PANEL, + "sound_section/paddingWeatherVolume": T.PANEL, + "sound_section/option_slider_9": T.PANEL, + "sound_section/paddingTTSVolume": T.PANEL, + "sound_section/option_slider_10": T.PANEL, + "sound_section/paddingResetVolumes": T.PANEL, + "sound_section/reset_button": T.BUTTON, + "sound_section/paddingEndOfList": T.PANEL, + "language_button": T.PANEL, + "language_grid_item": T.PANEL, + "language_section": T.STACK_PANEL, + "language_section/language_list_grid": T.GRID, + "language_section_ore_ui": T.STACK_PANEL, + "language_section_ore_ui/spacer_0": T.PANEL, + "language_section_ore_ui/generic_label": T.LABEL, + "language_section_ore_ui/spacer_1": T.PANEL, + "language_section_ore_ui/gamepad_helper_label": T.LABEL, + "preview_button": T.PANEL, + "preview_section": T.STACK_PANEL, + "preview_section/spacer_0": T.PANEL, + "preview_section/generic_label": T.LABEL, + "preview_section/preview_store_launch_app1_button": T.BUTTON, + "preview_section/preview_store_launch_app2_button": T.BUTTON, + "override_date_panel": T.STACK_PANEL, + "override_date_panel/year_text_box": T.PANEL, + "override_date_panel/year_month_slash": T.LABEL, + "override_date_panel/month_text_box": T.PANEL, + "override_date_panel/month_day_slash": T.LABEL, + "override_date_panel/day_text_box": T.PANEL, + "override_date_panel/day_hour_slash": T.LABEL, + "override_date_panel/hour_text_box": T.PANEL, + "override_date_panel/hour_minute_slash": T.LABEL, + "override_date_panel/minute_text_box": T.PANEL, + "timezonetype_dropdown_content": T.PANEL, + "date_options_panel": T.STACK_PANEL, + "date_options_panel/padding0": T.PANEL, + "date_options_panel/display_override_datetime_option_toggle": T.PANEL, + "date_options_panel/option_toggle_date_override": T.PANEL, + "date_options_panel/override_date_options_panel": T.PANEL, + "override_date_options_panel": T.PANEL, + "override_date_options_panel/override_date_options_background_panel": T.STACK_PANEL, + "override_date_options_panel/override_date_options_background_panel/load_override_date_option_toggle": T.PANEL, + "override_date_options_panel/override_date_options_background_panel/select_dropdown": T.PANEL, + "override_date_options_panel/override_date_options_background_panel/override_date_panel": T.STACK_PANEL, + "override_date_options_panel/override_date_options_background_panel/padding1": T.PANEL, + "override_date_options_panel/override_date_options_background_panel/override_time_scale_option": T.PANEL, + "override_date_options_panel/override_date_options_background_panel/reset_time_button": T.BUTTON, + "override_date_options_panel/override_date_options_background_panel/padding2": T.PANEL, + "debug_display_logged_error_panel": T.PANEL, + "debug_display_logged_error_panel/debug_display_logged_error_panel_background": T.STACK_PANEL, + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_marketplace": T.PANEL, + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_ui": T.PANEL, + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_osi": T.PANEL, + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_other": T.PANEL, + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/spacer_0": T.PANEL, + "xbox_sandbox_panel": T.STACK_PANEL, + "xbox_sandbox_panel/padding0": T.PANEL, + "xbox_sandbox_panel/display_override_xbox_sandbox_toggle_windows": T.PANEL, + "xbox_sandbox_panel/display_override_xbox_sandbox_toggle": T.PANEL, + "xbox_sandbox_panel/override_xbox_options_panel": T.PANEL, + "override_xbox_options_panel": T.PANEL, + "override_xbox_options_panel/override_xbox_options": T.STACK_PANEL, + "override_xbox_options_panel/override_xbox_options/option_dropdown_xbox": T.PANEL, + "override_version_options_panel": T.STACK_PANEL, + "override_version_options_panel/override_version_panel": T.STACK_PANEL, + "override_version_options_panel/override_version_button_panel": T.PANEL, + "override_version_options_panel/override_version_button_panel/update_override_version_button": T.BUTTON, + "override_version_options_panel/override_date_panel_bottom_padding": T.PANEL, + "override_version_panel": T.STACK_PANEL, + "override_version_panel/major_version_text_box": T.PANEL, + "override_version_panel/first_dot": T.LABEL, + "override_version_panel/minor_version_text_box": T.PANEL, + "override_version_panel/second_dot": T.LABEL, + "override_version_panel/patch_version_text_box": T.PANEL, + "dot_label": T.LABEL, + "debug_override_treatments_panel": T.PANEL, + "debug_override_treatments_panel/override_treatments_panel_background": T.STACK_PANEL, + "debug_override_treatments_panel/override_treatments_panel_background/option_toggle_treatment_override": T.PANEL, + "debug_override_treatments_panel/override_treatments_panel_background/spacer_0": T.PANEL, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel": T.STACK_PANEL, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/apply_treatments_button": T.BUTTON, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel": T.STACK_PANEL, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/text_edit_treatment": T.PANEL, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/add_button_panel": T.PANEL, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/add_button_panel/add_button": T.BUTTON, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel": T.STACK_PANEL, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/reset_to_default": T.BUTTON, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/clear_treatments": T.BUTTON, + "debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel": T.IMAGE, + "debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel/treatments_label": T.LABEL, + "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1": T.PANEL, + "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1/progress_loading_spinner_1": T.IMAGE, + "debug_override_treatments_panel/override_treatments_panel_background/treatment_grid": T.GRID, + "debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel": T.IMAGE, + "debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel/treatments_label": T.LABEL, + "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2": T.PANEL, + "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2/progress_loading_spinner_2": T.IMAGE, + "debug_override_treatments_panel/override_treatments_panel_background/unused_treatment_grid": T.GRID, + "debug_override_treatments_panel/override_treatments_panel_background/spacer_1": T.PANEL, + "debug_override_configurations_panel": T.PANEL, + "debug_override_configurations_panel/override_configurations_panel_background": T.STACK_PANEL, + "debug_override_configurations_panel/override_configurations_panel_background/option_toggle_configuration_override": T.PANEL, + "debug_override_configurations_panel/override_configurations_panel_background/spacer_0": T.PANEL, + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel": T.STACK_PANEL, + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel": T.STACK_PANEL, + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/text_edit_configuration": T.PANEL, + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/add_button_panel": T.PANEL, + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/add_button_panel/add_button": T.BUTTON, + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel": T.STACK_PANEL, + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel/reset_to_default": T.BUTTON, + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel/clear_configurations": T.BUTTON, + "debug_override_configurations_panel/override_configurations_panel_background/configuration_grid": T.GRID, + "debug_override_realms_features_panel": T.PANEL, + "debug_override_realms_features_panel/override_realms_features_panel_background": T.STACK_PANEL, + "debug_override_realms_features_panel/override_realms_features_panel_background/option_toggle_realms_feature_override": T.PANEL, + "debug_override_realms_features_panel/override_realms_features_panel_background/spacer_0": T.PANEL, + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel": T.STACK_PANEL, + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel": T.STACK_PANEL, + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/text_edit_realms_features": T.PANEL, + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/add_button_panel": T.PANEL, + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/add_button_panel/add_button": T.BUTTON, + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel": T.STACK_PANEL, + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel/reset_to_default": T.BUTTON, + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel/clear_realms_features": T.BUTTON, + "debug_override_realms_features_panel/override_realms_features_panel_background/current_realms_features_label_panel": T.IMAGE, + "debug_override_realms_features_panel/override_realms_features_panel_background/current_realms_features_label_panel/realms_features_label": T.LABEL, + "debug_override_realms_features_panel/override_realms_features_panel_background/realms_features_grid": T.GRID, + "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_label_panel": T.IMAGE, + "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_label_panel/realms_features_label": T.LABEL, + "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_grid": T.GRID, + "configuration_grid_item": T.STACK_PANEL, + "configuration_grid_item/configuration_id_panel": T.IMAGE, + "configuration_grid_item/configuration_id_panel/configuration_id": T.LABEL, + "configuration_grid_item/remove_button": T.BUTTON, + "remove_configuration_icon": T.IMAGE, + "realms_feature_grid_item": T.STACK_PANEL, + "realms_feature_grid_item/realms_feature_id_panel": T.IMAGE, + "realms_feature_grid_item/realms_feature_id_panel/realms_feature_id": T.LABEL, + "realms_feature_grid_item/disable_button": T.BUTTON, + "disable_realms_feature_icon": T.IMAGE, + "unused_realms_feature_grid_item": T.STACK_PANEL, + "unused_realms_feature_grid_item/unused_realms_feature_id_panel": T.IMAGE, + "unused_realms_feature_grid_item/unused_realms_feature_id_panel/unused_realms_feature_id": T.LABEL, + "unused_realms_feature_grid_item/enable_button": T.BUTTON, + "enable_realms_feature_icon": T.IMAGE, + "treatment_grid_item": T.STACK_PANEL, + "treatment_grid_item/treatment_id_panel": T.IMAGE, + "treatment_grid_item/treatment_id_panel/treatment_id": T.LABEL, + "treatment_grid_item/remove_button": T.BUTTON, + "remove_treatment_icon": T.IMAGE, + "unused_treatment_grid_item": T.STACK_PANEL, + "unused_treatment_grid_item/unused_treatment_id_panel": T.IMAGE, + "unused_treatment_grid_item/unused_treatment_id_panel/unused_treatment_id": T.LABEL, + "unused_treatment_grid_item/add_button": T.BUTTON, + "add_treatment_icon": T.IMAGE, + "debug_select_windows_store_panel": T.STACK_PANEL, + "debug_select_windows_store_panel/select_store_dropdown": T.PANEL, + "debug_select_windows_store_panel/stores_label": T.LABEL, + "debug_select_windows_store_panel/sandbox_label": T.LABEL, + "windows_store_dropdown_content": T.PANEL, + "mock_http_panel": T.STACK_PANEL, + "mock_http_panel/display_mock_http_panel_toggle": T.PANEL, + "mock_http_panel/mock_http_panel_content": T.PANEL, + "mock_http_panel_content": T.PANEL, + "mock_http_panel_content/mock_http_panel_background": T.STACK_PANEL, + "mock_http_panel_content/mock_http_panel_background/add_mock_rules_button": T.BUTTON, + "mock_http_panel_content/mock_http_panel_background/remove_all_mock_rules_button": T.BUTTON, + "mock_http_panel_content/mock_http_panel_background/active_rules_label": T.LABEL, + "mock_http_panel_content/mock_http_panel_background/rule_list": T.STACK_PANEL, + "mock_http_panel_content/mock_http_panel_background/divider": T.STACK_PANEL, + "mock_http_rule_list": T.STACK_PANEL, + "mock_http_rule": T.STACK_PANEL, + "mock_http_rule/rule_details_label": T.LABEL, + "mock_http_rule/rule_spacer": T.PANEL, + "automation_button": T.PANEL, + "automation_section": T.STACK_PANEL, + "automation_section/automation_tab_label": T.LABEL, + "automation_section/padding": T.PANEL, + "automation_section/automation_test_asset_sas_text_box": T.PANEL, + "automation_section/automation_functional_test_tags_text_box": T.PANEL, + "automation_section/automation_server_test_tags_text_box": T.PANEL, + "automation_section/automation_unit_test_tags_text_box": T.PANEL, + "automation_section/automation_broken_functional_test_tags_text_box": T.PANEL, + "automation_section/automation_broken_server_test_tags_text_box": T.PANEL, + "automation_section/automation_broken_unit_test_tags_text_box": T.PANEL, + "automation_section/automation_repeat_count_text_box": T.PANEL, + "automation_section/automation_soak_test_duration_minutes_text_box": T.PANEL, + "automation_section/automation_repeat_failures_only_toggle": T.PANEL, + "automation_section/automation_run_entire_server_test_group": T.PANEL, + "automation_section/automation_testbuild_id_text_box": T.PANEL, + "automation_section/automation_functional_test_block_input_toggle": T.PANEL, + "automation_section/automation_server_test_assert_on_level_diff_toggle": T.PANEL, + "discovery_debug_button": T.PANEL, + "discovery_debug_section": T.STACK_PANEL, + "discovery_debug_section/option_discovery_environment": T.PANEL, + "discovery_debug_section/debug_override_discovery_panel": T.PANEL, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background": T.STACK_PANEL, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/option_toggle_discovery_override": T.PANEL, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/spacer_0": T.PANEL, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel": T.STACK_PANEL, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_name": T.PANEL, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_type": T.PANEL, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_branch": T.PANEL, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_custom": T.PANEL, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel": T.STACK_PANEL, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel/reset_endpoint_override": T.BUTTON, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel/apply_endpoint_override": T.BUTTON, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_1": T.PANEL, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/active_service_overrides_label": T.LABEL, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_2": T.PANEL, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/reset_all_endpoint_overrides_button": T.BUTTON, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/discovery_overrides_do_not_save_label": T.LABEL, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_3": T.PANEL, + "debug_button": T.PANEL, + "feature_toggle": T.PANEL, + "debug_section": T.STACK_PANEL, + "debug_section/options_for_qa_convenience": T.LABEL, + "debug_section/options_for_qa_convenience_spacer": T.PANEL, + "debug_section/option_toggle_dev_console_button_0": T.PANEL, + "debug_section/option_toggle_assertions_debug_break": T.PANEL, + "debug_section/option_toggle_assertions_show_dialog": T.PANEL, + "debug_section/option_dev_show_display_logged_error": T.PANEL, + "debug_section/display_logged_error_panel": T.PANEL, + "debug_section/option_dev_force_trial_mode": T.PANEL, + "debug_section/option_dev_force_trial_mode_spacer": T.PANEL, + "debug_section/debug_overlay_pages_label": T.LABEL, + "debug_section/debug_overlay_button_panel": T.PANEL, + "debug_section/debug_overlay_button_panel/debug_overlay_previous_button": T.BUTTON, + "debug_section/debug_overlay_button_panel/debug_overlay_next_button": T.BUTTON, + "debug_section/pre_feature_toggles_label_spacer": T.PANEL, + "debug_section/feature_toggles_label": T.LABEL, + "debug_section/feature_toggles_label_spacer": T.PANEL, + "debug_section/feature_toggles": T.STACK_PANEL, + "debug_section/end_of_feature_toggles_label_spacer": T.PANEL, + "debug_section/option_toggle_dev_disable_lan_signaling": T.PANEL, + "debug_section/option_dropdown_nethernet_logging_verbosity": T.PANEL, + "debug_section/option_dropdown_http_logging_verbosity": T.PANEL, + "debug_section/option_dropdown_xsapi_logging_verbosity": T.PANEL, + "debug_section/option_toggle_remote_imgui": T.PANEL, + "debug_section/option_dropdown_0": T.PANEL, + "debug_section/option_toggle_extra_debug_hud_info": T.PANEL, + "debug_section/option_toggle_0_1": T.PANEL, + "debug_section/option_toggle_0_2": T.PANEL, + "debug_section/option_slider_0": T.PANEL, + "debug_section/option_toggle_3": T.PANEL, + "debug_section/option_toggle_4": T.PANEL, + "debug_section/option_toggle_5": T.PANEL, + "debug_section/option_toggle_6": T.PANEL, + "debug_section/option_dropdown_server_chunk_map": T.PANEL, + "debug_section/option_toggle_9": T.PANEL, + "debug_section/option_toggle_disable_render_terrain": T.PANEL, + "debug_section/option_toggle_disable_render_entities": T.PANEL, + "debug_section/option_toggle_disable_render_blockentities": T.PANEL, + "debug_section/option_toggle_disable_render_particles": T.PANEL, + "debug_section/option_toggle_disable_render_sky": T.PANEL, + "debug_section/option_toggle_disable_render_weather": T.PANEL, + "debug_section/option_toggle_disable_render_hud": T.PANEL, + "debug_section/option_toggle_disable_render_item_in_hand": T.PANEL, + "debug_section/option_toggle_disable_render_main_menu_cubemap": T.PANEL, + "debug_section/option_toggle_disable_render_main_menu_paperdoll_animation": T.PANEL, + "debug_section/leak_memory": T.PANEL, + "debug_section/log_area": T.PANEL, + "debug_section/log_priority": T.PANEL, + "debug_section/option_toggle_build_info": T.PANEL, + "debug_section/option_perf_turtle": T.PANEL, + "debug_section/option_default_profiling_option": T.PANEL, + "debug_section/option_toggle_7": T.PANEL, + "debug_section/option_toggle_8": T.PANEL, + "debug_section/option_toggle_game_tip": T.PANEL, + "debug_section/option_toggle_10": T.PANEL, + "debug_section/dev_disable_client_blob_cache_toggle": T.PANEL, + "debug_section/dev_force_client_blob_cache_toggle": T.PANEL, + "debug_section/devquality_dropdown": T.PANEL, + "debug_section/dev_add_http_delay_seconds": T.PANEL, + "debug_section/dev_show_latency_graph_toggle": T.PANEL, + "debug_section/xbox_sandbox_panel": T.STACK_PANEL, + "debug_section/multithreaded_rendering_toggle": T.PANEL, + "debug_section/filewatcher_rendering_toggle": T.PANEL, + "debug_section/enable_texture_hot_reloader_toggle": T.PANEL, + "debug_section/mock_http_panel": T.STACK_PANEL, + "debug_section/vsync_dropdown": T.PANEL, + "debug_section/sunsetting_use_overrides_toggle": T.PANEL, + "debug_section/padding_sunsetting": T.PANEL, + "debug_section/sunseting_state_toggle": T.PANEL, + "debug_section/sunsetting_tier_dropdown": T.PANEL, + "debug_section/padding_sunsetting_2": T.PANEL, + "debug_section/padding1": T.PANEL, + "debug_section/copy_internal_settings_folder_to_external": T.BUTTON, + "debug_section/padding_reset_day_one": T.PANEL, + "debug_section/reset_new_player_flow": T.BUTTON, + "debug_section/reset_day_one_experience": T.BUTTON, + "debug_section/option_text_edit_1": T.PANEL, + "debug_section/option_text_edit_2": T.PANEL, + "debug_section/option_text_edit_3": T.PANEL, + "debug_section/reset_report_timer_option": T.BUTTON, + "debug_section/reset_online_safety_option": T.BUTTON, + "debug_section/reset_ip_safety_option": T.BUTTON, + "debug_section/padding_graphics_options": T.PANEL, + "debug_section/option_shadersdk_service_ip": T.PANEL, + "debug_section/option_shadersdk_service_port": T.PANEL, + "debug_section/option_shadersdk_target_port": T.PANEL, + "debug_section/padding_graphics_buttons": T.PANEL, + "debug_section/trigger_graphics_device_loss": T.BUTTON, + "debug_section/allocate_texture_handles": T.BUTTON, + "debug_section/padding_deferred_debug": T.PANEL, + "debug_section/deferred_platform_override": T.PANEL, + "realms_debug_button": T.PANEL, + "realms_debug_section": T.STACK_PANEL, + "realms_debug_section/realms_menu_title": T.LABEL, + "realms_debug_section/realms_title_spacer": T.PANEL, + "realms_debug_section/feature_toggles_label": T.LABEL, + "realms_debug_section/feature_toggles_label_spacer": T.PANEL, + "realms_debug_section/feature_toggles": T.STACK_PANEL, + "realms_debug_section/end_of_feature_toggles_label_spacer": T.PANEL, + "realms_debug_section/realms_dev_toggles_title": T.LABEL, + "realms_debug_section/realms_dev_toggle_spacer": T.PANEL, + "realms_debug_section/realms_without_purchase_toggle": T.PANEL, + "realms_debug_section/realms_debug_options_title": T.LABEL, + "realms_debug_section/realms_debug_options_spacer": T.PANEL, + "realms_debug_section/option_dropdown_1": T.PANEL, + "realms_debug_section/option_dropdown_2": T.PANEL, + "realms_debug_section/option_text_edit_0": T.PANEL, + "realms_debug_section/realms_features_override_panel": T.STACK_PANEL, + "realms_debug_section/realms_features_override_panel/option_toggle_realms_features_override": T.PANEL, + "realms_debug_section/realms_features_override_panel/override_realms_features_panel": T.PANEL, + "realms_debug_section/realms_debug_options_spacer_2": T.PANEL, + "realms_feature_toggle": T.PANEL, + "marketplace_debug_button": T.PANEL, + "marketplace_debug_section": T.STACK_PANEL, + "marketplace_debug_section/marketplace_feature_toggles_label": T.LABEL, + "marketplace_debug_section/marketplace_feature_toggles_label_spacer": T.PANEL, + "marketplace_debug_section/marketplace_feature_toggles": T.STACK_PANEL, + "marketplace_debug_section/playfab_token_refresh_threshold": T.PANEL, + "marketplace_debug_section/option_dropdown_skin_rotation_speed": T.PANEL, + "marketplace_debug_section/option_toggle_all_skins_rotate": T.PANEL, + "marketplace_debug_section/option_toggle_display_marketplace_document_id": T.PANEL, + "marketplace_debug_section/option_toggle_display_platform_offer_check": T.PANEL, + "marketplace_debug_section/version_options_panel": T.STACK_PANEL, + "marketplace_debug_section/version_options_panel/option_version_override": T.PANEL, + "marketplace_debug_section/version_options_panel/override_version_options_panel": T.STACK_PANEL, + "marketplace_debug_section/select_windows_store_panel": T.STACK_PANEL, + "marketplace_debug_section/date_options_panel": T.STACK_PANEL, + "marketplace_debug_section/option_clear_store_cache_button": T.BUTTON, + "marketplace_debug_section/option_clear_all_cache_button": T.BUTTON, + "marketplace_debug_section/option_delete_all_personas_button": T.BUTTON, + "marketplace_debug_section/option_delete_legacy_personas_button": T.BUTTON, + "marketplace_debug_section/padding2": T.PANEL, + "marketplace_debug_section/enable_coin_debug_switch_toggle": T.PANEL, + "marketplace_debug_section/add_500_coins": T.BUTTON, + "marketplace_debug_section/add_100000_coins": T.BUTTON, + "marketplace_debug_section/padding3": T.PANEL, + "marketplace_debug_section/reset_entitlements": T.BUTTON, + "marketplace_debug_section/reset_wallet": T.BUTTON, + "marketplace_feature_toggle": T.PANEL, + "gatherings_debug_button": T.PANEL, + "gatherings_debug_section": T.STACK_PANEL, + "gatherings_debug_section/refresh_gatherings_button": T.BUTTON, + "gatherings_debug_section/spacer_1": T.PANEL, + "gatherings_debug_section/clear_system_service_pack_cache_button": T.BUTTON, + "gatherings_debug_section/spacer_2": T.PANEL, + "gatherings_debug_section/active_gathering_label": T.LABEL, + "gatherings_debug_section/spacer_3": T.PANEL, + "gatherings_debug_section/text_edit_filter_gatherings": T.PANEL, + "gatherings_debug_section/spacer_4": T.PANEL, + "gatherings_debug_section/available_gatherings_section": T.STACK_PANEL, + "gathering_grid_item_content": T.STACK_PANEL, + "gathering_grid_item_content/gathering_name": T.LABEL, + "gathering_grid_item_content/gathering_uuid": T.LABEL, + "gathering_item_template": T.PANEL, + "gathering_item_template/gathering_item_button": T.BUTTON, + "available_gatherings_grid": T.GRID, + "available_gatherings_panel": T.STACK_PANEL, + "available_gatherings_panel/available_label": T.LABEL, + "available_gatherings_panel/gatherings_grid": T.GRID, + "available_gatherings_panel/spacing_gap": T.PANEL, + "available_gatherings_section": T.STACK_PANEL, + "available_gatherings_section/available_gatherings_panel": T.STACK_PANEL, + "ui_debug_button": T.PANEL, + "ui_feature_toggle": T.PANEL, + "edu_debug_button": T.PANEL, + "edu_feature_toggle": T.PANEL, + "new_create_world_grid_item": T.PANEL, + "new_edu_create_world_screen_grid_item": T.PANEL, + "new_play_screen_grid_item": T.PANEL, + "new_edit_world_screen_grid_item": T.PANEL, + "new_player_permissions_screen_grid_item": T.PANEL, + "new_send_invites_screen_grid_item": T.PANEL, + "new_death_grid_item": T.PANEL, + "new_bed_grid_item": T.PANEL, + "ore_ui_gameplay_ui_grid_item": T.PANEL, + "new_settings_screen_grid_item": T.PANEL, + "ui_debug_section": T.STACK_PANEL, + "ui_debug_section/ui_feature_toggles_label": T.LABEL, + "ui_debug_section/ui_feature_toggles_info_label": T.LABEL, + "ui_debug_section/ui_feature_toggles_label_spacer": T.PANEL, + "ui_debug_section/ui_feature_toggles": T.STACK_PANEL, + "ui_debug_section/end_of_ui_feature_toggles_label_divider": T.PANEL, + "ui_debug_section/end_of_ui_feature_toggles_label_divider/section_divider": T.IMAGE, + "ui_debug_section/end_of_ui_feature_toggles_label_divider_spacer": T.PANEL, + "ui_debug_section/end_of_ui_feature_toggles_label_spacer": T.PANEL, + "ui_debug_section/screen_override_label": T.LABEL, + "ui_debug_section/screen_override_info_label": T.LABEL, + "ui_debug_section/screen_override_label_spacer": T.PANEL, + "ui_debug_section/new_edu_create_world_screen_radio_label": T.LABEL, + "ui_debug_section/new_edu_create_world_screen_radio_label_spacer": T.PANEL, + "ui_debug_section/new_edu_create_world_screen_radio_button": T.GRID, + "ui_debug_section/new_edu_create_world_screen_radio_button_spacer": T.PANEL, + "ui_debug_section/new_play_screen_radio_label": T.LABEL, + "ui_debug_section/new_play_screen_radio_label_spacer": T.PANEL, + "ui_debug_section/new_play_screen_radio_button": T.GRID, + "ui_debug_section/new_play_screen_radio_button_spacer": T.PANEL, + "ui_debug_section/new_edit_world_screen_radio_label": T.LABEL, + "ui_debug_section/new_edit_world_screen_radio_label_spacer": T.PANEL, + "ui_debug_section/new_edit_world_screen_radio_button": T.GRID, + "ui_debug_section/new_edit_world_screen_radio_button_spacer": T.PANEL, + "ui_debug_section/new_send_invites_radio_label": T.LABEL, + "ui_debug_section/new_send_invites_screen_radio_label_spacer": T.PANEL, + "ui_debug_section/new_send_invites_screen_radio_button": T.GRID, + "ui_debug_section/new_send_invites_screen_radio_button_spacer": T.PANEL, + "ui_debug_section/new_death_screen_radio_label": T.LABEL, + "ui_debug_section/new_death_screen_radio_label_spacer": T.PANEL, + "ui_debug_section/new_death_screen_radio_button": T.GRID, + "ui_debug_section/new_death_screen_radio_button_spacer": T.PANEL, + "ui_debug_section/new_bed_screen_radio_label": T.LABEL, + "ui_debug_section/new_bed_screen_radio_label_spacer": T.PANEL, + "ui_debug_section/new_bed_screen_radio_button": T.GRID, + "ui_debug_section/new_bed_screen_radio_button_spacer": T.PANEL, + "ui_debug_section/ore_ui_gameplay_ui_radio_label": T.LABEL, + "ui_debug_section/ore_ui_gameplay_ui_radio_label_spacer": T.PANEL, + "ui_debug_section/ore_ui_gameplay_ui_radio_button": T.GRID, + "ui_debug_section/ore_ui_gameplay_ui_radio_button_spacer": T.PANEL, + "ui_debug_section/end_of_ui_screen_override_divider": T.PANEL, + "ui_debug_section/end_of_ui_screen_override_divider/section_divider": T.IMAGE, + "ui_debug_section/end_of_ui_sceen_override_divider_spacer": T.PANEL, + "ui_debug_section/new_settings_screen_radio_label": T.LABEL, + "ui_debug_section/new_settings_screen_radio_label_spacer": T.PANEL, + "ui_debug_section/new_settings_screen_radio_button": T.GRID, + "ui_debug_section/new_settings_screen_radio_button_spacer": T.PANEL, + "ui_debug_section/screen_opt_in_options_label": T.LABEL, + "ui_debug_section/screen_opt_in_info_label": T.LABEL, + "ui_debug_section/screen_opt_in_options_label_spacer": T.PANEL, + "ui_debug_section/end_of_ui_screen_opt_in_divider": T.PANEL, + "ui_debug_section/end_of_ui_screen_opt_in_divider/section_divider": T.IMAGE, + "ui_debug_section/end_of_ui_sceen_opt_in_divider_spacer": T.PANEL, + "ui_debug_section/other_ui_options_label": T.LABEL, + "ui_debug_section/other_ui_options_label_spacer": T.PANEL, + "ui_debug_section/option_toggle_default_font_override": T.PANEL, + "ui_debug_section/option_toggle_dev_show_tcui_replacement": T.PANEL, + "ui_debug_section/option_toggle_use_mobile_data_blocked_modal": T.PANEL, + "ui_debug_section/ui_feature_toggles_spacer": T.PANEL, + "ui_debug_section/option_show_touch_control_selection_screen": T.PANEL, + "ui_debug_section/option_reset_on_start": T.PANEL, + "ui_debug_section/option_slider_drag_dwell": T.PANEL, + "ui_debug_section/option_slider_stack_splitting": T.PANEL, + "ui_debug_section/reset_render_distance_warning_modal_label": T.LABEL, + "ui_debug_section/reset_render_distance_warning_modal_label_spacer": T.PANEL, + "ui_debug_section/reset_render_distance_warning_modal": T.BUTTON, + "ui_debug_section/reset_render_distance_warning_modal_spacer": T.PANEL, + "ui_debug_section/ore_ui_developer_pages_divider": T.PANEL, + "ui_debug_section/ore_ui_developer_pages_divider/section_divider": T.IMAGE, + "ui_debug_section/ore_ui_developer_pages_spacer": T.PANEL, + "ui_debug_section/open_ore_ui_label": T.LABEL, + "ui_debug_section/open_ore_ui_info_label": T.LABEL, + "ui_debug_section/open_ore_ui_label_spacer": T.PANEL, + "ui_debug_section/open_ore_ui_docs": T.BUTTON, + "ui_debug_section/open_ore_ui_tests": T.BUTTON, + "ui_debug_section/open_ore_ui_perf": T.BUTTON, + "ui_debug_section/open_ore_ui_test_modal": T.BUTTON, + "ui_debug_section/open_ore_ui_tests_spacer": T.PANEL, + "edu_debug_section": T.STACK_PANEL, + "edu_debug_section/edu_feature_toggles_label": T.LABEL, + "edu_debug_section/edu_feature_toggles_label_spacer": T.PANEL, + "edu_debug_section/edu_demo": T.PANEL, + "edu_debug_section/edu_ad_debug_panel": T.PANEL, + "edu_debug_section/edu_ad_token_refresh_threshold": T.PANEL, + "edu_debug_section/edu_ad_max_signin_token_refresh": T.PANEL, + "edu_debug_section/edu_ad_max_graph_token_refresh": T.PANEL, + "edu_debug_section/edu_environment_divider": T.PANEL, + "edu_debug_section/edu_environment_divider/section_divider": T.IMAGE, + "edu_debug_section/edu_environment_spacer": T.PANEL, + "edu_debug_section/edu_env_dropdown": T.PANEL, + "flighting_debug_button": T.PANEL, + "flighting_debug_section": T.STACK_PANEL, + "flighting_debug_section/treatment_override_panel": T.STACK_PANEL, + "flighting_debug_section/treatment_override_panel/option_toggle_treatment_override": T.PANEL, + "flighting_debug_section/treatment_override_panel/override_treatments_panel": T.PANEL, + "flighting_debug_section/configuration_override_panel": T.STACK_PANEL, + "flighting_debug_section/configuration_override_panel/option_toggle_configuration_override": T.PANEL, + "flighting_debug_section/configuration_override_panel/override_configurations_panel": T.PANEL, + "how_to_play_button": T.PANEL, + "how_to_play_section": T.STACK_PANEL, + "how_to_play_section/spacer_0": T.PANEL, + "how_to_play_section/generic_label": T.LABEL, + "how_to_play_section/spacer_1": T.PANEL, + "how_to_play_section/gamepad_helper_label": T.LABEL, + "dev_xbox_environment_dropdown_content": T.PANEL, + "dev_discovery_environment_dropdown_content": T.PANEL, + "dev_service_override_type_dropdown_content": T.PANEL, + "dev_realms_environment_dropdown_content": T.PANEL, + "dev_realms_sku_dropdown_content": T.PANEL, + "default_profiling_group_dropdown_content": T.PANEL, + "dev_nethernet_logging_verbosity_dropdown_content": T.PANEL, + "dev_http_logging_verbosity_dropdown_content": T.PANEL, + "dev_xsapi_logging_verbosity_dropdown_content": T.PANEL, + "dev_debug_speed_multiplier_options": T.PANEL, + "dev_debug_hud_dropdown_content": T.PANEL, + "dev_chunkMapMode_content": T.PANEL, + "dev_quality_dropdown_content": T.PANEL, + "vysnc_dropdown_content": T.PANEL, + "deferred_platform_override_dropdown_content": T.PANEL, + "dev_education_environment_dropdown_content": T.PANEL, + "dev_sunsetting_tier_dropdown_content": T.PANEL, + "graphics_api_dropdown_content": T.PANEL, + "graphics_mode_dropdown_content": T.PANEL, + "upscaling_mode_dropdown_content": T.PANEL, + "advanced_graphics_options_button_content": T.STACK_PANEL, + "advanced_graphics_options_button_content/advanced_graphics_options_label": T.LABEL, + "advanced_graphics_options_button_content/fill_pad": T.PANEL, + "advanced_graphics_options_button_content/plus_panel": T.PANEL, + "advanced_graphics_options_button_content/plus_panel/plus": T.IMAGE, + "advanced_graphics_options_button_content/minus_panel": T.PANEL, + "advanced_graphics_options_button_content/minus_panel/minus": T.IMAGE, + "advanced_graphics_options_section": T.STACK_PANEL, + "advanced_graphics_options_section/spacer_0": T.PANEL, + "advanced_graphics_options_section/gamma_calibration": T.BUTTON, + "advanced_graphics_options_section/spacer_1": T.PANEL, + "advanced_graphics_options_section/max_framerate_slider": T.PANEL, + "advanced_graphics_options_section/spacer_2": T.PANEL, + "advanced_graphics_options_section/msaa_slider": T.PANEL, + "advanced_graphics_options_section/spacer_3": T.PANEL, + "advanced_graphics_options_section/shadow_quality_slider": T.PANEL, + "advanced_graphics_options_section/spacer_4": T.PANEL, + "advanced_graphics_options_section/point_light_shadow_quality_slider": T.PANEL, + "advanced_graphics_options_section/spacer_5": T.PANEL, + "advanced_graphics_options_section/point_light_loding_quality_slider": T.PANEL, + "advanced_graphics_options_section/spacer_6": T.PANEL, + "advanced_graphics_options_section/cloud_quality_slider": T.PANEL, + "advanced_graphics_options_section/spacer_7": T.PANEL, + "advanced_graphics_options_section/volumetric_fog_quality_slider": T.PANEL, + "advanced_graphics_options_section/spacer_8": T.PANEL, + "advanced_graphics_options_section/reflections_quality_slider": T.PANEL, + "advanced_graphics_options_section/spacer_9": T.PANEL, + "advanced_graphics_options_section/bloom_strength": T.PANEL, + "advanced_graphics_options_section/spacer_10": T.PANEL, + "advanced_graphics_options_section/upscaling_toggle": T.PANEL, + "advanced_graphics_options_section/spacer_11": T.PANEL, + "advanced_graphics_options_section/upscaling_mode": T.PANEL, + "advanced_graphics_options_section/spacer_12": T.PANEL, + "advanced_graphics_options_section/upscaling_percentage": T.PANEL, + "advanced_graphics_options_section/fancy_clouds_toggle": T.PANEL, + "advanced_graphics_options_section/spacer_13": T.PANEL, + "advanced_graphics_options_section/smooth_lighting_toggle": T.PANEL, } export type RealmsWorldSectionType = { - realm_name_edit: T.PANEL - world_name_edit: T.PANEL - realm_description_edit: T.PANEL - download_world_button: T.BUTTON - upload_world_button: T.BUTTON - reset_world_button: T.BUTTON - manage_feed_button: T.BUTTON - club_info_label: T.PANEL - difficulty_dropdown: T.PANEL - game_mode_dropdown: T.PANEL - panel_content: T.STACK_PANEL - "panel_content/new_edit_world_opt_in_panel": T.STACK_PANEL - "panel_content/new_edit_world_opt_in_panel/panel_title": T.PANEL - "panel_content/new_edit_world_opt_in_panel/panel_text": T.PANEL - "panel_content/new_edit_world_opt_in_panel/opt_in_button": T.BUTTON - "panel_content/new_edit_world_opt_in_divider": T.PANEL - "panel_content/new_edit_world_opt_in_divider/section_divider": T.IMAGE - "panel_content/option_info_label": T.PANEL - "panel_content/hardcore_info_label": T.PANEL - "panel_content/realm_name_edit": T.PANEL - "panel_content/world_name_edit": T.PANEL - "panel_content/realm_description_edit": T.PANEL - "panel_content/difficulty_dropdown": T.PANEL - "panel_content/game_mode_dropdown": T.PANEL - "panel_content/is_hardcore_toggle": T.PANEL - "panel_content/world_options_label": T.PANEL - "panel_content/pvp_toggle": T.PANEL - "panel_content/show_coordinates_toggle": T.PANEL - "panel_content/locator_bar_toggle": T.PANEL - "panel_content/show_days_played_toggle": T.PANEL - "panel_content/fire_spreads_toggle": T.PANEL - "panel_content/recipes_unlock_toggle": T.PANEL - "panel_content/tnt_explodes_toggle": T.PANEL - "panel_content/respawn_blocks_explode_toggle": T.PANEL - "panel_content/mob_loot_toggle": T.PANEL - "panel_content/natural_regeneration_toggle": T.PANEL - "panel_content/tile_drops_toggle": T.PANEL - "panel_content/player_sleep_toggle": T.PANEL - "panel_content/player_sleep_percentage_slider": T.PANEL - "panel_content/immediate_respawn_toggle": T.PANEL - "panel_content/respawn_radius": T.PANEL - "panel_content/world_cheats_label": T.PANEL - "panel_content/allow_cheats_toggle": T.PANEL - "panel_content/daylight_cycle_toggle": T.PANEL - "panel_content/keep_inventory_toggle": T.PANEL - "panel_content/mob_spawn_toggle": T.PANEL - "panel_content/mob_griefing_toggle": T.PANEL - "panel_content/entities_drop_loot_toggle": T.PANEL - "panel_content/weather_cycle_toggle": T.PANEL - "panel_content/command_blocks_enabled_toggle": T.PANEL - "panel_content/random_tick_speed": T.PANEL - "panel_content/download_world_button": T.BUTTON - "panel_content/padding_0": T.PANEL - "panel_content/upload_world_button": T.BUTTON - "panel_content/padding_1": T.PANEL - "panel_content/reset_world_button": T.BUTTON - "panel_content/padding_2": T.PANEL - "panel_content/club_info_label": T.PANEL - "panel_content/manage_feed_button": T.BUTTON + "realm_name_edit": T.PANEL, + "world_name_edit": T.PANEL, + "realm_description_edit": T.PANEL, + "download_world_button": T.BUTTON, + "upload_world_button": T.BUTTON, + "reset_world_button": T.BUTTON, + "manage_feed_button": T.BUTTON, + "club_info_label": T.PANEL, + "difficulty_dropdown": T.PANEL, + "game_mode_dropdown": T.PANEL, + "panel_content": T.STACK_PANEL, + "panel_content/new_edit_world_opt_in_panel": T.STACK_PANEL, + "panel_content/new_edit_world_opt_in_panel/panel_title": T.PANEL, + "panel_content/new_edit_world_opt_in_panel/panel_text": T.PANEL, + "panel_content/new_edit_world_opt_in_panel/opt_in_button": T.BUTTON, + "panel_content/new_edit_world_opt_in_divider": T.PANEL, + "panel_content/new_edit_world_opt_in_divider/section_divider": T.IMAGE, + "panel_content/option_info_label": T.PANEL, + "panel_content/hardcore_info_label": T.PANEL, + "panel_content/realm_name_edit": T.PANEL, + "panel_content/world_name_edit": T.PANEL, + "panel_content/realm_description_edit": T.PANEL, + "panel_content/difficulty_dropdown": T.PANEL, + "panel_content/game_mode_dropdown": T.PANEL, + "panel_content/is_hardcore_toggle": T.PANEL, + "panel_content/world_options_label": T.PANEL, + "panel_content/pvp_toggle": T.PANEL, + "panel_content/show_coordinates_toggle": T.PANEL, + "panel_content/locator_bar_toggle": T.PANEL, + "panel_content/show_days_played_toggle": T.PANEL, + "panel_content/fire_spreads_toggle": T.PANEL, + "panel_content/recipes_unlock_toggle": T.PANEL, + "panel_content/tnt_explodes_toggle": T.PANEL, + "panel_content/respawn_blocks_explode_toggle": T.PANEL, + "panel_content/mob_loot_toggle": T.PANEL, + "panel_content/natural_regeneration_toggle": T.PANEL, + "panel_content/tile_drops_toggle": T.PANEL, + "panel_content/player_sleep_toggle": T.PANEL, + "panel_content/player_sleep_percentage_slider": T.PANEL, + "panel_content/immediate_respawn_toggle": T.PANEL, + "panel_content/respawn_radius": T.PANEL, + "panel_content/world_cheats_label": T.PANEL, + "panel_content/allow_cheats_toggle": T.PANEL, + "panel_content/daylight_cycle_toggle": T.PANEL, + "panel_content/keep_inventory_toggle": T.PANEL, + "panel_content/mob_spawn_toggle": T.PANEL, + "panel_content/mob_griefing_toggle": T.PANEL, + "panel_content/entities_drop_loot_toggle": T.PANEL, + "panel_content/weather_cycle_toggle": T.PANEL, + "panel_content/command_blocks_enabled_toggle": T.PANEL, + "panel_content/random_tick_speed": T.PANEL, + "panel_content/download_world_button": T.BUTTON, + "panel_content/padding_0": T.PANEL, + "panel_content/upload_world_button": T.BUTTON, + "panel_content/padding_1": T.PANEL, + "panel_content/reset_world_button": T.BUTTON, + "panel_content/padding_2": T.PANEL, + "panel_content/club_info_label": T.PANEL, + "panel_content/manage_feed_button": T.BUTTON, } export type SettingsCommonType = { - arrow_image: T.IMAGE - subsection_title: T.STACK_PANEL - "subsection_title/spacer_0": T.PANEL - "subsection_title/sizer_0": T.PANEL - "subsection_title/sizer_0/title": T.LABEL - "subsection_title/spacer_1": T.PANEL - "subsection_title/sizer_1": T.PANEL - "subsection_title/sizer_1/section_divider": T.IMAGE - action_button: T.BUTTON - action_button_dark_text: T.BUTTON - link_button: T.BUTTON - option_group_label: T.PANEL - "option_group_label/text": T.LABEL - option_group_header: T.PANEL - "option_group_header/text": T.PANEL - option_group_spaced_label: T.PANEL - "option_group_spaced_label/text": T.PANEL - option_group_spaced_header: T.PANEL - "option_group_spaced_header/text": T.PANEL - option_group_section_divider: T.PANEL - "option_group_section_divider/background": T.IMAGE - option_generic: T.PANEL - "option_generic/option_generic_core": T.STACK_PANEL - white_label: T.LABEL - option_generic_core: T.STACK_PANEL - "option_generic_core/two_line_layout": T.STACK_PANEL - "option_generic_core/two_line_layout/option_label_panel": T.PANEL - "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_01": T.PANEL - "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_01/option_label": T.LABEL - "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_02": T.PANEL - "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_02/option_label": T.LABEL - "option_generic_core/two_line_layout/option_label_panel/option_tooltip": T.PANEL - "option_generic_core/two_line_layout/spacer": T.PANEL - "option_generic_core/two_line_layout/option_descriptive_text_0": T.LABEL - "option_generic_core/two_line_layout/spacer2": T.PANEL - "option_generic_core/one_line_layout": T.PANEL - "option_generic_core/one_line_layout/option_label_subpanel_01": T.PANEL - "option_generic_core/one_line_layout/option_label_subpanel_01/option_label": T.LABEL - "option_generic_core/one_line_layout/option_label_subpanel_02": T.PANEL - "option_generic_core/one_line_layout/option_label_subpanel_02/option_label": T.LABEL - "option_generic_core/one_line_layout/option_descriptive_text": T.LABEL - "option_generic_core/one_line_layout/option_tooltip": T.PANEL - "option_generic_core/spacer": T.PANEL - option_generic_core_label: T.LABEL - option_generic_tooltip_image: T.IMAGE - option_generic_tooltip_top_popup: T.IMAGE - option_generic_tooltip_bottom_popup: T.IMAGE - option_generic_tooltip: T.PANEL - "option_generic_tooltip/focus_detection_input_panel_two_line_layout": T.TOOLTIP_TRIGGER - "option_generic_tooltip/hover_detection_input_panel": T.TOOLTIP_TRIGGER - "option_generic_tooltip/hover_detection_input_panel/option_generic_tooltip_image": T.IMAGE - "option_generic_tooltip/option_generic_tooltip_top_popup": T.IMAGE - "option_generic_tooltip/option_generic_tooltip_bottom_popup": T.IMAGE - option_text_edit_control: T.EDIT_BOX - option_text_edit_control_with_button: T.STACK_PANEL - "option_text_edit_control_with_button/text_box": T.EDIT_BOX - "option_text_edit_control_with_button/button": T.BUTTON - option_text_edit_control_with_text_button: T.STACK_PANEL - "option_text_edit_control_with_text_button/text_box": T.EDIT_BOX - "option_text_edit_control_with_text_button/button": T.BUTTON - option_toggle_state_template: T.IMAGE - option_toggle_on: T.IMAGE - option_toggle_off: T.IMAGE - option_toggle_on_hover: T.IMAGE - option_toggle_off_hover: T.IMAGE - option_toggle_on_locked: T.IMAGE - option_toggle_off_locked: T.IMAGE - option_toggle_control: T.TOGGLE - checkbox_visuals_unchecked: T.PANEL - checkbox_visuals_checked: T.PANEL - checkbox_visuals_unchecked_locked: T.PANEL - checkbox_visuals_checked_locked: T.PANEL - checkbox_visuals_unchecked_hover: T.PANEL - checkbox_visuals_checked_hover: T.PANEL - checkbox_visuals: T.PANEL - "checkbox_visuals/checkbox_image": T.IMAGE - "checkbox_visuals/checkbox_label": T.LABEL - "checkbox_visuals/accessibility_selection_highlight": T.IMAGE - checkbox_with_highlight_and_label: T.TOGGLE - radio_visuals_unchecked: T.PANEL - radio_visuals_checked: T.PANEL - radio_visuals_unchecked_locked: T.PANEL - radio_visuals_checked_locked: T.PANEL - radio_visuals_unchecked_hover: T.PANEL - radio_visuals_checked_hover: T.PANEL - radio_visuals: T.PANEL - "radio_visuals/radio_image": T.IMAGE - "radio_visuals/radio_label": T.LABEL - "radio_visuals/accessibility_selection_highlight": T.IMAGE - radio_with_label_core: T.TOGGLE - option_radio_group_control: T.STACK_PANEL - "option_radio_group_control/0": T.UNKNOWN - radio_with_label: T.PANEL - "radio_with_label/radio_with_label_core": T.TOGGLE - radio_with_label_and_icon: T.PANEL - "radio_with_label_and_icon/radio_with_label_core": T.TOGGLE - "radio_with_label_and_icon/radio_with_label_icon": T.IMAGE - radio_with_label_and_content_unchecked: T.PANEL - radio_with_label_and_content_checked: T.PANEL - radio_with_label_and_content_unchecked_locked: T.PANEL - radio_with_label_and_content_checked_locked: T.PANEL - radio_with_label_and_content_unchecked_hover: T.PANEL - radio_with_label_and_content_checked_hover: T.PANEL - radio_with_label_and_content_stack_item: T.PANEL - radio_with_label_and_content: T.PANEL - "radio_with_label_and_content/radio_background": T.IMAGE - "radio_with_label_and_content/radio_item_with_description_stack": T.STACK_PANEL - "radio_with_label_and_content/radio_item_with_description_stack/radio_icon_and_label": T.STACK_PANEL - "radio_with_label_and_content/radio_item_with_description_stack/radio_description": T.PANEL - radio_item_with_label_and_content_stack: T.STACK_PANEL - "radio_item_with_label_and_content_stack/initial_padding": T.PANEL - "radio_item_with_label_and_content_stack/radio_image_panel": T.PANEL - "radio_item_with_label_and_content_stack/radio_image_panel/image": T.IMAGE - "radio_item_with_label_and_content_stack/radio_to_content_padding": T.PANEL - "radio_item_with_label_and_content_stack/radio_content_panel": T.PANEL - "radio_item_with_label_and_content_stack/radio_content_panel/radio_image": T.UNKNOWN - "radio_item_with_label_and_content_stack/content_to_label_padding": T.PANEL - "radio_item_with_label_and_content_stack/radio_label_panel": T.PANEL - "radio_item_with_label_and_content_stack/radio_label_panel/radio_label": T.LABEL - radio_description_panel: T.PANEL - "radio_description_panel/description": T.LABEL - radio_description: T.LABEL - radio_item_with_label_and_content: T.PANEL - "radio_item_with_label_and_content/radio_with_label_core": T.TOGGLE - option_slider_control: T.PANEL - "option_slider_control/slider": T.SLIDER - default_options_dropdown_toggle_button_state_content: T.STACK_PANEL - "default_options_dropdown_toggle_button_state_content/left_padding": T.PANEL - "default_options_dropdown_toggle_button_state_content/option_content": T.UNKNOWN - "default_options_dropdown_toggle_button_state_content/option_content_padding": T.PANEL - "default_options_dropdown_toggle_button_state_content/label_panel": T.PANEL - "default_options_dropdown_toggle_button_state_content/label_panel/label": T.LABEL - "default_options_dropdown_toggle_button_state_content/arrow_panel": T.PANEL - "default_options_dropdown_toggle_button_state_content/arrow_panel/dropdown_chevron_image": T.IMAGE - "default_options_dropdown_toggle_button_state_content/right_padding": T.PANEL - options_dropdown_toggle_control: T.TOGGLE - options_dropdown_dark_toggle_control: T.TOGGLE - option_dropdown_control: T.PANEL - "option_dropdown_control/dropdown": T.UNKNOWN - option_dropdown_control_no_scroll: T.PANEL - option_info_label_with_icon: T.IMAGE - "option_info_label_with_icon/control": T.LABEL - "option_info_label_with_icon/icon_panel": T.STACK_PANEL - "option_info_label_with_icon/icon_panel/icon_image": T.IMAGE - "option_info_label_with_icon/icon_panel/padding2": T.PANEL - option_info_label_icon: T.PANEL - option_icon_label: T.PANEL - option_info_label_with_bulb: T.IMAGE - "option_info_label_with_bulb/stack_panel": T.STACK_PANEL - "option_info_label_with_bulb/stack_panel/padding1": T.PANEL - "option_info_label_with_bulb/stack_panel/bulb_panel": T.STACK_PANEL - "option_info_label_with_bulb/stack_panel/bulb_panel/padding1": T.PANEL - "option_info_label_with_bulb/stack_panel/bulb_panel/bulb_image": T.IMAGE - "option_info_label_with_bulb/stack_panel/bulb_panel/padding2": T.PANEL - "option_info_label_with_bulb/stack_panel/padding2": T.PANEL - "option_info_label_with_bulb/stack_panel/label_panel": T.STACK_PANEL - "option_info_label_with_bulb/stack_panel/label_panel/info_label1": T.LABEL - "option_info_label_with_bulb/stack_panel/label_panel/padding2": T.PANEL - "option_info_label_with_bulb/stack_panel/label_panel/info_label2": T.LABEL - "option_info_label_with_bulb/stack_panel/padding3": T.PANEL - option_info_label_with_image: T.IMAGE - "option_info_label_with_image/control": T.LABEL - option_info_label_image: T.PANEL - option_toggle: T.PANEL - option_radio_group: T.PANEL - option_radio_dropdown_group: T.PANEL - "option_radio_dropdown_group/radio_control_group": T.STACK_PANEL - option_text_edit: T.PANEL - option_text_edit_with_button: T.PANEL - option_text_edit_with_text_button: T.PANEL - option_slider: T.PANEL - option_dropdown: T.PANEL - option_dropdown_no_scroll: T.PANEL - option_custom_control: T.PANEL - option_info_label: T.PANEL - dynamic_dialog_screen: T.SCREEN - settings_content: T.PANEL - "settings_content/background": T.IMAGE - "settings_content/stack_panel": T.STACK_PANEL - "settings_content/stack_panel/content_panel": T.PANEL - "settings_content/stack_panel/content_panel/common_panel": T.STACK_PANEL - "settings_content/stack_panel/content_panel/container": T.PANEL - "settings_content/popup_dialog_factory": T.FACTORY - toggle_button_control: T.PANEL - "toggle_button_control/glyph": T.IMAGE - "toggle_button_control/glyph_color": T.IMAGE - "toggle_button_control/progress_loading_bars": T.IMAGE - "toggle_button_control/tab_button_text": T.LABEL - section_toggle_base: T.PANEL - section_title_label: T.LABEL - dialog_title_label: T.LABEL - dialog_titles: T.STACK_PANEL - "dialog_titles/left_padding": T.PANEL - "dialog_titles/dialog_title_label": T.LABEL - "dialog_titles/center_padding": T.PANEL - "dialog_titles/section_title_label": T.LABEL - "dialog_titles/right_padding_is_always_right": T.PANEL - dialog_content: T.PANEL - "dialog_content/dialog_titles": T.STACK_PANEL - "dialog_content/selector_area": T.PANEL - "dialog_content/content_area": T.PANEL - "dialog_content/section_divider": T.IMAGE - selector_group_label: T.LABEL - scrollable_selector_area_content: T.PANEL - selector_area: T.PANEL - "selector_area/scrolling_panel": T.PANEL - content_area: T.PANEL - "content_area/control": T.STACK_PANEL - "content_area/control/header_panel": T.PANEL - "content_area/control/header_panel/content": T.UNKNOWN - "content_area/control/scrolling_panel": T.PANEL - "content_area/control/footer_panel": T.PANEL - "content_area/control/footer_panel/content": T.UNKNOWN - section_divider: T.IMAGE - screen_base: T.SCREEN + "arrow_image": T.IMAGE, + "subsection_title": T.STACK_PANEL, + "subsection_title/spacer_0": T.PANEL, + "subsection_title/sizer_0": T.PANEL, + "subsection_title/sizer_0/title": T.LABEL, + "subsection_title/spacer_1": T.PANEL, + "subsection_title/sizer_1": T.PANEL, + "subsection_title/sizer_1/section_divider": T.IMAGE, + "action_button": T.BUTTON, + "action_button_dark_text": T.BUTTON, + "link_button": T.BUTTON, + "option_group_label": T.PANEL, + "option_group_label/text": T.LABEL, + "option_group_header": T.PANEL, + "option_group_header/text": T.PANEL, + "option_group_spaced_label": T.PANEL, + "option_group_spaced_label/text": T.PANEL, + "option_group_spaced_header": T.PANEL, + "option_group_spaced_header/text": T.PANEL, + "option_group_section_divider": T.PANEL, + "option_group_section_divider/background": T.IMAGE, + "option_generic": T.PANEL, + "option_generic/option_generic_core": T.STACK_PANEL, + "white_label": T.LABEL, + "option_generic_core": T.STACK_PANEL, + "option_generic_core/two_line_layout": T.STACK_PANEL, + "option_generic_core/two_line_layout/option_label_panel": T.PANEL, + "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_01": T.PANEL, + "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_01/option_label": T.LABEL, + "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_02": T.PANEL, + "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_02/option_label": T.LABEL, + "option_generic_core/two_line_layout/option_label_panel/option_tooltip": T.PANEL, + "option_generic_core/two_line_layout/spacer": T.PANEL, + "option_generic_core/two_line_layout/option_descriptive_text_0": T.LABEL, + "option_generic_core/two_line_layout/spacer2": T.PANEL, + "option_generic_core/one_line_layout": T.PANEL, + "option_generic_core/one_line_layout/option_label_subpanel_01": T.PANEL, + "option_generic_core/one_line_layout/option_label_subpanel_01/option_label": T.LABEL, + "option_generic_core/one_line_layout/option_label_subpanel_02": T.PANEL, + "option_generic_core/one_line_layout/option_label_subpanel_02/option_label": T.LABEL, + "option_generic_core/one_line_layout/option_descriptive_text": T.LABEL, + "option_generic_core/one_line_layout/option_tooltip": T.PANEL, + "option_generic_core/spacer": T.PANEL, + "option_generic_core_label": T.LABEL, + "option_generic_tooltip_image": T.IMAGE, + "option_generic_tooltip_top_popup": T.IMAGE, + "option_generic_tooltip_bottom_popup": T.IMAGE, + "option_generic_tooltip": T.PANEL, + "option_generic_tooltip/focus_detection_input_panel_two_line_layout": T.TOOLTIP_TRIGGER, + "option_generic_tooltip/hover_detection_input_panel": T.TOOLTIP_TRIGGER, + "option_generic_tooltip/hover_detection_input_panel/option_generic_tooltip_image": T.IMAGE, + "option_generic_tooltip/option_generic_tooltip_top_popup": T.IMAGE, + "option_generic_tooltip/option_generic_tooltip_bottom_popup": T.IMAGE, + "option_text_edit_control": T.EDIT_BOX, + "option_text_edit_control_with_button": T.STACK_PANEL, + "option_text_edit_control_with_button/text_box": T.EDIT_BOX, + "option_text_edit_control_with_button/button": T.BUTTON, + "option_text_edit_control_with_text_button": T.STACK_PANEL, + "option_text_edit_control_with_text_button/text_box": T.EDIT_BOX, + "option_text_edit_control_with_text_button/button": T.BUTTON, + "option_toggle_state_template": T.IMAGE, + "option_toggle_on": T.IMAGE, + "option_toggle_off": T.IMAGE, + "option_toggle_on_hover": T.IMAGE, + "option_toggle_off_hover": T.IMAGE, + "option_toggle_on_locked": T.IMAGE, + "option_toggle_off_locked": T.IMAGE, + "option_toggle_control": T.TOGGLE, + "checkbox_visuals_unchecked": T.PANEL, + "checkbox_visuals_checked": T.PANEL, + "checkbox_visuals_unchecked_locked": T.PANEL, + "checkbox_visuals_checked_locked": T.PANEL, + "checkbox_visuals_unchecked_hover": T.PANEL, + "checkbox_visuals_checked_hover": T.PANEL, + "checkbox_visuals": T.PANEL, + "checkbox_visuals/checkbox_image": T.IMAGE, + "checkbox_visuals/checkbox_label": T.LABEL, + "checkbox_visuals/accessibility_selection_highlight": T.IMAGE, + "checkbox_with_highlight_and_label": T.TOGGLE, + "radio_visuals_unchecked": T.PANEL, + "radio_visuals_checked": T.PANEL, + "radio_visuals_unchecked_locked": T.PANEL, + "radio_visuals_checked_locked": T.PANEL, + "radio_visuals_unchecked_hover": T.PANEL, + "radio_visuals_checked_hover": T.PANEL, + "radio_visuals": T.PANEL, + "radio_visuals/radio_image": T.IMAGE, + "radio_visuals/radio_label": T.LABEL, + "radio_visuals/accessibility_selection_highlight": T.IMAGE, + "radio_with_label_core": T.TOGGLE, + "option_radio_group_control": T.STACK_PANEL, + "option_radio_group_control/0": T.UNKNOWN, + "radio_with_label": T.PANEL, + "radio_with_label/radio_with_label_core": T.TOGGLE, + "radio_with_label_and_icon": T.PANEL, + "radio_with_label_and_icon/radio_with_label_core": T.TOGGLE, + "radio_with_label_and_icon/radio_with_label_icon": T.IMAGE, + "radio_with_label_and_content_unchecked": T.PANEL, + "radio_with_label_and_content_checked": T.PANEL, + "radio_with_label_and_content_unchecked_locked": T.PANEL, + "radio_with_label_and_content_checked_locked": T.PANEL, + "radio_with_label_and_content_unchecked_hover": T.PANEL, + "radio_with_label_and_content_checked_hover": T.PANEL, + "radio_with_label_and_content_stack_item": T.PANEL, + "radio_with_label_and_content": T.PANEL, + "radio_with_label_and_content/radio_background": T.IMAGE, + "radio_with_label_and_content/radio_item_with_description_stack": T.STACK_PANEL, + "radio_with_label_and_content/radio_item_with_description_stack/radio_icon_and_label": T.STACK_PANEL, + "radio_with_label_and_content/radio_item_with_description_stack/radio_description": T.PANEL, + "radio_item_with_label_and_content_stack": T.STACK_PANEL, + "radio_item_with_label_and_content_stack/initial_padding": T.PANEL, + "radio_item_with_label_and_content_stack/radio_image_panel": T.PANEL, + "radio_item_with_label_and_content_stack/radio_image_panel/image": T.IMAGE, + "radio_item_with_label_and_content_stack/radio_to_content_padding": T.PANEL, + "radio_item_with_label_and_content_stack/radio_content_panel": T.PANEL, + "radio_item_with_label_and_content_stack/radio_content_panel/radio_image": T.UNKNOWN, + "radio_item_with_label_and_content_stack/content_to_label_padding": T.PANEL, + "radio_item_with_label_and_content_stack/radio_label_panel": T.PANEL, + "radio_item_with_label_and_content_stack/radio_label_panel/radio_label": T.LABEL, + "radio_description_panel": T.PANEL, + "radio_description_panel/description": T.LABEL, + "radio_description": T.LABEL, + "radio_item_with_label_and_content": T.PANEL, + "radio_item_with_label_and_content/radio_with_label_core": T.TOGGLE, + "option_slider_control": T.PANEL, + "option_slider_control/slider": T.SLIDER, + "default_options_dropdown_toggle_button_state_content": T.STACK_PANEL, + "default_options_dropdown_toggle_button_state_content/left_padding": T.PANEL, + "default_options_dropdown_toggle_button_state_content/option_content": T.UNKNOWN, + "default_options_dropdown_toggle_button_state_content/option_content_padding": T.PANEL, + "default_options_dropdown_toggle_button_state_content/label_panel": T.PANEL, + "default_options_dropdown_toggle_button_state_content/label_panel/label": T.LABEL, + "default_options_dropdown_toggle_button_state_content/arrow_panel": T.PANEL, + "default_options_dropdown_toggle_button_state_content/arrow_panel/dropdown_chevron_image": T.IMAGE, + "default_options_dropdown_toggle_button_state_content/right_padding": T.PANEL, + "options_dropdown_toggle_control": T.TOGGLE, + "options_dropdown_dark_toggle_control": T.TOGGLE, + "option_dropdown_control": T.PANEL, + "option_dropdown_control/dropdown": T.UNKNOWN, + "option_dropdown_control_no_scroll": T.PANEL, + "option_info_label_with_icon": T.IMAGE, + "option_info_label_with_icon/control": T.LABEL, + "option_info_label_with_icon/icon_panel": T.STACK_PANEL, + "option_info_label_with_icon/icon_panel/icon_image": T.IMAGE, + "option_info_label_with_icon/icon_panel/padding2": T.PANEL, + "option_info_label_icon": T.PANEL, + "option_icon_label": T.PANEL, + "option_info_label_with_bulb": T.IMAGE, + "option_info_label_with_bulb/stack_panel": T.STACK_PANEL, + "option_info_label_with_bulb/stack_panel/padding1": T.PANEL, + "option_info_label_with_bulb/stack_panel/bulb_panel": T.STACK_PANEL, + "option_info_label_with_bulb/stack_panel/bulb_panel/padding1": T.PANEL, + "option_info_label_with_bulb/stack_panel/bulb_panel/bulb_image": T.IMAGE, + "option_info_label_with_bulb/stack_panel/bulb_panel/padding2": T.PANEL, + "option_info_label_with_bulb/stack_panel/padding2": T.PANEL, + "option_info_label_with_bulb/stack_panel/label_panel": T.STACK_PANEL, + "option_info_label_with_bulb/stack_panel/label_panel/info_label1": T.LABEL, + "option_info_label_with_bulb/stack_panel/label_panel/padding2": T.PANEL, + "option_info_label_with_bulb/stack_panel/label_panel/info_label2": T.LABEL, + "option_info_label_with_bulb/stack_panel/padding3": T.PANEL, + "option_info_label_with_image": T.IMAGE, + "option_info_label_with_image/control": T.LABEL, + "option_info_label_image": T.PANEL, + "option_toggle": T.PANEL, + "option_radio_group": T.PANEL, + "option_radio_dropdown_group": T.PANEL, + "option_radio_dropdown_group/radio_control_group": T.STACK_PANEL, + "option_text_edit": T.PANEL, + "option_text_edit_with_button": T.PANEL, + "option_text_edit_with_text_button": T.PANEL, + "option_slider": T.PANEL, + "option_dropdown": T.PANEL, + "option_dropdown_no_scroll": T.PANEL, + "option_custom_control": T.PANEL, + "option_info_label": T.PANEL, + "dynamic_dialog_screen": T.SCREEN, + "settings_content": T.PANEL, + "settings_content/background": T.IMAGE, + "settings_content/stack_panel": T.STACK_PANEL, + "settings_content/stack_panel/content_panel": T.PANEL, + "settings_content/stack_panel/content_panel/common_panel": T.STACK_PANEL, + "settings_content/stack_panel/content_panel/container": T.PANEL, + "settings_content/popup_dialog_factory": T.FACTORY, + "toggle_button_control": T.PANEL, + "toggle_button_control/glyph": T.IMAGE, + "toggle_button_control/glyph_color": T.IMAGE, + "toggle_button_control/progress_loading_bars": T.IMAGE, + "toggle_button_control/tab_button_text": T.LABEL, + "section_toggle_base": T.PANEL, + "section_title_label": T.LABEL, + "dialog_title_label": T.LABEL, + "dialog_titles": T.STACK_PANEL, + "dialog_titles/left_padding": T.PANEL, + "dialog_titles/dialog_title_label": T.LABEL, + "dialog_titles/center_padding": T.PANEL, + "dialog_titles/section_title_label": T.LABEL, + "dialog_titles/right_padding_is_always_right": T.PANEL, + "dialog_content": T.PANEL, + "dialog_content/dialog_titles": T.STACK_PANEL, + "dialog_content/selector_area": T.PANEL, + "dialog_content/content_area": T.PANEL, + "dialog_content/section_divider": T.IMAGE, + "selector_group_label": T.LABEL, + "scrollable_selector_area_content": T.PANEL, + "selector_area": T.PANEL, + "selector_area/scrolling_panel": T.PANEL, + "content_area": T.PANEL, + "content_area/control": T.STACK_PANEL, + "content_area/control/header_panel": T.PANEL, + "content_area/control/header_panel/content": T.UNKNOWN, + "content_area/control/scrolling_panel": T.PANEL, + "content_area/control/footer_panel": T.PANEL, + "content_area/control/footer_panel/content": T.UNKNOWN, + "section_divider": T.IMAGE, + "screen_base": T.SCREEN, } export type WorldSectionType = { - selector_pane_content: T.STACK_PANEL - "selector_pane_content/world_snapshot_image": T.PANEL - "selector_pane_content/world_snapshot_image/thumbnail": T.IMAGE - "selector_pane_content/world_snapshot_image/thumbnail/border": T.IMAGE - "selector_pane_content/play_or_create_panel": T.STACK_PANEL - "selector_pane_content/play_or_host_panel": T.STACK_PANEL - "selector_pane_content/spacer": T.PANEL - "selector_pane_content/server_settings_visibility_panel": T.STACK_PANEL - "selector_pane_content/server_settings_visibility_panel/selector_group_label_0": T.LABEL - "selector_pane_content/server_settings_visibility_panel/server_settings_button": T.PANEL - "selector_pane_content/server_settings_visibility_panel/server_spacer": T.PANEL - "selector_pane_content/selector_group_label_1": T.LABEL - "selector_pane_content/game_button": T.PANEL - "selector_pane_content/spacer_01": T.PANEL - "selector_pane_content/classroom_button": T.PANEL - "selector_pane_content/spacer_02": T.PANEL - "selector_pane_content/switch_game_button": T.PANEL - "selector_pane_content/spacer_03": T.PANEL - "selector_pane_content/multiplayer_button": T.PANEL - "selector_pane_content/spacer_04": T.PANEL - "selector_pane_content/edu_cloud_button": T.PANEL - "selector_pane_content/spacer_05": T.PANEL - "selector_pane_content/debug_button": T.PANEL - launch_world_button_stack_def: T.STACK_PANEL - play_or_create_stack_bedrock: T.STACK_PANEL - "play_or_create_stack_bedrock/create_or_play_button": T.BUTTON - "play_or_create_stack_bedrock/play_on_realm_button": T.BUTTON - edu_play_host_button: T.BUTTON - play_or_host_stack_edu: T.STACK_PANEL - "play_or_host_stack_edu/edu_play_button": T.BUTTON - "play_or_host_stack_edu/edu_host_button": T.BUTTON - addons_selector_panel: T.STACK_PANEL - "addons_selector_panel/spacer_01": T.PANEL - "addons_selector_panel/selector_group_label_2": T.LABEL - "addons_selector_panel/level_texture_pack_button": T.PANEL - "addons_selector_panel/spacer_02": T.PANEL - "addons_selector_panel/addon_button": T.PANEL - server_settings_button: T.PANEL - server_section: T.STACK_PANEL - game_button: T.PANEL - export_world_button: T.BUTTON - delete_world_button: T.BUTTON - export_template_button: T.BUTTON - copy_world_button: T.BUTTON - edit_world_manipulation_buttons: T.STACK_PANEL - "edit_world_manipulation_buttons/export": T.BUTTON - "edit_world_manipulation_buttons/padding": T.PANEL - "edit_world_manipulation_buttons/delete": T.BUTTON - game_section: T.STACK_PANEL - "game_section/new_edit_world_opt_in_panel": T.STACK_PANEL - "game_section/new_edit_world_opt_in_panel/panel_title": T.PANEL - "game_section/new_edit_world_opt_in_panel/panel_text": T.PANEL - "game_section/new_edit_world_opt_in_panel/opt_in_button": T.BUTTON - "game_section/new_edit_world_opt_in_divider": T.PANEL - "game_section/new_edit_world_opt_in_divider/section_divider": T.IMAGE - "game_section/unlock_template_options_panel": T.STACK_PANEL - "game_section/unlock_template_options_panel/option_info_label": T.PANEL - "game_section/unlock_template_options_panel/unlock_template_options_button": T.BUTTON - "game_section/option_info_label": T.PANEL - "game_section/hardcore_info_label": T.PANEL - "game_section/world_settings_label": T.PANEL - "game_section/option_text_edit_0": T.PANEL - "game_section/project_section_divider_1": T.IMAGE - "game_section/project_header_label": T.PANEL - "game_section/project_section_divider_2": T.IMAGE - "game_section/project_spacer": T.PANEL - "game_section/option_text_edit_1": T.PANEL - "game_section/export_settings_section_divider_1": T.IMAGE - "game_section/export_settings_header_label": T.PANEL - "game_section/export_settings_header_description": T.PANEL - "game_section/export_settings_section_divider_2": T.IMAGE - "game_section/export_settings_spacer": T.PANEL - "game_section/option_dropdown_0": T.PANEL - "game_section/option_dropdown_1": T.PANEL - "game_section/is_hardcore_toggle": T.PANEL - "game_section/option_dropdown_2": T.PANEL - "game_section/world_preferences_label": T.PANEL - "game_section/starting_map_toggle": T.PANEL - "game_section/bonus_chest_toggle": T.PANEL - "game_section/option_dropdown_permissions": T.PANEL - "game_section/option_dropdown_3": T.PANEL - "game_section/level_seed_selector_edu": T.PANEL - "game_section/level_seed_selector": T.PANEL - "game_section/level_seed_selector_trial": T.PANEL - "game_section/server_sim_distance_slider": T.PANEL - "game_section/world_options_label": T.PANEL - "game_section/pvp_toggle": T.PANEL - "game_section/show_coordinates_toggle": T.PANEL - "game_section/locator_bar_toggle": T.PANEL - "game_section/show_days_played_toggle": T.PANEL - "game_section/fire_spreads_toggle": T.PANEL - "game_section/recipes_unlock_toggle": T.PANEL - "game_section/tnt_explodes_toggle": T.PANEL - "game_section/respawn_blocks_explode_toggle": T.PANEL - "game_section/mob_loot_toggle": T.PANEL - "game_section/natural_regeneration_toggle": T.PANEL - "game_section/tile_drops_toggle": T.PANEL - "game_section/player_sleep_toggle": T.PANEL - "game_section/player_sleep_percentage_slider": T.PANEL - "game_section/immediate_respawn_toggle": T.PANEL - "game_section/respawn_radius": T.PANEL - "game_section/experimental_toggles_label": T.PANEL - "game_section/experimental_toggles_label_info": T.PANEL - "game_section/experimental_toggles": T.STACK_PANEL - "game_section/world_cheats_label": T.PANEL - "game_section/allow_cheats_toggle": T.PANEL - "game_section/education_toggle": T.PANEL - "game_section/always_day_toggle": T.PANEL - "game_section/daylight_cycle_toggle": T.PANEL - "game_section/keep_inventory_toggle": T.PANEL - "game_section/mob_spawn_toggle": T.PANEL - "game_section/mob_griefing_toggle": T.PANEL - "game_section/entities_drop_loot_toggle": T.PANEL - "game_section/weather_cycle_toggle": T.PANEL - "game_section/command_blocks_enabled_toggle": T.PANEL - "game_section/random_tick_speed": T.PANEL - "game_section/world_management_label": T.PANEL - "game_section/convert_to_infinite_panel": T.PANEL - "game_section/convert_to_infinite_panel/convert_to_infinite_button": T.BUTTON - "game_section/delete_button": T.BUTTON - "game_section/button_panel": T.PANEL - "game_section/button_panel/manipulation_controls": T.UNKNOWN - "game_section/export_template_panel": T.STACK_PANEL - "game_section/export_template_panel/padding": T.PANEL - "game_section/export_template_panel/template_version": T.PANEL - "game_section/export_template_panel/template_buttons": T.STACK_PANEL - "game_section/export_template_panel/template_buttons/template_image_picker_button": T.BUTTON - "game_section/export_template_panel/template_buttons/padding": T.PANEL - "game_section/export_template_panel/template_buttons/template_localization_picker_button": T.BUTTON - "game_section/export_template_panel/export_template": T.BUTTON - "game_section/clear_player_data_panel": T.STACK_PANEL - "game_section/clear_player_data_panel/padding": T.PANEL - "game_section/clear_player_data_panel/clear_player_data_button": T.BUTTON - "game_section/copy_world_panel": T.PANEL - "game_section/copy_world_panel/copy_world": T.BUTTON - "game_section/upload_download_slot_panel": T.PANEL - "game_section/upload_download_slot_panel/upload_download_slot_button": T.BUTTON - "game_section/replace_slot_panel": T.PANEL - "game_section/replace_slot_panel/replace_slot_button": T.BUTTON - level_texture_pack_button: T.PANEL - level_texture_pack_section: T.STACK_PANEL - addon_button: T.PANEL - addon_section: T.STACK_PANEL - world_game_mode_dropdown_content: T.PANEL - xbl_broadcast_dropdown_content: T.PANEL - platform_broadcast_dropdown_content: T.PANEL - player_game_mode_dropdown_content: T.PANEL - world_type_dropdown_content: T.PANEL - world_difficulty_dropdown_content: T.PANEL - multiplayer_button: T.PANEL - cross_platform_warning_label: T.LABEL - multiplayer_section: T.STACK_PANEL - "multiplayer_section/multiplayer_game_toggle": T.PANEL - "multiplayer_section/platform_settings_dropdown": T.PANEL - "multiplayer_section/xbl_settings_dropdown": T.PANEL - "multiplayer_section/server_visible_toggle": T.PANEL - "multiplayer_section/general_multiplayer_warning_label": T.LABEL - "multiplayer_section/open_uri_button": T.BUTTON - "multiplayer_section/platform_multiplayer_warning_label": T.LABEL - "multiplayer_section/xbl_multiplayer_warning_label": T.LABEL - option_text_edit_mock_with_button: T.PANEL - option_text_edit_mock_control_with_button: T.STACK_PANEL - "option_text_edit_mock_control_with_button/trial_text_box_button": T.BUTTON - "option_text_edit_mock_control_with_button/seed_arrow_button": T.BUTTON - experimental_toggle: T.PANEL - open_account_setting_button: T.BUTTON - edu_cloud_button: T.PANEL - edu_cloud_section: T.STACK_PANEL - "edu_cloud_section/edu_cloud_label": T.PANEL - "edu_cloud_section/cloud_file_name": T.PANEL - "edu_cloud_section/cloud_file_last_changed": T.PANEL - "edu_cloud_section/cloud_upload_toggle": T.PANEL - "edu_cloud_section/cloud_help_wrapper_panel": T.STACK_PANEL - "edu_cloud_section/cloud_help_wrapper_panel/cloud_help_button": T.BUTTON - "edu_cloud_section/cloud_help_wrapper_panel/padded_icon": T.PANEL - "edu_cloud_section/cloud_help_wrapper_panel/padded_icon/icon": T.IMAGE - debug_button: T.PANEL - debug_section: T.STACK_PANEL - "debug_section/flat_nether_toggle": T.PANEL - "debug_section/game_version_override_toggle": T.PANEL - "debug_section/game_version_override_textbox": T.PANEL - "debug_section/spawn_dimension_dropdown": T.PANEL - "debug_section/spawn_biome_dropdown": T.PANEL - "debug_section/biome_override_dropdown": T.PANEL - "debug_section/base_game_version_debug_text": T.LABEL - debug_spawn_dimension_dropdown_content: T.PANEL - debug_spawn_biome_dropdown_content: T.PANEL - debug_biome_override_dropdown_content: T.PANEL - editor_edit_world_manipulation_buttons_content: T.STACK_PANEL - "editor_edit_world_manipulation_buttons_content/export_as_project": T.BUTTON - "editor_edit_world_manipulation_buttons_content/padding": T.PANEL - "editor_edit_world_manipulation_buttons_content/export_as_world_buttons": T.STACK_PANEL - "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/export_as_world": T.BUTTON - "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/padding": T.PANEL - "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/export_as_template": T.BUTTON - "editor_edit_world_manipulation_buttons_content/padding_2": T.PANEL - "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons": T.STACK_PANEL - "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/copy_project": T.BUTTON - "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/padding": T.PANEL - "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/delete_project": T.BUTTON - editor_edit_world_manipulation_buttons: T.PANEL + "selector_pane_content": T.STACK_PANEL, + "selector_pane_content/world_snapshot_image": T.PANEL, + "selector_pane_content/world_snapshot_image/thumbnail": T.IMAGE, + "selector_pane_content/world_snapshot_image/thumbnail/border": T.IMAGE, + "selector_pane_content/play_or_create_panel": T.STACK_PANEL, + "selector_pane_content/play_or_host_panel": T.STACK_PANEL, + "selector_pane_content/spacer": T.PANEL, + "selector_pane_content/server_settings_visibility_panel": T.STACK_PANEL, + "selector_pane_content/server_settings_visibility_panel/selector_group_label_0": T.LABEL, + "selector_pane_content/server_settings_visibility_panel/server_settings_button": T.PANEL, + "selector_pane_content/server_settings_visibility_panel/server_spacer": T.PANEL, + "selector_pane_content/selector_group_label_1": T.LABEL, + "selector_pane_content/game_button": T.PANEL, + "selector_pane_content/spacer_01": T.PANEL, + "selector_pane_content/classroom_button": T.PANEL, + "selector_pane_content/spacer_02": T.PANEL, + "selector_pane_content/switch_game_button": T.PANEL, + "selector_pane_content/spacer_03": T.PANEL, + "selector_pane_content/multiplayer_button": T.PANEL, + "selector_pane_content/spacer_04": T.PANEL, + "selector_pane_content/edu_cloud_button": T.PANEL, + "selector_pane_content/spacer_05": T.PANEL, + "selector_pane_content/debug_button": T.PANEL, + "launch_world_button_stack_def": T.STACK_PANEL, + "play_or_create_stack_bedrock": T.STACK_PANEL, + "play_or_create_stack_bedrock/create_or_play_button": T.BUTTON, + "play_or_create_stack_bedrock/play_on_realm_button": T.BUTTON, + "edu_play_host_button": T.BUTTON, + "play_or_host_stack_edu": T.STACK_PANEL, + "play_or_host_stack_edu/edu_play_button": T.BUTTON, + "play_or_host_stack_edu/edu_host_button": T.BUTTON, + "addons_selector_panel": T.STACK_PANEL, + "addons_selector_panel/spacer_01": T.PANEL, + "addons_selector_panel/selector_group_label_2": T.LABEL, + "addons_selector_panel/level_texture_pack_button": T.PANEL, + "addons_selector_panel/spacer_02": T.PANEL, + "addons_selector_panel/addon_button": T.PANEL, + "server_settings_button": T.PANEL, + "server_section": T.STACK_PANEL, + "game_button": T.PANEL, + "export_world_button": T.BUTTON, + "delete_world_button": T.BUTTON, + "export_template_button": T.BUTTON, + "copy_world_button": T.BUTTON, + "edit_world_manipulation_buttons": T.STACK_PANEL, + "edit_world_manipulation_buttons/export": T.BUTTON, + "edit_world_manipulation_buttons/padding": T.PANEL, + "edit_world_manipulation_buttons/delete": T.BUTTON, + "game_section": T.STACK_PANEL, + "game_section/new_edit_world_opt_in_panel": T.STACK_PANEL, + "game_section/new_edit_world_opt_in_panel/panel_title": T.PANEL, + "game_section/new_edit_world_opt_in_panel/panel_text": T.PANEL, + "game_section/new_edit_world_opt_in_panel/opt_in_button": T.BUTTON, + "game_section/new_edit_world_opt_in_divider": T.PANEL, + "game_section/new_edit_world_opt_in_divider/section_divider": T.IMAGE, + "game_section/unlock_template_options_panel": T.STACK_PANEL, + "game_section/unlock_template_options_panel/option_info_label": T.PANEL, + "game_section/unlock_template_options_panel/unlock_template_options_button": T.BUTTON, + "game_section/option_info_label": T.PANEL, + "game_section/hardcore_info_label": T.PANEL, + "game_section/world_settings_label": T.PANEL, + "game_section/option_text_edit_0": T.PANEL, + "game_section/project_section_divider_1": T.IMAGE, + "game_section/project_header_label": T.PANEL, + "game_section/project_section_divider_2": T.IMAGE, + "game_section/project_spacer": T.PANEL, + "game_section/option_text_edit_1": T.PANEL, + "game_section/export_settings_section_divider_1": T.IMAGE, + "game_section/export_settings_header_label": T.PANEL, + "game_section/export_settings_header_description": T.PANEL, + "game_section/export_settings_section_divider_2": T.IMAGE, + "game_section/export_settings_spacer": T.PANEL, + "game_section/option_dropdown_0": T.PANEL, + "game_section/option_dropdown_1": T.PANEL, + "game_section/is_hardcore_toggle": T.PANEL, + "game_section/option_dropdown_2": T.PANEL, + "game_section/world_preferences_label": T.PANEL, + "game_section/starting_map_toggle": T.PANEL, + "game_section/bonus_chest_toggle": T.PANEL, + "game_section/option_dropdown_permissions": T.PANEL, + "game_section/option_dropdown_3": T.PANEL, + "game_section/level_seed_selector_edu": T.PANEL, + "game_section/level_seed_selector": T.PANEL, + "game_section/level_seed_selector_trial": T.PANEL, + "game_section/server_sim_distance_slider": T.PANEL, + "game_section/world_options_label": T.PANEL, + "game_section/pvp_toggle": T.PANEL, + "game_section/show_coordinates_toggle": T.PANEL, + "game_section/locator_bar_toggle": T.PANEL, + "game_section/show_days_played_toggle": T.PANEL, + "game_section/fire_spreads_toggle": T.PANEL, + "game_section/recipes_unlock_toggle": T.PANEL, + "game_section/tnt_explodes_toggle": T.PANEL, + "game_section/respawn_blocks_explode_toggle": T.PANEL, + "game_section/mob_loot_toggle": T.PANEL, + "game_section/natural_regeneration_toggle": T.PANEL, + "game_section/tile_drops_toggle": T.PANEL, + "game_section/player_sleep_toggle": T.PANEL, + "game_section/player_sleep_percentage_slider": T.PANEL, + "game_section/immediate_respawn_toggle": T.PANEL, + "game_section/respawn_radius": T.PANEL, + "game_section/experimental_toggles_label": T.PANEL, + "game_section/experimental_toggles_label_info": T.PANEL, + "game_section/experimental_toggles": T.STACK_PANEL, + "game_section/world_cheats_label": T.PANEL, + "game_section/allow_cheats_toggle": T.PANEL, + "game_section/education_toggle": T.PANEL, + "game_section/always_day_toggle": T.PANEL, + "game_section/daylight_cycle_toggle": T.PANEL, + "game_section/keep_inventory_toggle": T.PANEL, + "game_section/mob_spawn_toggle": T.PANEL, + "game_section/mob_griefing_toggle": T.PANEL, + "game_section/entities_drop_loot_toggle": T.PANEL, + "game_section/weather_cycle_toggle": T.PANEL, + "game_section/command_blocks_enabled_toggle": T.PANEL, + "game_section/random_tick_speed": T.PANEL, + "game_section/world_management_label": T.PANEL, + "game_section/convert_to_infinite_panel": T.PANEL, + "game_section/convert_to_infinite_panel/convert_to_infinite_button": T.BUTTON, + "game_section/delete_button": T.BUTTON, + "game_section/button_panel": T.PANEL, + "game_section/button_panel/manipulation_controls": T.UNKNOWN, + "game_section/export_template_panel": T.STACK_PANEL, + "game_section/export_template_panel/padding": T.PANEL, + "game_section/export_template_panel/template_version": T.PANEL, + "game_section/export_template_panel/template_buttons": T.STACK_PANEL, + "game_section/export_template_panel/template_buttons/template_image_picker_button": T.BUTTON, + "game_section/export_template_panel/template_buttons/padding": T.PANEL, + "game_section/export_template_panel/template_buttons/template_localization_picker_button": T.BUTTON, + "game_section/export_template_panel/export_template": T.BUTTON, + "game_section/clear_player_data_panel": T.STACK_PANEL, + "game_section/clear_player_data_panel/padding": T.PANEL, + "game_section/clear_player_data_panel/clear_player_data_button": T.BUTTON, + "game_section/copy_world_panel": T.PANEL, + "game_section/copy_world_panel/copy_world": T.BUTTON, + "game_section/upload_download_slot_panel": T.PANEL, + "game_section/upload_download_slot_panel/upload_download_slot_button": T.BUTTON, + "game_section/replace_slot_panel": T.PANEL, + "game_section/replace_slot_panel/replace_slot_button": T.BUTTON, + "level_texture_pack_button": T.PANEL, + "level_texture_pack_section": T.STACK_PANEL, + "addon_button": T.PANEL, + "addon_section": T.STACK_PANEL, + "world_game_mode_dropdown_content": T.PANEL, + "xbl_broadcast_dropdown_content": T.PANEL, + "platform_broadcast_dropdown_content": T.PANEL, + "player_game_mode_dropdown_content": T.PANEL, + "world_type_dropdown_content": T.PANEL, + "world_difficulty_dropdown_content": T.PANEL, + "multiplayer_button": T.PANEL, + "cross_platform_warning_label": T.LABEL, + "multiplayer_section": T.STACK_PANEL, + "multiplayer_section/multiplayer_game_toggle": T.PANEL, + "multiplayer_section/platform_settings_dropdown": T.PANEL, + "multiplayer_section/xbl_settings_dropdown": T.PANEL, + "multiplayer_section/server_visible_toggle": T.PANEL, + "multiplayer_section/general_multiplayer_warning_label": T.LABEL, + "multiplayer_section/open_uri_button": T.BUTTON, + "multiplayer_section/platform_multiplayer_warning_label": T.LABEL, + "multiplayer_section/xbl_multiplayer_warning_label": T.LABEL, + "option_text_edit_mock_with_button": T.PANEL, + "option_text_edit_mock_control_with_button": T.STACK_PANEL, + "option_text_edit_mock_control_with_button/trial_text_box_button": T.BUTTON, + "option_text_edit_mock_control_with_button/seed_arrow_button": T.BUTTON, + "experimental_toggle": T.PANEL, + "open_account_setting_button": T.BUTTON, + "edu_cloud_button": T.PANEL, + "edu_cloud_section": T.STACK_PANEL, + "edu_cloud_section/edu_cloud_label": T.PANEL, + "edu_cloud_section/cloud_file_name": T.PANEL, + "edu_cloud_section/cloud_file_last_changed": T.PANEL, + "edu_cloud_section/cloud_upload_toggle": T.PANEL, + "edu_cloud_section/cloud_help_wrapper_panel": T.STACK_PANEL, + "edu_cloud_section/cloud_help_wrapper_panel/cloud_help_button": T.BUTTON, + "edu_cloud_section/cloud_help_wrapper_panel/padded_icon": T.PANEL, + "edu_cloud_section/cloud_help_wrapper_panel/padded_icon/icon": T.IMAGE, + "debug_button": T.PANEL, + "debug_section": T.STACK_PANEL, + "debug_section/flat_nether_toggle": T.PANEL, + "debug_section/game_version_override_toggle": T.PANEL, + "debug_section/game_version_override_textbox": T.PANEL, + "debug_section/spawn_dimension_dropdown": T.PANEL, + "debug_section/spawn_biome_dropdown": T.PANEL, + "debug_section/biome_override_dropdown": T.PANEL, + "debug_section/base_game_version_debug_text": T.LABEL, + "debug_spawn_dimension_dropdown_content": T.PANEL, + "debug_spawn_biome_dropdown_content": T.PANEL, + "debug_biome_override_dropdown_content": T.PANEL, + "editor_edit_world_manipulation_buttons_content": T.STACK_PANEL, + "editor_edit_world_manipulation_buttons_content/export_as_project": T.BUTTON, + "editor_edit_world_manipulation_buttons_content/padding": T.PANEL, + "editor_edit_world_manipulation_buttons_content/export_as_world_buttons": T.STACK_PANEL, + "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/export_as_world": T.BUTTON, + "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/padding": T.PANEL, + "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/export_as_template": T.BUTTON, + "editor_edit_world_manipulation_buttons_content/padding_2": T.PANEL, + "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons": T.STACK_PANEL, + "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/copy_project": T.BUTTON, + "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/padding": T.PANEL, + "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/delete_project": T.BUTTON, + "editor_edit_world_manipulation_buttons": T.PANEL, } export type SocialSectionType = { - party_button: T.PANEL - party_section: T.STACK_PANEL - "party_section/party_invite_filter_dropdown": T.PANEL - "party_section/party_invite_reset_default_padding": T.PANEL - "party_section/party_invite_send_privileges_dropdown": T.PANEL - "party_section/party_privacy_default_padding": T.PANEL - "party_section/party_privacy_dropdown": T.PANEL - "party_section/party_privacy_label_wrapper": T.PANEL - "party_section/party_settings_reset_default_button_default_padding": T.PANEL - "party_section/party_settings_reset_default_button": T.BUTTON - "party_section/microsoft_account_settings_divider": T.PANEL - "party_section/microsoft_account_settings_divider/section_divider": T.IMAGE - "party_section/microsoft_account_settings_header": T.LABEL - "party_section/microsoft_account_settings_padding": T.PANEL - "party_section/microsoft_account_settings_label_wrapper": T.PANEL - "party_section/privacy_and_online_safety_button_padding": T.PANEL - "party_section/privacy_and_online_safety_button": T.BUTTON - "party_section/microsoft_account_settings_ending_padding": T.PANEL - party_privacy_label: T.LABEL - microsoft_account_settings_label: T.LABEL - platform_settings_label: T.LABEL - party_invite_filter_dropdown_content: T.PANEL - party_privacy_dropdown_content: T.PANEL - party_invite_send_privileges_dropdown_content: T.PANEL + "party_button": T.PANEL, + "party_section": T.STACK_PANEL, + "party_section/party_invite_filter_dropdown": T.PANEL, + "party_section/party_invite_reset_default_padding": T.PANEL, + "party_section/party_invite_send_privileges_dropdown": T.PANEL, + "party_section/party_privacy_default_padding": T.PANEL, + "party_section/party_privacy_dropdown": T.PANEL, + "party_section/party_privacy_label_wrapper": T.PANEL, + "party_section/party_settings_reset_default_button_default_padding": T.PANEL, + "party_section/party_settings_reset_default_button": T.BUTTON, + "party_section/microsoft_account_settings_divider": T.PANEL, + "party_section/microsoft_account_settings_divider/section_divider": T.IMAGE, + "party_section/microsoft_account_settings_header": T.LABEL, + "party_section/microsoft_account_settings_padding": T.PANEL, + "party_section/microsoft_account_settings_label_wrapper": T.PANEL, + "party_section/privacy_and_online_safety_button_padding": T.PANEL, + "party_section/privacy_and_online_safety_button": T.BUTTON, + "party_section/microsoft_account_settings_ending_padding": T.PANEL, + "party_privacy_label": T.LABEL, + "microsoft_account_settings_label": T.LABEL, + "platform_settings_label": T.LABEL, + "party_invite_filter_dropdown_content": T.PANEL, + "party_privacy_dropdown_content": T.PANEL, + "party_invite_send_privileges_dropdown_content": T.PANEL, } export type SidebarNavigationType = { - empty_panel: T.PANEL - empty_fill_x_panel: T.PANEL - empty_default_panel: T.PANEL - vertical_padding_panel: T.PANEL - sidebar_bg: T.IMAGE - sidebar_divider: T.IMAGE - sidebar_divider_panel: T.PANEL - "sidebar_divider_panel/sidebar_divider": T.IMAGE - toggle_content: T.PANEL - "toggle_content/toggle_content": T.UNKNOWN - sidebar_section_scroll_panel: T.PANEL - sidebar_bg_content_panel: T.IMAGE - "sidebar_bg_content_panel/sidebar_bg_content": T.UNKNOWN - sidebar_nav_toggle_image: T.IMAGE - sidebar_nav_toggle_image_panel: T.PANEL - "sidebar_nav_toggle_image_panel/sidebar_nav_toggle_image": T.IMAGE - "sidebar_nav_toggle_image_panel/gamepad_helper_icon": T.UNKNOWN - gamepad_helper_icon_start_toggle: T.STACK_PANEL - verbose_view_toggle_content: T.STACK_PANEL - "verbose_view_toggle_content/left_padding": T.PANEL - "verbose_view_toggle_content/sidebar_nav_toggle_image": T.PANEL - sidebar_toggle_bg: T.IMAGE - sidebar_toggle: T.PANEL - sidebar_option_toggle: T.PANEL - simple_sidebar_toggle: T.PANEL - verbose_toggle: T.PANEL - verbose_sidebar_option: T.PANEL - verbose_expand_option: T.PANEL - verbose_dropdown_option: T.PANEL - verbose_dropdown_expanded_option: T.PANEL - verbose_sidebar_expand_section_bg: T.IMAGE - verbose_sidebar_expand_section_panel: T.STACK_PANEL - verbose_expand_section_panel: T.INPUT_PANEL - verbose_view_toggle: T.PANEL - sidebar_option_factory: T.STACK_PANEL - sidebar_option_factory_panel: T.INPUT_PANEL - "sidebar_option_factory_panel/sidebar_option_factory": T.STACK_PANEL - verbose_button_content: T.PANEL - "verbose_button_content/button_label": T.LABEL - verbose_button: T.BUTTON - verbose_nav_button_panel: T.PANEL - "verbose_nav_button_panel/verbose_nav_button": T.BUTTON - verbose_screen_nav_button: T.BUTTON - verbose_screen_nav_option_panel: T.PANEL - "verbose_screen_nav_option_panel/verbose_nav_button": T.BUTTON - sidebar_option_factory_scroll_panel: T.PANEL - sidebar_screen_nav_option_factory_panel: T.STACK_PANEL - "sidebar_screen_nav_option_factory_panel/fill_panel": T.PANEL - "sidebar_screen_nav_option_factory_panel/button": T.PANEL - "sidebar_screen_nav_option_factory_panel/padding": T.PANEL - "sidebar_screen_nav_option_factory_panel/platform_icon_padding": T.PANEL - root_section_content_panel: T.STACK_PANEL - "root_section_content_panel/sidebar_option_factory": T.PANEL - "root_section_content_panel/verbose_sidebar_screen_Nav": T.STACK_PANEL - edge_bar: T.IMAGE - verbose_view_stack_panel: T.STACK_PANEL - "verbose_view_stack_panel/verbose_view_toggle": T.PANEL - sidebar_section: T.STACK_PANEL - "sidebar_section/left_edge_bar": T.IMAGE - "sidebar_section/verbose_view_stack_panel": T.STACK_PANEL - "sidebar_section/right_edge_bar": T.IMAGE - root_section: T.PANEL - verbose_root_section: T.STACK_PANEL - simple_root_section: T.STACK_PANEL - "simple_root_section/verbose_view_toggle": T.PANEL - "simple_root_section/root_section": T.PANEL - sidebar_section_factory_panel: T.IMAGE - "sidebar_section_factory_panel/sidebar_section_factory": T.STACK_PANEL - sidebar_view_content_panel: T.PANEL - "sidebar_view_content_panel/view_stack_panel": T.STACK_PANEL - "sidebar_view_content_panel/view_stack_panel/sidebar_view": T.IMAGE - "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel": T.PANEL - "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button": T.BUTTON - "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button/default": T.PANEL - "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button/hover": T.PANEL - "sidebar_view_content_panel/verbose_view_exit": T.PANEL - verbose_sidebar_view_modal: T.INPUT_PANEL - sidebar_views: T.PANEL - "sidebar_views/sidebar_view_conent": T.PANEL - "sidebar_views/sidebar_view_conent/simple_sidebar_view": T.PANEL - "sidebar_views/sidebar_view_conent/verbose_side_bar_view_modal": T.INPUT_PANEL - "sidebar_views/sidebar_view_conent/verbose_side_bar_view_modal/verbose_sidebar_view": T.PANEL - sidebar_empty_panel: T.PANEL - content_view: T.PANEL - "content_view/content_view_stack": T.STACK_PANEL - "content_view/content_view_stack/sidebar_view_stack": T.STACK_PANEL - "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel": T.PANEL - "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel": T.PANEL - "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button": T.BUTTON - "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button/default": T.PANEL - "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button/hover": T.PANEL - "content_view/content_view_stack/sidebar_view_stack/divider": T.IMAGE - "content_view/content_view_stack/main_view_content": T.INPUT_PANEL - "content_view/content_view_stack/main_view_content/screen_content": T.UNKNOWN - sidebar_view: T.INPUT_PANEL - "sidebar_view/sidebar_content": T.PANEL - "sidebar_view/content_view": T.PANEL - "sidebar_view/progress_loading": T.PANEL - platform_store_icon_spacing: T.PANEL + "empty_panel": T.PANEL, + "empty_fill_x_panel": T.PANEL, + "empty_default_panel": T.PANEL, + "vertical_padding_panel": T.PANEL, + "sidebar_bg": T.IMAGE, + "sidebar_divider": T.IMAGE, + "sidebar_divider_panel": T.PANEL, + "sidebar_divider_panel/sidebar_divider": T.IMAGE, + "toggle_content": T.PANEL, + "toggle_content/toggle_content": T.UNKNOWN, + "sidebar_section_scroll_panel": T.PANEL, + "sidebar_bg_content_panel": T.IMAGE, + "sidebar_bg_content_panel/sidebar_bg_content": T.UNKNOWN, + "sidebar_nav_toggle_image": T.IMAGE, + "sidebar_nav_toggle_image_panel": T.PANEL, + "sidebar_nav_toggle_image_panel/sidebar_nav_toggle_image": T.IMAGE, + "sidebar_nav_toggle_image_panel/gamepad_helper_icon": T.UNKNOWN, + "gamepad_helper_icon_start_toggle": T.STACK_PANEL, + "verbose_view_toggle_content": T.STACK_PANEL, + "verbose_view_toggle_content/left_padding": T.PANEL, + "verbose_view_toggle_content/sidebar_nav_toggle_image": T.PANEL, + "sidebar_toggle_bg": T.IMAGE, + "sidebar_toggle": T.PANEL, + "sidebar_option_toggle": T.PANEL, + "simple_sidebar_toggle": T.PANEL, + "verbose_toggle": T.PANEL, + "verbose_sidebar_option": T.PANEL, + "verbose_expand_option": T.PANEL, + "verbose_dropdown_option": T.PANEL, + "verbose_dropdown_expanded_option": T.PANEL, + "verbose_sidebar_expand_section_bg": T.IMAGE, + "verbose_sidebar_expand_section_panel": T.STACK_PANEL, + "verbose_expand_section_panel": T.INPUT_PANEL, + "verbose_view_toggle": T.PANEL, + "sidebar_option_factory": T.STACK_PANEL, + "sidebar_option_factory_panel": T.INPUT_PANEL, + "sidebar_option_factory_panel/sidebar_option_factory": T.STACK_PANEL, + "verbose_button_content": T.PANEL, + "verbose_button_content/button_label": T.LABEL, + "verbose_button": T.BUTTON, + "verbose_nav_button_panel": T.PANEL, + "verbose_nav_button_panel/verbose_nav_button": T.BUTTON, + "verbose_screen_nav_button": T.BUTTON, + "verbose_screen_nav_option_panel": T.PANEL, + "verbose_screen_nav_option_panel/verbose_nav_button": T.BUTTON, + "sidebar_option_factory_scroll_panel": T.PANEL, + "sidebar_screen_nav_option_factory_panel": T.STACK_PANEL, + "sidebar_screen_nav_option_factory_panel/fill_panel": T.PANEL, + "sidebar_screen_nav_option_factory_panel/button": T.PANEL, + "sidebar_screen_nav_option_factory_panel/padding": T.PANEL, + "sidebar_screen_nav_option_factory_panel/platform_icon_padding": T.PANEL, + "root_section_content_panel": T.STACK_PANEL, + "root_section_content_panel/sidebar_option_factory": T.PANEL, + "root_section_content_panel/verbose_sidebar_screen_Nav": T.STACK_PANEL, + "edge_bar": T.IMAGE, + "verbose_view_stack_panel": T.STACK_PANEL, + "verbose_view_stack_panel/verbose_view_toggle": T.PANEL, + "sidebar_section": T.STACK_PANEL, + "sidebar_section/left_edge_bar": T.IMAGE, + "sidebar_section/verbose_view_stack_panel": T.STACK_PANEL, + "sidebar_section/right_edge_bar": T.IMAGE, + "root_section": T.PANEL, + "verbose_root_section": T.STACK_PANEL, + "simple_root_section": T.STACK_PANEL, + "simple_root_section/verbose_view_toggle": T.PANEL, + "simple_root_section/root_section": T.PANEL, + "sidebar_section_factory_panel": T.IMAGE, + "sidebar_section_factory_panel/sidebar_section_factory": T.STACK_PANEL, + "sidebar_view_content_panel": T.PANEL, + "sidebar_view_content_panel/view_stack_panel": T.STACK_PANEL, + "sidebar_view_content_panel/view_stack_panel/sidebar_view": T.IMAGE, + "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel": T.PANEL, + "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button": T.BUTTON, + "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button/default": T.PANEL, + "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button/hover": T.PANEL, + "sidebar_view_content_panel/verbose_view_exit": T.PANEL, + "verbose_sidebar_view_modal": T.INPUT_PANEL, + "sidebar_views": T.PANEL, + "sidebar_views/sidebar_view_conent": T.PANEL, + "sidebar_views/sidebar_view_conent/simple_sidebar_view": T.PANEL, + "sidebar_views/sidebar_view_conent/verbose_side_bar_view_modal": T.INPUT_PANEL, + "sidebar_views/sidebar_view_conent/verbose_side_bar_view_modal/verbose_sidebar_view": T.PANEL, + "sidebar_empty_panel": T.PANEL, + "content_view": T.PANEL, + "content_view/content_view_stack": T.STACK_PANEL, + "content_view/content_view_stack/sidebar_view_stack": T.STACK_PANEL, + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel": T.PANEL, + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel": T.PANEL, + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button": T.BUTTON, + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button/default": T.PANEL, + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button/hover": T.PANEL, + "content_view/content_view_stack/sidebar_view_stack/divider": T.IMAGE, + "content_view/content_view_stack/main_view_content": T.INPUT_PANEL, + "content_view/content_view_stack/main_view_content/screen_content": T.UNKNOWN, + "sidebar_view": T.INPUT_PANEL, + "sidebar_view/sidebar_content": T.PANEL, + "sidebar_view/content_view": T.PANEL, + "sidebar_view/progress_loading": T.PANEL, + "platform_store_icon_spacing": T.PANEL, } export type SignType = { - sign_background: T.IMAGE - hanging_sign_background: T.IMAGE - base_sign_text_multiline: T.EDIT_BOX - regular_sign_text_multiline: T.EDIT_BOX - hanging_sign_text_multiline: T.EDIT_BOX - sign_screen_content: T.PANEL - "sign_screen_content/input_eating_panel": T.INPUT_PANEL - "sign_screen_content/input_eating_panel/text_edit": T.UNKNOWN - "sign_screen_content/invisible_exit_background": T.INPUT_PANEL - sign_screen: T.SCREEN + "sign_background": T.IMAGE, + "hanging_sign_background": T.IMAGE, + "base_sign_text_multiline": T.EDIT_BOX, + "regular_sign_text_multiline": T.EDIT_BOX, + "hanging_sign_text_multiline": T.EDIT_BOX, + "sign_screen_content": T.PANEL, + "sign_screen_content/input_eating_panel": T.INPUT_PANEL, + "sign_screen_content/input_eating_panel/text_edit": T.UNKNOWN, + "sign_screen_content/invisible_exit_background": T.INPUT_PANEL, + "sign_screen": T.SCREEN, } export type SimpleInprogressType = { - title_text: T.LABEL - main_panel: T.PANEL - "main_panel/common_panel": T.PANEL - "main_panel/title": T.LABEL - "main_panel/main_content": T.LABEL - "main_panel/progress_loading_bars": T.IMAGE - simple_inprogress_screen: T.SCREEN - simple_inprogress_screen_content: T.PANEL - "simple_inprogress_screen_content/root_panel": T.PANEL - "simple_inprogress_screen_content/root_panel/main_panel": T.PANEL + "title_text": T.LABEL, + "main_panel": T.PANEL, + "main_panel/common_panel": T.PANEL, + "main_panel/title": T.LABEL, + "main_panel/main_content": T.LABEL, + "main_panel/progress_loading_bars": T.IMAGE, + "simple_inprogress_screen": T.SCREEN, + "simple_inprogress_screen_content": T.PANEL, + "simple_inprogress_screen_content/root_panel": T.PANEL, + "simple_inprogress_screen_content/root_panel/main_panel": T.PANEL, } export type SkinPackPurchaseType = { - cycle_pack_left_button: T.BUTTON - cycle_pack_right_button: T.BUTTON - skin_model: T.PANEL - "skin_model/paper_doll": T.CUSTOM - skin_lock: T.IMAGE - skin_focus_border: T.IMAGE - "skin_focus_border/equip": T.PANEL - skin_button_panel_gamepad: T.PANEL - "skin_button_panel_gamepad/skin_button": T.BUTTON - "skin_button_panel_gamepad/skin_button/hover": T.IMAGE - "skin_button_panel_gamepad/skin_button/pressed": T.IMAGE - skin_button_panel_not_gamepad: T.PANEL - "skin_button_panel_not_gamepad/skin_button": T.BUTTON - "skin_button_panel_not_gamepad/skin_button/hover": T.IMAGE - "skin_button_panel_not_gamepad/skin_button/pressed": T.IMAGE - "skin_button_panel_not_gamepad/equip_button": T.BUTTON - skin_button_panel: T.STACK_PANEL - "skin_button_panel/gamepad": T.PANEL - "skin_button_panel/not_gamepad": T.PANEL - equip_button_state_panel: T.PANEL - "equip_button_state_panel/button_panel": T.PANEL - equip_button_text: T.PANEL - "equip_button_text/text": T.LABEL - skins_grid_item: T.PANEL - "skins_grid_item/model": T.PANEL - "skins_grid_item/lock": T.IMAGE - "skins_grid_item/button": T.STACK_PANEL - skins_grid: T.GRID - skins_panel: T.PANEL - "skins_panel/bg": T.PANEL - "skins_panel/bg/left": T.BUTTON - "skins_panel/bg/sg": T.GRID - "skins_panel/bg/right": T.BUTTON - "skins_panel/bg/progress_loading_panel": T.PANEL - "skins_panel/bg/progress_loading_panel/progress_loading": T.PANEL - "skins_panel/bg/progress_loading_panel/progress_loading_outline": T.BUTTON - "skins_panel/bg/progress_loading_panel/progress_loading_outline/hover": T.IMAGE - screen_root: T.SCREEN - skin_pack_purchase_upsell_screen: T.SCREEN - skin_pack_purchase_upsell_screen_content: T.PANEL - skin_pack_purchase_upsell_dialog_content: T.PANEL - "skin_pack_purchase_upsell_dialog_content/container": T.PANEL - skin_pack_purchase_standard: T.SCREEN - skin_pack_purchase_standard_content: T.PANEL - skin_pack_purchase_dialog_content: T.PANEL - "skin_pack_purchase_dialog_content/container": T.PANEL + "cycle_pack_left_button": T.BUTTON, + "cycle_pack_right_button": T.BUTTON, + "skin_model": T.PANEL, + "skin_model/paper_doll": T.CUSTOM, + "skin_lock": T.IMAGE, + "skin_focus_border": T.IMAGE, + "skin_focus_border/equip": T.PANEL, + "skin_button_panel_gamepad": T.PANEL, + "skin_button_panel_gamepad/skin_button": T.BUTTON, + "skin_button_panel_gamepad/skin_button/hover": T.IMAGE, + "skin_button_panel_gamepad/skin_button/pressed": T.IMAGE, + "skin_button_panel_not_gamepad": T.PANEL, + "skin_button_panel_not_gamepad/skin_button": T.BUTTON, + "skin_button_panel_not_gamepad/skin_button/hover": T.IMAGE, + "skin_button_panel_not_gamepad/skin_button/pressed": T.IMAGE, + "skin_button_panel_not_gamepad/equip_button": T.BUTTON, + "skin_button_panel": T.STACK_PANEL, + "skin_button_panel/gamepad": T.PANEL, + "skin_button_panel/not_gamepad": T.PANEL, + "equip_button_state_panel": T.PANEL, + "equip_button_state_panel/button_panel": T.PANEL, + "equip_button_text": T.PANEL, + "equip_button_text/text": T.LABEL, + "skins_grid_item": T.PANEL, + "skins_grid_item/model": T.PANEL, + "skins_grid_item/lock": T.IMAGE, + "skins_grid_item/button": T.STACK_PANEL, + "skins_grid": T.GRID, + "skins_panel": T.PANEL, + "skins_panel/bg": T.PANEL, + "skins_panel/bg/left": T.BUTTON, + "skins_panel/bg/sg": T.GRID, + "skins_panel/bg/right": T.BUTTON, + "skins_panel/bg/progress_loading_panel": T.PANEL, + "skins_panel/bg/progress_loading_panel/progress_loading": T.PANEL, + "skins_panel/bg/progress_loading_panel/progress_loading_outline": T.BUTTON, + "skins_panel/bg/progress_loading_panel/progress_loading_outline/hover": T.IMAGE, + "screen_root": T.SCREEN, + "skin_pack_purchase_upsell_screen": T.SCREEN, + "skin_pack_purchase_upsell_screen_content": T.PANEL, + "skin_pack_purchase_upsell_dialog_content": T.PANEL, + "skin_pack_purchase_upsell_dialog_content/container": T.PANEL, + "skin_pack_purchase_standard": T.SCREEN, + "skin_pack_purchase_standard_content": T.PANEL, + "skin_pack_purchase_dialog_content": T.PANEL, + "skin_pack_purchase_dialog_content/container": T.PANEL, } export type SkinPickerType = { - banner_fill: T.IMAGE - title_label: T.LABEL - label: T.LABEL - chevron_image: T.IMAGE - bumper_image: T.IMAGE - undo_image: T.IMAGE - plus_icon: T.IMAGE - direction_button_panel: T.PANEL - "direction_button_panel/chevron_image": T.IMAGE - "direction_button_panel/bumper_image": T.IMAGE - cycle_pack_button: T.BUTTON - cycle_pack_left_button: T.BUTTON - cycle_pack_right_button: T.BUTTON - skin_button: T.BUTTON - "skin_button/hover": T.IMAGE - "skin_button/pressed": T.IMAGE - skin_rotation_arrows: T.IMAGE - skin_viewer_panel: T.INPUT_PANEL - "skin_viewer_panel/custom_skin_button": T.BUTTON - "skin_viewer_panel/skin_model_panel": T.PANEL - "skin_viewer_panel/skin_model_panel/skin_model": T.CUSTOM - "skin_viewer_panel/lock": T.IMAGE - undo_skin_button: T.BUTTON - accept_skin_button: T.BUTTON - stack_item: T.PANEL - accept_skin_panel: T.STACK_PANEL - "accept_skin_panel/stack_item_0": T.PANEL - "accept_skin_panel/stack_item_0/undo_btn": T.BUTTON - "accept_skin_panel/stack_item_1": T.PANEL - "accept_skin_panel/stack_item_1/accept_button": T.BUTTON - appearance_status_image_panel: T.PANEL - "appearance_status_image_panel/limited_status_image": T.IMAGE - "appearance_status_image_panel/no_restrictions_status_image": T.IMAGE - appearance_status_content: T.STACK_PANEL - "appearance_status_content/appearance_status_image_panel": T.PANEL - "appearance_status_content/padding": T.PANEL - "appearance_status_content/appearance_status_label_panel": T.PANEL - "appearance_status_content/appearance_status_label_panel/appearance_status_label": T.LABEL - preview_skin_panel: T.PANEL - "preview_skin_panel/preview": T.INPUT_PANEL - "preview_skin_panel/button_frame": T.STACK_PANEL - "preview_skin_panel/button_frame/stack_item_0": T.PANEL - "preview_skin_panel/button_frame/stack_item_0/rotation": T.IMAGE - "preview_skin_panel/button_frame/padding": T.PANEL - "preview_skin_panel/button_frame/notification_and_accept_input_panel": T.INPUT_PANEL - "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack": T.STACK_PANEL - "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/skin_status_notification_section": T.PANEL - "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/skin_status_notification_section/appearance_status_notification_panel": T.BUTTON - "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/stack_item_1": T.PANEL - "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/stack_item_1/accept": T.STACK_PANEL - skin_model: T.CUSTOM - premium_skin_button: T.BUTTON - skin_lock: T.IMAGE - new_pack_icon: T.PANEL - "new_pack_icon/icon": T.IMAGE - pack_lock: T.PANEL - "pack_lock/locked": T.IMAGE - "pack_lock/unlocked": T.IMAGE - skin_input_panel: T.INPUT_PANEL - "skin_input_panel/sg": T.GRID - skins_grid_item: T.PANEL - "skins_grid_item/clip": T.PANEL - "skins_grid_item/clip/model": T.CUSTOM - "skins_grid_item/lock": T.IMAGE - "skins_grid_item/button": T.BUTTON - skins_grid: T.GRID - pack_name: T.LABEL - pack_grid_item: T.PANEL - "pack_grid_item/header": T.STACK_PANEL - "pack_grid_item/header/padding": T.PANEL - "pack_grid_item/header/pack_lock": T.PANEL - "pack_grid_item/header/pack_name": T.LABEL - "pack_grid_item/header/padding_2": T.PANEL - "pack_grid_item/header/new_pack_icon": T.PANEL - "pack_grid_item/header/padding_3": T.PANEL - "pack_grid_item/bg": T.IMAGE - "pack_grid_item/bg/skin_input_panel": T.INPUT_PANEL - "pack_grid_item/bg/expand_view_button": T.BUTTON - "pack_grid_item/bg/progress_loading_no_connection": T.PANEL - "pack_grid_item/bg/progress_loading": T.PANEL - premium_packs_grid: T.GRID - standard_skin_button: T.BUTTON - default_skins_grid_item: T.PANEL - "default_skins_grid_item/model": T.CUSTOM - "default_skins_grid_item/button": T.BUTTON - default_skins_grid: T.GRID - recent_skins_grid_item: T.PANEL - "recent_skins_grid_item/clip": T.PANEL - "recent_skins_grid_item/clip/model": T.CUSTOM - "recent_skins_grid_item/button": T.BUTTON - recent_skins_grid: T.GRID - standard_frame: T.PANEL - standard_header: T.LABEL - standard_fill: T.IMAGE - standard_panel: T.PANEL - "standard_panel/default_skins": T.PANEL - "standard_panel/default_skins/header": T.LABEL - "standard_panel/default_skins/fill": T.IMAGE - "standard_panel/default_skins/fill/default_skins_grid": T.GRID - "standard_panel/recent_skins": T.PANEL - "standard_panel/recent_skins/header": T.LABEL - "standard_panel/recent_skins/fill": T.IMAGE - "standard_panel/recent_skins/fill/recent_skins_grid": T.GRID - "standard_panel/recent_skins/fill/recent_skins_loading_panel": T.PANEL - scrolling_content_stack: T.STACK_PANEL - "scrolling_content_stack/standard_panel": T.PANEL - "scrolling_content_stack/premium_packs_grid": T.GRID - all_skins_content: T.INPUT_PANEL - "all_skins_content/scrolling_frame": T.PANEL - "all_skins_content/scrolling_frame/change_skin_scroll": T.PANEL - "all_skins_content/scrolling_frame/progress_loading": T.PANEL - all_skins_frame: T.PANEL - "all_skins_frame/all_skins_content": T.INPUT_PANEL - title_bar: T.STACK_PANEL - "title_bar/padding_0": T.PANEL - "title_bar/fill_panel": T.PANEL - "title_bar/fill_panel/title_holder": T.PANEL - "title_bar/fill_panel/title_holder/change_skin_title": T.LABEL - "title_bar/padding_1": T.PANEL - "title_bar/skin_name_holder": T.PANEL - "title_bar/skin_name_holder/preview_skin_name": T.LABEL - "title_bar/padding_2": T.PANEL - popup_dialog_skin_model: T.PANEL - "popup_dialog_skin_model/paper_doll": T.CUSTOM - popup_dialog_choose_skin_type_button: T.BUTTON - "popup_dialog_choose_skin_type_button/hover": T.IMAGE - "popup_dialog_choose_skin_type_button/pressed": T.IMAGE - popup_dialog_choose_skin_type_panel: T.PANEL - "popup_dialog_choose_skin_type_panel/model": T.PANEL - "popup_dialog_choose_skin_type_panel/button_highlight": T.BUTTON - popup_dialog__invalid_custom_skin: T.INPUT_PANEL - "popup_dialog__invalid_custom_skin/popup_dialog_bg": T.IMAGE - "popup_dialog__invalid_custom_skin/popup_dialog_message": T.LABEL - "popup_dialog__invalid_custom_skin/popup_dialog_middle_button": T.BUTTON - popup_dialog__upsell_without_store: T.INPUT_PANEL - popup_dialog__choose_skin_type: T.INPUT_PANEL - "popup_dialog__choose_skin_type/popup_dialog_bg": T.IMAGE - "popup_dialog__choose_skin_type/popup_dialog_message": T.LABEL - "popup_dialog__choose_skin_type/left": T.PANEL - "popup_dialog__choose_skin_type/right": T.PANEL - content: T.PANEL - "content/title": T.STACK_PANEL - "content/selector_area": T.INPUT_PANEL - "content/content_area": T.INPUT_PANEL - "content/section_divider": T.IMAGE - skin_picker_screen: T.SCREEN - skin_picker_screen_content: T.PANEL - "skin_picker_screen_content/bg": T.STACK_PANEL - "skin_picker_screen_content/container": T.PANEL - "skin_picker_screen_content/container/content": T.PANEL - "skin_picker_screen_content/popup_dialog_factory": T.FACTORY - scrollable_selector_area_content: T.PANEL - selector_area: T.INPUT_PANEL - "selector_area/all_skins": T.PANEL - "selector_area/inactive_modal_pane_fade": T.IMAGE - content_area: T.INPUT_PANEL - "content_area/preview_skin": T.PANEL - "content_area/inactive_modal_pane_fade": T.IMAGE - section_divider: T.IMAGE + "banner_fill": T.IMAGE, + "title_label": T.LABEL, + "label": T.LABEL, + "chevron_image": T.IMAGE, + "bumper_image": T.IMAGE, + "undo_image": T.IMAGE, + "plus_icon": T.IMAGE, + "direction_button_panel": T.PANEL, + "direction_button_panel/chevron_image": T.IMAGE, + "direction_button_panel/bumper_image": T.IMAGE, + "cycle_pack_button": T.BUTTON, + "cycle_pack_left_button": T.BUTTON, + "cycle_pack_right_button": T.BUTTON, + "skin_button": T.BUTTON, + "skin_button/hover": T.IMAGE, + "skin_button/pressed": T.IMAGE, + "skin_rotation_arrows": T.IMAGE, + "skin_viewer_panel": T.INPUT_PANEL, + "skin_viewer_panel/custom_skin_button": T.BUTTON, + "skin_viewer_panel/skin_model_panel": T.PANEL, + "skin_viewer_panel/skin_model_panel/skin_model": T.CUSTOM, + "skin_viewer_panel/lock": T.IMAGE, + "undo_skin_button": T.BUTTON, + "accept_skin_button": T.BUTTON, + "stack_item": T.PANEL, + "accept_skin_panel": T.STACK_PANEL, + "accept_skin_panel/stack_item_0": T.PANEL, + "accept_skin_panel/stack_item_0/undo_btn": T.BUTTON, + "accept_skin_panel/stack_item_1": T.PANEL, + "accept_skin_panel/stack_item_1/accept_button": T.BUTTON, + "appearance_status_image_panel": T.PANEL, + "appearance_status_image_panel/limited_status_image": T.IMAGE, + "appearance_status_image_panel/no_restrictions_status_image": T.IMAGE, + "appearance_status_content": T.STACK_PANEL, + "appearance_status_content/appearance_status_image_panel": T.PANEL, + "appearance_status_content/padding": T.PANEL, + "appearance_status_content/appearance_status_label_panel": T.PANEL, + "appearance_status_content/appearance_status_label_panel/appearance_status_label": T.LABEL, + "preview_skin_panel": T.PANEL, + "preview_skin_panel/preview": T.INPUT_PANEL, + "preview_skin_panel/button_frame": T.STACK_PANEL, + "preview_skin_panel/button_frame/stack_item_0": T.PANEL, + "preview_skin_panel/button_frame/stack_item_0/rotation": T.IMAGE, + "preview_skin_panel/button_frame/padding": T.PANEL, + "preview_skin_panel/button_frame/notification_and_accept_input_panel": T.INPUT_PANEL, + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack": T.STACK_PANEL, + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/skin_status_notification_section": T.PANEL, + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/skin_status_notification_section/appearance_status_notification_panel": T.BUTTON, + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/stack_item_1": T.PANEL, + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/stack_item_1/accept": T.STACK_PANEL, + "skin_model": T.CUSTOM, + "premium_skin_button": T.BUTTON, + "skin_lock": T.IMAGE, + "new_pack_icon": T.PANEL, + "new_pack_icon/icon": T.IMAGE, + "pack_lock": T.PANEL, + "pack_lock/locked": T.IMAGE, + "pack_lock/unlocked": T.IMAGE, + "skin_input_panel": T.INPUT_PANEL, + "skin_input_panel/sg": T.GRID, + "skins_grid_item": T.PANEL, + "skins_grid_item/clip": T.PANEL, + "skins_grid_item/clip/model": T.CUSTOM, + "skins_grid_item/lock": T.IMAGE, + "skins_grid_item/button": T.BUTTON, + "skins_grid": T.GRID, + "pack_name": T.LABEL, + "pack_grid_item": T.PANEL, + "pack_grid_item/header": T.STACK_PANEL, + "pack_grid_item/header/padding": T.PANEL, + "pack_grid_item/header/pack_lock": T.PANEL, + "pack_grid_item/header/pack_name": T.LABEL, + "pack_grid_item/header/padding_2": T.PANEL, + "pack_grid_item/header/new_pack_icon": T.PANEL, + "pack_grid_item/header/padding_3": T.PANEL, + "pack_grid_item/bg": T.IMAGE, + "pack_grid_item/bg/skin_input_panel": T.INPUT_PANEL, + "pack_grid_item/bg/expand_view_button": T.BUTTON, + "pack_grid_item/bg/progress_loading_no_connection": T.PANEL, + "pack_grid_item/bg/progress_loading": T.PANEL, + "premium_packs_grid": T.GRID, + "standard_skin_button": T.BUTTON, + "default_skins_grid_item": T.PANEL, + "default_skins_grid_item/model": T.CUSTOM, + "default_skins_grid_item/button": T.BUTTON, + "default_skins_grid": T.GRID, + "recent_skins_grid_item": T.PANEL, + "recent_skins_grid_item/clip": T.PANEL, + "recent_skins_grid_item/clip/model": T.CUSTOM, + "recent_skins_grid_item/button": T.BUTTON, + "recent_skins_grid": T.GRID, + "standard_frame": T.PANEL, + "standard_header": T.LABEL, + "standard_fill": T.IMAGE, + "standard_panel": T.PANEL, + "standard_panel/default_skins": T.PANEL, + "standard_panel/default_skins/header": T.LABEL, + "standard_panel/default_skins/fill": T.IMAGE, + "standard_panel/default_skins/fill/default_skins_grid": T.GRID, + "standard_panel/recent_skins": T.PANEL, + "standard_panel/recent_skins/header": T.LABEL, + "standard_panel/recent_skins/fill": T.IMAGE, + "standard_panel/recent_skins/fill/recent_skins_grid": T.GRID, + "standard_panel/recent_skins/fill/recent_skins_loading_panel": T.PANEL, + "scrolling_content_stack": T.STACK_PANEL, + "scrolling_content_stack/standard_panel": T.PANEL, + "scrolling_content_stack/premium_packs_grid": T.GRID, + "all_skins_content": T.INPUT_PANEL, + "all_skins_content/scrolling_frame": T.PANEL, + "all_skins_content/scrolling_frame/change_skin_scroll": T.PANEL, + "all_skins_content/scrolling_frame/progress_loading": T.PANEL, + "all_skins_frame": T.PANEL, + "all_skins_frame/all_skins_content": T.INPUT_PANEL, + "title_bar": T.STACK_PANEL, + "title_bar/padding_0": T.PANEL, + "title_bar/fill_panel": T.PANEL, + "title_bar/fill_panel/title_holder": T.PANEL, + "title_bar/fill_panel/title_holder/change_skin_title": T.LABEL, + "title_bar/padding_1": T.PANEL, + "title_bar/skin_name_holder": T.PANEL, + "title_bar/skin_name_holder/preview_skin_name": T.LABEL, + "title_bar/padding_2": T.PANEL, + "popup_dialog_skin_model": T.PANEL, + "popup_dialog_skin_model/paper_doll": T.CUSTOM, + "popup_dialog_choose_skin_type_button": T.BUTTON, + "popup_dialog_choose_skin_type_button/hover": T.IMAGE, + "popup_dialog_choose_skin_type_button/pressed": T.IMAGE, + "popup_dialog_choose_skin_type_panel": T.PANEL, + "popup_dialog_choose_skin_type_panel/model": T.PANEL, + "popup_dialog_choose_skin_type_panel/button_highlight": T.BUTTON, + "popup_dialog__invalid_custom_skin": T.INPUT_PANEL, + "popup_dialog__invalid_custom_skin/popup_dialog_bg": T.IMAGE, + "popup_dialog__invalid_custom_skin/popup_dialog_message": T.LABEL, + "popup_dialog__invalid_custom_skin/popup_dialog_middle_button": T.BUTTON, + "popup_dialog__upsell_without_store": T.INPUT_PANEL, + "popup_dialog__choose_skin_type": T.INPUT_PANEL, + "popup_dialog__choose_skin_type/popup_dialog_bg": T.IMAGE, + "popup_dialog__choose_skin_type/popup_dialog_message": T.LABEL, + "popup_dialog__choose_skin_type/left": T.PANEL, + "popup_dialog__choose_skin_type/right": T.PANEL, + "content": T.PANEL, + "content/title": T.STACK_PANEL, + "content/selector_area": T.INPUT_PANEL, + "content/content_area": T.INPUT_PANEL, + "content/section_divider": T.IMAGE, + "skin_picker_screen": T.SCREEN, + "skin_picker_screen_content": T.PANEL, + "skin_picker_screen_content/bg": T.STACK_PANEL, + "skin_picker_screen_content/container": T.PANEL, + "skin_picker_screen_content/container/content": T.PANEL, + "skin_picker_screen_content/popup_dialog_factory": T.FACTORY, + "scrollable_selector_area_content": T.PANEL, + "selector_area": T.INPUT_PANEL, + "selector_area/all_skins": T.PANEL, + "selector_area/inactive_modal_pane_fade": T.IMAGE, + "content_area": T.INPUT_PANEL, + "content_area/preview_skin": T.PANEL, + "content_area/inactive_modal_pane_fade": T.IMAGE, + "section_divider": T.IMAGE, } export type SmithingTableType = { - smithing_image: T.IMAGE - ingot_image: T.IMAGE - smithing_icon: T.IMAGE - upgrade_label: T.LABEL - icon_and_text_panel: T.PANEL - "icon_and_text_panel/smithing_icon_panel": T.PANEL - "icon_and_text_panel/upgrade_label": T.LABEL - smithing_icon_panel: T.PANEL - "smithing_icon_panel/smithing_icon": T.IMAGE - plus_sign_icon: T.IMAGE - arrow_icon: T.IMAGE - cross_out_icon: T.IMAGE - smithing_table_output_slot_button: T.BUTTON - smithing_table_item_slot: T.PANEL - "smithing_table_item_slot/container_item": T.INPUT_PANEL - recipe_grid: T.GRID - "recipe_grid/input_item_slot": T.PANEL - "recipe_grid/plus": T.PANEL - "recipe_grid/plus/plus_sign_icon": T.IMAGE - "recipe_grid/material_item_slot": T.PANEL - "recipe_grid/yields": T.PANEL - "recipe_grid/yields/arrow_icon": T.IMAGE - "recipe_grid/yields/cross_out_icon": T.IMAGE - "recipe_grid/result_item_slot": T.PANEL - recipe_panel: T.PANEL - "recipe_panel/recipe_grid": T.GRID - top_half_panel: T.PANEL - "top_half_panel/icon_and_text_panel": T.PANEL - "top_half_panel/recipe_panel": T.PANEL - smithing_table_panel: T.PANEL - "smithing_table_panel/container_gamepad_helpers": T.STACK_PANEL - "smithing_table_panel/selected_item_details_factory": T.FACTORY - "smithing_table_panel/item_lock_notification_factory": T.FACTORY - "smithing_table_panel/root_panel": T.INPUT_PANEL - "smithing_table_panel/root_panel/common_panel": T.PANEL - "smithing_table_panel/root_panel/smithing_table_screen_inventory": T.PANEL - "smithing_table_panel/root_panel/smithing_table_screen_inventory/top_half_panel": T.PANEL - "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL - "smithing_table_panel/root_panel/smithing_table_screen_inventory/hotbar_grid": T.GRID - "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_take_progress_icon_button": T.BUTTON - "smithing_table_panel/root_panel/inventory_selected_icon_button": T.BUTTON - "smithing_table_panel/root_panel/gamepad_cursor": T.BUTTON - "smithing_table_panel/flying_item_renderer": T.CUSTOM - smithing_table_screen: T.SCREEN + "smithing_image": T.IMAGE, + "ingot_image": T.IMAGE, + "smithing_icon": T.IMAGE, + "upgrade_label": T.LABEL, + "icon_and_text_panel": T.PANEL, + "icon_and_text_panel/smithing_icon_panel": T.PANEL, + "icon_and_text_panel/upgrade_label": T.LABEL, + "smithing_icon_panel": T.PANEL, + "smithing_icon_panel/smithing_icon": T.IMAGE, + "plus_sign_icon": T.IMAGE, + "arrow_icon": T.IMAGE, + "cross_out_icon": T.IMAGE, + "smithing_table_output_slot_button": T.BUTTON, + "smithing_table_item_slot": T.PANEL, + "smithing_table_item_slot/container_item": T.INPUT_PANEL, + "recipe_grid": T.GRID, + "recipe_grid/input_item_slot": T.PANEL, + "recipe_grid/plus": T.PANEL, + "recipe_grid/plus/plus_sign_icon": T.IMAGE, + "recipe_grid/material_item_slot": T.PANEL, + "recipe_grid/yields": T.PANEL, + "recipe_grid/yields/arrow_icon": T.IMAGE, + "recipe_grid/yields/cross_out_icon": T.IMAGE, + "recipe_grid/result_item_slot": T.PANEL, + "recipe_panel": T.PANEL, + "recipe_panel/recipe_grid": T.GRID, + "top_half_panel": T.PANEL, + "top_half_panel/icon_and_text_panel": T.PANEL, + "top_half_panel/recipe_panel": T.PANEL, + "smithing_table_panel": T.PANEL, + "smithing_table_panel/container_gamepad_helpers": T.STACK_PANEL, + "smithing_table_panel/selected_item_details_factory": T.FACTORY, + "smithing_table_panel/item_lock_notification_factory": T.FACTORY, + "smithing_table_panel/root_panel": T.INPUT_PANEL, + "smithing_table_panel/root_panel/common_panel": T.PANEL, + "smithing_table_panel/root_panel/smithing_table_screen_inventory": T.PANEL, + "smithing_table_panel/root_panel/smithing_table_screen_inventory/top_half_panel": T.PANEL, + "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL, + "smithing_table_panel/root_panel/smithing_table_screen_inventory/hotbar_grid": T.GRID, + "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_take_progress_icon_button": T.BUTTON, + "smithing_table_panel/root_panel/inventory_selected_icon_button": T.BUTTON, + "smithing_table_panel/root_panel/gamepad_cursor": T.BUTTON, + "smithing_table_panel/flying_item_renderer": T.CUSTOM, + "smithing_table_screen": T.SCREEN, } export type SmithingTable2Type = { - smithing_icon: T.IMAGE - upgrade_label: T.LABEL - icon_and_text_panel: T.PANEL - "icon_and_text_panel/smithing_icon_panel": T.PANEL - "icon_and_text_panel/upgrade_label": T.LABEL - smithing_icon_panel: T.PANEL - "smithing_icon_panel/smithing_icon": T.IMAGE - smithing_image: T.IMAGE - smithing_material_image_ingot: T.IMAGE - arrow_icon: T.IMAGE - cross_out_icon_image: T.IMAGE - cross_out_icon_button: T.BUTTON - "cross_out_icon_button/default": T.IMAGE - "cross_out_icon_button/hover": T.CUSTOM - smithing_input_image_templates: T.IMAGE - smithing_input_image_armors: T.IMAGE - smithing_input_image_armors_and_tools: T.IMAGE - smithing_material_image_all: T.IMAGE - template_overlay_image: T.PANEL - "template_overlay_image/templates": T.IMAGE - input_overlay_image: T.PANEL - "input_overlay_image/armors_and_tools": T.IMAGE - "input_overlay_image/armors": T.IMAGE - material_overlay_image: T.PANEL - "material_overlay_image/all_materials": T.IMAGE - "material_overlay_image/ingot": T.IMAGE - smithing_table_output_slot_button: T.BUTTON - smithing_table_item_slot: T.PANEL - "smithing_table_item_slot/container_item": T.INPUT_PANEL - recipe_grid: T.GRID - "recipe_grid/template_item_slot": T.PANEL - "recipe_grid/input_item_slot": T.PANEL - "recipe_grid/material_item_slot": T.PANEL - "recipe_grid/yields": T.PANEL - "recipe_grid/yields/arrow_icon": T.IMAGE - "recipe_grid/yields/cross_out_icon": T.BUTTON - "recipe_grid/result_item_slot": T.PANEL - "recipe_grid/result_item_preview": T.PANEL - recipe_panel: T.PANEL - "recipe_panel/recipe_grid": T.GRID - result_item_preview: T.PANEL - "result_item_preview/inner": T.PANEL - result_item_preview_inner: T.PANEL - "result_item_preview_inner/smithing_preview_renderer": T.CUSTOM - toolbar_background: T.IMAGE - help_button: T.BUTTON - toolbar_panel: T.INPUT_PANEL - "toolbar_panel/toolbar_background": T.IMAGE - "toolbar_panel/toolbar_background/toolbar_stack_panel": T.STACK_PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": T.BUTTON - "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": T.BUTTON - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": T.PANEL - toolbar_anchor: T.PANEL - "toolbar_anchor/toolbar_panel": T.INPUT_PANEL - top_half_panel: T.PANEL - "top_half_panel/icon_and_text_panel": T.PANEL - "top_half_panel/recipe_panel": T.PANEL - smithing_table_panel: T.PANEL - "smithing_table_panel/container_gamepad_helpers": T.STACK_PANEL - "smithing_table_panel/selected_item_details_factory": T.FACTORY - "smithing_table_panel/item_lock_notification_factory": T.FACTORY - "smithing_table_panel/root_panel": T.INPUT_PANEL - "smithing_table_panel/root_panel/common_panel": T.PANEL - "smithing_table_panel/root_panel/smithing_table_screen_inventory": T.PANEL - "smithing_table_panel/root_panel/smithing_table_screen_inventory/top_half_panel": T.PANEL - "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL - "smithing_table_panel/root_panel/smithing_table_screen_inventory/hotbar_grid": T.GRID - "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_take_progress_icon_button": T.BUTTON - "smithing_table_panel/root_panel/inventory_selected_icon_button": T.BUTTON - "smithing_table_panel/root_panel/toolbar_anchor": T.PANEL - "smithing_table_panel/root_panel/gamepad_cursor": T.BUTTON - "smithing_table_panel/flying_item_renderer": T.CUSTOM + "smithing_icon": T.IMAGE, + "upgrade_label": T.LABEL, + "icon_and_text_panel": T.PANEL, + "icon_and_text_panel/smithing_icon_panel": T.PANEL, + "icon_and_text_panel/upgrade_label": T.LABEL, + "smithing_icon_panel": T.PANEL, + "smithing_icon_panel/smithing_icon": T.IMAGE, + "smithing_image": T.IMAGE, + "smithing_material_image_ingot": T.IMAGE, + "arrow_icon": T.IMAGE, + "cross_out_icon_image": T.IMAGE, + "cross_out_icon_button": T.BUTTON, + "cross_out_icon_button/default": T.IMAGE, + "cross_out_icon_button/hover": T.CUSTOM, + "smithing_input_image_templates": T.IMAGE, + "smithing_input_image_armors": T.IMAGE, + "smithing_input_image_armors_and_tools": T.IMAGE, + "smithing_material_image_all": T.IMAGE, + "template_overlay_image": T.PANEL, + "template_overlay_image/templates": T.IMAGE, + "input_overlay_image": T.PANEL, + "input_overlay_image/armors_and_tools": T.IMAGE, + "input_overlay_image/armors": T.IMAGE, + "material_overlay_image": T.PANEL, + "material_overlay_image/all_materials": T.IMAGE, + "material_overlay_image/ingot": T.IMAGE, + "smithing_table_output_slot_button": T.BUTTON, + "smithing_table_item_slot": T.PANEL, + "smithing_table_item_slot/container_item": T.INPUT_PANEL, + "recipe_grid": T.GRID, + "recipe_grid/template_item_slot": T.PANEL, + "recipe_grid/input_item_slot": T.PANEL, + "recipe_grid/material_item_slot": T.PANEL, + "recipe_grid/yields": T.PANEL, + "recipe_grid/yields/arrow_icon": T.IMAGE, + "recipe_grid/yields/cross_out_icon": T.BUTTON, + "recipe_grid/result_item_slot": T.PANEL, + "recipe_grid/result_item_preview": T.PANEL, + "recipe_panel": T.PANEL, + "recipe_panel/recipe_grid": T.GRID, + "result_item_preview": T.PANEL, + "result_item_preview/inner": T.PANEL, + "result_item_preview_inner": T.PANEL, + "result_item_preview_inner/smithing_preview_renderer": T.CUSTOM, + "toolbar_background": T.IMAGE, + "help_button": T.BUTTON, + "toolbar_panel": T.INPUT_PANEL, + "toolbar_panel/toolbar_background": T.IMAGE, + "toolbar_panel/toolbar_background/toolbar_stack_panel": T.STACK_PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": T.BUTTON, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": T.BUTTON, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": T.PANEL, + "toolbar_anchor": T.PANEL, + "toolbar_anchor/toolbar_panel": T.INPUT_PANEL, + "top_half_panel": T.PANEL, + "top_half_panel/icon_and_text_panel": T.PANEL, + "top_half_panel/recipe_panel": T.PANEL, + "smithing_table_panel": T.PANEL, + "smithing_table_panel/container_gamepad_helpers": T.STACK_PANEL, + "smithing_table_panel/selected_item_details_factory": T.FACTORY, + "smithing_table_panel/item_lock_notification_factory": T.FACTORY, + "smithing_table_panel/root_panel": T.INPUT_PANEL, + "smithing_table_panel/root_panel/common_panel": T.PANEL, + "smithing_table_panel/root_panel/smithing_table_screen_inventory": T.PANEL, + "smithing_table_panel/root_panel/smithing_table_screen_inventory/top_half_panel": T.PANEL, + "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL, + "smithing_table_panel/root_panel/smithing_table_screen_inventory/hotbar_grid": T.GRID, + "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_take_progress_icon_button": T.BUTTON, + "smithing_table_panel/root_panel/inventory_selected_icon_button": T.BUTTON, + "smithing_table_panel/root_panel/toolbar_anchor": T.PANEL, + "smithing_table_panel/root_panel/gamepad_cursor": T.BUTTON, + "smithing_table_panel/flying_item_renderer": T.CUSTOM, } export type SmithingTablePocketType = { - ingot_image: T.IMAGE - background_image: T.IMAGE - arrow_icon: T.IMAGE - smithing_icon: T.IMAGE - upgrade_label: T.LABEL - smithing_icon_panel: T.PANEL - "smithing_icon_panel/smithing_icon": T.IMAGE - smithing_table_title_and_text_panel: T.PANEL - "smithing_table_title_and_text_panel/smithing_icon_panel": T.PANEL - "smithing_table_title_and_text_panel/upgrade_label": T.LABEL - slots_panel: T.PANEL - "slots_panel/input_slot": T.INPUT_PANEL - "slots_panel/material_slot": T.INPUT_PANEL - "slots_panel/result_slot": T.INPUT_PANEL - "slots_panel/plus_sign": T.LABEL - "slots_panel/arrow": T.IMAGE - "slots_panel/arrow/cross_out": T.IMAGE - smithing_table_contents_panel: T.STACK_PANEL - "smithing_table_contents_panel/smithing_table_title_and_text_panel": T.PANEL - "smithing_table_contents_panel/slots_panel": T.PANEL - inventory_grid: T.GRID - inventory_content: T.PANEL - "inventory_content/scrolling_panel": T.PANEL - inventory_and_smithing_table_panel: T.PANEL - "inventory_and_smithing_table_panel/inventory_half_screen": T.PANEL - "inventory_and_smithing_table_panel/inventory_half_screen/inventory_content": T.PANEL - "inventory_and_smithing_table_panel/smithing_half_screen": T.PANEL - "inventory_and_smithing_table_panel/smithing_half_screen/smithing_table_content": T.STACK_PANEL - header: T.PANEL - "header/header_background": T.IMAGE - "header/close_button": T.BUTTON - "header/panel": T.PANEL - "header/panel/title_label": T.LABEL - header_and_content_stack_panel: T.STACK_PANEL - "header_and_content_stack_panel/header": T.PANEL - "header_and_content_stack_panel/inventory_and_smithing_table_panel": T.PANEL - smithing_table_panel: T.PANEL - "smithing_table_panel/bg": T.IMAGE - "smithing_table_panel/root_panel": T.INPUT_PANEL - "smithing_table_panel/header_and_content_stack_panel": T.STACK_PANEL - "smithing_table_panel/container_gamepad_helpers": T.STACK_PANEL - "smithing_table_panel/inventory_selected_icon_button": T.BUTTON - "smithing_table_panel/hold_icon": T.BUTTON - "smithing_table_panel/selected_item_details_factory": T.FACTORY - "smithing_table_panel/item_lock_notification_factory": T.FACTORY - "smithing_table_panel/flying_item_renderer": T.CUSTOM + "ingot_image": T.IMAGE, + "background_image": T.IMAGE, + "arrow_icon": T.IMAGE, + "smithing_icon": T.IMAGE, + "upgrade_label": T.LABEL, + "smithing_icon_panel": T.PANEL, + "smithing_icon_panel/smithing_icon": T.IMAGE, + "smithing_table_title_and_text_panel": T.PANEL, + "smithing_table_title_and_text_panel/smithing_icon_panel": T.PANEL, + "smithing_table_title_and_text_panel/upgrade_label": T.LABEL, + "slots_panel": T.PANEL, + "slots_panel/input_slot": T.INPUT_PANEL, + "slots_panel/material_slot": T.INPUT_PANEL, + "slots_panel/result_slot": T.INPUT_PANEL, + "slots_panel/plus_sign": T.LABEL, + "slots_panel/arrow": T.IMAGE, + "slots_panel/arrow/cross_out": T.IMAGE, + "smithing_table_contents_panel": T.STACK_PANEL, + "smithing_table_contents_panel/smithing_table_title_and_text_panel": T.PANEL, + "smithing_table_contents_panel/slots_panel": T.PANEL, + "inventory_grid": T.GRID, + "inventory_content": T.PANEL, + "inventory_content/scrolling_panel": T.PANEL, + "inventory_and_smithing_table_panel": T.PANEL, + "inventory_and_smithing_table_panel/inventory_half_screen": T.PANEL, + "inventory_and_smithing_table_panel/inventory_half_screen/inventory_content": T.PANEL, + "inventory_and_smithing_table_panel/smithing_half_screen": T.PANEL, + "inventory_and_smithing_table_panel/smithing_half_screen/smithing_table_content": T.STACK_PANEL, + "header": T.PANEL, + "header/header_background": T.IMAGE, + "header/close_button": T.BUTTON, + "header/panel": T.PANEL, + "header/panel/title_label": T.LABEL, + "header_and_content_stack_panel": T.STACK_PANEL, + "header_and_content_stack_panel/header": T.PANEL, + "header_and_content_stack_panel/inventory_and_smithing_table_panel": T.PANEL, + "smithing_table_panel": T.PANEL, + "smithing_table_panel/bg": T.IMAGE, + "smithing_table_panel/root_panel": T.INPUT_PANEL, + "smithing_table_panel/header_and_content_stack_panel": T.STACK_PANEL, + "smithing_table_panel/container_gamepad_helpers": T.STACK_PANEL, + "smithing_table_panel/inventory_selected_icon_button": T.BUTTON, + "smithing_table_panel/hold_icon": T.BUTTON, + "smithing_table_panel/selected_item_details_factory": T.FACTORY, + "smithing_table_panel/item_lock_notification_factory": T.FACTORY, + "smithing_table_panel/flying_item_renderer": T.CUSTOM, } export type SmithingTable2PocketType = { - smithing_table_item_renderer: T.CUSTOM - smithing_image: T.IMAGE - smithing_material_image_ingot: T.IMAGE - background_image: T.IMAGE - smithing_input_image_templates: T.IMAGE - smithing_material_image_all: T.IMAGE - smithing_input_image_armors: T.IMAGE - smithing_input_image_armors_and_tools: T.IMAGE - template_overlay_image: T.PANEL - "template_overlay_image/templates": T.IMAGE - input_overlay_image: T.PANEL - "input_overlay_image/armors_and_tools": T.IMAGE - "input_overlay_image/armors": T.IMAGE - material_overlay_image: T.PANEL - "material_overlay_image/ingot": T.IMAGE - "material_overlay_image/all_materials": T.IMAGE - arrow_icon: T.IMAGE - smithing_icon: T.IMAGE - upgrade_label: T.LABEL - slot_grid_item: T.PANEL - "slot_grid_item/slot": T.INPUT_PANEL - template_slot: T.PANEL - input_slot: T.PANEL - material_slot: T.PANEL - inputs_stack: T.STACK_PANEL - "inputs_stack/template_slot": T.PANEL - "inputs_stack/padding1": T.PANEL - "inputs_stack/input_slot": T.PANEL - "inputs_stack/padding2": T.PANEL - "inputs_stack/material_slot": T.PANEL - inputs_panel: T.PANEL - "inputs_panel/inputs_stack": T.STACK_PANEL - result_slot: T.PANEL - cross_out_image: T.IMAGE - cross_out_icon: T.BUTTON - "cross_out_icon/default": T.IMAGE - "cross_out_icon/hover": T.CUSTOM - crafting_arrow: T.IMAGE - "crafting_arrow/cross_out": T.BUTTON - crafting_arrow_grid_item: T.PANEL - "crafting_arrow_grid_item/crafting_arrow": T.IMAGE - result_item_preview: T.PANEL - "result_item_preview/smithing_preview_renderer": T.CUSTOM - result_item_preview_grid_item: T.PANEL - "result_item_preview_grid_item/result_preview": T.PANEL - smithing_table_contents_panel: T.GRID - "smithing_table_contents_panel/label_holder": T.PANEL - "smithing_table_contents_panel/label_holder/title_label": T.LABEL - "smithing_table_contents_panel/inputs": T.PANEL - "smithing_table_contents_panel/result_slot": T.PANEL - "smithing_table_contents_panel/crafting_arrow": T.PANEL - "smithing_table_contents_panel/result_item_preview": T.PANEL - chest_item_renderer: T.CUSTOM - left_tab_inventory: T.PANEL - left_navigation_tabs: T.STACK_PANEL - "left_navigation_tabs/left_tab_inventory": T.PANEL - inventory_scroll_panel: T.PANEL - left_panel: T.STACK_PANEL - "left_panel/gamepad_helpers_and_tabs_holder": T.PANEL - "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": T.PANEL - "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": T.STACK_PANEL - "left_panel/content": T.INPUT_PANEL - "left_panel/content/bg": T.PANEL - "left_panel/content/inventory_scroll_panel": T.PANEL - right_tab_smithing_table: T.PANEL - right_navigation_tabs: T.STACK_PANEL - "right_navigation_tabs/pocket_tab_close_and_help_button": T.IMAGE - "right_navigation_tabs/fill": T.PANEL - "right_navigation_tabs/right_tab_smithing_table": T.PANEL - right_panel: T.STACK_PANEL - "right_panel/content": T.INPUT_PANEL - "right_panel/content/bg": T.PANEL - "right_panel/content/smithing_content_stack_panel": T.GRID - "right_panel/navigation_tabs_holder": T.PANEL - "right_panel/navigation_tabs_holder/right_navigation_tabs": T.STACK_PANEL - pocket_hotbar_and_content_panels: T.STACK_PANEL - smithing_table_panel: T.PANEL - "smithing_table_panel/pocket_hotbar_and_content_panels": T.STACK_PANEL - "smithing_table_panel/container_gamepad_helpers": T.STACK_PANEL - "smithing_table_panel/selected_item_details_factory": T.FACTORY - "smithing_table_panel/item_lock_notification_factory": T.FACTORY - "smithing_table_panel/inventory_selected_icon_button": T.BUTTON - "smithing_table_panel/inventory_take_progress_icon_button": T.BUTTON - "smithing_table_panel/flying_item_renderer": T.CUSTOM + "smithing_table_item_renderer": T.CUSTOM, + "smithing_image": T.IMAGE, + "smithing_material_image_ingot": T.IMAGE, + "background_image": T.IMAGE, + "smithing_input_image_templates": T.IMAGE, + "smithing_material_image_all": T.IMAGE, + "smithing_input_image_armors": T.IMAGE, + "smithing_input_image_armors_and_tools": T.IMAGE, + "template_overlay_image": T.PANEL, + "template_overlay_image/templates": T.IMAGE, + "input_overlay_image": T.PANEL, + "input_overlay_image/armors_and_tools": T.IMAGE, + "input_overlay_image/armors": T.IMAGE, + "material_overlay_image": T.PANEL, + "material_overlay_image/ingot": T.IMAGE, + "material_overlay_image/all_materials": T.IMAGE, + "arrow_icon": T.IMAGE, + "smithing_icon": T.IMAGE, + "upgrade_label": T.LABEL, + "slot_grid_item": T.PANEL, + "slot_grid_item/slot": T.INPUT_PANEL, + "template_slot": T.PANEL, + "input_slot": T.PANEL, + "material_slot": T.PANEL, + "inputs_stack": T.STACK_PANEL, + "inputs_stack/template_slot": T.PANEL, + "inputs_stack/padding1": T.PANEL, + "inputs_stack/input_slot": T.PANEL, + "inputs_stack/padding2": T.PANEL, + "inputs_stack/material_slot": T.PANEL, + "inputs_panel": T.PANEL, + "inputs_panel/inputs_stack": T.STACK_PANEL, + "result_slot": T.PANEL, + "cross_out_image": T.IMAGE, + "cross_out_icon": T.BUTTON, + "cross_out_icon/default": T.IMAGE, + "cross_out_icon/hover": T.CUSTOM, + "crafting_arrow": T.IMAGE, + "crafting_arrow/cross_out": T.BUTTON, + "crafting_arrow_grid_item": T.PANEL, + "crafting_arrow_grid_item/crafting_arrow": T.IMAGE, + "result_item_preview": T.PANEL, + "result_item_preview/smithing_preview_renderer": T.CUSTOM, + "result_item_preview_grid_item": T.PANEL, + "result_item_preview_grid_item/result_preview": T.PANEL, + "smithing_table_contents_panel": T.GRID, + "smithing_table_contents_panel/label_holder": T.PANEL, + "smithing_table_contents_panel/label_holder/title_label": T.LABEL, + "smithing_table_contents_panel/inputs": T.PANEL, + "smithing_table_contents_panel/result_slot": T.PANEL, + "smithing_table_contents_panel/crafting_arrow": T.PANEL, + "smithing_table_contents_panel/result_item_preview": T.PANEL, + "chest_item_renderer": T.CUSTOM, + "left_tab_inventory": T.PANEL, + "left_navigation_tabs": T.STACK_PANEL, + "left_navigation_tabs/left_tab_inventory": T.PANEL, + "inventory_scroll_panel": T.PANEL, + "left_panel": T.STACK_PANEL, + "left_panel/gamepad_helpers_and_tabs_holder": T.PANEL, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": T.PANEL, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": T.STACK_PANEL, + "left_panel/content": T.INPUT_PANEL, + "left_panel/content/bg": T.PANEL, + "left_panel/content/inventory_scroll_panel": T.PANEL, + "right_tab_smithing_table": T.PANEL, + "right_navigation_tabs": T.STACK_PANEL, + "right_navigation_tabs/pocket_tab_close_and_help_button": T.IMAGE, + "right_navigation_tabs/fill": T.PANEL, + "right_navigation_tabs/right_tab_smithing_table": T.PANEL, + "right_panel": T.STACK_PANEL, + "right_panel/content": T.INPUT_PANEL, + "right_panel/content/bg": T.PANEL, + "right_panel/content/smithing_content_stack_panel": T.GRID, + "right_panel/navigation_tabs_holder": T.PANEL, + "right_panel/navigation_tabs_holder/right_navigation_tabs": T.STACK_PANEL, + "pocket_hotbar_and_content_panels": T.STACK_PANEL, + "smithing_table_panel": T.PANEL, + "smithing_table_panel/pocket_hotbar_and_content_panels": T.STACK_PANEL, + "smithing_table_panel/container_gamepad_helpers": T.STACK_PANEL, + "smithing_table_panel/selected_item_details_factory": T.FACTORY, + "smithing_table_panel/item_lock_notification_factory": T.FACTORY, + "smithing_table_panel/inventory_selected_icon_button": T.BUTTON, + "smithing_table_panel/inventory_take_progress_icon_button": T.BUTTON, + "smithing_table_panel/flying_item_renderer": T.CUSTOM, } export type SmokerType = { - smoker_screen: T.SCREEN + "smoker_screen": T.SCREEN, } export type StartType = { - achievements_icon: T.IMAGE - inbox_bell_animated_icon: T.IMAGE - inbox_icon: T.IMAGE - unread_notification_icon: T.IMAGE - feedback_icon: T.IMAGE - feedback_icon_edu: T.IMAGE - Xbox_icon: T.IMAGE - change_skin_icon: T.IMAGE - manage_accounts_icon: T.IMAGE - new_offers_icon: T.IMAGE - edu_ai_lesson_crafter_button_content: T.STACK_PANEL - "edu_ai_lesson_crafter_button_content/padded_label": T.PANEL - "edu_ai_lesson_crafter_button_content/padded_label/label": T.LABEL - "edu_ai_lesson_crafter_button_content/padded_icon": T.PANEL - "edu_ai_lesson_crafter_button_content/padded_icon/icon": T.IMAGE - preview_tag: T.IMAGE - "preview_tag/preview_label": T.LABEL - update_prompt_icon: T.IMAGE - marketplace_error_icon: T.IMAGE - sale_ribbon_icon: T.IMAGE - alex_icon: T.IMAGE - gamerpic: T.CUSTOM - copyright: T.PANEL - "copyright/label": T.LABEL - "copyright/label_background": T.IMAGE - development_version: T.PANEL - "development_version/label": T.LABEL - "development_version/label_background": T.IMAGE - version: T.PANEL - "version/label": T.LABEL - "version/label_background": T.IMAGE - trial_info: T.PANEL - "trial_info/trial_label": T.LABEL - "trial_info/label_background": T.IMAGE - text_panel: T.PANEL - "text_panel/copyright": T.PANEL - "text_panel/development_version": T.PANEL - "text_panel/version": T.PANEL - skin_or_profile_panel: T.PANEL - "skin_or_profile_panel/change_skin": T.BUTTON - "skin_or_profile_panel/change_skin_button_demo": T.BUTTON - "skin_or_profile_panel/dressing_room_button": T.BUTTON - "skin_or_profile_panel/switch_accounts": T.BUTTON - "skin_or_profile_panel/profile_button": T.BUTTON - change_skin_button: T.BUTTON - change_skin_button_demo: T.BUTTON - switch_accounts_button: T.BUTTON - dressing_room_button: T.BUTTON - profile_button_content: T.STACK_PANEL - "profile_button_content/gamerpic_offset_wrapper": T.PANEL - "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border": T.PANEL - "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/gamerpic": T.CUSTOM - "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/alex_icon": T.IMAGE - "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/border_black": T.IMAGE - "profile_button_content/padding_middle": T.PANEL - "profile_button_content/vertically_central_text": T.STACK_PANEL - "profile_button_content/vertically_central_text/top_padding": T.PANEL - "profile_button_content/vertically_central_text/profile_button_label": T.LABEL - "profile_button_content/padding_right": T.PANEL - profile_button: T.BUTTON - skin_viewer_panel: T.INPUT_PANEL - "skin_viewer_panel/paper_doll_panel": T.PANEL - "skin_viewer_panel/paper_doll_panel/paper_doll": T.CUSTOM - "skin_viewer_panel/paper_doll_panel/appearacne_loading_panel": T.PANEL - "skin_viewer_panel/paper_doll_name_tag": T.CUSTOM - skin_panel: T.PANEL - "skin_panel/change_profile_or_skin": T.PANEL - "skin_panel/viewer_panel": T.INPUT_PANEL - friendsdrawer_button_panel: T.PANEL - "friendsdrawer_button_panel/friendsdrawer_button": T.BUTTON - gathering_button: T.BUTTON - badge_and_caption_animated: T.STACK_PANEL - "badge_and_caption_animated/caption_and_padding": T.STACK_PANEL - "badge_and_caption_animated/caption_and_padding/pad": T.PANEL - "badge_and_caption_animated/caption_and_padding/caption": T.IMAGE - "badge_and_caption_animated/badge_and_padding": T.STACK_PANEL - "badge_and_caption_animated/badge_and_padding/badge": T.IMAGE - "badge_and_caption_animated/badge_and_padding/fill": T.PANEL - gathering_badge: T.IMAGE - badge_and_caption: T.STACK_PANEL - "badge_and_caption/caption_and_padding": T.STACK_PANEL - "badge_and_caption/caption_and_padding/pad": T.PANEL - "badge_and_caption/caption_and_padding/caption": T.IMAGE - "badge_and_caption/badge_and_padding": T.STACK_PANEL - "badge_and_caption/badge_and_padding/badge": T.IMAGE - "badge_and_caption/badge_and_padding/fill": T.PANEL - gathering_caption: T.IMAGE - "gathering_caption/countdown_text": T.LABEL - gathering_panel: T.STACK_PANEL - "gathering_panel/horizontal_panel": T.STACK_PANEL - "gathering_panel/horizontal_panel/pad": T.PANEL - "gathering_panel/horizontal_panel/inner_panel": T.STACK_PANEL - "gathering_panel/horizontal_panel/inner_panel/badge_and_caption": T.STACK_PANEL - "gathering_panel/horizontal_panel/inner_panel/badge_and_caption_animated": T.STACK_PANEL - "gathering_panel/horizontal_panel/inner_panel/gathering_button": T.BUTTON - "gathering_panel/bottom_pad": T.PANEL - edu_feedback_button: T.BUTTON - release_feedback_button: T.BUTTON - pre_release_feedback_button: T.BUTTON - feedback_button: T.PANEL - "feedback_button/edu_feedback_button": T.BUTTON - "feedback_button/release_feedback_button": T.BUTTON - "feedback_button/pre_release_feedback_button": T.BUTTON - achievements_button: T.BUTTON - achievements_icon_button: T.PANEL - "achievements_icon_button/achievements_button": T.BUTTON - inbox_button: T.BUTTON - inbox_button_unread_panel: T.PANEL - "inbox_button_unread_panel/background": T.IMAGE - inbox_icon_button: T.PANEL - "inbox_icon_button/inbox_button": T.BUTTON - "inbox_icon_button/inbox_button_unread_panel": T.PANEL - xbl_signin_button: T.BUTTON - platform_signin_button: T.BUTTON - column_frame: T.PANEL - educator_resources_button: T.BUTTON - upper_online_buttons_panel: T.STACK_PANEL - "upper_online_buttons_panel/top_pad": T.PANEL - "upper_online_buttons_panel/stacked_column": T.STACK_PANEL - "upper_online_buttons_panel/stacked_column/xbl_btn_padding": T.PANEL - "upper_online_buttons_panel/stacked_column/xbl_btn": T.PANEL - "upper_online_buttons_panel/stacked_column/xbl_btn/xbl_signin_button": T.BUTTON - "upper_online_buttons_panel/stacked_column/platform_signin_btn": T.PANEL - "upper_online_buttons_panel/stacked_column/platform_signin_btn/platform_signin_button": T.BUTTON - "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label": T.STACK_PANEL - "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border": T.PANEL - "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border/gamerpic": T.CUSTOM - "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border/border_white": T.IMAGE - "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/spacer": T.PANEL - "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/label_panel": T.PANEL - "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/label_panel/gamertag_label": T.LABEL - "upper_online_buttons_panel/bottom_pad": T.PANEL - lower_online_buttons_panel: T.STACK_PANEL - "lower_online_buttons_panel/stacked_column": T.STACK_PANEL - "lower_online_buttons_panel/stacked_column/feedback_padding": T.PANEL - "lower_online_buttons_panel/stacked_column/feedback_btn": T.PANEL - "lower_online_buttons_panel/stacked_column/feedback_btn/feedback_button": T.PANEL - "lower_online_buttons_panel/stacked_column/signingin": T.LABEL - "lower_online_buttons_panel/stacked_column/achievements_padding": T.PANEL - "lower_online_buttons_panel/stacked_column/achievements_btn": T.PANEL - "lower_online_buttons_panel/stacked_column/achievements_btn/achievements_icon_button": T.PANEL - "lower_online_buttons_panel/stacked_column/inbox_padding": T.PANEL - "lower_online_buttons_panel/stacked_column/inbox_btn": T.PANEL - "lower_online_buttons_panel/stacked_column/inbox_btn/inbox_icon_button": T.PANEL - "lower_online_buttons_panel/stacked_column/profile_btn_padding": T.PANEL - "lower_online_buttons_panel/stacked_column/profile_btn": T.PANEL - "lower_online_buttons_panel/stacked_column/profile_btn/profile_button": T.BUTTON - main_button: T.BUTTON - main_button_dark: T.BUTTON - main_content_button: T.BUTTON - main_button_gif: T.CUSTOM - main_button_banner: T.IMAGE - "main_button_banner/banner_label": T.LABEL - play_button: T.BUTTON - play_button_art: T.PANEL - "play_button_art/default_background": T.CUSTOM - "play_button_art/hover_background": T.CUSTOM - "play_button_art/label": T.LABEL - "play_button_art/default_foreground": T.CUSTOM - "play_button_art/hover_foreground": T.CUSTOM - play_button_stack: T.PANEL - "play_button_stack/play_button": T.BUTTON - "play_button_stack/play_button_art": T.PANEL - "play_button_stack/play_button_banner": T.IMAGE - get_started_button: T.BUTTON - main_menu_button: T.BUTTON - featured_world_button: T.BUTTON - unlock_full_game_button: T.BUTTON - launch_editions_button: T.BUTTON - ai_lesson_crafter_button: T.BUTTON - settings_button: T.BUTTON - realms_button: T.BUTTON - servers_button: T.BUTTON - store_button: T.BUTTON - error_store_button: T.BUTTON - store_button_sale_banner: T.IMAGE - "store_button_sale_banner/banner_label_padding": T.PANEL - "store_button_sale_banner/banner_label_padding/banner_label": T.LABEL - store_button_content: T.PANEL - "store_button_content/button_label": T.LABEL - "store_button_content/sales_banner": T.IMAGE - store_error_image: T.IMAGE - store_error_content: T.IMAGE - "store_error_content/marketplace_button_label": T.LABEL - store_sale_label: T.LABEL - store_button_art: T.PANEL - "store_button_art/default_background": T.CUSTOM - "store_button_art/hover_background": T.CUSTOM - "store_button_art/label": T.LABEL - "store_button_art/default_foreground": T.CUSTOM - "store_button_art/hover_foreground": T.CUSTOM - store_button_stack: T.PANEL - "store_button_stack/store_button": T.BUTTON - "store_button_stack/store_button_art": T.PANEL - "store_button_stack/store_button_banner": T.IMAGE - "store_button_stack/update_icon": T.IMAGE - "store_button_stack/new_offers_icon": T.IMAGE - buy_game_button: T.BUTTON - stacked_row: T.PANEL - main_buttons_stack_panel: T.STACK_PANEL - "main_buttons_stack_panel/title_offset_padding": T.PANEL - "main_buttons_stack_panel/title_panel_content": T.PANEL - "main_buttons_stack_panel/padding_fill_1": T.PANEL - "main_buttons_stack_panel/main_buttons_panel": T.PANEL - "main_buttons_stack_panel/main_buttons_panel/main_buttons_panel": T.PANEL - "main_buttons_stack_panel/main_buttons_panel_new_player_flow": T.PANEL - "main_buttons_stack_panel/main_buttons_panel_new_player_flow/main_buttons_panel_new_player_flow": T.PANEL - "main_buttons_stack_panel/padding_fill_2": T.PANEL - "main_buttons_stack_panel/padding_fill_2/gamepad_helpers": T.STACK_PANEL - "main_buttons_stack_panel/padding_3": T.PANEL - main_buttons_panel_new_player_flow: T.PANEL - "main_buttons_panel_new_player_flow/stacked_rows": T.STACK_PANEL - "main_buttons_panel_new_player_flow/stacked_rows/test_label_row": T.PANEL - "main_buttons_panel_new_player_flow/stacked_rows/test_label_row/trial_info": T.PANEL - "main_buttons_panel_new_player_flow/stacked_rows/spacer": T.PANEL - "main_buttons_panel_new_player_flow/stacked_rows/get_started_row": T.PANEL - "main_buttons_panel_new_player_flow/stacked_rows/get_started_row/get_started_button": T.BUTTON - "main_buttons_panel_new_player_flow/stacked_rows/main_menu_row": T.PANEL - "main_buttons_panel_new_player_flow/stacked_rows/main_menu_row/main_menu_button": T.BUTTON - main_buttons_panel: T.PANEL - "main_buttons_panel/stacked_rows": T.STACK_PANEL - "main_buttons_panel/stacked_rows/play": T.PANEL - "main_buttons_panel/stacked_rows/featured_world": T.PANEL - "main_buttons_panel/stacked_rows/featured_world/featured_world_button": T.BUTTON - "main_buttons_panel/stacked_rows/stacked_row_2": T.PANEL - "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns": T.STACK_PANEL - "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_0": T.PANEL - "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_0/settings_button": T.BUTTON - "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1": T.PANEL - "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/store_button": T.BUTTON - "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/update_icon": T.IMAGE - "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/new_offers_icon": T.IMAGE - "main_buttons_panel/stacked_rows/ai_lesson_crafter_row": T.PANEL - "main_buttons_panel/stacked_rows/ai_lesson_crafter_row/ai_lesson_crafter_button": T.BUTTON - "main_buttons_panel/stacked_rows/ai_lesson_crafter_row/lesson_crafter_preview_overlay": T.IMAGE - "main_buttons_panel/stacked_rows/edu_featured_button": T.PANEL - "main_buttons_panel/stacked_rows/edu_featured_button/new_and_featured_button": T.BUTTON - "main_buttons_panel/stacked_rows/settings_and_editions_panel": T.PANEL - "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions": T.STACK_PANEL - "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/settings_panel": T.PANEL - "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/settings_panel/settings_button": T.BUTTON - "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/editions_panel": T.PANEL - "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/editions_panel/launch_editions_button": T.BUTTON - "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_panel": T.PANEL - "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_panel/settings_button": T.BUTTON - "main_buttons_panel/stacked_rows/settings": T.PANEL - "main_buttons_panel/stacked_rows/settings/settings_button": T.BUTTON - "main_buttons_panel/stacked_rows/realms": T.PANEL - "main_buttons_panel/stacked_rows/realms/realms_button": T.BUTTON - "main_buttons_panel/stacked_rows/unlock_full_game_row": T.PANEL - "main_buttons_panel/stacked_rows/unlock_full_game_row/unlock_full_game": T.BUTTON - "main_buttons_panel/stacked_rows/store": T.PANEL - "main_buttons_panel/stacked_rows/buy_game": T.PANEL - "main_buttons_panel/stacked_rows/buy_game/buy_game_button": T.BUTTON - "main_buttons_panel/stacked_rows/launch_editions": T.PANEL - "main_buttons_panel/stacked_rows/launch_editions/launch_editions_button": T.BUTTON - gamepad_helpers: T.STACK_PANEL - "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL - "gamepad_helpers/gamepad_helper_b_and_padding": T.PANEL - "gamepad_helpers/gamepad_helper_b_and_padding/gamepad_helper_b": T.STACK_PANEL - "gamepad_helpers/gamepad_helper_y_and_padding": T.PANEL - "gamepad_helpers/gamepad_helper_y_and_padding/gamepad_helper_y": T.STACK_PANEL - "gamepad_helpers/gamepad_helper_x_and_padding": T.PANEL - "gamepad_helpers/gamepad_helper_x_and_padding/gamepad_helper_x": T.STACK_PANEL - invite_notification_icon: T.IMAGE - invite_notification_button: T.BUTTON - notification_button_text: T.LABEL - notification_button_text_background: T.IMAGE - notification_button_text_panel: T.PANEL - "notification_button_text_panel/text": T.LABEL - "notification_button_text_panel/text/background": T.IMAGE - start_screen: T.SCREEN - start_screen_content: T.PANEL - "start_screen_content/main_buttons_and_title_panel": T.STACK_PANEL - "start_screen_content/online_button_stack": T.STACK_PANEL - "start_screen_content/online_button_stack/gathering_panel": T.STACK_PANEL - "start_screen_content/online_button_stack/upper_online_buttons_panel": T.STACK_PANEL - "start_screen_content/online_button_stack/lower_online_buttons_panel": T.STACK_PANEL - "start_screen_content/skin_panel": T.PANEL - "start_screen_content/text_panel": T.PANEL - "start_screen_content/friendsdrawer_button_panel": T.PANEL + "achievements_icon": T.IMAGE, + "inbox_bell_animated_icon": T.IMAGE, + "inbox_icon": T.IMAGE, + "unread_notification_icon": T.IMAGE, + "feedback_icon": T.IMAGE, + "feedback_icon_edu": T.IMAGE, + "Xbox_icon": T.IMAGE, + "change_skin_icon": T.IMAGE, + "manage_accounts_icon": T.IMAGE, + "new_offers_icon": T.IMAGE, + "edu_ai_lesson_crafter_button_content": T.STACK_PANEL, + "edu_ai_lesson_crafter_button_content/padded_label": T.PANEL, + "edu_ai_lesson_crafter_button_content/padded_label/label": T.LABEL, + "edu_ai_lesson_crafter_button_content/padded_icon": T.PANEL, + "edu_ai_lesson_crafter_button_content/padded_icon/icon": T.IMAGE, + "preview_tag": T.IMAGE, + "preview_tag/preview_label": T.LABEL, + "update_prompt_icon": T.IMAGE, + "marketplace_error_icon": T.IMAGE, + "sale_ribbon_icon": T.IMAGE, + "alex_icon": T.IMAGE, + "gamerpic": T.CUSTOM, + "copyright": T.PANEL, + "copyright/label": T.LABEL, + "copyright/label_background": T.IMAGE, + "development_version": T.PANEL, + "development_version/label": T.LABEL, + "development_version/label_background": T.IMAGE, + "version": T.PANEL, + "version/label": T.LABEL, + "version/label_background": T.IMAGE, + "trial_info": T.PANEL, + "trial_info/trial_label": T.LABEL, + "trial_info/label_background": T.IMAGE, + "text_panel": T.PANEL, + "text_panel/copyright": T.PANEL, + "text_panel/development_version": T.PANEL, + "text_panel/version": T.PANEL, + "skin_or_profile_panel": T.PANEL, + "skin_or_profile_panel/change_skin": T.BUTTON, + "skin_or_profile_panel/change_skin_button_demo": T.BUTTON, + "skin_or_profile_panel/dressing_room_button": T.BUTTON, + "skin_or_profile_panel/switch_accounts": T.BUTTON, + "skin_or_profile_panel/profile_button": T.BUTTON, + "change_skin_button": T.BUTTON, + "change_skin_button_demo": T.BUTTON, + "switch_accounts_button": T.BUTTON, + "dressing_room_button": T.BUTTON, + "profile_button_content": T.STACK_PANEL, + "profile_button_content/gamerpic_offset_wrapper": T.PANEL, + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border": T.PANEL, + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/gamerpic": T.CUSTOM, + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/alex_icon": T.IMAGE, + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/border_black": T.IMAGE, + "profile_button_content/padding_middle": T.PANEL, + "profile_button_content/vertically_central_text": T.STACK_PANEL, + "profile_button_content/vertically_central_text/top_padding": T.PANEL, + "profile_button_content/vertically_central_text/profile_button_label": T.LABEL, + "profile_button_content/padding_right": T.PANEL, + "profile_button": T.BUTTON, + "skin_viewer_panel": T.INPUT_PANEL, + "skin_viewer_panel/paper_doll_panel": T.PANEL, + "skin_viewer_panel/paper_doll_panel/paper_doll": T.CUSTOM, + "skin_viewer_panel/paper_doll_panel/appearacne_loading_panel": T.PANEL, + "skin_viewer_panel/paper_doll_name_tag": T.CUSTOM, + "skin_panel": T.PANEL, + "skin_panel/change_profile_or_skin": T.PANEL, + "skin_panel/viewer_panel": T.INPUT_PANEL, + "friendsdrawer_button_panel": T.PANEL, + "friendsdrawer_button_panel/friendsdrawer_button": T.BUTTON, + "gathering_button": T.BUTTON, + "badge_and_caption_animated": T.STACK_PANEL, + "badge_and_caption_animated/caption_and_padding": T.STACK_PANEL, + "badge_and_caption_animated/caption_and_padding/pad": T.PANEL, + "badge_and_caption_animated/caption_and_padding/caption": T.IMAGE, + "badge_and_caption_animated/badge_and_padding": T.STACK_PANEL, + "badge_and_caption_animated/badge_and_padding/badge": T.IMAGE, + "badge_and_caption_animated/badge_and_padding/fill": T.PANEL, + "gathering_badge": T.IMAGE, + "badge_and_caption": T.STACK_PANEL, + "badge_and_caption/caption_and_padding": T.STACK_PANEL, + "badge_and_caption/caption_and_padding/pad": T.PANEL, + "badge_and_caption/caption_and_padding/caption": T.IMAGE, + "badge_and_caption/badge_and_padding": T.STACK_PANEL, + "badge_and_caption/badge_and_padding/badge": T.IMAGE, + "badge_and_caption/badge_and_padding/fill": T.PANEL, + "gathering_caption": T.IMAGE, + "gathering_caption/countdown_text": T.LABEL, + "gathering_panel": T.STACK_PANEL, + "gathering_panel/horizontal_panel": T.STACK_PANEL, + "gathering_panel/horizontal_panel/pad": T.PANEL, + "gathering_panel/horizontal_panel/inner_panel": T.STACK_PANEL, + "gathering_panel/horizontal_panel/inner_panel/badge_and_caption": T.STACK_PANEL, + "gathering_panel/horizontal_panel/inner_panel/badge_and_caption_animated": T.STACK_PANEL, + "gathering_panel/horizontal_panel/inner_panel/gathering_button": T.BUTTON, + "gathering_panel/bottom_pad": T.PANEL, + "edu_feedback_button": T.BUTTON, + "release_feedback_button": T.BUTTON, + "pre_release_feedback_button": T.BUTTON, + "feedback_button": T.PANEL, + "feedback_button/edu_feedback_button": T.BUTTON, + "feedback_button/release_feedback_button": T.BUTTON, + "feedback_button/pre_release_feedback_button": T.BUTTON, + "achievements_button": T.BUTTON, + "achievements_icon_button": T.PANEL, + "achievements_icon_button/achievements_button": T.BUTTON, + "inbox_button": T.BUTTON, + "inbox_button_unread_panel": T.PANEL, + "inbox_button_unread_panel/background": T.IMAGE, + "inbox_icon_button": T.PANEL, + "inbox_icon_button/inbox_button": T.BUTTON, + "inbox_icon_button/inbox_button_unread_panel": T.PANEL, + "xbl_signin_button": T.BUTTON, + "platform_signin_button": T.BUTTON, + "column_frame": T.PANEL, + "educator_resources_button": T.BUTTON, + "upper_online_buttons_panel": T.STACK_PANEL, + "upper_online_buttons_panel/top_pad": T.PANEL, + "upper_online_buttons_panel/stacked_column": T.STACK_PANEL, + "upper_online_buttons_panel/stacked_column/xbl_btn_padding": T.PANEL, + "upper_online_buttons_panel/stacked_column/xbl_btn": T.PANEL, + "upper_online_buttons_panel/stacked_column/xbl_btn/xbl_signin_button": T.BUTTON, + "upper_online_buttons_panel/stacked_column/platform_signin_btn": T.PANEL, + "upper_online_buttons_panel/stacked_column/platform_signin_btn/platform_signin_button": T.BUTTON, + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label": T.STACK_PANEL, + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border": T.PANEL, + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border/gamerpic": T.CUSTOM, + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border/border_white": T.IMAGE, + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/spacer": T.PANEL, + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/label_panel": T.PANEL, + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/label_panel/gamertag_label": T.LABEL, + "upper_online_buttons_panel/bottom_pad": T.PANEL, + "lower_online_buttons_panel": T.STACK_PANEL, + "lower_online_buttons_panel/stacked_column": T.STACK_PANEL, + "lower_online_buttons_panel/stacked_column/feedback_padding": T.PANEL, + "lower_online_buttons_panel/stacked_column/feedback_btn": T.PANEL, + "lower_online_buttons_panel/stacked_column/feedback_btn/feedback_button": T.PANEL, + "lower_online_buttons_panel/stacked_column/signingin": T.LABEL, + "lower_online_buttons_panel/stacked_column/achievements_padding": T.PANEL, + "lower_online_buttons_panel/stacked_column/achievements_btn": T.PANEL, + "lower_online_buttons_panel/stacked_column/achievements_btn/achievements_icon_button": T.PANEL, + "lower_online_buttons_panel/stacked_column/inbox_padding": T.PANEL, + "lower_online_buttons_panel/stacked_column/inbox_btn": T.PANEL, + "lower_online_buttons_panel/stacked_column/inbox_btn/inbox_icon_button": T.PANEL, + "lower_online_buttons_panel/stacked_column/profile_btn_padding": T.PANEL, + "lower_online_buttons_panel/stacked_column/profile_btn": T.PANEL, + "lower_online_buttons_panel/stacked_column/profile_btn/profile_button": T.BUTTON, + "main_button": T.BUTTON, + "main_button_dark": T.BUTTON, + "main_content_button": T.BUTTON, + "main_button_gif": T.CUSTOM, + "main_button_banner": T.IMAGE, + "main_button_banner/banner_label": T.LABEL, + "play_button": T.BUTTON, + "play_button_art": T.PANEL, + "play_button_art/default_background": T.CUSTOM, + "play_button_art/hover_background": T.CUSTOM, + "play_button_art/label": T.LABEL, + "play_button_art/default_foreground": T.CUSTOM, + "play_button_art/hover_foreground": T.CUSTOM, + "play_button_stack": T.PANEL, + "play_button_stack/play_button": T.BUTTON, + "play_button_stack/play_button_art": T.PANEL, + "play_button_stack/play_button_banner": T.IMAGE, + "get_started_button": T.BUTTON, + "main_menu_button": T.BUTTON, + "featured_world_button": T.BUTTON, + "unlock_full_game_button": T.BUTTON, + "launch_editions_button": T.BUTTON, + "ai_lesson_crafter_button": T.BUTTON, + "settings_button": T.BUTTON, + "realms_button": T.BUTTON, + "servers_button": T.BUTTON, + "store_button": T.BUTTON, + "error_store_button": T.BUTTON, + "store_button_sale_banner": T.IMAGE, + "store_button_sale_banner/banner_label_padding": T.PANEL, + "store_button_sale_banner/banner_label_padding/banner_label": T.LABEL, + "store_button_content": T.PANEL, + "store_button_content/button_label": T.LABEL, + "store_button_content/sales_banner": T.IMAGE, + "store_error_image": T.IMAGE, + "store_error_content": T.IMAGE, + "store_error_content/marketplace_button_label": T.LABEL, + "store_sale_label": T.LABEL, + "store_button_art": T.PANEL, + "store_button_art/default_background": T.CUSTOM, + "store_button_art/hover_background": T.CUSTOM, + "store_button_art/label": T.LABEL, + "store_button_art/default_foreground": T.CUSTOM, + "store_button_art/hover_foreground": T.CUSTOM, + "store_button_stack": T.PANEL, + "store_button_stack/store_button": T.BUTTON, + "store_button_stack/store_button_art": T.PANEL, + "store_button_stack/store_button_banner": T.IMAGE, + "store_button_stack/update_icon": T.IMAGE, + "store_button_stack/new_offers_icon": T.IMAGE, + "buy_game_button": T.BUTTON, + "stacked_row": T.PANEL, + "main_buttons_stack_panel": T.STACK_PANEL, + "main_buttons_stack_panel/title_offset_padding": T.PANEL, + "main_buttons_stack_panel/title_panel_content": T.PANEL, + "main_buttons_stack_panel/padding_fill_1": T.PANEL, + "main_buttons_stack_panel/main_buttons_panel": T.PANEL, + "main_buttons_stack_panel/main_buttons_panel/main_buttons_panel": T.PANEL, + "main_buttons_stack_panel/main_buttons_panel_new_player_flow": T.PANEL, + "main_buttons_stack_panel/main_buttons_panel_new_player_flow/main_buttons_panel_new_player_flow": T.PANEL, + "main_buttons_stack_panel/padding_fill_2": T.PANEL, + "main_buttons_stack_panel/padding_fill_2/gamepad_helpers": T.STACK_PANEL, + "main_buttons_stack_panel/padding_3": T.PANEL, + "main_buttons_panel_new_player_flow": T.PANEL, + "main_buttons_panel_new_player_flow/stacked_rows": T.STACK_PANEL, + "main_buttons_panel_new_player_flow/stacked_rows/test_label_row": T.PANEL, + "main_buttons_panel_new_player_flow/stacked_rows/test_label_row/trial_info": T.PANEL, + "main_buttons_panel_new_player_flow/stacked_rows/spacer": T.PANEL, + "main_buttons_panel_new_player_flow/stacked_rows/get_started_row": T.PANEL, + "main_buttons_panel_new_player_flow/stacked_rows/get_started_row/get_started_button": T.BUTTON, + "main_buttons_panel_new_player_flow/stacked_rows/main_menu_row": T.PANEL, + "main_buttons_panel_new_player_flow/stacked_rows/main_menu_row/main_menu_button": T.BUTTON, + "main_buttons_panel": T.PANEL, + "main_buttons_panel/stacked_rows": T.STACK_PANEL, + "main_buttons_panel/stacked_rows/play": T.PANEL, + "main_buttons_panel/stacked_rows/featured_world": T.PANEL, + "main_buttons_panel/stacked_rows/featured_world/featured_world_button": T.BUTTON, + "main_buttons_panel/stacked_rows/stacked_row_2": T.PANEL, + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns": T.STACK_PANEL, + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_0": T.PANEL, + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_0/settings_button": T.BUTTON, + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1": T.PANEL, + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/store_button": T.BUTTON, + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/update_icon": T.IMAGE, + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/new_offers_icon": T.IMAGE, + "main_buttons_panel/stacked_rows/ai_lesson_crafter_row": T.PANEL, + "main_buttons_panel/stacked_rows/ai_lesson_crafter_row/ai_lesson_crafter_button": T.BUTTON, + "main_buttons_panel/stacked_rows/ai_lesson_crafter_row/lesson_crafter_preview_overlay": T.IMAGE, + "main_buttons_panel/stacked_rows/edu_featured_button": T.PANEL, + "main_buttons_panel/stacked_rows/edu_featured_button/new_and_featured_button": T.BUTTON, + "main_buttons_panel/stacked_rows/settings_and_editions_panel": T.PANEL, + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions": T.STACK_PANEL, + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/settings_panel": T.PANEL, + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/settings_panel/settings_button": T.BUTTON, + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/editions_panel": T.PANEL, + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/editions_panel/launch_editions_button": T.BUTTON, + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_panel": T.PANEL, + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_panel/settings_button": T.BUTTON, + "main_buttons_panel/stacked_rows/settings": T.PANEL, + "main_buttons_panel/stacked_rows/settings/settings_button": T.BUTTON, + "main_buttons_panel/stacked_rows/realms": T.PANEL, + "main_buttons_panel/stacked_rows/realms/realms_button": T.BUTTON, + "main_buttons_panel/stacked_rows/unlock_full_game_row": T.PANEL, + "main_buttons_panel/stacked_rows/unlock_full_game_row/unlock_full_game": T.BUTTON, + "main_buttons_panel/stacked_rows/store": T.PANEL, + "main_buttons_panel/stacked_rows/buy_game": T.PANEL, + "main_buttons_panel/stacked_rows/buy_game/buy_game_button": T.BUTTON, + "main_buttons_panel/stacked_rows/launch_editions": T.PANEL, + "main_buttons_panel/stacked_rows/launch_editions/launch_editions_button": T.BUTTON, + "gamepad_helpers": T.STACK_PANEL, + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL, + "gamepad_helpers/gamepad_helper_b_and_padding": T.PANEL, + "gamepad_helpers/gamepad_helper_b_and_padding/gamepad_helper_b": T.STACK_PANEL, + "gamepad_helpers/gamepad_helper_y_and_padding": T.PANEL, + "gamepad_helpers/gamepad_helper_y_and_padding/gamepad_helper_y": T.STACK_PANEL, + "gamepad_helpers/gamepad_helper_x_and_padding": T.PANEL, + "gamepad_helpers/gamepad_helper_x_and_padding/gamepad_helper_x": T.STACK_PANEL, + "invite_notification_icon": T.IMAGE, + "invite_notification_button": T.BUTTON, + "notification_button_text": T.LABEL, + "notification_button_text_background": T.IMAGE, + "notification_button_text_panel": T.PANEL, + "notification_button_text_panel/text": T.LABEL, + "notification_button_text_panel/text/background": T.IMAGE, + "start_screen": T.SCREEN, + "start_screen_content": T.PANEL, + "start_screen_content/main_buttons_and_title_panel": T.STACK_PANEL, + "start_screen_content/online_button_stack": T.STACK_PANEL, + "start_screen_content/online_button_stack/gathering_panel": T.STACK_PANEL, + "start_screen_content/online_button_stack/upper_online_buttons_panel": T.STACK_PANEL, + "start_screen_content/online_button_stack/lower_online_buttons_panel": T.STACK_PANEL, + "start_screen_content/skin_panel": T.PANEL, + "start_screen_content/text_panel": T.PANEL, + "start_screen_content/friendsdrawer_button_panel": T.PANEL, } export type StonecutterType = { - stonecutter_label: T.LABEL - arrow_icon: T.IMAGE - stone_cell_image: T.IMAGE - container_cell_image: T.IMAGE - toolbar_background: T.IMAGE - highlight_slot_panel: T.PANEL - "highlight_slot_panel/hover_text": T.CUSTOM - "highlight_slot_panel/highlight": T.IMAGE - "highlight_slot_panel/white_border": T.IMAGE - stone_slot_button: T.BUTTON - "stone_slot_button/hover": T.UNKNOWN - item_panel: T.PANEL - "item_panel/item_renderer": T.CUSTOM - "item_panel/item_renderer/stack_count_label": T.LABEL - stone_button: T.INPUT_PANEL - "stone_button/banner_pattern": T.UNKNOWN - "stone_button/item_button_ref": T.UNKNOWN - scroll_grid: T.GRID - scroll_grid_panel: T.INPUT_PANEL - "scroll_grid_panel/grid": T.GRID - scroll_panel: T.PANEL - stone_book_panel: T.INPUT_PANEL - "stone_book_panel/bg": T.PANEL - "stone_book_panel/scroll_panel": T.PANEL - result_slot_button: T.BUTTON - input_item_slot: T.INPUT_PANEL - result_item_slot: T.INPUT_PANEL - input_slots_stack_panel: T.STACK_PANEL - "input_slots_stack_panel/input_item_slot": T.INPUT_PANEL - top_half_stack_panel: T.STACK_PANEL - "top_half_stack_panel/input_slots_holder": T.PANEL - "top_half_stack_panel/input_slots_holder/input_slots_stack_panel": T.STACK_PANEL - "top_half_stack_panel/padding_1": T.PANEL - "top_half_stack_panel/arrow_holder": T.PANEL - "top_half_stack_panel/arrow_holder/arrow_icon": T.IMAGE - "top_half_stack_panel/padding_2": T.PANEL - "top_half_stack_panel/result_item_slot_holder": T.PANEL - "top_half_stack_panel/result_item_slot_holder/result_item_slot": T.INPUT_PANEL - top_half_panel: T.PANEL - "top_half_panel/top_half_stack_panel": T.STACK_PANEL - right_panel: T.INPUT_PANEL - "right_panel/common_panel": T.PANEL - "right_panel/stonecutter_screen_inventory": T.PANEL - "right_panel/stonecutter_screen_inventory/stonecutter_label": T.LABEL - "right_panel/stonecutter_screen_inventory/top_half_panel": T.PANEL - "right_panel/stonecutter_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL - "right_panel/stonecutter_screen_inventory/hotbar_grid": T.GRID - toolbar_panel: T.INPUT_PANEL - "toolbar_panel/toolbar_background": T.IMAGE - "toolbar_panel/toolbar_background/toolbar_stack_panel": T.STACK_PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": T.BUTTON - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": T.PANEL - toolbar_anchor: T.PANEL - "toolbar_anchor/toolbar_panel": T.INPUT_PANEL - center_fold: T.INPUT_PANEL - "center_fold/center_bg": T.IMAGE - screen_stack_panel: T.STACK_PANEL - "screen_stack_panel/stone_book_panel": T.INPUT_PANEL - "screen_stack_panel/center_fold": T.INPUT_PANEL - "screen_stack_panel/right_panel": T.INPUT_PANEL - "screen_stack_panel/toolbar_anchor": T.PANEL - stonecutter_panel: T.PANEL - "stonecutter_panel/screen_stack_panel": T.STACK_PANEL - "stonecutter_panel/container_gamepad_helpers": T.STACK_PANEL - "stonecutter_panel/selected_item_details_factory": T.FACTORY - "stonecutter_panel/item_lock_notification_factory": T.FACTORY - "stonecutter_panel/inventory_selected_icon_button": T.BUTTON - "stonecutter_panel/inventory_take_progress_icon_button": T.BUTTON - "stonecutter_panel/flying_item_renderer": T.CUSTOM - stonecutter_screen: T.SCREEN + "stonecutter_label": T.LABEL, + "arrow_icon": T.IMAGE, + "stone_cell_image": T.IMAGE, + "container_cell_image": T.IMAGE, + "toolbar_background": T.IMAGE, + "highlight_slot_panel": T.PANEL, + "highlight_slot_panel/hover_text": T.CUSTOM, + "highlight_slot_panel/highlight": T.IMAGE, + "highlight_slot_panel/white_border": T.IMAGE, + "stone_slot_button": T.BUTTON, + "stone_slot_button/hover": T.UNKNOWN, + "item_panel": T.PANEL, + "item_panel/item_renderer": T.CUSTOM, + "item_panel/item_renderer/stack_count_label": T.LABEL, + "stone_button": T.INPUT_PANEL, + "stone_button/banner_pattern": T.UNKNOWN, + "stone_button/item_button_ref": T.UNKNOWN, + "scroll_grid": T.GRID, + "scroll_grid_panel": T.INPUT_PANEL, + "scroll_grid_panel/grid": T.GRID, + "scroll_panel": T.PANEL, + "stone_book_panel": T.INPUT_PANEL, + "stone_book_panel/bg": T.PANEL, + "stone_book_panel/scroll_panel": T.PANEL, + "result_slot_button": T.BUTTON, + "input_item_slot": T.INPUT_PANEL, + "result_item_slot": T.INPUT_PANEL, + "input_slots_stack_panel": T.STACK_PANEL, + "input_slots_stack_panel/input_item_slot": T.INPUT_PANEL, + "top_half_stack_panel": T.STACK_PANEL, + "top_half_stack_panel/input_slots_holder": T.PANEL, + "top_half_stack_panel/input_slots_holder/input_slots_stack_panel": T.STACK_PANEL, + "top_half_stack_panel/padding_1": T.PANEL, + "top_half_stack_panel/arrow_holder": T.PANEL, + "top_half_stack_panel/arrow_holder/arrow_icon": T.IMAGE, + "top_half_stack_panel/padding_2": T.PANEL, + "top_half_stack_panel/result_item_slot_holder": T.PANEL, + "top_half_stack_panel/result_item_slot_holder/result_item_slot": T.INPUT_PANEL, + "top_half_panel": T.PANEL, + "top_half_panel/top_half_stack_panel": T.STACK_PANEL, + "right_panel": T.INPUT_PANEL, + "right_panel/common_panel": T.PANEL, + "right_panel/stonecutter_screen_inventory": T.PANEL, + "right_panel/stonecutter_screen_inventory/stonecutter_label": T.LABEL, + "right_panel/stonecutter_screen_inventory/top_half_panel": T.PANEL, + "right_panel/stonecutter_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL, + "right_panel/stonecutter_screen_inventory/hotbar_grid": T.GRID, + "toolbar_panel": T.INPUT_PANEL, + "toolbar_panel/toolbar_background": T.IMAGE, + "toolbar_panel/toolbar_background/toolbar_stack_panel": T.STACK_PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": T.BUTTON, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": T.PANEL, + "toolbar_anchor": T.PANEL, + "toolbar_anchor/toolbar_panel": T.INPUT_PANEL, + "center_fold": T.INPUT_PANEL, + "center_fold/center_bg": T.IMAGE, + "screen_stack_panel": T.STACK_PANEL, + "screen_stack_panel/stone_book_panel": T.INPUT_PANEL, + "screen_stack_panel/center_fold": T.INPUT_PANEL, + "screen_stack_panel/right_panel": T.INPUT_PANEL, + "screen_stack_panel/toolbar_anchor": T.PANEL, + "stonecutter_panel": T.PANEL, + "stonecutter_panel/screen_stack_panel": T.STACK_PANEL, + "stonecutter_panel/container_gamepad_helpers": T.STACK_PANEL, + "stonecutter_panel/selected_item_details_factory": T.FACTORY, + "stonecutter_panel/item_lock_notification_factory": T.FACTORY, + "stonecutter_panel/inventory_selected_icon_button": T.BUTTON, + "stonecutter_panel/inventory_take_progress_icon_button": T.BUTTON, + "stonecutter_panel/flying_item_renderer": T.CUSTOM, + "stonecutter_screen": T.SCREEN, } export type StonecutterPocketType = { - vertical_arrow_icon: T.IMAGE - chest_item_renderer: T.CUSTOM - stonecutter_item_renderer: T.CUSTOM - input_item_slot: T.INPUT_PANEL - result_item_slot: T.INPUT_PANEL - right_panel: T.STACK_PANEL - "right_panel/content": T.INPUT_PANEL - "right_panel/content/bg": T.PANEL - "right_panel/content/stonecutter_content_stack_panel": T.STACK_PANEL - "right_panel/navigation_tabs_holder": T.PANEL - "right_panel/navigation_tabs_holder/right_navigation_tabs": T.STACK_PANEL - right_tab_stonecutter: T.PANEL - right_navigation_tabs: T.STACK_PANEL - "right_navigation_tabs/close": T.IMAGE - "right_navigation_tabs/close/nodrop_zone": T.INPUT_PANEL - "right_navigation_tabs/close/close_button": T.BUTTON - "right_navigation_tabs/fill": T.PANEL - "right_navigation_tabs/right_tab_stonecutter": T.PANEL - input_slots_stack_panel: T.STACK_PANEL - "input_slots_stack_panel/input_item_slot": T.INPUT_PANEL - stonecutter_content_stack_panel: T.STACK_PANEL - "stonecutter_content_stack_panel/label_holder": T.PANEL - "stonecutter_content_stack_panel/label_holder/stonecutter_label": T.LABEL - "stonecutter_content_stack_panel/padding_1": T.PANEL - "stonecutter_content_stack_panel/panel": T.PANEL - "stonecutter_content_stack_panel/panel/stack_panel": T.STACK_PANEL - "stonecutter_content_stack_panel/panel/stack_panel/input_slots_holder": T.PANEL - "stonecutter_content_stack_panel/panel/stack_panel/input_slots_holder/input_slots_stack_panel": T.STACK_PANEL - "stonecutter_content_stack_panel/panel/stack_panel/padding_3": T.PANEL - "stonecutter_content_stack_panel/panel/stack_panel/arrow_holder": T.PANEL - "stonecutter_content_stack_panel/panel/stack_panel/arrow_holder/vertical_arrow_icon": T.IMAGE - "stonecutter_content_stack_panel/panel/stack_panel/padding_4": T.PANEL - "stonecutter_content_stack_panel/panel/stack_panel/result_item_slot_holder": T.PANEL - "stonecutter_content_stack_panel/panel/stack_panel/result_item_slot_holder/result_item_slot": T.INPUT_PANEL - "stonecutter_content_stack_panel/panel/stack_panel/padding_5": T.PANEL - inventory_panel: T.STACK_PANEL - "inventory_panel/inventory_title_label_centerer": T.PANEL - "inventory_panel/inventory_title_label_centerer/inventory_title_label": T.LABEL - "inventory_panel/inventory_scroll_panel": T.PANEL - inventory_scroll_panel: T.PANEL - pattern_button: T.INPUT_PANEL - pattern_scroll_panel: T.PANEL - left_panel: T.STACK_PANEL - "left_panel/gamepad_helpers_and_tabs_holder": T.PANEL - "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": T.PANEL - "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": T.PANEL - "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": T.STACK_PANEL - "left_panel/content": T.INPUT_PANEL - "left_panel/content/bg": T.PANEL - "left_panel/content/inventory_panel": T.STACK_PANEL - "left_panel/content/pattern_scroll_panel": T.PANEL - left_tab_stones: T.PANEL - left_tab_inventory: T.PANEL - left_navigation_tabs: T.STACK_PANEL - "left_navigation_tabs/left_tab_stones": T.PANEL - "left_navigation_tabs/padding": T.PANEL - "left_navigation_tabs/left_tab_inventory": T.PANEL - pocket_hotbar_and_content_panels: T.STACK_PANEL - stonecutter_panel: T.PANEL - "stonecutter_panel/pocket_hotbar_and_content_panels": T.STACK_PANEL - "stonecutter_panel/container_gamepad_helpers": T.STACK_PANEL - "stonecutter_panel/selected_item_details_factory": T.FACTORY - "stonecutter_panel/item_lock_notification_factory": T.FACTORY - "stonecutter_panel/inventory_selected_icon_button": T.BUTTON - "stonecutter_panel/inventory_take_progress_icon_button": T.BUTTON - "stonecutter_panel/flying_item_renderer": T.CUSTOM + "vertical_arrow_icon": T.IMAGE, + "chest_item_renderer": T.CUSTOM, + "stonecutter_item_renderer": T.CUSTOM, + "input_item_slot": T.INPUT_PANEL, + "result_item_slot": T.INPUT_PANEL, + "right_panel": T.STACK_PANEL, + "right_panel/content": T.INPUT_PANEL, + "right_panel/content/bg": T.PANEL, + "right_panel/content/stonecutter_content_stack_panel": T.STACK_PANEL, + "right_panel/navigation_tabs_holder": T.PANEL, + "right_panel/navigation_tabs_holder/right_navigation_tabs": T.STACK_PANEL, + "right_tab_stonecutter": T.PANEL, + "right_navigation_tabs": T.STACK_PANEL, + "right_navigation_tabs/close": T.IMAGE, + "right_navigation_tabs/close/nodrop_zone": T.INPUT_PANEL, + "right_navigation_tabs/close/close_button": T.BUTTON, + "right_navigation_tabs/fill": T.PANEL, + "right_navigation_tabs/right_tab_stonecutter": T.PANEL, + "input_slots_stack_panel": T.STACK_PANEL, + "input_slots_stack_panel/input_item_slot": T.INPUT_PANEL, + "stonecutter_content_stack_panel": T.STACK_PANEL, + "stonecutter_content_stack_panel/label_holder": T.PANEL, + "stonecutter_content_stack_panel/label_holder/stonecutter_label": T.LABEL, + "stonecutter_content_stack_panel/padding_1": T.PANEL, + "stonecutter_content_stack_panel/panel": T.PANEL, + "stonecutter_content_stack_panel/panel/stack_panel": T.STACK_PANEL, + "stonecutter_content_stack_panel/panel/stack_panel/input_slots_holder": T.PANEL, + "stonecutter_content_stack_panel/panel/stack_panel/input_slots_holder/input_slots_stack_panel": T.STACK_PANEL, + "stonecutter_content_stack_panel/panel/stack_panel/padding_3": T.PANEL, + "stonecutter_content_stack_panel/panel/stack_panel/arrow_holder": T.PANEL, + "stonecutter_content_stack_panel/panel/stack_panel/arrow_holder/vertical_arrow_icon": T.IMAGE, + "stonecutter_content_stack_panel/panel/stack_panel/padding_4": T.PANEL, + "stonecutter_content_stack_panel/panel/stack_panel/result_item_slot_holder": T.PANEL, + "stonecutter_content_stack_panel/panel/stack_panel/result_item_slot_holder/result_item_slot": T.INPUT_PANEL, + "stonecutter_content_stack_panel/panel/stack_panel/padding_5": T.PANEL, + "inventory_panel": T.STACK_PANEL, + "inventory_panel/inventory_title_label_centerer": T.PANEL, + "inventory_panel/inventory_title_label_centerer/inventory_title_label": T.LABEL, + "inventory_panel/inventory_scroll_panel": T.PANEL, + "inventory_scroll_panel": T.PANEL, + "pattern_button": T.INPUT_PANEL, + "pattern_scroll_panel": T.PANEL, + "left_panel": T.STACK_PANEL, + "left_panel/gamepad_helpers_and_tabs_holder": T.PANEL, + "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": T.PANEL, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": T.PANEL, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": T.STACK_PANEL, + "left_panel/content": T.INPUT_PANEL, + "left_panel/content/bg": T.PANEL, + "left_panel/content/inventory_panel": T.STACK_PANEL, + "left_panel/content/pattern_scroll_panel": T.PANEL, + "left_tab_stones": T.PANEL, + "left_tab_inventory": T.PANEL, + "left_navigation_tabs": T.STACK_PANEL, + "left_navigation_tabs/left_tab_stones": T.PANEL, + "left_navigation_tabs/padding": T.PANEL, + "left_navigation_tabs/left_tab_inventory": T.PANEL, + "pocket_hotbar_and_content_panels": T.STACK_PANEL, + "stonecutter_panel": T.PANEL, + "stonecutter_panel/pocket_hotbar_and_content_panels": T.STACK_PANEL, + "stonecutter_panel/container_gamepad_helpers": T.STACK_PANEL, + "stonecutter_panel/selected_item_details_factory": T.FACTORY, + "stonecutter_panel/item_lock_notification_factory": T.FACTORY, + "stonecutter_panel/inventory_selected_icon_button": T.BUTTON, + "stonecutter_panel/inventory_take_progress_icon_button": T.BUTTON, + "stonecutter_panel/flying_item_renderer": T.CUSTOM, } export type StorageManagementType = { - lock_icon: T.IMAGE - storage_header_panel: T.PANEL - "storage_header_panel/header_panel": T.STACK_PANEL - "storage_header_panel/header_panel/file_storage_dropdown": T.PANEL - "storage_header_panel/header_panel/file_storage_dropdown_edu": T.PANEL - "storage_header_panel/header_panel/clear_cache_button_panel": T.PANEL - "storage_header_panel/header_panel/clear_cache_button_panel/clear_cache_button": T.BUTTON - "storage_header_panel/header_panel/clear_download_cache_button_panel": T.PANEL - "storage_header_panel/header_panel/clear_download_cache_button_panel/clear_download_button": T.BUTTON - "storage_header_panel/header_panel/clear_screenshots_cache_button_panel": T.PANEL - "storage_header_panel/header_panel/clear_screenshots_cache_button_panel/clear_screenshots_cache_button": T.BUTTON - "storage_header_panel/header_panel/delete_local_screenshots_button_panel": T.PANEL - "storage_header_panel/header_panel/delete_local_screenshots_button_panel/delete_local_screenshots_button": T.BUTTON - "storage_header_panel/header_panel/panel": T.PANEL - "storage_header_panel/header_panel/panel/multiselect_button": T.PANEL - x_button_image: T.IMAGE - storage_main_panel: T.PANEL - "storage_main_panel/scroll_content": T.STACK_PANEL - storage_footer_panel: T.PANEL - "storage_footer_panel/visibleContent": T.STACK_PANEL - "storage_footer_panel/visibleContent/delete_button": T.BUTTON - "storage_footer_panel/visibleContent/share_button": T.BUTTON - delete_checkbox: T.PANEL - "delete_checkbox/selected_checkbox_image": T.IMAGE - generic_button: T.IMAGE - "generic_button/picture": T.IMAGE - "generic_button/text": T.LABEL - common_scroll_pane: T.PANEL - common_label: T.LABEL - main_content_panel: T.STACK_PANEL - "main_content_panel/panel": T.STACK_PANEL - "main_content_panel/panel/spacing": T.PANEL - "main_content_panel/panel/delete_checkbox": T.PANEL - "main_content_panel/panel/image_panel": T.PANEL - "main_content_panel/panel/image_panel/image_border": T.IMAGE - "main_content_panel/panel/image_panel/image_border/image": T.IMAGE - "main_content_panel/panel/text_panel_offset": T.PANEL - "main_content_panel/panel/text_panel_offset/text_panel": T.PANEL - "main_content_panel/panel/text_panel_offset/text_panel/0": T.UNKNOWN - common_main_button: T.PANEL - "common_main_button/background": T.IMAGE - "common_main_button/border": T.IMAGE - "common_main_button/main_content_panel": T.STACK_PANEL - base_glyph: T.STACK_PANEL - "base_glyph/image": T.IMAGE - "base_glyph/padding": T.PANEL - main_item_text: T.STACK_PANEL - grey_button: T.PANEL - icon_item_text: T.PANEL - world_item_text: T.PANEL - storage_main_item_toggle: T.STACK_PANEL - "storage_main_item_toggle/main_item_toggle": T.PANEL - "storage_main_item_toggle/contentPanel": T.STACK_PANEL - "storage_main_item_toggle/padding": T.PANEL - storage_scroll_pane: T.STACK_PANEL - "storage_scroll_pane/category_stack_panel": T.STACK_PANEL - "storage_scroll_pane/category_stack_panel/stack_panel": T.STACK_PANEL - "storage_scroll_pane/category_stack_panel/legacy_world_stack_panel": T.STACK_PANEL - "storage_scroll_pane/category_stack_panel/legacy_world_stack_panel/legacy_world_controls": T.STACK_PANEL - "storage_scroll_pane/category_stack_panel/retailtopreview_world_stack_panel": T.STACK_PANEL - "storage_scroll_pane/category_stack_panel/retailtopreview_world_stack_panel/retailtopreview_world_controls": T.STACK_PANEL - "storage_scroll_pane/multiselect_padding": T.PANEL - world_controls: T.STACK_PANEL - world_template_controls: T.STACK_PANEL - resource_controls: T.STACK_PANEL - behavior_controls: T.STACK_PANEL - skin_controls: T.STACK_PANEL - cached_controls: T.STACK_PANEL - resource_sub_item: T.STACK_PANEL - "resource_sub_item/dummy_panel": T.PANEL - "resource_sub_item/main_panel": T.PANEL - "resource_sub_item/main_panel/content": T.UNKNOWN - resource_toggle: T.STACK_PANEL - "resource_toggle/content_toggle": T.TOGGLE - "resource_toggle/content_toggle/default": T.UNKNOWN - "resource_toggle/content_toggle/hover": T.UNKNOWN - "resource_toggle/content_toggle/unchecked": T.UNKNOWN - "resource_toggle/content_toggle/unchecked_hover": T.UNKNOWN - "resource_toggle/item_button_panel": T.INPUT_PANEL - "resource_toggle/item_button_panel/y_sizing_panel": T.PANEL - "resource_toggle/item_button_panel/y_sizing_panel/border": T.IMAGE - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel": T.STACK_PANEL - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/blank": T.PANEL - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_0": T.PANEL - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel": T.PANEL - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel/blank": T.PANEL - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel/generate_texture_list_button": T.BUTTON - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_1": T.PANEL - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/delete_button": T.BUTTON - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_2": T.PANEL - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel": T.PANEL - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel/blank": T.PANEL - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel/share_button": T.BUTTON - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_3": T.PANEL - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/blank_3": T.PANEL - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_4": T.PANEL - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel": T.PANEL - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel/blank": T.PANEL - "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel/dependency_button": T.BUTTON - sub_item_tray_button: T.BUTTON - glyph_sub_icon: T.IMAGE - sub_item_blank_button: T.PANEL - texture_icon_text: T.PANEL - texture_icon_sub_item: T.PANEL - version_sub_item: T.PANEL - pack_description_sub_item: T.PANEL - world_sub_text: T.PANEL - world_template_sub_text: T.PANEL - basic_sub_item: T.PANEL - dropdown_button: T.BUTTON - dropdown_button_content: T.STACK_PANEL - "dropdown_button_content/image_panel": T.PANEL - "dropdown_button_content/image_panel/icon": T.IMAGE - "dropdown_button_content/text_panel": T.PANEL - "dropdown_button_content/text_panel/main_label": T.LABEL - filter_options: T.INPUT_PANEL - "filter_options/0": T.UNKNOWN - light_assets: T.PANEL - button_add: T.IMAGE - sort_panel: T.PANEL - "sort_panel/default": T.PANEL - sort_toggle: T.TOGGLE - storage_scroll_panel: T.PANEL - storage_main_item_legacy_world_toggle: T.STACK_PANEL - "storage_main_item_legacy_world_toggle/main_item_toggle": T.PANEL - "storage_main_item_legacy_world_toggle/contentPanel": T.STACK_PANEL - "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel": T.STACK_PANEL - "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel/dummy_panel": T.PANEL - "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel/sync_legacy_world_button": T.BUTTON - "storage_main_item_legacy_world_toggle/contentPanel/dummy_panel": T.PANEL - "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel": T.STACK_PANEL - "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel/dummy_panel": T.PANEL - "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel/sync_legacy_world_description": T.LABEL - "storage_main_item_legacy_world_toggle/contentPanel/itemsPanel": T.STACK_PANEL - "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel_dummy_panel": T.PANEL - "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel": T.STACK_PANEL - "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel/dummy_panel": T.PANEL - "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel/sync_legacy_world_conversion_description": T.LABEL - "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel": T.IMAGE - "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/loading_legacy_worlds_label": T.LABEL - "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/padding": T.PANEL - "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/progress_loading_bars": T.IMAGE - "storage_main_item_legacy_world_toggle/padding": T.PANEL - legacy_world_main_item_text: T.STACK_PANEL - storage_main_item_retailtopreview_world_toggle: T.STACK_PANEL - "storage_main_item_retailtopreview_world_toggle/main_item_toggle": T.PANEL - "storage_main_item_retailtopreview_world_toggle/contentPanel": T.STACK_PANEL - "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel": T.STACK_PANEL - "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel/dummy_panel": T.PANEL - "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel/sync_retailtopreview_world_button": T.BUTTON - "storage_main_item_retailtopreview_world_toggle/contentPanel/dummy_panel": T.PANEL - "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel": T.STACK_PANEL - "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel/dummy_panel": T.PANEL - "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel/sync_retailtopreview_world_description": T.LABEL - "storage_main_item_retailtopreview_world_toggle/contentPanel/itemsPanel": T.STACK_PANEL - "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel_dummy_panel": T.PANEL - "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel": T.STACK_PANEL - "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel/dummy_panel": T.PANEL - "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel/sync_retailtopreview_world_conversion_description": T.LABEL - "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel": T.IMAGE - "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/loading_retailtopreview_worlds_label": T.LABEL - "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/padding": T.PANEL - "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/progress_loading_bars": T.IMAGE - "storage_main_item_retailtopreview_world_toggle/padding": T.PANEL - retailtopreview_world_main_item_text: T.STACK_PANEL + "lock_icon": T.IMAGE, + "storage_header_panel": T.PANEL, + "storage_header_panel/header_panel": T.STACK_PANEL, + "storage_header_panel/header_panel/file_storage_dropdown": T.PANEL, + "storage_header_panel/header_panel/file_storage_dropdown_edu": T.PANEL, + "storage_header_panel/header_panel/clear_cache_button_panel": T.PANEL, + "storage_header_panel/header_panel/clear_cache_button_panel/clear_cache_button": T.BUTTON, + "storage_header_panel/header_panel/clear_download_cache_button_panel": T.PANEL, + "storage_header_panel/header_panel/clear_download_cache_button_panel/clear_download_button": T.BUTTON, + "storage_header_panel/header_panel/clear_screenshots_cache_button_panel": T.PANEL, + "storage_header_panel/header_panel/clear_screenshots_cache_button_panel/clear_screenshots_cache_button": T.BUTTON, + "storage_header_panel/header_panel/delete_local_screenshots_button_panel": T.PANEL, + "storage_header_panel/header_panel/delete_local_screenshots_button_panel/delete_local_screenshots_button": T.BUTTON, + "storage_header_panel/header_panel/panel": T.PANEL, + "storage_header_panel/header_panel/panel/multiselect_button": T.PANEL, + "x_button_image": T.IMAGE, + "storage_main_panel": T.PANEL, + "storage_main_panel/scroll_content": T.STACK_PANEL, + "storage_footer_panel": T.PANEL, + "storage_footer_panel/visibleContent": T.STACK_PANEL, + "storage_footer_panel/visibleContent/delete_button": T.BUTTON, + "storage_footer_panel/visibleContent/share_button": T.BUTTON, + "delete_checkbox": T.PANEL, + "delete_checkbox/selected_checkbox_image": T.IMAGE, + "generic_button": T.IMAGE, + "generic_button/picture": T.IMAGE, + "generic_button/text": T.LABEL, + "common_scroll_pane": T.PANEL, + "common_label": T.LABEL, + "main_content_panel": T.STACK_PANEL, + "main_content_panel/panel": T.STACK_PANEL, + "main_content_panel/panel/spacing": T.PANEL, + "main_content_panel/panel/delete_checkbox": T.PANEL, + "main_content_panel/panel/image_panel": T.PANEL, + "main_content_panel/panel/image_panel/image_border": T.IMAGE, + "main_content_panel/panel/image_panel/image_border/image": T.IMAGE, + "main_content_panel/panel/text_panel_offset": T.PANEL, + "main_content_panel/panel/text_panel_offset/text_panel": T.PANEL, + "main_content_panel/panel/text_panel_offset/text_panel/0": T.UNKNOWN, + "common_main_button": T.PANEL, + "common_main_button/background": T.IMAGE, + "common_main_button/border": T.IMAGE, + "common_main_button/main_content_panel": T.STACK_PANEL, + "base_glyph": T.STACK_PANEL, + "base_glyph/image": T.IMAGE, + "base_glyph/padding": T.PANEL, + "main_item_text": T.STACK_PANEL, + "grey_button": T.PANEL, + "icon_item_text": T.PANEL, + "world_item_text": T.PANEL, + "storage_main_item_toggle": T.STACK_PANEL, + "storage_main_item_toggle/main_item_toggle": T.PANEL, + "storage_main_item_toggle/contentPanel": T.STACK_PANEL, + "storage_main_item_toggle/padding": T.PANEL, + "storage_scroll_pane": T.STACK_PANEL, + "storage_scroll_pane/category_stack_panel": T.STACK_PANEL, + "storage_scroll_pane/category_stack_panel/stack_panel": T.STACK_PANEL, + "storage_scroll_pane/category_stack_panel/legacy_world_stack_panel": T.STACK_PANEL, + "storage_scroll_pane/category_stack_panel/legacy_world_stack_panel/legacy_world_controls": T.STACK_PANEL, + "storage_scroll_pane/category_stack_panel/retailtopreview_world_stack_panel": T.STACK_PANEL, + "storage_scroll_pane/category_stack_panel/retailtopreview_world_stack_panel/retailtopreview_world_controls": T.STACK_PANEL, + "storage_scroll_pane/multiselect_padding": T.PANEL, + "world_controls": T.STACK_PANEL, + "world_template_controls": T.STACK_PANEL, + "resource_controls": T.STACK_PANEL, + "behavior_controls": T.STACK_PANEL, + "skin_controls": T.STACK_PANEL, + "cached_controls": T.STACK_PANEL, + "resource_sub_item": T.STACK_PANEL, + "resource_sub_item/dummy_panel": T.PANEL, + "resource_sub_item/main_panel": T.PANEL, + "resource_sub_item/main_panel/content": T.UNKNOWN, + "resource_toggle": T.STACK_PANEL, + "resource_toggle/content_toggle": T.TOGGLE, + "resource_toggle/content_toggle/default": T.UNKNOWN, + "resource_toggle/content_toggle/hover": T.UNKNOWN, + "resource_toggle/content_toggle/unchecked": T.UNKNOWN, + "resource_toggle/content_toggle/unchecked_hover": T.UNKNOWN, + "resource_toggle/item_button_panel": T.INPUT_PANEL, + "resource_toggle/item_button_panel/y_sizing_panel": T.PANEL, + "resource_toggle/item_button_panel/y_sizing_panel/border": T.IMAGE, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel": T.STACK_PANEL, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/blank": T.PANEL, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_0": T.PANEL, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel": T.PANEL, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel/blank": T.PANEL, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel/generate_texture_list_button": T.BUTTON, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_1": T.PANEL, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/delete_button": T.BUTTON, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_2": T.PANEL, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel": T.PANEL, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel/blank": T.PANEL, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel/share_button": T.BUTTON, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_3": T.PANEL, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/blank_3": T.PANEL, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_4": T.PANEL, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel": T.PANEL, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel/blank": T.PANEL, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel/dependency_button": T.BUTTON, + "sub_item_tray_button": T.BUTTON, + "glyph_sub_icon": T.IMAGE, + "sub_item_blank_button": T.PANEL, + "texture_icon_text": T.PANEL, + "texture_icon_sub_item": T.PANEL, + "version_sub_item": T.PANEL, + "pack_description_sub_item": T.PANEL, + "world_sub_text": T.PANEL, + "world_template_sub_text": T.PANEL, + "basic_sub_item": T.PANEL, + "dropdown_button": T.BUTTON, + "dropdown_button_content": T.STACK_PANEL, + "dropdown_button_content/image_panel": T.PANEL, + "dropdown_button_content/image_panel/icon": T.IMAGE, + "dropdown_button_content/text_panel": T.PANEL, + "dropdown_button_content/text_panel/main_label": T.LABEL, + "filter_options": T.INPUT_PANEL, + "filter_options/0": T.UNKNOWN, + "light_assets": T.PANEL, + "button_add": T.IMAGE, + "sort_panel": T.PANEL, + "sort_panel/default": T.PANEL, + "sort_toggle": T.TOGGLE, + "storage_scroll_panel": T.PANEL, + "storage_main_item_legacy_world_toggle": T.STACK_PANEL, + "storage_main_item_legacy_world_toggle/main_item_toggle": T.PANEL, + "storage_main_item_legacy_world_toggle/contentPanel": T.STACK_PANEL, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel": T.STACK_PANEL, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel/dummy_panel": T.PANEL, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel/sync_legacy_world_button": T.BUTTON, + "storage_main_item_legacy_world_toggle/contentPanel/dummy_panel": T.PANEL, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel": T.STACK_PANEL, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel/dummy_panel": T.PANEL, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel/sync_legacy_world_description": T.LABEL, + "storage_main_item_legacy_world_toggle/contentPanel/itemsPanel": T.STACK_PANEL, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel_dummy_panel": T.PANEL, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel": T.STACK_PANEL, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel/dummy_panel": T.PANEL, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel/sync_legacy_world_conversion_description": T.LABEL, + "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel": T.IMAGE, + "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/loading_legacy_worlds_label": T.LABEL, + "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/padding": T.PANEL, + "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/progress_loading_bars": T.IMAGE, + "storage_main_item_legacy_world_toggle/padding": T.PANEL, + "legacy_world_main_item_text": T.STACK_PANEL, + "storage_main_item_retailtopreview_world_toggle": T.STACK_PANEL, + "storage_main_item_retailtopreview_world_toggle/main_item_toggle": T.PANEL, + "storage_main_item_retailtopreview_world_toggle/contentPanel": T.STACK_PANEL, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel": T.STACK_PANEL, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel/dummy_panel": T.PANEL, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel/sync_retailtopreview_world_button": T.BUTTON, + "storage_main_item_retailtopreview_world_toggle/contentPanel/dummy_panel": T.PANEL, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel": T.STACK_PANEL, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel/dummy_panel": T.PANEL, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel/sync_retailtopreview_world_description": T.LABEL, + "storage_main_item_retailtopreview_world_toggle/contentPanel/itemsPanel": T.STACK_PANEL, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel_dummy_panel": T.PANEL, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel": T.STACK_PANEL, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel/dummy_panel": T.PANEL, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel/sync_retailtopreview_world_conversion_description": T.LABEL, + "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel": T.IMAGE, + "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/loading_retailtopreview_worlds_label": T.LABEL, + "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/padding": T.PANEL, + "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/progress_loading_bars": T.IMAGE, + "storage_main_item_retailtopreview_world_toggle/padding": T.PANEL, + "retailtopreview_world_main_item_text": T.STACK_PANEL, } export type StorageManagementPopupType = { - storage_dependency_modal: T.INPUT_PANEL - "storage_dependency_modal/base": T.UNKNOWN - "storage_dependency_modal/base/background_with_buttons": T.PANEL - "storage_dependency_modal/base/title": T.LABEL - "storage_dependency_modal/base/dependencies": T.PANEL - "storage_dependency_modal/base/two_buttons": T.PANEL - "storage_dependency_modal/base/two_buttons/disabled_left": T.UNKNOWN - "storage_dependency_modal/base/two_buttons/left": T.UNKNOWN - "storage_dependency_modal/base/two_buttons/right": T.UNKNOWN - storage_dependency_panel: T.PANEL - "storage_dependency_panel/scroll": T.PANEL - storage_dependency_scroll_panel: T.PANEL - dependency_item_content: T.PANEL - "dependency_item_content/content": T.UNKNOWN - dependency_scroll_pane: T.STACK_PANEL - "dependency_scroll_pane/main_label": T.LABEL - "dependency_scroll_pane/contentPanel": T.STACK_PANEL - dependency_item: T.PANEL - dependency_item_small: T.PANEL - dependency_resource_item: T.PANEL - dependency_resource_item_small: T.PANEL - dependency_sub_item: T.STACK_PANEL - "dependency_sub_item/border": T.IMAGE - "dependency_sub_item/border/stack": T.STACK_PANEL - "dependency_sub_item/border/stack/padding_0": T.PANEL - "dependency_sub_item/border/stack/wrapper": T.PANEL - "dependency_sub_item/border/stack/wrapper/dependency_item": T.PANEL - "dependency_sub_item/border/stack/panel_0": T.PANEL - "dependency_sub_item/border/stack/panel_0/main_label": T.LABEL - "dependency_sub_item/border/stack/contentPanel": T.STACK_PANEL - "dependency_sub_item/border/stack/panel_1": T.PANEL - "dependency_sub_item/border/stack/panel_1/remove_pack_button": T.BUTTON - "dependency_sub_item/border/stack/padding_1": T.PANEL - "dependency_sub_item/padding": T.PANEL - sharing_popup_content: T.PANEL + "storage_dependency_modal": T.INPUT_PANEL, + "storage_dependency_modal/base": T.UNKNOWN, + "storage_dependency_modal/base/background_with_buttons": T.PANEL, + "storage_dependency_modal/base/title": T.LABEL, + "storage_dependency_modal/base/dependencies": T.PANEL, + "storage_dependency_modal/base/two_buttons": T.PANEL, + "storage_dependency_modal/base/two_buttons/disabled_left": T.UNKNOWN, + "storage_dependency_modal/base/two_buttons/left": T.UNKNOWN, + "storage_dependency_modal/base/two_buttons/right": T.UNKNOWN, + "storage_dependency_panel": T.PANEL, + "storage_dependency_panel/scroll": T.PANEL, + "storage_dependency_scroll_panel": T.PANEL, + "dependency_item_content": T.PANEL, + "dependency_item_content/content": T.UNKNOWN, + "dependency_scroll_pane": T.STACK_PANEL, + "dependency_scroll_pane/main_label": T.LABEL, + "dependency_scroll_pane/contentPanel": T.STACK_PANEL, + "dependency_item": T.PANEL, + "dependency_item_small": T.PANEL, + "dependency_resource_item": T.PANEL, + "dependency_resource_item_small": T.PANEL, + "dependency_sub_item": T.STACK_PANEL, + "dependency_sub_item/border": T.IMAGE, + "dependency_sub_item/border/stack": T.STACK_PANEL, + "dependency_sub_item/border/stack/padding_0": T.PANEL, + "dependency_sub_item/border/stack/wrapper": T.PANEL, + "dependency_sub_item/border/stack/wrapper/dependency_item": T.PANEL, + "dependency_sub_item/border/stack/panel_0": T.PANEL, + "dependency_sub_item/border/stack/panel_0/main_label": T.LABEL, + "dependency_sub_item/border/stack/contentPanel": T.STACK_PANEL, + "dependency_sub_item/border/stack/panel_1": T.PANEL, + "dependency_sub_item/border/stack/panel_1/remove_pack_button": T.BUTTON, + "dependency_sub_item/border/stack/padding_1": T.PANEL, + "dependency_sub_item/padding": T.PANEL, + "sharing_popup_content": T.PANEL, } export type CommonStoreType = { - store_base_screen: T.SCREEN - label: T.LABEL - offer_image_panel: T.IMAGE - banner_fill: T.IMAGE - store_description_background: T.IMAGE - store_description_background_dark: T.IMAGE - text_style_label: T.PANEL - "text_style_label/text_label": T.LABEL - sdl_texture: T.IMAGE - store_offer_grid_button: T.BUTTON - "store_offer_grid_button/hover": T.PANEL - "store_offer_grid_button/hover/key_art_size_panel": T.PANEL - "store_offer_grid_button/hover/key_art_size_panel/key_art_frame": T.IMAGE - "store_offer_grid_button/pressed": T.PANEL - "store_offer_grid_button/pressed/key_art_size_panel": T.PANEL - "store_offer_grid_button/pressed/key_art_size_panel/key_art_frame": T.IMAGE - "store_offer_grid_button/icon_overlay_panel": T.PANEL - ribbon_bar_text_background: T.IMAGE - ribbon_bar_red_hover_text_background: T.IMAGE - store_background: T.IMAGE - coin_icon: T.IMAGE - tag: T.IMAGE - "tag/new_offer_label": T.LABEL - marketplace_error_icon: T.IMAGE - new_offer_icon: T.IMAGE - status_new_offer_icon: T.IMAGE - update_balloon_icon: T.IMAGE - icon_overlay_panel: T.PANEL - "icon_overlay_panel/icon_overlay_position_factory": T.COLLECTION_PANEL - icon_overlay_position_factory: T.COLLECTION_PANEL - top_left_icon_factory: T.STACK_PANEL - top_middle_icon_factory: T.STACK_PANEL - top_right_icon_factory: T.STACK_PANEL - left_middle_icon_factory: T.STACK_PANEL - center_icon_factory: T.STACK_PANEL - right_middle_icon_factory: T.STACK_PANEL - bottom_left_icon_factory: T.STACK_PANEL - bottom_middle_icon_factory: T.STACK_PANEL - bottom_right_icon_factory: T.STACK_PANEL - icon_factory: T.STACK_PANEL - new_offer_icon_panel: T.PANEL - "new_offer_icon_panel/new_icon": T.IMAGE - update_offer_icon_panel: T.PANEL - "update_offer_icon_panel/update_icon": T.IMAGE - icon_overlay_image_panel: T.PANEL - "icon_overlay_image_panel/image_stack_panel": T.STACK_PANEL - "icon_overlay_image_panel/image_stack_panel/icon": T.IMAGE - "icon_overlay_image_panel/image_stack_panel/padding": T.PANEL - icon_overlay_sdl_padding: T.PANEL - status_icon_overlay: T.IMAGE - "status_icon_overlay/icon_overlay_label_panel": T.STACK_PANEL - "status_icon_overlay/icon_overlay_label_panel/left_margin_padding": T.PANEL - "status_icon_overlay/icon_overlay_label_panel/left_padding_1": T.PANEL - "status_icon_overlay/icon_overlay_label_panel/left_padding_2": T.PANEL - "status_icon_overlay/icon_overlay_label_panel/icon_panel": T.PANEL - "status_icon_overlay/icon_overlay_label_panel/icon_panel/icon_overlay_label": T.LABEL - "status_icon_overlay/icon_overlay_label_panel/right_padding_1": T.PANEL - "status_icon_overlay/icon_overlay_label_panel/right_padding_2": T.PANEL - "status_icon_overlay/icon_overlay_label_panel/right_margin_padding": T.PANEL - status_icon_panel: T.PANEL - "status_icon_panel/new_offer_icon": T.IMAGE - "status_icon_panel/update_icon": T.IMAGE - prompt_icon: T.IMAGE - up_arrow_icon: T.IMAGE - plus_icon: T.IMAGE - bang_icon: T.IMAGE - user_icon_small: T.IMAGE - user_icon_hover: T.IMAGE - gamepad_store_helper: T.PANEL - purchase_coins_panel: T.PANEL - "purchase_coins_panel/plus_button": T.BUTTON - inventory_panel: T.INPUT_PANEL - "inventory_panel/inventory_button": T.BUTTON - progress_loading_bars: T.IMAGE - progress_loading_spinner: T.IMAGE - progress_loading: T.PANEL - "progress_loading/centerer": T.PANEL - "progress_loading/centerer/progress_loading_spinner": T.IMAGE - "progress_loading/progress_loading_outline": T.IMAGE - "progress_loading/stack_panel": T.STACK_PANEL - "progress_loading/stack_panel/top_panel": T.STACK_PANEL - "progress_loading/stack_panel/top_panel/error_glyph_panel": T.PANEL - "progress_loading/stack_panel/top_panel/error_glyph_panel/error_image": T.IMAGE - "progress_loading/stack_panel/top_panel/padding": T.PANEL - "progress_loading/stack_panel/top_panel/store_failure_text": T.LABEL - "progress_loading/stack_panel/padding": T.PANEL - "progress_loading/stack_panel/image": T.IMAGE - "progress_loading/store_failure_code": T.LABEL - store_empty_progress_bar_icon: T.IMAGE - store_full_progress_bar_icon: T.IMAGE - store_progress_bar_nub: T.IMAGE - store_progress_bar_icon: T.PANEL - "store_progress_bar_icon/empty_progress_bar_icon": T.IMAGE - "store_progress_bar_icon/progress_percent_panel": T.PANEL - "store_progress_bar_icon/progress_percent_panel/full_progress_bar_icon": T.IMAGE - "store_progress_bar_icon/progress_percent_panel/progress_bar_nub": T.IMAGE - screen_contents_with_gamepad_helpers: T.STACK_PANEL - "screen_contents_with_gamepad_helpers/dialog_panel": T.PANEL - "screen_contents_with_gamepad_helpers/dialog_panel/dialog": T.UNKNOWN - "screen_contents_with_gamepad_helpers/padding": T.PANEL - "screen_contents_with_gamepad_helpers/gamepad_helpers_panel": T.PANEL - "screen_contents_with_gamepad_helpers/gamepad_helpers_panel/gamepad_helpers_a_and_b": T.STACK_PANEL - text_strike_through: T.IMAGE - markdown_banner: T.IMAGE - markdown_triangle: T.IMAGE - timer_panel: T.PANEL - "timer_panel/timer": T.LABEL - store_offer_type_icon: T.IMAGE - addon_pack_icon: T.IMAGE - addon_pack_small_icon: T.IMAGE - realms_plus_icon: T.IMAGE - resource_pack_icon: T.IMAGE - resource_pack_small_icon: T.IMAGE - skinpack_icon: T.IMAGE - skinpack_small_icon: T.IMAGE - world_icon: T.IMAGE - world_small_icon: T.IMAGE - mashup_icon: T.IMAGE - mashup_small_icon: T.IMAGE - persona_icon: T.IMAGE - persona_small_icon: T.IMAGE - small_padding_panel: T.PANEL - resource_pack_small_icon_with_buffer: T.STACK_PANEL - "resource_pack_small_icon_with_buffer/resource_pack_small_icon": T.IMAGE - "resource_pack_small_icon_with_buffer/small_padding_panel": T.PANEL - addon_pack_small_icon_with_buffer: T.STACK_PANEL - "addon_pack_small_icon_with_buffer/addon_pack_small_icon": T.IMAGE - "addon_pack_small_icon_with_buffer/small_padding_panel": T.PANEL - skinpack_small_icon_with_buffer: T.STACK_PANEL - "skinpack_small_icon_with_buffer/skinpack_small_icon": T.IMAGE - "skinpack_small_icon_with_buffer/small_padding_panel": T.PANEL - world_small_icon_with_buffer: T.STACK_PANEL - "world_small_icon_with_buffer/world_small_icon": T.IMAGE - "world_small_icon_with_buffer/small_padding_panel": T.PANEL - mashup_small_icon_with_buffer: T.STACK_PANEL - "mashup_small_icon_with_buffer/mashup_small_icon": T.IMAGE - "mashup_small_icon_with_buffer/small_padding_panel": T.PANEL - persona_small_icon_with_buffer: T.STACK_PANEL - "persona_small_icon_with_buffer/persona_small_icon": T.IMAGE - "persona_small_icon_with_buffer/small_padding_panel": T.PANEL - realms_icon: T.IMAGE - realms_banner_icon: T.IMAGE - csb_banner_icon: T.IMAGE - csb_expiration: T.PANEL - "csb_expiration/background": T.IMAGE - "csb_expiration/contents": T.STACK_PANEL - "csb_expiration/contents/csb_icon": T.IMAGE - "csb_expiration/contents/pad_0": T.PANEL - "csb_expiration/contents/text_panel": T.PANEL - "csb_expiration/contents/text_panel/text": T.LABEL - pack_icon_stack: T.PANEL - "pack_icon_stack/pack_icon_stack_factory": T.STACK_PANEL - pack_icon_stack_factory: T.STACK_PANEL - markdown_background: T.STACK_PANEL - "markdown_background/banner_panel": T.STACK_PANEL - "markdown_background/banner_panel/banner": T.IMAGE - "markdown_background/banner_panel/banner/banner_content_stack_panel": T.STACK_PANEL - "markdown_background/banner_panel/banner/banner_content_stack_panel/timer_panel": T.PANEL - "markdown_background/banner_panel/banner/banner_content_stack_panel/pack_icon_panel": T.PANEL - "markdown_background/banner_panel/banner/banner_content_stack_panel/pack_icon_panel/pack_icon_stack": T.PANEL - "markdown_background/banner_panel/banner/banner_content_stack_panel/markdown_panel": T.PANEL - "markdown_background/banner_panel/banner/banner_content_stack_panel/markdown_panel/markdown_label": T.UNKNOWN - "markdown_background/triangle_panel": T.PANEL - "markdown_background/triangle_panel/triangle": T.IMAGE - store_top_bar: T.IMAGE - store_top_bar_filler: T.IMAGE - direction_button_panel: T.PANEL - "direction_button_panel/chevron_image": T.IMAGE - cycle_pack_button: T.BUTTON - cycle_pack_left_button: T.BUTTON - cycle_pack_right_button: T.BUTTON - restore_purchases: T.BUTTON - back_content_panel: T.PANEL - "back_content_panel/back_button": T.STACK_PANEL - unlock_with_coins_button_stack_panel: T.STACK_PANEL - "unlock_with_coins_button_stack_panel/coin_panel": T.PANEL - "unlock_with_coins_button_stack_panel/coin_panel/coin": T.IMAGE - "unlock_with_coins_button_stack_panel/padding_1": T.PANEL - "unlock_with_coins_button_stack_panel/unlock_text": T.LABEL - store_dialog_with_coin_header: T.PANEL - store_coins_title_label: T.LABEL - search_header_stack: T.STACK_PANEL - "search_header_stack/gamepad_helper_y_alignment_hack": T.PANEL - "search_header_stack/gamepad_helper_y_alignment_hack/gamepad_helper_y": T.STACK_PANEL - "search_header_stack/search_header_text_box_panel": T.PANEL - "search_header_stack/search_header_text_box_panel/search_header_text_box": T.EDIT_BOX - "search_header_stack/search_header_text_box_panel/clear_button": T.BUTTON - "search_header_stack/store_layout_search_button": T.BUTTON - "search_header_stack/padding0": T.PANEL - sdl_store_header_with_coins: T.PANEL - "sdl_store_header_with_coins/sdl_store_header_with_coins_content": T.PANEL - top_bar_with_coins_panel: T.PANEL - "top_bar_with_coins_panel/top_bar": T.IMAGE - "top_bar_with_coins_panel/top_bar/title_stack_panel": T.STACK_PANEL - "top_bar_with_coins_panel/top_bar/title_stack_panel/padding1": T.PANEL - "top_bar_with_coins_panel/top_bar/title_stack_panel/back_button_content_panel": T.PANEL - "top_bar_with_coins_panel/top_bar/title_stack_panel/padding2": T.PANEL - "top_bar_with_coins_panel/top_bar/title_stack_panel/header_title_panel": T.PANEL - "top_bar_with_coins_panel/top_bar/title_stack_panel/padding3": T.PANEL - "top_bar_with_coins_panel/top_bar/title_stack_panel/padding4": T.PANEL - "top_bar_with_coins_panel/top_bar/title_stack_panel/status_and_coins": T.STACK_PANEL - "top_bar_with_coins_panel/top_bar/title_stack_panel/padding5": T.PANEL - "top_bar_with_coins_panel/top_bar/title_stack_panel/search_header_stack": T.STACK_PANEL - sdl_store_header_with_coins_content: T.PANEL - "sdl_store_header_with_coins_content/top_bar_coins": T.PANEL - store_header_with_coins: T.STACK_PANEL - "store_header_with_coins/top_bar_coins": T.PANEL - "store_header_with_coins/child_control": T.UNKNOWN - status_with_coins: T.STACK_PANEL - "status_with_coins/inventory_panel": T.PANEL - "status_with_coins/inventory_panel/inventory_button": T.INPUT_PANEL - "status_with_coins/padding0": T.PANEL - "status_with_coins/coin_balance_panel": T.PANEL - "status_with_coins/coin_balance_panel/coin_balance_panel": T.PANEL - "status_with_coins/padding1": T.PANEL - coins_with_title: T.PANEL - "coins_with_title/coin_balance_panel": T.PANEL - "coins_with_title/title_panel": T.UNKNOWN - wallet_button_panel: T.STACK_PANEL - "wallet_button_panel/purchase_coin_panel_alignment_hack": T.PANEL - "wallet_button_panel/purchase_coin_panel_alignment_hack/purchase_coin_panel": T.IMAGE - "wallet_button_panel/plus_image": T.PANEL - "wallet_button_panel/gamepad_helper_x_alignment_hack": T.PANEL - "wallet_button_panel/gamepad_helper_x_alignment_hack/gamepad_helper_x": T.STACK_PANEL - coin_balance_panel: T.IMAGE - "coin_balance_panel/coin_purchase_in_progress_panel": T.PANEL - "coin_balance_panel/coin_purchase_in_progress_panel/coin_purchase_in_progress": T.IMAGE - "coin_balance_panel/horizontal_coin_stack": T.STACK_PANEL - "coin_balance_panel/horizontal_coin_stack/padding": T.PANEL - "coin_balance_panel/horizontal_coin_stack/coin_icon": T.IMAGE - "coin_balance_panel/horizontal_coin_stack/small_filler": T.PANEL - "coin_balance_panel/horizontal_coin_stack/coin_text_holder": T.PANEL - "coin_balance_panel/horizontal_coin_stack/coin_text_holder/coin_balance_text": T.LABEL - my_account_button_content: T.PANEL - "my_account_button_content/my_account_content": T.STACK_PANEL - "my_account_button_content/my_account_content/user_icon": T.IMAGE - "my_account_button_content/my_account_content/my_account_label_panel": T.STACK_PANEL - "my_account_button_content/my_account_content/my_account_label_panel/padding": T.PANEL - "my_account_button_content/my_account_content/my_account_label_panel/my_account_center_label": T.PANEL - "my_account_button_content/my_account_content/my_account_label_panel/my_account_center_label/my_account_label": T.LABEL - inventory_button_panel: T.STACK_PANEL - "inventory_button_panel/inventory_button": T.PANEL - "inventory_button_panel/inventory_button/status_panel": T.STACK_PANEL - inventory_button: T.STACK_PANEL - "inventory_button/my_content_button": T.PANEL - "inventory_button/my_content_button/library_icon": T.IMAGE - "inventory_button/my_content_button/library_icon_bevel": T.IMAGE - "inventory_button/updates_with_bevel": T.PANEL - "inventory_button/updates_with_bevel/update_glyph": T.IMAGE - "inventory_button/updates_with_bevel/updates_bevel": T.IMAGE - "inventory_button/label_alignment_pannel": T.PANEL - "inventory_button/label_alignment_pannel/label_panel": T.IMAGE - "inventory_button/label_alignment_pannel/label_panel/inventory_label": T.LABEL - xbl_button_content: T.STACK_PANEL - "xbl_button_content/xbl_icon": T.IMAGE - "xbl_button_content/padding_0": T.PANEL - "xbl_button_content/disconnected_label": T.LABEL - "xbl_button_content/padding_1": T.PANEL - "xbl_button_content/error_icon_panel": T.PANEL - "xbl_button_content/error_icon_panel/error_icon": T.IMAGE - disclaimer_panel: T.PANEL - "disclaimer_panel/legal_text_label": T.LABEL - grey_bar_panel: T.STACK_PANEL - "grey_bar_panel/color_panel": T.PANEL - "grey_bar_panel/color_panel/grey_bar": T.IMAGE - "grey_bar_panel/color_panel/green_bar": T.IMAGE - "grey_bar_panel/pad": T.PANEL - tab_name_panel: T.STACK_PANEL - "tab_name_panel/bar_panel": T.PANEL - "tab_name_panel/bar_panel/green_bar": T.IMAGE - "tab_name_panel/button_panel": T.PANEL - "tab_name_panel/button_panel/tab_name_button_grey": T.BUTTON - "tab_name_panel/button_panel/tab_name_button_white": T.BUTTON - "tab_name_panel/pad_1": T.PANEL - store_offer_item_title_panel: T.PANEL - "store_offer_item_title_panel/offer_title": T.LABEL - store_offer_item_creator_panel: T.STACK_PANEL - "store_offer_item_creator_panel/pack_icon_panel": T.PANEL - "store_offer_item_creator_panel/pack_icon_panel/pack_icon_stack": T.PANEL - "store_offer_item_creator_panel/creator_label": T.LABEL - store_offer_ratings: T.PANEL - "store_offer_ratings/rating_text_panel": T.STACK_PANEL - vertical_store_offer_price_info_panel: T.PANEL - "vertical_store_offer_price_info_panel/sales_banner": T.STACK_PANEL - "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels": T.STACK_PANEL - "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels/markdown_panel": T.PANEL - "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels/padding_markdown_panel_right": T.PANEL - "vertical_store_offer_price_info_panel/sales_banner/store_offer_prompt_panel": T.PANEL - "vertical_store_offer_price_info_panel/sales_banner/store_offer_prompt_panel/offer_status_text": T.LABEL - "vertical_store_offer_price_info_panel/sales_banner/padding_to_right": T.PANEL - store_offer_price_info_panel: T.STACK_PANEL - "store_offer_price_info_panel/sales_banner": T.STACK_PANEL - "store_offer_price_info_panel/sales_banner/sales_markdown_percentage_panel": T.PANEL - "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown": T.STACK_PANEL - "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/fill_markdown_panel_left": T.PANEL - "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/markdown_panel": T.PANEL - "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/padding_markdown_panel_right": T.PANEL - "store_offer_price_info_panel/sales_banner/coin_panel": T.PANEL - "store_offer_price_info_panel/sales_banner/coin_panel/offer_coin_icon": T.IMAGE - "store_offer_price_info_panel/sales_banner/padding_3": T.PANEL - "store_offer_price_info_panel/sales_banner/offer_prompt_panel": T.PANEL - store_offer_sales_markdown_percentage_panel: T.PANEL - "store_offer_sales_markdown_percentage_panel/markdown_background": T.STACK_PANEL - store_offer_prompt_panel: T.PANEL - "store_offer_prompt_panel/offer_status_text": T.LABEL - featured_key_art: T.PANEL - "featured_key_art/bg": T.IMAGE - "featured_key_art/bg/featured_key_art": T.IMAGE - "featured_key_art/bg/progress_loading": T.PANEL - "featured_key_art/bg/new_offer_icon": T.IMAGE - "featured_key_art/focus_border": T.IMAGE - price_panel: T.STACK_PANEL - "price_panel/featured_icon_panel": T.PANEL - "price_panel/featured_icon_panel/featured_offer_coin_icon": T.IMAGE - "price_panel/price_label_panel": T.PANEL - "price_panel/price_label_panel/price": T.LABEL - "price_panel/padding": T.PANEL - vertical_padding_4: T.PANEL - vertical_padding_2: T.PANEL - sdl_vertical_padding_fill: T.PANEL - footer: T.PANEL - "footer/restore_purchases": T.BUTTON - store_section_panel: T.PANEL - "store_section_panel/store_section_panel_outline": T.IMAGE - "store_section_panel/section_panel": T.STACK_PANEL - "store_section_panel/section_panel/header": T.PANEL - "store_section_panel/section_panel/section_panel": T.PANEL - "store_section_panel/section_panel/section_panel/background": T.IMAGE - store_section_factory: T.STACK_PANEL - store_static_section_factory: T.STACK_PANEL - rtx_label: T.PANEL - "rtx_label/banner": T.IMAGE - "rtx_label/banner/icon": T.IMAGE - subscription_chevron: T.PANEL - "subscription_chevron/subscription_chevron_panel": T.PANEL - "subscription_chevron/subscription_chevron_panel/csb_chevron": T.PANEL - "subscription_chevron/subscription_chevron_panel/sales_banner_background": T.IMAGE - csb_banner: T.PANEL - "csb_banner/banner": T.IMAGE - pagination_content_panel: T.STACK_PANEL - "pagination_content_panel/padding_left": T.PANEL - "pagination_content_panel/first_page_button": T.BUTTON - "pagination_content_panel/pagination_middle_buttons_panel": T.STACK_PANEL - "pagination_content_panel/padding_right_fill": T.PANEL - "pagination_content_panel/go_to_top_button": T.BUTTON - pagination_panel: T.STACK_PANEL - "pagination_panel/top_padding": T.PANEL - "pagination_panel/pagination_content": T.STACK_PANEL - "pagination_panel/bottom_padding": T.PANEL - store_offer_grid_panel_content: T.STACK_PANEL - "store_offer_grid_panel_content/header_centerer_panel": T.PANEL - "store_offer_grid_panel_content/store_offer_grid_factory": T.COLLECTION_PANEL - "store_offer_grid_panel_content/pagination_centerer": T.PANEL - "store_offer_grid_panel_content/divider": T.STACK_PANEL - store_offer_grid_panel: T.PANEL - pagination_top_button_panel: T.PANEL - "pagination_top_button_panel/top_button_image": T.IMAGE - pagination_middle_buttons_panel: T.STACK_PANEL - "pagination_middle_buttons_panel/previous_page_button": T.BUTTON - "pagination_middle_buttons_panel/current_page_number_panel": T.PANEL - "pagination_middle_buttons_panel/current_page_number_panel/current_page_number": T.LABEL - "pagination_middle_buttons_panel/next_page_button": T.BUTTON - vertical_store_offer_grid_panel: T.STACK_PANEL - "vertical_store_offer_grid_panel/header": T.PANEL - "vertical_store_offer_grid_panel/centering_panel": T.PANEL - "vertical_store_offer_grid_panel/centering_panel/vertical_store_offer_grid_content": T.GRID - "vertical_store_offer_grid_panel/padding_0": T.PANEL - "vertical_store_offer_grid_panel/divider": T.STACK_PANEL - carousel_row_panel: T.STACK_PANEL - "carousel_row_panel/top_panel": T.STACK_PANEL - "carousel_row_panel/top_panel/pad_0": T.PANEL - "carousel_row_panel/top_panel/tab_names_factory_panel": T.STACK_PANEL - "carousel_row_panel/top_padding": T.PANEL - "carousel_row_panel/middle_panel": T.STACK_PANEL - "carousel_row_panel/middle_panel/left_button_panel": T.PANEL - "carousel_row_panel/middle_panel/left_button_panel/left_button": T.BUTTON - "carousel_row_panel/middle_panel/left_button_panel/left_bumper": T.STACK_PANEL - "carousel_row_panel/middle_panel/main_panel_factory": T.STACK_PANEL - "carousel_row_panel/middle_panel/right_button_panel": T.PANEL - "carousel_row_panel/middle_panel/right_button_panel/right_button": T.BUTTON - "carousel_row_panel/middle_panel/right_button_panel/right_bumper": T.STACK_PANEL - "carousel_row_panel/bottom_panel": T.PANEL - "carousel_row_panel/bottom_panel/grey_bar_factory_panel": T.STACK_PANEL - "carousel_row_panel/bottom_padding": T.PANEL - "carousel_row_panel/divider_panel": T.PANEL - "carousel_row_panel/divider_panel/divider": T.PANEL - carousel_factory: T.STACK_PANEL - hero_row_l2_panel: T.STACK_PANEL - "hero_row_l2_panel/header": T.PANEL - "hero_row_l2_panel/centering_panel": T.PANEL - "hero_row_l2_panel/centering_panel/l2_featured_stack": T.STACK_PANEL - "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_0": T.PANEL - "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_1": T.PANEL - "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_1": T.PANEL - "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_2": T.PANEL - "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_2": T.PANEL - "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_3": T.PANEL - "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_3": T.PANEL - "hero_row_l2_panel/padding_0": T.PANEL - "hero_row_l2_panel/divider": T.STACK_PANEL - blade_row_key_art: T.PANEL - "blade_row_key_art/blade_row_key_art_image": T.IMAGE - "blade_row_key_art/blade_row_key_art_image/key_art_border": T.IMAGE - one_key_art_screenshot: T.IMAGE - one_key_art_screenshot_panel: T.PANEL - "one_key_art_screenshot_panel/blade_offer_frame": T.UNKNOWN - "one_key_art_screenshot_panel/blade_offer_frame/one_key_art_screenshot": T.IMAGE - "one_key_art_screenshot_panel/blade_offer_frame/one_key_art_screenshot/one_key_art_frame": T.IMAGE - screenshots_grid: T.COLLECTION_PANEL - "screenshots_grid/screenshot_1": T.PANEL - "screenshots_grid/screenshot_2": T.PANEL - "screenshots_grid/screenshot_3": T.PANEL - "screenshots_grid/screenshot_4": T.PANEL - blade_offer_details_title: T.LABEL - blade_offer_sale_markdown: T.LABEL - blade_offer_description_details: T.STACK_PANEL - "blade_offer_description_details/blade_title_stack": T.STACK_PANEL - "blade_offer_description_details/blade_title_stack/blade_title": T.LABEL - "blade_offer_description_details/blade_offer_creator_label": T.STACK_PANEL - "blade_offer_description_details/blade_offer_description_padding_2": T.PANEL - "blade_offer_description_details/ratings_and_coins": T.STACK_PANEL - "blade_offer_description_details/ratings_and_coins/subscription_panel": T.PANEL - "blade_offer_description_details/ratings_and_coins/blade_sales_markdown_percentage_panel": T.PANEL - "blade_offer_description_details/ratings_and_coins/blade_sales_markdown_percentage_panel/blade_markdown_background": T.STACK_PANEL - "blade_offer_description_details/ratings_and_coins/ratings_panel": T.PANEL - "blade_offer_description_details/ratings_and_coins/ratings_panel/blade_ratings": T.PANEL - "blade_offer_description_details/ratings_and_coins/blade_rating_count_panel": T.PANEL - "blade_offer_description_details/ratings_and_coins/fill_padding": T.PANEL - "blade_offer_description_details/ratings_and_coins/blade_offer_price_markdown_panel": T.PANEL - "blade_offer_description_details/ratings_and_coins/price_panel": T.PANEL - "blade_offer_description_details/ratings_and_coins/price_panel/price": T.STACK_PANEL - "blade_offer_description_details/ratings_and_coins/price_panel_padding_right": T.PANEL - "blade_offer_description_details/blade_offer_description_padding_3": T.PANEL - screenshots_and_offer_details_panel: T.PANEL - "screenshots_and_offer_details_panel/blade_offer_screenshots_grid": T.COLLECTION_PANEL - "screenshots_and_offer_details_panel/blade_offer_description_area": T.IMAGE - "screenshots_and_offer_details_panel/blade_offer_description_area/blade_offer_description_border": T.IMAGE - "screenshots_and_offer_details_panel/blade_offer_description_area/hero_blade_offer_description_details": T.STACK_PANEL - blade_row_featured_panel: T.PANEL - "blade_row_featured_panel/blade_row_featured_key_art": T.PANEL - "blade_row_featured_panel/blade_offer_screenshots_and_details_panel": T.PANEL - transparent_content_button: T.BUTTON - hero_blade_row_panel: T.PANEL - "hero_blade_row_panel/blade_row_transparent_button": T.BUTTON - hero_row_panel: T.STACK_PANEL - "hero_row_panel/header": T.PANEL - "hero_row_panel/centering_panel": T.PANEL - "hero_row_panel/centering_panel/featured_stack": T.STACK_PANEL - "hero_row_panel/centering_panel/featured_stack/hero_offer": T.BUTTON - "hero_row_panel/centering_panel/featured_stack/padding_0": T.PANEL - "hero_row_panel/centering_panel/featured_stack/hero_offer_grid": T.STACK_PANEL - "hero_row_panel/padding_0": T.PANEL - "hero_row_panel/divider": T.STACK_PANEL - hero_offer: T.PANEL - "hero_offer/featured_key_art": T.PANEL - "hero_offer/rtx_label": T.PANEL - "hero_offer/offer_description_area": T.IMAGE - "hero_offer/offer_description_area/hero_offer_description_details": T.STACK_PANEL - hero_offer_details_title: T.LABEL - hero_offer_description_details: T.STACK_PANEL - "hero_offer_description_details/hero_title_stack": T.STACK_PANEL - "hero_offer_description_details/hero_title_stack/title": T.LABEL - "hero_offer_description_details/padding_5": T.PANEL - "hero_offer_description_details/progress": T.PANEL - "hero_offer_description_details/creator_label": T.STACK_PANEL - "hero_offer_description_details/padding_0": T.PANEL - "hero_offer_description_details/durable_offer_info_panel": T.STACK_PANEL - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel": T.STACK_PANEL - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/subscription_panel": T.PANEL - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel": T.PANEL - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel/markdown_banner": T.STACK_PANEL - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/ratings_panel": T.PANEL - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/ratings_panel/ratings": T.PANEL - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/rating_count_panel": T.PANEL - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/pack_icon_panel": T.PANEL - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": T.PANEL - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/fill_padding": T.PANEL - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/offer_price_markdown_panel": T.PANEL - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/price_panel": T.PANEL - "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/price_panel/price": T.STACK_PANEL - "hero_offer_description_details/padding_1": T.PANEL - hero_offer_download_progress: T.PANEL - "hero_offer_download_progress/label": T.LABEL - "hero_offer_download_progress/bar": T.PANEL - rating_text_panel: T.STACK_PANEL - "rating_text_panel/left_padding": T.PANEL - "rating_text_panel/star_panel": T.PANEL - "rating_text_panel/star_panel/rating_star": T.IMAGE - "rating_text_panel/middle_padding": T.PANEL - "rating_text_panel/rating_label": T.LABEL - ratings_description: T.PANEL - "ratings_description/rating_text_panel": T.STACK_PANEL - store_rating_count_panel: T.PANEL - "store_rating_count_panel/rating_count_text": T.LABEL - hero_offer_grid: T.STACK_PANEL - "hero_offer_grid/row_1": T.STACK_PANEL - "hero_offer_grid/row_1/offer_1": T.PANEL - "hero_offer_grid/row_1/padding_0": T.PANEL - "hero_offer_grid/row_1/offer_2": T.PANEL - "hero_offer_grid/padding_0": T.PANEL - "hero_offer_grid/row_2": T.STACK_PANEL - "hero_offer_grid/row_2/offer_1": T.PANEL - "hero_offer_grid/row_2/padding_0": T.PANEL - "hero_offer_grid/row_2/offer_2": T.PANEL - offer_download_progress: T.PANEL - "offer_download_progress/label": T.LABEL - "offer_download_progress/bar": T.PANEL - banner_button: T.PANEL - sdl_text_aligned_panel: T.STACK_PANEL - sdl_text_minecraftTen_aligned_panel: T.STACK_PANEL - sdl_content_aligned_panel: T.STACK_PANEL - "sdl_content_aligned_panel/left__padding_panel": T.PANEL - "sdl_content_aligned_panel/control": T.UNKNOWN - "sdl_content_aligned_panel/right_padding_panel": T.PANEL - sdl_aligned_text: T.LABEL - sdl_aligned_minecraftTen_text: T.LABEL - content_offer_key_art: T.IMAGE - vertical_content_offer_header: T.IMAGE - "vertical_content_offer_header/header": T.STACK_PANEL - vertical_content_offer_panel: T.STACK_PANEL - vertical_offer_grid_panel: T.PANEL - offer_content: T.PANEL - "offer_content/offer_item": T.PANEL - vertical_offer_content: T.PANEL - "vertical_offer_content/offer_item": T.PANEL - vertical_coin_offer_content: T.PANEL - "vertical_coin_offer_content/offer_item": T.PANEL - store_offer_key_art: T.IMAGE - store_offer_grid_show_more: T.PANEL - "store_offer_grid_show_more/frame": T.IMAGE - "store_offer_grid_show_more/frame/title": T.LABEL - "store_offer_grid_show_more/offer_button": T.BUTTON - "store_offer_grid_show_more/offer_button/hover": T.IMAGE - "store_offer_grid_show_more/offer_button/hover/key_art_size_panel": T.PANEL - "store_offer_grid_show_more/offer_button/pressed": T.IMAGE - "store_offer_grid_show_more/offer_button/pressed/key_art_size_panel": T.PANEL - persona_grid_show_more: T.BUTTON - row_offer_sale_markdown: T.LABEL - discount_label: T.STACK_PANEL - "discount_label/label_panel": T.PANEL - "discount_label/label_panel/label": T.LABEL - "discount_label/icon_panel": T.PANEL - "discount_label/icon_panel/icon": T.IMAGE - hero_offer_sale_markdown: T.LABEL - offer_price_markdown_panel: T.PANEL - "offer_price_markdown_panel/offer_price": T.LABEL - "offer_price_markdown_panel/offer_price/text_strike_through": T.IMAGE - store_offer_title: T.LABEL - store_offer_key_art_frame: T.IMAGE - "store_offer_key_art_frame/key_art": T.IMAGE - "store_offer_key_art_frame/key_art/key_art_frame": T.IMAGE - "store_offer_key_art_frame/key_art/csb_expiration_banner": T.PANEL - "store_offer_key_art_frame/progress_loading": T.PANEL - vertical_store_offer_grid_item: T.PANEL - "vertical_store_offer_grid_item/frame": T.IMAGE - "vertical_store_offer_grid_item/frame/horizontal_stack_panel": T.STACK_PANEL - "vertical_store_offer_grid_item/frame/offer_button": T.BUTTON - "vertical_store_offer_grid_item/dark_frame": T.IMAGE - "vertical_store_offer_grid_item/dark_frame/horizontal_stack_panel": T.STACK_PANEL - "vertical_store_offer_grid_item/dark_frame/offer_button": T.BUTTON - vertical_store_offer_grid_inside_frame: T.STACK_PANEL - "vertical_store_offer_grid_inside_frame/key_art_size_panel": T.PANEL - "vertical_store_offer_grid_inside_frame/key_art_size_panel/key_art_frame": T.IMAGE - "vertical_store_offer_grid_inside_frame/key_art_size_panel/key_art": T.IMAGE - "vertical_store_offer_grid_inside_frame/offer_details_general_panel": T.PANEL - "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel": T.STACK_PANEL - "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/title_panel_with_padding": T.PANEL - "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/title_panel_with_padding/title": T.PANEL - "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/creator_label_panel_with_padding": T.PANEL - "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/creator_label_panel_with_padding/creator_label": T.STACK_PANEL - "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding": T.STACK_PANEL - "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/ratings": T.PANEL - "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/rating_and_price_padding": T.PANEL - "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/offer_price_info_panel": T.PANEL - "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/right_side_padding": T.PANEL - vertical_store_coin_offer_grid_item: T.PANEL - "vertical_store_coin_offer_grid_item/frame": T.IMAGE - "vertical_store_coin_offer_grid_item/frame/horizontal_stack_panel": T.STACK_PANEL - "vertical_store_coin_offer_grid_item/dark_frame": T.IMAGE - "vertical_store_coin_offer_grid_item/dark_frame/horizontal_stack_panel": T.STACK_PANEL - "vertical_store_coin_offer_grid_item/dark_frame/offer_button": T.BUTTON - vertical_coin_offer_grid_inside_frame: T.STACK_PANEL - "vertical_coin_offer_grid_inside_frame/key_art_size_panel": T.PANEL - "vertical_coin_offer_grid_inside_frame/key_art_size_panel/key_art_frame": T.IMAGE - "vertical_coin_offer_grid_inside_frame/key_art_size_panel/key_art": T.IMAGE - "vertical_coin_offer_grid_inside_frame/padding": T.PANEL - "vertical_coin_offer_grid_inside_frame/coin_panel": T.PANEL - "vertical_coin_offer_grid_inside_frame/coin_panel/offer_coin_icon": T.IMAGE - "vertical_coin_offer_grid_inside_frame/Minecoins_panel": T.PANEL - "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel": T.STACK_PANEL - "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding": T.PANEL - "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding/minecoins_prompt_panel": T.PANEL - "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding/minecoins_prompt_panel/minecoins_offer_status_text": T.LABEL - "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/title_panel_with_padding": T.PANEL - "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/title_panel_with_padding/title": T.PANEL - offer_prompt_panel: T.STACK_PANEL - "offer_prompt_panel/coin_panel": T.PANEL - "offer_prompt_panel/coin_panel/offer_coin_icon": T.IMAGE - "offer_prompt_panel/padding_3": T.PANEL - "offer_prompt_panel/offer_status_text_panel": T.PANEL - "offer_prompt_panel/offer_status_text_panel/offer_status_text": T.LABEL - store_offer_grid_item: T.PANEL - "store_offer_grid_item/frame": T.UNKNOWN - "store_offer_grid_item/frame/key_art": T.IMAGE - "store_offer_grid_item/frame/key_art/key_art_frame": T.IMAGE - "store_offer_grid_item/frame/key_art/csb_plus_expiration_banner": T.PANEL - "store_offer_grid_item/frame/progress_loading": T.PANEL - "store_offer_grid_item/frame/progress": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel": T.STACK_PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel": T.STACK_PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/title": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/creator_label": T.STACK_PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/offer_price_info_panel": T.STACK_PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/no_durable_status_padding": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel": T.STACK_PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rtx_label": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/subscription_panel": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner": T.STACK_PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner/sales_markdown_percentage_panel": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner/sales_markdown_percentage_panel/markdown_banner": T.STACK_PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/ratings": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rating_count_panel": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/fill_markdown_panel_left": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/markdown_panel": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_markdown_panel_right": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/offer_prompt_panel": T.STACK_PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_6": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/timer_panel": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/timer_panel/sale_timer": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_2": T.PANEL - "store_offer_grid_item/frame/offer_button": T.BUTTON - thumbnail_only_offer: T.PANEL - "thumbnail_only_offer/frame": T.UNKNOWN - "thumbnail_only_offer/frame/key_art": T.IMAGE - "thumbnail_only_offer/frame/key_art/key_art_frame": T.IMAGE - "thumbnail_only_offer/frame/key_art/offer_coin_icon": T.IMAGE - "thumbnail_only_offer/frame/offer_button": T.BUTTON - store_section_header_label: T.LABEL - persona_store_row_offer: T.PANEL - "persona_store_row_offer/persona_offer": T.UNKNOWN - thumnail_only_row_offer: T.PANEL - "thumnail_only_row_offer/generic_store_offer": T.PANEL - generic_store_row_offer_panel: T.PANEL - "generic_store_row_offer_panel/generic_store_offer": T.PANEL - store_row_show_more_button_panel: T.PANEL - "store_row_show_more_button_panel/show_more_button": T.PANEL - persona_show_more_button_panel: T.PANEL - "persona_show_more_button_panel/show_more_button": T.BUTTON - persona_grid_panel_stack: T.STACK_PANEL - "persona_grid_panel_stack/default_piece_button": T.UNKNOWN - "persona_grid_panel_stack/persona_grid_panel": T.PANEL - persona_grid_panel: T.PANEL - "persona_grid_panel/persona_offer_grid": T.GRID - store_offer_grid_factory: T.COLLECTION_PANEL - non_collection_item_horizontal_padding: T.PANEL - horizontal_store_offer_row_factory: T.STACK_PANEL - recently_viewed_row_panel: T.PANEL - static_offer_row_panel: T.PANEL - "static_offer_row_panel/store_row_dropdown_panel": T.PANEL - "static_offer_row_panel/store_row_dropdown_panel/store_row_section_panel": T.PANEL - store_row_panel: T.PANEL - "store_row_panel/store_row_dropdown_panel": T.PANEL - "store_row_panel/store_row_dropdown_panel/store_row_section_panel": T.PANEL - vertical_store_row_panel: T.PANEL - style_header: T.PANEL - "style_header/background": T.IMAGE - "style_header/style_header": T.STACK_PANEL - style_header_panel: T.STACK_PANEL - "style_header_panel/row_header": T.PANEL - "style_header_panel/row_header/label_panel": T.STACK_PANEL - "style_header_panel/row_header/label_panel/indent": T.PANEL - "style_header_panel/row_header/label_panel/row_header_label_centering_panel": T.PANEL - "style_header_panel/row_header/label_panel/row_header_label_centering_panel/row_header_label": T.LABEL - "style_header_panel/row_header/label_panel/on_sale_banner": T.IMAGE - "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel": T.PANEL - "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel/sales_row_header_label": T.LABEL - "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel/triangle": T.IMAGE - "style_header_panel/row_header/label_panel/time_remaining_label": T.LABEL - "style_header_panel/row_carousel_padding": T.PANEL - store_row_cycle_button_panel: T.PANEL - "store_row_cycle_button_panel/cycle_button_panel": T.STACK_PANEL - "store_row_cycle_button_panel/cycle_button_panel/page_indicator_panel": T.PANEL - "store_row_cycle_button_panel/cycle_button_panel/page_indicator_panel/page_indicator": T.PANEL - store_row: T.STACK_PANEL - "store_row/carousel_panel": T.PANEL - "store_row/carousel_panel/progress_loading": T.PANEL - "store_row/carousel_panel/cycle_pack_horizontal_stack": T.STACK_PANEL - "store_row/carousel_panel/cycle_pack_horizontal_stack/cycle_pack_left_button_panel": T.PANEL - "store_row/carousel_panel/cycle_pack_horizontal_stack/offer_grid_panel": T.PANEL - "store_row/carousel_panel/cycle_pack_horizontal_stack/offer_grid_panel/offer_grid": T.STACK_PANEL - "store_row/carousel_panel/cycle_pack_horizontal_stack/cycle_pack_right_button_panel": T.PANEL - "store_row/divider": T.STACK_PANEL - page_indicator_panel: T.PANEL - "page_indicator_panel/first_of_three": T.IMAGE - "page_indicator_panel/second_of_three": T.IMAGE - "page_indicator_panel/third_of_three": T.IMAGE - "page_indicator_panel/first_of_two": T.IMAGE - "page_indicator_panel/second_of_two": T.IMAGE - page_indicator: T.IMAGE - popup_dialog__no_store_connection: T.INPUT_PANEL - "popup_dialog__no_store_connection/popup_dialog_bg": T.IMAGE - "popup_dialog__no_store_connection/popup_dialog_message": T.LABEL - "popup_dialog__no_store_connection/popup_dialog_middle_button": T.BUTTON - popup_dialog__restore_popup: T.INPUT_PANEL - "popup_dialog__restore_popup/popup_dialog_bg": T.IMAGE - "popup_dialog__restore_popup/popup_dialog_message": T.LABEL - popup_dialog__restore_failed: T.INPUT_PANEL - "popup_dialog__restore_failed/popup_dialog_bg": T.IMAGE - "popup_dialog__restore_failed/popup_dialog_message": T.LABEL - "popup_dialog__restore_failed/popup_dialog_middle_button": T.BUTTON - suggested_content_offers_grid_item: T.PANEL - "suggested_content_offers_grid_item/frame": T.IMAGE - "suggested_content_offers_grid_item/frame/key_art": T.IMAGE - "suggested_content_offers_grid_item/frame/key_art/key_art_frame": T.IMAGE - "suggested_content_offers_grid_item/frame/progress_loading": T.PANEL - "suggested_content_offers_grid_item/frame/progress": T.PANEL - "suggested_content_offers_grid_item/frame/title_label_panel": T.STACK_PANEL - "suggested_content_offers_grid_item/frame/title_label_panel/title": T.LABEL - "suggested_content_offers_grid_item/frame/title_label_panel/offer_type": T.LABEL - "suggested_content_offers_grid_item/frame/offer_button": T.BUTTON - "suggested_content_offers_grid_item/frame/offer_button/hover": T.IMAGE - "suggested_content_offers_grid_item/frame/offer_button/hover/key_art_size_panel": T.PANEL - "suggested_content_offers_grid_item/frame/offer_button/hover/key_art_size_panel/key_art_frame": T.IMAGE - "suggested_content_offers_grid_item/frame/offer_button/pressed": T.IMAGE - "suggested_content_offers_grid_item/frame/offer_button/pressed/key_art_size_panel": T.PANEL - "suggested_content_offers_grid_item/frame/offer_button/pressed/key_art_size_panel/key_art_frame": T.IMAGE - suggested_content_offers_grid: T.GRID - more_suggested_content_offers_button: T.BUTTON - suggested_content_offers_panel_base: T.PANEL - "suggested_content_offers_panel_base/content": T.PANEL - "suggested_content_offers_panel_base/content/suggested_content_offers_grid": T.GRID - "suggested_content_offers_panel_base/content/more_suggested_content_offers_button": T.BUTTON - "suggested_content_offers_panel_base/progress_loading": T.PANEL - suggested_content_offers_panel_3x1: T.PANEL - suggested_content_offers_panel_4x1: T.PANEL - search_text_box_panel: T.PANEL - "search_text_box_panel/search_text_box": T.EDIT_BOX - "search_text_box_panel/clear_button": T.BUTTON - "search_text_box_panel/loading_spinner": T.IMAGE - search_label_panel: T.PANEL - "search_label_panel/offset_panel": T.PANEL - "search_label_panel/offset_panel/label": T.LABEL - error_text_panel: T.IMAGE - "error_text_panel/error_text_content": T.STACK_PANEL - "error_text_panel/error_text_content/top_padding": T.PANEL - "error_text_panel/error_text_content/label_panel": T.PANEL - "error_text_panel/error_text_content/bottom_padding": T.PANEL - results_text_panel: T.IMAGE - "results_text_panel/results_panel": T.STACK_PANEL - "results_text_panel/results_panel/top_padding": T.PANEL - "results_text_panel/results_panel/results_content": T.STACK_PANEL - "results_text_panel/results_panel/results_content/label_panel": T.PANEL - "results_text_panel/results_panel/results_content/mid_padding": T.PANEL - "results_text_panel/results_panel/results_content/results_close_centering_panel": T.PANEL - "results_text_panel/results_panel/results_content/results_close_centering_panel/results_close_button": T.BUTTON - "results_text_panel/results_panel/results_content/right_padding": T.PANEL - "results_text_panel/results_panel/bottom_padding": T.PANEL - filter_logo_content_panel: T.PANEL - "filter_logo_content_panel/filter_logo_image": T.IMAGE - "filter_logo_content_panel/filter_count_label": T.LABEL - filter_sort_toggle: T.PANEL - filter_sort_submenu_scrolling_panel_section: T.PANEL - "filter_sort_submenu_scrolling_panel_section/submenu_scrolling_panel": T.PANEL - filter_sort_grid_panel: T.PANEL - "filter_sort_grid_panel/filter_sort_grid": T.STACK_PANEL - sort_button_content_panel: T.IMAGE - search_panel_filter: T.STACK_PANEL - "search_panel_filter/search_text_box": T.PANEL - "search_panel_filter/filter_button": T.BUTTON - "search_panel_filter/sort_button": T.BUTTON - search_results_and_error_stack: T.STACK_PANEL - "search_results_and_error_stack/mid_padding_1": T.PANEL - "search_results_and_error_stack/error_text_panel": T.IMAGE - "search_results_and_error_stack/mid_padding_2": T.PANEL - "search_results_and_error_stack/results_text_panel": T.IMAGE - search_panel: T.PANEL - "search_panel/search_panel_content": T.STACK_PANEL - "search_panel/search_panel_content/search_text_box": T.STACK_PANEL - "search_panel/search_panel_content/search_results_and_error_panel": T.STACK_PANEL - "search_panel/search_panel_content/bottom_padding": T.PANEL - search_and_offer_content: T.INPUT_PANEL - "search_and_offer_content/search_and_offer_panel": T.PANEL - "search_and_offer_content/search_and_offer_panel/search_and_offer_content": T.STACK_PANEL - "search_and_offer_content/search_and_offer_panel/search_and_offer_content/top_padding": T.PANEL - "search_and_offer_content/search_and_offer_panel/search_and_offer_content/upper_section_panel": T.PANEL - "search_and_offer_content/search_and_offer_panel/search_and_offer_content/upper_section_panel/upper_section": T.UNKNOWN - "search_and_offer_content/search_and_offer_panel/search_and_offer_content/search_panel": T.PANEL - "search_and_offer_content/search_and_offer_panel/search_and_offer_content/offer_content_panel": T.PANEL - "search_and_offer_content/search_and_offer_panel/search_and_offer_content/offer_content_panel/offer_content": T.UNKNOWN - "search_and_offer_content/search_and_offer_panel/search_and_offer_content/bottom_padding": T.PANEL - search_object: T.PANEL - "search_object/search_object_content": T.INPUT_PANEL - sort_and_filter_menu_modal_panel: T.PANEL - "sort_and_filter_menu_modal_panel/filter_menu": T.UNKNOWN - sort_and_filter_menu_modals: T.PANEL - "sort_and_filter_menu_modals/filter_menu_modal": T.PANEL - "sort_and_filter_menu_modals/sort_menu_panel": T.PANEL - search_filter_sort_background: T.IMAGE - search_filter_background_panel: T.PANEL - "search_filter_background_panel/search_filter_sort_background": T.IMAGE - close_bg_button: T.BUTTON - "close_bg_button/default": T.PANEL - "close_bg_button/hover": T.PANEL - "close_bg_button/pressed": T.PANEL - close_bg_panel: T.PANEL - "close_bg_panel/header_close_button": T.BUTTON - "close_bg_panel/main_close_button": T.BUTTON - vertical_line_divider_row: T.STACK_PANEL - "vertical_line_divider_row/vert_line_divider_row_top_buffer": T.PANEL - "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding": T.STACK_PANEL - "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vert_line_divider_row_left_buffer": T.PANEL - "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vertical_line_divider_row_line": T.IMAGE - "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vert_line_divider_row_right_buffer": T.PANEL - "vertical_line_divider_row/vert_line_divider_row_bottom_buffer": T.PANEL - sdl_dropdown_header_row_button: T.PANEL - sdl_subcategory_button: T.UNKNOWN - sdl_dropdown_header_row: T.PANEL - "sdl_dropdown_header_row/drowdown_header_row_content": T.PANEL - "sdl_dropdown_header_row/drowdown_header_row_content/button_aspects": T.PANEL - sdl_dropdown_data_row: T.PANEL - "sdl_dropdown_data_row/row_background": T.IMAGE - "sdl_dropdown_data_row/button_aspects": T.UNKNOWN + "store_base_screen": T.SCREEN, + "label": T.LABEL, + "offer_image_panel": T.IMAGE, + "banner_fill": T.IMAGE, + "store_description_background": T.IMAGE, + "store_description_background_dark": T.IMAGE, + "text_style_label": T.PANEL, + "text_style_label/text_label": T.LABEL, + "sdl_texture": T.IMAGE, + "store_offer_grid_button": T.BUTTON, + "store_offer_grid_button/hover": T.PANEL, + "store_offer_grid_button/hover/key_art_size_panel": T.PANEL, + "store_offer_grid_button/hover/key_art_size_panel/key_art_frame": T.IMAGE, + "store_offer_grid_button/pressed": T.PANEL, + "store_offer_grid_button/pressed/key_art_size_panel": T.PANEL, + "store_offer_grid_button/pressed/key_art_size_panel/key_art_frame": T.IMAGE, + "store_offer_grid_button/icon_overlay_panel": T.PANEL, + "ribbon_bar_text_background": T.IMAGE, + "ribbon_bar_red_hover_text_background": T.IMAGE, + "store_background": T.IMAGE, + "coin_icon": T.IMAGE, + "tag": T.IMAGE, + "tag/new_offer_label": T.LABEL, + "marketplace_error_icon": T.IMAGE, + "new_offer_icon": T.IMAGE, + "status_new_offer_icon": T.IMAGE, + "update_balloon_icon": T.IMAGE, + "icon_overlay_panel": T.PANEL, + "icon_overlay_panel/icon_overlay_position_factory": T.COLLECTION_PANEL, + "icon_overlay_position_factory": T.COLLECTION_PANEL, + "top_left_icon_factory": T.STACK_PANEL, + "top_middle_icon_factory": T.STACK_PANEL, + "top_right_icon_factory": T.STACK_PANEL, + "left_middle_icon_factory": T.STACK_PANEL, + "center_icon_factory": T.STACK_PANEL, + "right_middle_icon_factory": T.STACK_PANEL, + "bottom_left_icon_factory": T.STACK_PANEL, + "bottom_middle_icon_factory": T.STACK_PANEL, + "bottom_right_icon_factory": T.STACK_PANEL, + "icon_factory": T.STACK_PANEL, + "new_offer_icon_panel": T.PANEL, + "new_offer_icon_panel/new_icon": T.IMAGE, + "update_offer_icon_panel": T.PANEL, + "update_offer_icon_panel/update_icon": T.IMAGE, + "icon_overlay_image_panel": T.PANEL, + "icon_overlay_image_panel/image_stack_panel": T.STACK_PANEL, + "icon_overlay_image_panel/image_stack_panel/icon": T.IMAGE, + "icon_overlay_image_panel/image_stack_panel/padding": T.PANEL, + "icon_overlay_sdl_padding": T.PANEL, + "status_icon_overlay": T.IMAGE, + "status_icon_overlay/icon_overlay_label_panel": T.STACK_PANEL, + "status_icon_overlay/icon_overlay_label_panel/left_margin_padding": T.PANEL, + "status_icon_overlay/icon_overlay_label_panel/left_padding_1": T.PANEL, + "status_icon_overlay/icon_overlay_label_panel/left_padding_2": T.PANEL, + "status_icon_overlay/icon_overlay_label_panel/icon_panel": T.PANEL, + "status_icon_overlay/icon_overlay_label_panel/icon_panel/icon_overlay_label": T.LABEL, + "status_icon_overlay/icon_overlay_label_panel/right_padding_1": T.PANEL, + "status_icon_overlay/icon_overlay_label_panel/right_padding_2": T.PANEL, + "status_icon_overlay/icon_overlay_label_panel/right_margin_padding": T.PANEL, + "status_icon_panel": T.PANEL, + "status_icon_panel/new_offer_icon": T.IMAGE, + "status_icon_panel/update_icon": T.IMAGE, + "prompt_icon": T.IMAGE, + "up_arrow_icon": T.IMAGE, + "plus_icon": T.IMAGE, + "bang_icon": T.IMAGE, + "user_icon_small": T.IMAGE, + "user_icon_hover": T.IMAGE, + "gamepad_store_helper": T.PANEL, + "purchase_coins_panel": T.PANEL, + "purchase_coins_panel/plus_button": T.BUTTON, + "inventory_panel": T.INPUT_PANEL, + "inventory_panel/inventory_button": T.BUTTON, + "progress_loading_bars": T.IMAGE, + "progress_loading_spinner": T.IMAGE, + "progress_loading": T.PANEL, + "progress_loading/centerer": T.PANEL, + "progress_loading/centerer/progress_loading_spinner": T.IMAGE, + "progress_loading/progress_loading_outline": T.IMAGE, + "progress_loading/stack_panel": T.STACK_PANEL, + "progress_loading/stack_panel/top_panel": T.STACK_PANEL, + "progress_loading/stack_panel/top_panel/error_glyph_panel": T.PANEL, + "progress_loading/stack_panel/top_panel/error_glyph_panel/error_image": T.IMAGE, + "progress_loading/stack_panel/top_panel/padding": T.PANEL, + "progress_loading/stack_panel/top_panel/store_failure_text": T.LABEL, + "progress_loading/stack_panel/padding": T.PANEL, + "progress_loading/stack_panel/image": T.IMAGE, + "progress_loading/store_failure_code": T.LABEL, + "store_empty_progress_bar_icon": T.IMAGE, + "store_full_progress_bar_icon": T.IMAGE, + "store_progress_bar_nub": T.IMAGE, + "store_progress_bar_icon": T.PANEL, + "store_progress_bar_icon/empty_progress_bar_icon": T.IMAGE, + "store_progress_bar_icon/progress_percent_panel": T.PANEL, + "store_progress_bar_icon/progress_percent_panel/full_progress_bar_icon": T.IMAGE, + "store_progress_bar_icon/progress_percent_panel/progress_bar_nub": T.IMAGE, + "screen_contents_with_gamepad_helpers": T.STACK_PANEL, + "screen_contents_with_gamepad_helpers/dialog_panel": T.PANEL, + "screen_contents_with_gamepad_helpers/dialog_panel/dialog": T.UNKNOWN, + "screen_contents_with_gamepad_helpers/padding": T.PANEL, + "screen_contents_with_gamepad_helpers/gamepad_helpers_panel": T.PANEL, + "screen_contents_with_gamepad_helpers/gamepad_helpers_panel/gamepad_helpers_a_and_b": T.STACK_PANEL, + "text_strike_through": T.IMAGE, + "markdown_banner": T.IMAGE, + "markdown_triangle": T.IMAGE, + "timer_panel": T.PANEL, + "timer_panel/timer": T.LABEL, + "store_offer_type_icon": T.IMAGE, + "addon_pack_icon": T.IMAGE, + "addon_pack_small_icon": T.IMAGE, + "realms_plus_icon": T.IMAGE, + "resource_pack_icon": T.IMAGE, + "resource_pack_small_icon": T.IMAGE, + "skinpack_icon": T.IMAGE, + "skinpack_small_icon": T.IMAGE, + "world_icon": T.IMAGE, + "world_small_icon": T.IMAGE, + "mashup_icon": T.IMAGE, + "mashup_small_icon": T.IMAGE, + "persona_icon": T.IMAGE, + "persona_small_icon": T.IMAGE, + "small_padding_panel": T.PANEL, + "resource_pack_small_icon_with_buffer": T.STACK_PANEL, + "resource_pack_small_icon_with_buffer/resource_pack_small_icon": T.IMAGE, + "resource_pack_small_icon_with_buffer/small_padding_panel": T.PANEL, + "addon_pack_small_icon_with_buffer": T.STACK_PANEL, + "addon_pack_small_icon_with_buffer/addon_pack_small_icon": T.IMAGE, + "addon_pack_small_icon_with_buffer/small_padding_panel": T.PANEL, + "skinpack_small_icon_with_buffer": T.STACK_PANEL, + "skinpack_small_icon_with_buffer/skinpack_small_icon": T.IMAGE, + "skinpack_small_icon_with_buffer/small_padding_panel": T.PANEL, + "world_small_icon_with_buffer": T.STACK_PANEL, + "world_small_icon_with_buffer/world_small_icon": T.IMAGE, + "world_small_icon_with_buffer/small_padding_panel": T.PANEL, + "mashup_small_icon_with_buffer": T.STACK_PANEL, + "mashup_small_icon_with_buffer/mashup_small_icon": T.IMAGE, + "mashup_small_icon_with_buffer/small_padding_panel": T.PANEL, + "persona_small_icon_with_buffer": T.STACK_PANEL, + "persona_small_icon_with_buffer/persona_small_icon": T.IMAGE, + "persona_small_icon_with_buffer/small_padding_panel": T.PANEL, + "realms_icon": T.IMAGE, + "realms_banner_icon": T.IMAGE, + "csb_banner_icon": T.IMAGE, + "csb_expiration": T.PANEL, + "csb_expiration/background": T.IMAGE, + "csb_expiration/contents": T.STACK_PANEL, + "csb_expiration/contents/csb_icon": T.IMAGE, + "csb_expiration/contents/pad_0": T.PANEL, + "csb_expiration/contents/text_panel": T.PANEL, + "csb_expiration/contents/text_panel/text": T.LABEL, + "pack_icon_stack": T.PANEL, + "pack_icon_stack/pack_icon_stack_factory": T.STACK_PANEL, + "pack_icon_stack_factory": T.STACK_PANEL, + "markdown_background": T.STACK_PANEL, + "markdown_background/banner_panel": T.STACK_PANEL, + "markdown_background/banner_panel/banner": T.IMAGE, + "markdown_background/banner_panel/banner/banner_content_stack_panel": T.STACK_PANEL, + "markdown_background/banner_panel/banner/banner_content_stack_panel/timer_panel": T.PANEL, + "markdown_background/banner_panel/banner/banner_content_stack_panel/pack_icon_panel": T.PANEL, + "markdown_background/banner_panel/banner/banner_content_stack_panel/pack_icon_panel/pack_icon_stack": T.PANEL, + "markdown_background/banner_panel/banner/banner_content_stack_panel/markdown_panel": T.PANEL, + "markdown_background/banner_panel/banner/banner_content_stack_panel/markdown_panel/markdown_label": T.UNKNOWN, + "markdown_background/triangle_panel": T.PANEL, + "markdown_background/triangle_panel/triangle": T.IMAGE, + "store_top_bar": T.IMAGE, + "store_top_bar_filler": T.IMAGE, + "direction_button_panel": T.PANEL, + "direction_button_panel/chevron_image": T.IMAGE, + "cycle_pack_button": T.BUTTON, + "cycle_pack_left_button": T.BUTTON, + "cycle_pack_right_button": T.BUTTON, + "restore_purchases": T.BUTTON, + "back_content_panel": T.PANEL, + "back_content_panel/back_button": T.STACK_PANEL, + "unlock_with_coins_button_stack_panel": T.STACK_PANEL, + "unlock_with_coins_button_stack_panel/coin_panel": T.PANEL, + "unlock_with_coins_button_stack_panel/coin_panel/coin": T.IMAGE, + "unlock_with_coins_button_stack_panel/padding_1": T.PANEL, + "unlock_with_coins_button_stack_panel/unlock_text": T.LABEL, + "store_dialog_with_coin_header": T.PANEL, + "store_coins_title_label": T.LABEL, + "search_header_stack": T.STACK_PANEL, + "search_header_stack/gamepad_helper_y_alignment_hack": T.PANEL, + "search_header_stack/gamepad_helper_y_alignment_hack/gamepad_helper_y": T.STACK_PANEL, + "search_header_stack/search_header_text_box_panel": T.PANEL, + "search_header_stack/search_header_text_box_panel/search_header_text_box": T.EDIT_BOX, + "search_header_stack/search_header_text_box_panel/clear_button": T.BUTTON, + "search_header_stack/store_layout_search_button": T.BUTTON, + "search_header_stack/padding0": T.PANEL, + "sdl_store_header_with_coins": T.PANEL, + "sdl_store_header_with_coins/sdl_store_header_with_coins_content": T.PANEL, + "top_bar_with_coins_panel": T.PANEL, + "top_bar_with_coins_panel/top_bar": T.IMAGE, + "top_bar_with_coins_panel/top_bar/title_stack_panel": T.STACK_PANEL, + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding1": T.PANEL, + "top_bar_with_coins_panel/top_bar/title_stack_panel/back_button_content_panel": T.PANEL, + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding2": T.PANEL, + "top_bar_with_coins_panel/top_bar/title_stack_panel/header_title_panel": T.PANEL, + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding3": T.PANEL, + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding4": T.PANEL, + "top_bar_with_coins_panel/top_bar/title_stack_panel/status_and_coins": T.STACK_PANEL, + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding5": T.PANEL, + "top_bar_with_coins_panel/top_bar/title_stack_panel/search_header_stack": T.STACK_PANEL, + "sdl_store_header_with_coins_content": T.PANEL, + "sdl_store_header_with_coins_content/top_bar_coins": T.PANEL, + "store_header_with_coins": T.STACK_PANEL, + "store_header_with_coins/top_bar_coins": T.PANEL, + "store_header_with_coins/child_control": T.UNKNOWN, + "status_with_coins": T.STACK_PANEL, + "status_with_coins/inventory_panel": T.PANEL, + "status_with_coins/inventory_panel/inventory_button": T.INPUT_PANEL, + "status_with_coins/padding0": T.PANEL, + "status_with_coins/coin_balance_panel": T.PANEL, + "status_with_coins/coin_balance_panel/coin_balance_panel": T.PANEL, + "status_with_coins/padding1": T.PANEL, + "coins_with_title": T.PANEL, + "coins_with_title/coin_balance_panel": T.PANEL, + "coins_with_title/title_panel": T.UNKNOWN, + "wallet_button_panel": T.STACK_PANEL, + "wallet_button_panel/purchase_coin_panel_alignment_hack": T.PANEL, + "wallet_button_panel/purchase_coin_panel_alignment_hack/purchase_coin_panel": T.IMAGE, + "wallet_button_panel/plus_image": T.PANEL, + "wallet_button_panel/gamepad_helper_x_alignment_hack": T.PANEL, + "wallet_button_panel/gamepad_helper_x_alignment_hack/gamepad_helper_x": T.STACK_PANEL, + "coin_balance_panel": T.IMAGE, + "coin_balance_panel/coin_purchase_in_progress_panel": T.PANEL, + "coin_balance_panel/coin_purchase_in_progress_panel/coin_purchase_in_progress": T.IMAGE, + "coin_balance_panel/horizontal_coin_stack": T.STACK_PANEL, + "coin_balance_panel/horizontal_coin_stack/padding": T.PANEL, + "coin_balance_panel/horizontal_coin_stack/coin_icon": T.IMAGE, + "coin_balance_panel/horizontal_coin_stack/small_filler": T.PANEL, + "coin_balance_panel/horizontal_coin_stack/coin_text_holder": T.PANEL, + "coin_balance_panel/horizontal_coin_stack/coin_text_holder/coin_balance_text": T.LABEL, + "my_account_button_content": T.PANEL, + "my_account_button_content/my_account_content": T.STACK_PANEL, + "my_account_button_content/my_account_content/user_icon": T.IMAGE, + "my_account_button_content/my_account_content/my_account_label_panel": T.STACK_PANEL, + "my_account_button_content/my_account_content/my_account_label_panel/padding": T.PANEL, + "my_account_button_content/my_account_content/my_account_label_panel/my_account_center_label": T.PANEL, + "my_account_button_content/my_account_content/my_account_label_panel/my_account_center_label/my_account_label": T.LABEL, + "inventory_button_panel": T.STACK_PANEL, + "inventory_button_panel/inventory_button": T.PANEL, + "inventory_button_panel/inventory_button/status_panel": T.STACK_PANEL, + "inventory_button": T.STACK_PANEL, + "inventory_button/my_content_button": T.PANEL, + "inventory_button/my_content_button/library_icon": T.IMAGE, + "inventory_button/my_content_button/library_icon_bevel": T.IMAGE, + "inventory_button/updates_with_bevel": T.PANEL, + "inventory_button/updates_with_bevel/update_glyph": T.IMAGE, + "inventory_button/updates_with_bevel/updates_bevel": T.IMAGE, + "inventory_button/label_alignment_pannel": T.PANEL, + "inventory_button/label_alignment_pannel/label_panel": T.IMAGE, + "inventory_button/label_alignment_pannel/label_panel/inventory_label": T.LABEL, + "xbl_button_content": T.STACK_PANEL, + "xbl_button_content/xbl_icon": T.IMAGE, + "xbl_button_content/padding_0": T.PANEL, + "xbl_button_content/disconnected_label": T.LABEL, + "xbl_button_content/padding_1": T.PANEL, + "xbl_button_content/error_icon_panel": T.PANEL, + "xbl_button_content/error_icon_panel/error_icon": T.IMAGE, + "disclaimer_panel": T.PANEL, + "disclaimer_panel/legal_text_label": T.LABEL, + "grey_bar_panel": T.STACK_PANEL, + "grey_bar_panel/color_panel": T.PANEL, + "grey_bar_panel/color_panel/grey_bar": T.IMAGE, + "grey_bar_panel/color_panel/green_bar": T.IMAGE, + "grey_bar_panel/pad": T.PANEL, + "tab_name_panel": T.STACK_PANEL, + "tab_name_panel/bar_panel": T.PANEL, + "tab_name_panel/bar_panel/green_bar": T.IMAGE, + "tab_name_panel/button_panel": T.PANEL, + "tab_name_panel/button_panel/tab_name_button_grey": T.BUTTON, + "tab_name_panel/button_panel/tab_name_button_white": T.BUTTON, + "tab_name_panel/pad_1": T.PANEL, + "store_offer_item_title_panel": T.PANEL, + "store_offer_item_title_panel/offer_title": T.LABEL, + "store_offer_item_creator_panel": T.STACK_PANEL, + "store_offer_item_creator_panel/pack_icon_panel": T.PANEL, + "store_offer_item_creator_panel/pack_icon_panel/pack_icon_stack": T.PANEL, + "store_offer_item_creator_panel/creator_label": T.LABEL, + "store_offer_ratings": T.PANEL, + "store_offer_ratings/rating_text_panel": T.STACK_PANEL, + "vertical_store_offer_price_info_panel": T.PANEL, + "vertical_store_offer_price_info_panel/sales_banner": T.STACK_PANEL, + "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels": T.STACK_PANEL, + "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels/markdown_panel": T.PANEL, + "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels/padding_markdown_panel_right": T.PANEL, + "vertical_store_offer_price_info_panel/sales_banner/store_offer_prompt_panel": T.PANEL, + "vertical_store_offer_price_info_panel/sales_banner/store_offer_prompt_panel/offer_status_text": T.LABEL, + "vertical_store_offer_price_info_panel/sales_banner/padding_to_right": T.PANEL, + "store_offer_price_info_panel": T.STACK_PANEL, + "store_offer_price_info_panel/sales_banner": T.STACK_PANEL, + "store_offer_price_info_panel/sales_banner/sales_markdown_percentage_panel": T.PANEL, + "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown": T.STACK_PANEL, + "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/fill_markdown_panel_left": T.PANEL, + "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/markdown_panel": T.PANEL, + "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/padding_markdown_panel_right": T.PANEL, + "store_offer_price_info_panel/sales_banner/coin_panel": T.PANEL, + "store_offer_price_info_panel/sales_banner/coin_panel/offer_coin_icon": T.IMAGE, + "store_offer_price_info_panel/sales_banner/padding_3": T.PANEL, + "store_offer_price_info_panel/sales_banner/offer_prompt_panel": T.PANEL, + "store_offer_sales_markdown_percentage_panel": T.PANEL, + "store_offer_sales_markdown_percentage_panel/markdown_background": T.STACK_PANEL, + "store_offer_prompt_panel": T.PANEL, + "store_offer_prompt_panel/offer_status_text": T.LABEL, + "featured_key_art": T.PANEL, + "featured_key_art/bg": T.IMAGE, + "featured_key_art/bg/featured_key_art": T.IMAGE, + "featured_key_art/bg/progress_loading": T.PANEL, + "featured_key_art/bg/new_offer_icon": T.IMAGE, + "featured_key_art/focus_border": T.IMAGE, + "price_panel": T.STACK_PANEL, + "price_panel/featured_icon_panel": T.PANEL, + "price_panel/featured_icon_panel/featured_offer_coin_icon": T.IMAGE, + "price_panel/price_label_panel": T.PANEL, + "price_panel/price_label_panel/price": T.LABEL, + "price_panel/padding": T.PANEL, + "vertical_padding_4": T.PANEL, + "vertical_padding_2": T.PANEL, + "sdl_vertical_padding_fill": T.PANEL, + "footer": T.PANEL, + "footer/restore_purchases": T.BUTTON, + "store_section_panel": T.PANEL, + "store_section_panel/store_section_panel_outline": T.IMAGE, + "store_section_panel/section_panel": T.STACK_PANEL, + "store_section_panel/section_panel/header": T.PANEL, + "store_section_panel/section_panel/section_panel": T.PANEL, + "store_section_panel/section_panel/section_panel/background": T.IMAGE, + "store_section_factory": T.STACK_PANEL, + "store_static_section_factory": T.STACK_PANEL, + "rtx_label": T.PANEL, + "rtx_label/banner": T.IMAGE, + "rtx_label/banner/icon": T.IMAGE, + "subscription_chevron": T.PANEL, + "subscription_chevron/subscription_chevron_panel": T.PANEL, + "subscription_chevron/subscription_chevron_panel/csb_chevron": T.PANEL, + "subscription_chevron/subscription_chevron_panel/sales_banner_background": T.IMAGE, + "csb_banner": T.PANEL, + "csb_banner/banner": T.IMAGE, + "pagination_content_panel": T.STACK_PANEL, + "pagination_content_panel/padding_left": T.PANEL, + "pagination_content_panel/first_page_button": T.BUTTON, + "pagination_content_panel/pagination_middle_buttons_panel": T.STACK_PANEL, + "pagination_content_panel/padding_right_fill": T.PANEL, + "pagination_content_panel/go_to_top_button": T.BUTTON, + "pagination_panel": T.STACK_PANEL, + "pagination_panel/top_padding": T.PANEL, + "pagination_panel/pagination_content": T.STACK_PANEL, + "pagination_panel/bottom_padding": T.PANEL, + "store_offer_grid_panel_content": T.STACK_PANEL, + "store_offer_grid_panel_content/header_centerer_panel": T.PANEL, + "store_offer_grid_panel_content/store_offer_grid_factory": T.COLLECTION_PANEL, + "store_offer_grid_panel_content/pagination_centerer": T.PANEL, + "store_offer_grid_panel_content/divider": T.STACK_PANEL, + "store_offer_grid_panel": T.PANEL, + "pagination_top_button_panel": T.PANEL, + "pagination_top_button_panel/top_button_image": T.IMAGE, + "pagination_middle_buttons_panel": T.STACK_PANEL, + "pagination_middle_buttons_panel/previous_page_button": T.BUTTON, + "pagination_middle_buttons_panel/current_page_number_panel": T.PANEL, + "pagination_middle_buttons_panel/current_page_number_panel/current_page_number": T.LABEL, + "pagination_middle_buttons_panel/next_page_button": T.BUTTON, + "vertical_store_offer_grid_panel": T.STACK_PANEL, + "vertical_store_offer_grid_panel/header": T.PANEL, + "vertical_store_offer_grid_panel/centering_panel": T.PANEL, + "vertical_store_offer_grid_panel/centering_panel/vertical_store_offer_grid_content": T.GRID, + "vertical_store_offer_grid_panel/padding_0": T.PANEL, + "vertical_store_offer_grid_panel/divider": T.STACK_PANEL, + "carousel_row_panel": T.STACK_PANEL, + "carousel_row_panel/top_panel": T.STACK_PANEL, + "carousel_row_panel/top_panel/pad_0": T.PANEL, + "carousel_row_panel/top_panel/tab_names_factory_panel": T.STACK_PANEL, + "carousel_row_panel/top_padding": T.PANEL, + "carousel_row_panel/middle_panel": T.STACK_PANEL, + "carousel_row_panel/middle_panel/left_button_panel": T.PANEL, + "carousel_row_panel/middle_panel/left_button_panel/left_button": T.BUTTON, + "carousel_row_panel/middle_panel/left_button_panel/left_bumper": T.STACK_PANEL, + "carousel_row_panel/middle_panel/main_panel_factory": T.STACK_PANEL, + "carousel_row_panel/middle_panel/right_button_panel": T.PANEL, + "carousel_row_panel/middle_panel/right_button_panel/right_button": T.BUTTON, + "carousel_row_panel/middle_panel/right_button_panel/right_bumper": T.STACK_PANEL, + "carousel_row_panel/bottom_panel": T.PANEL, + "carousel_row_panel/bottom_panel/grey_bar_factory_panel": T.STACK_PANEL, + "carousel_row_panel/bottom_padding": T.PANEL, + "carousel_row_panel/divider_panel": T.PANEL, + "carousel_row_panel/divider_panel/divider": T.PANEL, + "carousel_factory": T.STACK_PANEL, + "hero_row_l2_panel": T.STACK_PANEL, + "hero_row_l2_panel/header": T.PANEL, + "hero_row_l2_panel/centering_panel": T.PANEL, + "hero_row_l2_panel/centering_panel/l2_featured_stack": T.STACK_PANEL, + "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_0": T.PANEL, + "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_1": T.PANEL, + "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_1": T.PANEL, + "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_2": T.PANEL, + "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_2": T.PANEL, + "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_3": T.PANEL, + "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_3": T.PANEL, + "hero_row_l2_panel/padding_0": T.PANEL, + "hero_row_l2_panel/divider": T.STACK_PANEL, + "blade_row_key_art": T.PANEL, + "blade_row_key_art/blade_row_key_art_image": T.IMAGE, + "blade_row_key_art/blade_row_key_art_image/key_art_border": T.IMAGE, + "one_key_art_screenshot": T.IMAGE, + "one_key_art_screenshot_panel": T.PANEL, + "one_key_art_screenshot_panel/blade_offer_frame": T.UNKNOWN, + "one_key_art_screenshot_panel/blade_offer_frame/one_key_art_screenshot": T.IMAGE, + "one_key_art_screenshot_panel/blade_offer_frame/one_key_art_screenshot/one_key_art_frame": T.IMAGE, + "screenshots_grid": T.COLLECTION_PANEL, + "screenshots_grid/screenshot_1": T.PANEL, + "screenshots_grid/screenshot_2": T.PANEL, + "screenshots_grid/screenshot_3": T.PANEL, + "screenshots_grid/screenshot_4": T.PANEL, + "blade_offer_details_title": T.LABEL, + "blade_offer_sale_markdown": T.LABEL, + "blade_offer_description_details": T.STACK_PANEL, + "blade_offer_description_details/blade_title_stack": T.STACK_PANEL, + "blade_offer_description_details/blade_title_stack/blade_title": T.LABEL, + "blade_offer_description_details/blade_offer_creator_label": T.STACK_PANEL, + "blade_offer_description_details/blade_offer_description_padding_2": T.PANEL, + "blade_offer_description_details/ratings_and_coins": T.STACK_PANEL, + "blade_offer_description_details/ratings_and_coins/subscription_panel": T.PANEL, + "blade_offer_description_details/ratings_and_coins/blade_sales_markdown_percentage_panel": T.PANEL, + "blade_offer_description_details/ratings_and_coins/blade_sales_markdown_percentage_panel/blade_markdown_background": T.STACK_PANEL, + "blade_offer_description_details/ratings_and_coins/ratings_panel": T.PANEL, + "blade_offer_description_details/ratings_and_coins/ratings_panel/blade_ratings": T.PANEL, + "blade_offer_description_details/ratings_and_coins/blade_rating_count_panel": T.PANEL, + "blade_offer_description_details/ratings_and_coins/fill_padding": T.PANEL, + "blade_offer_description_details/ratings_and_coins/blade_offer_price_markdown_panel": T.PANEL, + "blade_offer_description_details/ratings_and_coins/price_panel": T.PANEL, + "blade_offer_description_details/ratings_and_coins/price_panel/price": T.STACK_PANEL, + "blade_offer_description_details/ratings_and_coins/price_panel_padding_right": T.PANEL, + "blade_offer_description_details/blade_offer_description_padding_3": T.PANEL, + "screenshots_and_offer_details_panel": T.PANEL, + "screenshots_and_offer_details_panel/blade_offer_screenshots_grid": T.COLLECTION_PANEL, + "screenshots_and_offer_details_panel/blade_offer_description_area": T.IMAGE, + "screenshots_and_offer_details_panel/blade_offer_description_area/blade_offer_description_border": T.IMAGE, + "screenshots_and_offer_details_panel/blade_offer_description_area/hero_blade_offer_description_details": T.STACK_PANEL, + "blade_row_featured_panel": T.PANEL, + "blade_row_featured_panel/blade_row_featured_key_art": T.PANEL, + "blade_row_featured_panel/blade_offer_screenshots_and_details_panel": T.PANEL, + "transparent_content_button": T.BUTTON, + "hero_blade_row_panel": T.PANEL, + "hero_blade_row_panel/blade_row_transparent_button": T.BUTTON, + "hero_row_panel": T.STACK_PANEL, + "hero_row_panel/header": T.PANEL, + "hero_row_panel/centering_panel": T.PANEL, + "hero_row_panel/centering_panel/featured_stack": T.STACK_PANEL, + "hero_row_panel/centering_panel/featured_stack/hero_offer": T.BUTTON, + "hero_row_panel/centering_panel/featured_stack/padding_0": T.PANEL, + "hero_row_panel/centering_panel/featured_stack/hero_offer_grid": T.STACK_PANEL, + "hero_row_panel/padding_0": T.PANEL, + "hero_row_panel/divider": T.STACK_PANEL, + "hero_offer": T.PANEL, + "hero_offer/featured_key_art": T.PANEL, + "hero_offer/rtx_label": T.PANEL, + "hero_offer/offer_description_area": T.IMAGE, + "hero_offer/offer_description_area/hero_offer_description_details": T.STACK_PANEL, + "hero_offer_details_title": T.LABEL, + "hero_offer_description_details": T.STACK_PANEL, + "hero_offer_description_details/hero_title_stack": T.STACK_PANEL, + "hero_offer_description_details/hero_title_stack/title": T.LABEL, + "hero_offer_description_details/padding_5": T.PANEL, + "hero_offer_description_details/progress": T.PANEL, + "hero_offer_description_details/creator_label": T.STACK_PANEL, + "hero_offer_description_details/padding_0": T.PANEL, + "hero_offer_description_details/durable_offer_info_panel": T.STACK_PANEL, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel": T.STACK_PANEL, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/subscription_panel": T.PANEL, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel": T.PANEL, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel/markdown_banner": T.STACK_PANEL, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/ratings_panel": T.PANEL, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/ratings_panel/ratings": T.PANEL, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/rating_count_panel": T.PANEL, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/pack_icon_panel": T.PANEL, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": T.PANEL, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/fill_padding": T.PANEL, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/offer_price_markdown_panel": T.PANEL, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/price_panel": T.PANEL, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/price_panel/price": T.STACK_PANEL, + "hero_offer_description_details/padding_1": T.PANEL, + "hero_offer_download_progress": T.PANEL, + "hero_offer_download_progress/label": T.LABEL, + "hero_offer_download_progress/bar": T.PANEL, + "rating_text_panel": T.STACK_PANEL, + "rating_text_panel/left_padding": T.PANEL, + "rating_text_panel/star_panel": T.PANEL, + "rating_text_panel/star_panel/rating_star": T.IMAGE, + "rating_text_panel/middle_padding": T.PANEL, + "rating_text_panel/rating_label": T.LABEL, + "ratings_description": T.PANEL, + "ratings_description/rating_text_panel": T.STACK_PANEL, + "store_rating_count_panel": T.PANEL, + "store_rating_count_panel/rating_count_text": T.LABEL, + "hero_offer_grid": T.STACK_PANEL, + "hero_offer_grid/row_1": T.STACK_PANEL, + "hero_offer_grid/row_1/offer_1": T.PANEL, + "hero_offer_grid/row_1/padding_0": T.PANEL, + "hero_offer_grid/row_1/offer_2": T.PANEL, + "hero_offer_grid/padding_0": T.PANEL, + "hero_offer_grid/row_2": T.STACK_PANEL, + "hero_offer_grid/row_2/offer_1": T.PANEL, + "hero_offer_grid/row_2/padding_0": T.PANEL, + "hero_offer_grid/row_2/offer_2": T.PANEL, + "offer_download_progress": T.PANEL, + "offer_download_progress/label": T.LABEL, + "offer_download_progress/bar": T.PANEL, + "banner_button": T.PANEL, + "sdl_text_aligned_panel": T.STACK_PANEL, + "sdl_text_minecraftTen_aligned_panel": T.STACK_PANEL, + "sdl_content_aligned_panel": T.STACK_PANEL, + "sdl_content_aligned_panel/left__padding_panel": T.PANEL, + "sdl_content_aligned_panel/control": T.UNKNOWN, + "sdl_content_aligned_panel/right_padding_panel": T.PANEL, + "sdl_aligned_text": T.LABEL, + "sdl_aligned_minecraftTen_text": T.LABEL, + "content_offer_key_art": T.IMAGE, + "vertical_content_offer_header": T.IMAGE, + "vertical_content_offer_header/header": T.STACK_PANEL, + "vertical_content_offer_panel": T.STACK_PANEL, + "vertical_offer_grid_panel": T.PANEL, + "offer_content": T.PANEL, + "offer_content/offer_item": T.PANEL, + "vertical_offer_content": T.PANEL, + "vertical_offer_content/offer_item": T.PANEL, + "vertical_coin_offer_content": T.PANEL, + "vertical_coin_offer_content/offer_item": T.PANEL, + "store_offer_key_art": T.IMAGE, + "store_offer_grid_show_more": T.PANEL, + "store_offer_grid_show_more/frame": T.IMAGE, + "store_offer_grid_show_more/frame/title": T.LABEL, + "store_offer_grid_show_more/offer_button": T.BUTTON, + "store_offer_grid_show_more/offer_button/hover": T.IMAGE, + "store_offer_grid_show_more/offer_button/hover/key_art_size_panel": T.PANEL, + "store_offer_grid_show_more/offer_button/pressed": T.IMAGE, + "store_offer_grid_show_more/offer_button/pressed/key_art_size_panel": T.PANEL, + "persona_grid_show_more": T.BUTTON, + "row_offer_sale_markdown": T.LABEL, + "discount_label": T.STACK_PANEL, + "discount_label/label_panel": T.PANEL, + "discount_label/label_panel/label": T.LABEL, + "discount_label/icon_panel": T.PANEL, + "discount_label/icon_panel/icon": T.IMAGE, + "hero_offer_sale_markdown": T.LABEL, + "offer_price_markdown_panel": T.PANEL, + "offer_price_markdown_panel/offer_price": T.LABEL, + "offer_price_markdown_panel/offer_price/text_strike_through": T.IMAGE, + "store_offer_title": T.LABEL, + "store_offer_key_art_frame": T.IMAGE, + "store_offer_key_art_frame/key_art": T.IMAGE, + "store_offer_key_art_frame/key_art/key_art_frame": T.IMAGE, + "store_offer_key_art_frame/key_art/csb_expiration_banner": T.PANEL, + "store_offer_key_art_frame/progress_loading": T.PANEL, + "vertical_store_offer_grid_item": T.PANEL, + "vertical_store_offer_grid_item/frame": T.IMAGE, + "vertical_store_offer_grid_item/frame/horizontal_stack_panel": T.STACK_PANEL, + "vertical_store_offer_grid_item/frame/offer_button": T.BUTTON, + "vertical_store_offer_grid_item/dark_frame": T.IMAGE, + "vertical_store_offer_grid_item/dark_frame/horizontal_stack_panel": T.STACK_PANEL, + "vertical_store_offer_grid_item/dark_frame/offer_button": T.BUTTON, + "vertical_store_offer_grid_inside_frame": T.STACK_PANEL, + "vertical_store_offer_grid_inside_frame/key_art_size_panel": T.PANEL, + "vertical_store_offer_grid_inside_frame/key_art_size_panel/key_art_frame": T.IMAGE, + "vertical_store_offer_grid_inside_frame/key_art_size_panel/key_art": T.IMAGE, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel": T.PANEL, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel": T.STACK_PANEL, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/title_panel_with_padding": T.PANEL, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/title_panel_with_padding/title": T.PANEL, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/creator_label_panel_with_padding": T.PANEL, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/creator_label_panel_with_padding/creator_label": T.STACK_PANEL, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding": T.STACK_PANEL, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/ratings": T.PANEL, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/rating_and_price_padding": T.PANEL, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/offer_price_info_panel": T.PANEL, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/right_side_padding": T.PANEL, + "vertical_store_coin_offer_grid_item": T.PANEL, + "vertical_store_coin_offer_grid_item/frame": T.IMAGE, + "vertical_store_coin_offer_grid_item/frame/horizontal_stack_panel": T.STACK_PANEL, + "vertical_store_coin_offer_grid_item/dark_frame": T.IMAGE, + "vertical_store_coin_offer_grid_item/dark_frame/horizontal_stack_panel": T.STACK_PANEL, + "vertical_store_coin_offer_grid_item/dark_frame/offer_button": T.BUTTON, + "vertical_coin_offer_grid_inside_frame": T.STACK_PANEL, + "vertical_coin_offer_grid_inside_frame/key_art_size_panel": T.PANEL, + "vertical_coin_offer_grid_inside_frame/key_art_size_panel/key_art_frame": T.IMAGE, + "vertical_coin_offer_grid_inside_frame/key_art_size_panel/key_art": T.IMAGE, + "vertical_coin_offer_grid_inside_frame/padding": T.PANEL, + "vertical_coin_offer_grid_inside_frame/coin_panel": T.PANEL, + "vertical_coin_offer_grid_inside_frame/coin_panel/offer_coin_icon": T.IMAGE, + "vertical_coin_offer_grid_inside_frame/Minecoins_panel": T.PANEL, + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel": T.STACK_PANEL, + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding": T.PANEL, + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding/minecoins_prompt_panel": T.PANEL, + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding/minecoins_prompt_panel/minecoins_offer_status_text": T.LABEL, + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/title_panel_with_padding": T.PANEL, + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/title_panel_with_padding/title": T.PANEL, + "offer_prompt_panel": T.STACK_PANEL, + "offer_prompt_panel/coin_panel": T.PANEL, + "offer_prompt_panel/coin_panel/offer_coin_icon": T.IMAGE, + "offer_prompt_panel/padding_3": T.PANEL, + "offer_prompt_panel/offer_status_text_panel": T.PANEL, + "offer_prompt_panel/offer_status_text_panel/offer_status_text": T.LABEL, + "store_offer_grid_item": T.PANEL, + "store_offer_grid_item/frame": T.UNKNOWN, + "store_offer_grid_item/frame/key_art": T.IMAGE, + "store_offer_grid_item/frame/key_art/key_art_frame": T.IMAGE, + "store_offer_grid_item/frame/key_art/csb_plus_expiration_banner": T.PANEL, + "store_offer_grid_item/frame/progress_loading": T.PANEL, + "store_offer_grid_item/frame/progress": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel": T.STACK_PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel": T.STACK_PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/title": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/creator_label": T.STACK_PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/offer_price_info_panel": T.STACK_PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/no_durable_status_padding": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel": T.STACK_PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rtx_label": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/subscription_panel": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner": T.STACK_PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner/sales_markdown_percentage_panel": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner/sales_markdown_percentage_panel/markdown_banner": T.STACK_PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/ratings": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rating_count_panel": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/fill_markdown_panel_left": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/markdown_panel": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_markdown_panel_right": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/offer_prompt_panel": T.STACK_PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_6": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/timer_panel": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/timer_panel/sale_timer": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_2": T.PANEL, + "store_offer_grid_item/frame/offer_button": T.BUTTON, + "thumbnail_only_offer": T.PANEL, + "thumbnail_only_offer/frame": T.UNKNOWN, + "thumbnail_only_offer/frame/key_art": T.IMAGE, + "thumbnail_only_offer/frame/key_art/key_art_frame": T.IMAGE, + "thumbnail_only_offer/frame/key_art/offer_coin_icon": T.IMAGE, + "thumbnail_only_offer/frame/offer_button": T.BUTTON, + "store_section_header_label": T.LABEL, + "persona_store_row_offer": T.PANEL, + "persona_store_row_offer/persona_offer": T.UNKNOWN, + "thumnail_only_row_offer": T.PANEL, + "thumnail_only_row_offer/generic_store_offer": T.PANEL, + "generic_store_row_offer_panel": T.PANEL, + "generic_store_row_offer_panel/generic_store_offer": T.PANEL, + "store_row_show_more_button_panel": T.PANEL, + "store_row_show_more_button_panel/show_more_button": T.PANEL, + "persona_show_more_button_panel": T.PANEL, + "persona_show_more_button_panel/show_more_button": T.BUTTON, + "persona_grid_panel_stack": T.STACK_PANEL, + "persona_grid_panel_stack/default_piece_button": T.UNKNOWN, + "persona_grid_panel_stack/persona_grid_panel": T.PANEL, + "persona_grid_panel": T.PANEL, + "persona_grid_panel/persona_offer_grid": T.GRID, + "store_offer_grid_factory": T.COLLECTION_PANEL, + "non_collection_item_horizontal_padding": T.PANEL, + "horizontal_store_offer_row_factory": T.STACK_PANEL, + "recently_viewed_row_panel": T.PANEL, + "static_offer_row_panel": T.PANEL, + "static_offer_row_panel/store_row_dropdown_panel": T.PANEL, + "static_offer_row_panel/store_row_dropdown_panel/store_row_section_panel": T.PANEL, + "store_row_panel": T.PANEL, + "store_row_panel/store_row_dropdown_panel": T.PANEL, + "store_row_panel/store_row_dropdown_panel/store_row_section_panel": T.PANEL, + "vertical_store_row_panel": T.PANEL, + "style_header": T.PANEL, + "style_header/background": T.IMAGE, + "style_header/style_header": T.STACK_PANEL, + "style_header_panel": T.STACK_PANEL, + "style_header_panel/row_header": T.PANEL, + "style_header_panel/row_header/label_panel": T.STACK_PANEL, + "style_header_panel/row_header/label_panel/indent": T.PANEL, + "style_header_panel/row_header/label_panel/row_header_label_centering_panel": T.PANEL, + "style_header_panel/row_header/label_panel/row_header_label_centering_panel/row_header_label": T.LABEL, + "style_header_panel/row_header/label_panel/on_sale_banner": T.IMAGE, + "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel": T.PANEL, + "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel/sales_row_header_label": T.LABEL, + "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel/triangle": T.IMAGE, + "style_header_panel/row_header/label_panel/time_remaining_label": T.LABEL, + "style_header_panel/row_carousel_padding": T.PANEL, + "store_row_cycle_button_panel": T.PANEL, + "store_row_cycle_button_panel/cycle_button_panel": T.STACK_PANEL, + "store_row_cycle_button_panel/cycle_button_panel/page_indicator_panel": T.PANEL, + "store_row_cycle_button_panel/cycle_button_panel/page_indicator_panel/page_indicator": T.PANEL, + "store_row": T.STACK_PANEL, + "store_row/carousel_panel": T.PANEL, + "store_row/carousel_panel/progress_loading": T.PANEL, + "store_row/carousel_panel/cycle_pack_horizontal_stack": T.STACK_PANEL, + "store_row/carousel_panel/cycle_pack_horizontal_stack/cycle_pack_left_button_panel": T.PANEL, + "store_row/carousel_panel/cycle_pack_horizontal_stack/offer_grid_panel": T.PANEL, + "store_row/carousel_panel/cycle_pack_horizontal_stack/offer_grid_panel/offer_grid": T.STACK_PANEL, + "store_row/carousel_panel/cycle_pack_horizontal_stack/cycle_pack_right_button_panel": T.PANEL, + "store_row/divider": T.STACK_PANEL, + "page_indicator_panel": T.PANEL, + "page_indicator_panel/first_of_three": T.IMAGE, + "page_indicator_panel/second_of_three": T.IMAGE, + "page_indicator_panel/third_of_three": T.IMAGE, + "page_indicator_panel/first_of_two": T.IMAGE, + "page_indicator_panel/second_of_two": T.IMAGE, + "page_indicator": T.IMAGE, + "popup_dialog__no_store_connection": T.INPUT_PANEL, + "popup_dialog__no_store_connection/popup_dialog_bg": T.IMAGE, + "popup_dialog__no_store_connection/popup_dialog_message": T.LABEL, + "popup_dialog__no_store_connection/popup_dialog_middle_button": T.BUTTON, + "popup_dialog__restore_popup": T.INPUT_PANEL, + "popup_dialog__restore_popup/popup_dialog_bg": T.IMAGE, + "popup_dialog__restore_popup/popup_dialog_message": T.LABEL, + "popup_dialog__restore_failed": T.INPUT_PANEL, + "popup_dialog__restore_failed/popup_dialog_bg": T.IMAGE, + "popup_dialog__restore_failed/popup_dialog_message": T.LABEL, + "popup_dialog__restore_failed/popup_dialog_middle_button": T.BUTTON, + "suggested_content_offers_grid_item": T.PANEL, + "suggested_content_offers_grid_item/frame": T.IMAGE, + "suggested_content_offers_grid_item/frame/key_art": T.IMAGE, + "suggested_content_offers_grid_item/frame/key_art/key_art_frame": T.IMAGE, + "suggested_content_offers_grid_item/frame/progress_loading": T.PANEL, + "suggested_content_offers_grid_item/frame/progress": T.PANEL, + "suggested_content_offers_grid_item/frame/title_label_panel": T.STACK_PANEL, + "suggested_content_offers_grid_item/frame/title_label_panel/title": T.LABEL, + "suggested_content_offers_grid_item/frame/title_label_panel/offer_type": T.LABEL, + "suggested_content_offers_grid_item/frame/offer_button": T.BUTTON, + "suggested_content_offers_grid_item/frame/offer_button/hover": T.IMAGE, + "suggested_content_offers_grid_item/frame/offer_button/hover/key_art_size_panel": T.PANEL, + "suggested_content_offers_grid_item/frame/offer_button/hover/key_art_size_panel/key_art_frame": T.IMAGE, + "suggested_content_offers_grid_item/frame/offer_button/pressed": T.IMAGE, + "suggested_content_offers_grid_item/frame/offer_button/pressed/key_art_size_panel": T.PANEL, + "suggested_content_offers_grid_item/frame/offer_button/pressed/key_art_size_panel/key_art_frame": T.IMAGE, + "suggested_content_offers_grid": T.GRID, + "more_suggested_content_offers_button": T.BUTTON, + "suggested_content_offers_panel_base": T.PANEL, + "suggested_content_offers_panel_base/content": T.PANEL, + "suggested_content_offers_panel_base/content/suggested_content_offers_grid": T.GRID, + "suggested_content_offers_panel_base/content/more_suggested_content_offers_button": T.BUTTON, + "suggested_content_offers_panel_base/progress_loading": T.PANEL, + "suggested_content_offers_panel_3x1": T.PANEL, + "suggested_content_offers_panel_4x1": T.PANEL, + "search_text_box_panel": T.PANEL, + "search_text_box_panel/search_text_box": T.EDIT_BOX, + "search_text_box_panel/clear_button": T.BUTTON, + "search_text_box_panel/loading_spinner": T.IMAGE, + "search_label_panel": T.PANEL, + "search_label_panel/offset_panel": T.PANEL, + "search_label_panel/offset_panel/label": T.LABEL, + "error_text_panel": T.IMAGE, + "error_text_panel/error_text_content": T.STACK_PANEL, + "error_text_panel/error_text_content/top_padding": T.PANEL, + "error_text_panel/error_text_content/label_panel": T.PANEL, + "error_text_panel/error_text_content/bottom_padding": T.PANEL, + "results_text_panel": T.IMAGE, + "results_text_panel/results_panel": T.STACK_PANEL, + "results_text_panel/results_panel/top_padding": T.PANEL, + "results_text_panel/results_panel/results_content": T.STACK_PANEL, + "results_text_panel/results_panel/results_content/label_panel": T.PANEL, + "results_text_panel/results_panel/results_content/mid_padding": T.PANEL, + "results_text_panel/results_panel/results_content/results_close_centering_panel": T.PANEL, + "results_text_panel/results_panel/results_content/results_close_centering_panel/results_close_button": T.BUTTON, + "results_text_panel/results_panel/results_content/right_padding": T.PANEL, + "results_text_panel/results_panel/bottom_padding": T.PANEL, + "filter_logo_content_panel": T.PANEL, + "filter_logo_content_panel/filter_logo_image": T.IMAGE, + "filter_logo_content_panel/filter_count_label": T.LABEL, + "filter_sort_toggle": T.PANEL, + "filter_sort_submenu_scrolling_panel_section": T.PANEL, + "filter_sort_submenu_scrolling_panel_section/submenu_scrolling_panel": T.PANEL, + "filter_sort_grid_panel": T.PANEL, + "filter_sort_grid_panel/filter_sort_grid": T.STACK_PANEL, + "sort_button_content_panel": T.IMAGE, + "search_panel_filter": T.STACK_PANEL, + "search_panel_filter/search_text_box": T.PANEL, + "search_panel_filter/filter_button": T.BUTTON, + "search_panel_filter/sort_button": T.BUTTON, + "search_results_and_error_stack": T.STACK_PANEL, + "search_results_and_error_stack/mid_padding_1": T.PANEL, + "search_results_and_error_stack/error_text_panel": T.IMAGE, + "search_results_and_error_stack/mid_padding_2": T.PANEL, + "search_results_and_error_stack/results_text_panel": T.IMAGE, + "search_panel": T.PANEL, + "search_panel/search_panel_content": T.STACK_PANEL, + "search_panel/search_panel_content/search_text_box": T.STACK_PANEL, + "search_panel/search_panel_content/search_results_and_error_panel": T.STACK_PANEL, + "search_panel/search_panel_content/bottom_padding": T.PANEL, + "search_and_offer_content": T.INPUT_PANEL, + "search_and_offer_content/search_and_offer_panel": T.PANEL, + "search_and_offer_content/search_and_offer_panel/search_and_offer_content": T.STACK_PANEL, + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/top_padding": T.PANEL, + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/upper_section_panel": T.PANEL, + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/upper_section_panel/upper_section": T.UNKNOWN, + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/search_panel": T.PANEL, + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/offer_content_panel": T.PANEL, + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/offer_content_panel/offer_content": T.UNKNOWN, + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/bottom_padding": T.PANEL, + "search_object": T.PANEL, + "search_object/search_object_content": T.INPUT_PANEL, + "sort_and_filter_menu_modal_panel": T.PANEL, + "sort_and_filter_menu_modal_panel/filter_menu": T.UNKNOWN, + "sort_and_filter_menu_modals": T.PANEL, + "sort_and_filter_menu_modals/filter_menu_modal": T.PANEL, + "sort_and_filter_menu_modals/sort_menu_panel": T.PANEL, + "search_filter_sort_background": T.IMAGE, + "search_filter_background_panel": T.PANEL, + "search_filter_background_panel/search_filter_sort_background": T.IMAGE, + "close_bg_button": T.BUTTON, + "close_bg_button/default": T.PANEL, + "close_bg_button/hover": T.PANEL, + "close_bg_button/pressed": T.PANEL, + "close_bg_panel": T.PANEL, + "close_bg_panel/header_close_button": T.BUTTON, + "close_bg_panel/main_close_button": T.BUTTON, + "vertical_line_divider_row": T.STACK_PANEL, + "vertical_line_divider_row/vert_line_divider_row_top_buffer": T.PANEL, + "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding": T.STACK_PANEL, + "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vert_line_divider_row_left_buffer": T.PANEL, + "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vertical_line_divider_row_line": T.IMAGE, + "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vert_line_divider_row_right_buffer": T.PANEL, + "vertical_line_divider_row/vert_line_divider_row_bottom_buffer": T.PANEL, + "sdl_dropdown_header_row_button": T.PANEL, + "sdl_subcategory_button": T.UNKNOWN, + "sdl_dropdown_header_row": T.PANEL, + "sdl_dropdown_header_row/drowdown_header_row_content": T.PANEL, + "sdl_dropdown_header_row/drowdown_header_row_content/button_aspects": T.PANEL, + "sdl_dropdown_data_row": T.PANEL, + "sdl_dropdown_data_row/row_background": T.IMAGE, + "sdl_dropdown_data_row/button_aspects": T.UNKNOWN, } export type StoreLayoutType = { - sdl_scrolling_content_panel: T.PANEL - "sdl_scrolling_content_panel/sdl_scrolling_content_stack": T.STACK_PANEL - sdl_scrolling_content_stack: T.STACK_PANEL - "sdl_scrolling_content_stack/padding_0": T.PANEL - "sdl_scrolling_content_stack/store_screen_layout_factory": T.STACK_PANEL - "sdl_scrolling_content_stack/footer": T.PANEL - sdl_scrolling_section_panel: T.STACK_PANEL - "sdl_scrolling_section_panel/padding0": T.PANEL - "sdl_scrolling_section_panel/top_static_sdl_section": T.STACK_PANEL - "sdl_scrolling_section_panel/padding1": T.PANEL - "sdl_scrolling_section_panel/sdl_scrolling_section": T.PANEL - sdl_scrolling_section: T.PANEL - character_creator_sdl_scroll_section: T.STACK_PANEL - character_creator_sdl_section: T.STACK_PANEL - "character_creator_sdl_section/sdl_section": T.UNKNOWN - character_creator_panel: T.STACK_PANEL - "character_creator_panel/left_main_panel_padding": T.UNKNOWN - "character_creator_panel/character_creator_sdl_portion": T.STACK_PANEL - "character_creator_panel/middle_main_panel_padding": T.UNKNOWN - "character_creator_panel/right_main_panel": T.STACK_PANEL - "character_creator_panel/right_main_panel_padding": T.UNKNOWN - character_creator_screen_layout: T.PANEL - "character_creator_screen_layout/character_creator_panel": T.STACK_PANEL - main_panel: T.INPUT_PANEL - "main_panel/background": T.IMAGE - "main_panel/main_panel_content": T.PANEL - "main_panel/main_panel_content/sdl_screen_content": T.UNKNOWN - "main_panel/progress_loading": T.PANEL - nav_button_content: T.STACK_PANEL - "nav_button_content/image_panel": T.PANEL - "nav_button_content/small_padding": T.PANEL - "nav_button_content/label_panel": T.UNKNOWN - default_nav_label_panel: T.PANEL - "default_nav_label_panel/button_text_label": T.LABEL - styled_nav_label_panel: T.PANEL - "styled_nav_label_panel/button_text_label": T.LABEL - styled_nav_label_panel_minecraftTen: T.PANEL - "styled_nav_label_panel_minecraftTen/button_text_label": T.LABEL - default_styled_button_text_label: T.LABEL - nav_image_panel: T.PANEL - "nav_image_panel/button_image_panel": T.PANEL - "nav_image_panel/button_animated_panel": T.PANEL - nav_button_image_panel: T.PANEL - "nav_button_image_panel/button_image": T.UNKNOWN - nav_button_image: T.IMAGE - nav_button_animation: T.IMAGE - nav_button_fill: T.PANEL - nav_button_fill_styled: T.PANEL - nav_button_fill_styled_mc10: T.PANEL - nav_button_standard_styled: T.PANEL - nav_button_standard_styled_mc10: T.PANEL - nav_button_standard: T.PANEL - "nav_button_standard/nav_button": T.BUTTON - nav_button_grid_panel: T.PANEL - "nav_button_grid_panel/nav_button_grid": T.STACK_PANEL - store_layout_ribbon_search_button: T.BUTTON - store_layout_ribbon_search_button_content: T.PANEL - "store_layout_ribbon_search_button_content/button_image": T.IMAGE - store_data_driven_screen_base: T.SCREEN - store_screen_modal_panel: T.PANEL - "store_screen_modal_panel/one_button_dialog": T.PANEL - "store_screen_modal_panel/popup_dialog_factory": T.FACTORY - dialog_button: T.BUTTON - store_screen_main_panel: T.PANEL - "store_screen_main_panel/main_content_view": T.INPUT_PANEL - "store_screen_main_panel/sort_and_filter_modals": T.PANEL - store_full_screen_content: T.PANEL - "store_full_screen_content/mouse_input_focus_panel": T.INPUT_PANEL - "store_full_screen_content/screen_content": T.STACK_PANEL - "store_full_screen_content/screen_content/top_bar_section": T.STACK_PANEL - "store_full_screen_content/screen_content/main_panel": T.PANEL - "store_full_screen_content/screen_content/main_panel/main_panel_content": T.PANEL - "store_full_screen_content/popup_dialog_factory": T.FACTORY - "store_full_screen_content/character_selector_dialog_factory": T.FACTORY - "store_full_screen_content/custom_skin_dialog_factory": T.FACTORY - sdl_base_screen: T.SCREEN - character_creator_base_screen: T.SCREEN - store_data_driven_screen: T.SCREEN - character_creator_screen: T.SCREEN - dressing_room_color_picker_screen: T.SCREEN - expanded_appearance_view_screen: T.SCREEN - non_scrollable_sdl_screen: T.SCREEN - skin_selector_screen: T.SCREEN - store_data_driven_modal_one_button_screen: T.SCREEN + "sdl_scrolling_content_panel": T.PANEL, + "sdl_scrolling_content_panel/sdl_scrolling_content_stack": T.STACK_PANEL, + "sdl_scrolling_content_stack": T.STACK_PANEL, + "sdl_scrolling_content_stack/padding_0": T.PANEL, + "sdl_scrolling_content_stack/store_screen_layout_factory": T.STACK_PANEL, + "sdl_scrolling_content_stack/footer": T.PANEL, + "sdl_scrolling_section_panel": T.STACK_PANEL, + "sdl_scrolling_section_panel/padding0": T.PANEL, + "sdl_scrolling_section_panel/top_static_sdl_section": T.STACK_PANEL, + "sdl_scrolling_section_panel/padding1": T.PANEL, + "sdl_scrolling_section_panel/sdl_scrolling_section": T.PANEL, + "sdl_scrolling_section": T.PANEL, + "character_creator_sdl_scroll_section": T.STACK_PANEL, + "character_creator_sdl_section": T.STACK_PANEL, + "character_creator_sdl_section/sdl_section": T.UNKNOWN, + "character_creator_panel": T.STACK_PANEL, + "character_creator_panel/left_main_panel_padding": T.UNKNOWN, + "character_creator_panel/character_creator_sdl_portion": T.STACK_PANEL, + "character_creator_panel/middle_main_panel_padding": T.UNKNOWN, + "character_creator_panel/right_main_panel": T.STACK_PANEL, + "character_creator_panel/right_main_panel_padding": T.UNKNOWN, + "character_creator_screen_layout": T.PANEL, + "character_creator_screen_layout/character_creator_panel": T.STACK_PANEL, + "main_panel": T.INPUT_PANEL, + "main_panel/background": T.IMAGE, + "main_panel/main_panel_content": T.PANEL, + "main_panel/main_panel_content/sdl_screen_content": T.UNKNOWN, + "main_panel/progress_loading": T.PANEL, + "nav_button_content": T.STACK_PANEL, + "nav_button_content/image_panel": T.PANEL, + "nav_button_content/small_padding": T.PANEL, + "nav_button_content/label_panel": T.UNKNOWN, + "default_nav_label_panel": T.PANEL, + "default_nav_label_panel/button_text_label": T.LABEL, + "styled_nav_label_panel": T.PANEL, + "styled_nav_label_panel/button_text_label": T.LABEL, + "styled_nav_label_panel_minecraftTen": T.PANEL, + "styled_nav_label_panel_minecraftTen/button_text_label": T.LABEL, + "default_styled_button_text_label": T.LABEL, + "nav_image_panel": T.PANEL, + "nav_image_panel/button_image_panel": T.PANEL, + "nav_image_panel/button_animated_panel": T.PANEL, + "nav_button_image_panel": T.PANEL, + "nav_button_image_panel/button_image": T.UNKNOWN, + "nav_button_image": T.IMAGE, + "nav_button_animation": T.IMAGE, + "nav_button_fill": T.PANEL, + "nav_button_fill_styled": T.PANEL, + "nav_button_fill_styled_mc10": T.PANEL, + "nav_button_standard_styled": T.PANEL, + "nav_button_standard_styled_mc10": T.PANEL, + "nav_button_standard": T.PANEL, + "nav_button_standard/nav_button": T.BUTTON, + "nav_button_grid_panel": T.PANEL, + "nav_button_grid_panel/nav_button_grid": T.STACK_PANEL, + "store_layout_ribbon_search_button": T.BUTTON, + "store_layout_ribbon_search_button_content": T.PANEL, + "store_layout_ribbon_search_button_content/button_image": T.IMAGE, + "store_data_driven_screen_base": T.SCREEN, + "store_screen_modal_panel": T.PANEL, + "store_screen_modal_panel/one_button_dialog": T.PANEL, + "store_screen_modal_panel/popup_dialog_factory": T.FACTORY, + "dialog_button": T.BUTTON, + "store_screen_main_panel": T.PANEL, + "store_screen_main_panel/main_content_view": T.INPUT_PANEL, + "store_screen_main_panel/sort_and_filter_modals": T.PANEL, + "store_full_screen_content": T.PANEL, + "store_full_screen_content/mouse_input_focus_panel": T.INPUT_PANEL, + "store_full_screen_content/screen_content": T.STACK_PANEL, + "store_full_screen_content/screen_content/top_bar_section": T.STACK_PANEL, + "store_full_screen_content/screen_content/main_panel": T.PANEL, + "store_full_screen_content/screen_content/main_panel/main_panel_content": T.PANEL, + "store_full_screen_content/popup_dialog_factory": T.FACTORY, + "store_full_screen_content/character_selector_dialog_factory": T.FACTORY, + "store_full_screen_content/custom_skin_dialog_factory": T.FACTORY, + "sdl_base_screen": T.SCREEN, + "character_creator_base_screen": T.SCREEN, + "store_data_driven_screen": T.SCREEN, + "character_creator_screen": T.SCREEN, + "dressing_room_color_picker_screen": T.SCREEN, + "expanded_appearance_view_screen": T.SCREEN, + "non_scrollable_sdl_screen": T.SCREEN, + "skin_selector_screen": T.SCREEN, + "store_data_driven_modal_one_button_screen": T.SCREEN, } export type FilterMenuType = { - filter_clear_button_panel: T.PANEL - "filter_clear_button_panel/clear_button": T.BUTTON - chevron_icon_panel: T.PANEL - "chevron_icon_panel/chevron_icon": T.IMAGE - filter_variables_panel: T.PANEL - filter_option_button_content: T.STACK_PANEL - "filter_option_button_content/left_chevron_icon_panel": T.PANEL - "filter_option_button_content/filter_type_and_selected_panel": T.STACK_PANEL - "filter_option_button_content/filter_type_and_selected_panel/top_padding": T.PANEL - "filter_option_button_content/filter_type_and_selected_panel/filter_type_label": T.LABEL - "filter_option_button_content/filter_type_and_selected_panel/middle_padding": T.PANEL - "filter_option_button_content/filter_type_and_selected_panel/selected_label": T.LABEL - "filter_option_button_content/filter_type_and_selected_panel/bottom_padding": T.PANEL - "filter_option_button_content/right_chevron_icon_panel": T.PANEL - filter_options_button_panel: T.PANEL - "filter_options_button_panel/filter_variables_panel": T.PANEL - "filter_options_button_panel/filter_variables_panel/filter_options_button": T.BUTTON - filter_main_menu_options_button_panel: T.PANEL - filter_title_bar_content: T.STACK_PANEL - "filter_title_bar_content/filter_logo_and_count_panel": T.PANEL - "filter_title_bar_content/centered_filter_title_label": T.PANEL - "filter_title_bar_content/centered_filter_title_label/filter_title_label": T.LABEL - "filter_title_bar_content/filter_title_padding_close_button": T.PANEL - "filter_title_bar_content/centered_x": T.PANEL - "filter_title_bar_content/centered_x/close_x_image": T.IMAGE - filter_title_bar: T.BUTTON - filter_checkbox_toggle: T.PANEL - filter_checkbox_no_icon_toggle: T.PANEL - "filter_checkbox_no_icon_toggle/filter_checkbox_no_icon_toggle": T.PANEL - pack_type_sub_menu_panel: T.PANEL - "pack_type_sub_menu_panel/pack_type_sub_menu": T.STACK_PANEL - "pack_type_sub_menu_panel/pack_type_sub_menu/addon_packs_filter": T.PANEL - "pack_type_sub_menu_panel/pack_type_sub_menu/skin_packs_filter": T.PANEL - "pack_type_sub_menu_panel/pack_type_sub_menu/texture_packs_filter": T.PANEL - "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel": T.STACK_PANEL - "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel/worlds_template_filter": T.PANEL - "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel/world_template_type_filters": T.PANEL - "pack_type_sub_menu_panel/pack_type_sub_menu/mashup_packs_filter": T.PANEL - offer_type_sub_menu_panel: T.STACK_PANEL - "offer_type_sub_menu_panel/bundles_filter": T.PANEL - "offer_type_sub_menu_panel/realms_plus_filter": T.PANEL - "offer_type_sub_menu_panel/csb_filter": T.PANEL - realms_plus_filter: T.PANEL - "realms_plus_filter/realms_plus_filter": T.PANEL - csb_filter: T.PANEL - "csb_filter/csb_filter": T.PANEL - realms_plus_gradient_content_panel: T.PANEL - "realms_plus_gradient_content_panel/gradient": T.IMAGE - "realms_plus_gradient_content_panel/particles": T.IMAGE - "realms_plus_gradient_content_panel/content_panel": T.STACK_PANEL - csb_gradient_content_panel: T.PANEL - "csb_gradient_content_panel/gradient": T.IMAGE - "csb_gradient_content_panel/particles": T.IMAGE - "csb_gradient_content_panel/content_panel": T.STACK_PANEL - filter_section_content: T.STACK_PANEL - "filter_section_content/section_title_button": T.PANEL - "filter_section_content/clear_button": T.PANEL - "filter_section_content/section_sub_menu": T.UNKNOWN - filter_section_content_dynamic: T.PANEL - "filter_section_content_dynamic/filter_section_content": T.STACK_PANEL - filter_main_menu_content: T.STACK_PANEL - "filter_main_menu_content/filter_title_bar_panel": T.BUTTON - "filter_main_menu_content/offer_type_button": T.PANEL - "filter_main_menu_content/pack_type_button": T.PANEL - "filter_main_menu_content/minecoin_button": T.PANEL - "filter_main_menu_content/rating_button": T.PANEL - "filter_main_menu_content/creator_button": T.PANEL - "filter_main_menu_content/graphics_button": T.PANEL - "filter_main_menu_content/installed_state_button": T.PANEL - "filter_main_menu_content/filter_main_menu_filter_toggles_section": T.PANEL - "filter_main_menu_content/filter_main_menu_filter_toggles_section/filter_main_menu_filter_toggle_grid_panel": T.PANEL - "filter_main_menu_content/clear_button_panel": T.PANEL - filter_main_menu_content_persona: T.STACK_PANEL - "filter_main_menu_content_persona/filter_title_bar_panel": T.BUTTON - "filter_main_menu_content_persona/persona_body_button": T.PANEL - "filter_main_menu_content_persona/persona_style_button": T.PANEL - "filter_main_menu_content_persona/emote_filter_section": T.PANEL - "filter_main_menu_content_persona/emote_filter_section/filter_emote_toggle_grid_panel": T.PANEL - "filter_main_menu_content_persona/minecoin_button": T.PANEL - "filter_main_menu_content_persona/clear_button_panel": T.PANEL - filter_section_content_panel: T.PANEL - "filter_section_content_panel/filter_menu_screen": T.UNKNOWN - filter_main_menu_section: T.PANEL - filter_main_menu_section_persona: T.PANEL - filter_pack_type_section: T.PANEL - filter_offer_type_section: T.PANEL - filter_type_section: T.PANEL - filter_menu_content: T.PANEL - "filter_menu_content/filter_main_menu_screen": T.PANEL - "filter_menu_content/filter_offer_type_screen": T.PANEL - "filter_menu_content/filter_pack_type_screen": T.PANEL - "filter_menu_content/filter_minecoin_section": T.PANEL - "filter_menu_content/filter_rating_section": T.PANEL - "filter_menu_content/filter_creator_section": T.PANEL - "filter_menu_content/filter_graphics_section": T.PANEL - "filter_menu_content/filter_installed_state_section": T.PANEL - filter_menu_content_persona: T.PANEL - "filter_menu_content_persona/filter_main_menu_screen": T.PANEL - "filter_menu_content_persona/filter_style_section": T.PANEL - "filter_menu_content_persona/filter_body_section": T.PANEL - "filter_menu_content_persona/filter_minecoin_section": T.PANEL - filter_menu_panel: T.STACK_PANEL - "filter_menu_panel/top_padding": T.PANEL - "filter_menu_panel/alignment_panel": T.STACK_PANEL - "filter_menu_panel/alignment_panel/left_padding": T.PANEL - "filter_menu_panel/alignment_panel/filter_menu_content_scroll": T.PANEL - "filter_menu_panel/alignment_panel/right_padding": T.PANEL - filter_menu_screen_content: T.INPUT_PANEL - "filter_menu_screen_content/filter_main_panel": T.STACK_PANEL - "filter_menu_screen_content/filter_main_panel_persona": T.STACK_PANEL - "filter_menu_screen_content/filter_menu_close_background_button": T.PANEL + "filter_clear_button_panel": T.PANEL, + "filter_clear_button_panel/clear_button": T.BUTTON, + "chevron_icon_panel": T.PANEL, + "chevron_icon_panel/chevron_icon": T.IMAGE, + "filter_variables_panel": T.PANEL, + "filter_option_button_content": T.STACK_PANEL, + "filter_option_button_content/left_chevron_icon_panel": T.PANEL, + "filter_option_button_content/filter_type_and_selected_panel": T.STACK_PANEL, + "filter_option_button_content/filter_type_and_selected_panel/top_padding": T.PANEL, + "filter_option_button_content/filter_type_and_selected_panel/filter_type_label": T.LABEL, + "filter_option_button_content/filter_type_and_selected_panel/middle_padding": T.PANEL, + "filter_option_button_content/filter_type_and_selected_panel/selected_label": T.LABEL, + "filter_option_button_content/filter_type_and_selected_panel/bottom_padding": T.PANEL, + "filter_option_button_content/right_chevron_icon_panel": T.PANEL, + "filter_options_button_panel": T.PANEL, + "filter_options_button_panel/filter_variables_panel": T.PANEL, + "filter_options_button_panel/filter_variables_panel/filter_options_button": T.BUTTON, + "filter_main_menu_options_button_panel": T.PANEL, + "filter_title_bar_content": T.STACK_PANEL, + "filter_title_bar_content/filter_logo_and_count_panel": T.PANEL, + "filter_title_bar_content/centered_filter_title_label": T.PANEL, + "filter_title_bar_content/centered_filter_title_label/filter_title_label": T.LABEL, + "filter_title_bar_content/filter_title_padding_close_button": T.PANEL, + "filter_title_bar_content/centered_x": T.PANEL, + "filter_title_bar_content/centered_x/close_x_image": T.IMAGE, + "filter_title_bar": T.BUTTON, + "filter_checkbox_toggle": T.PANEL, + "filter_checkbox_no_icon_toggle": T.PANEL, + "filter_checkbox_no_icon_toggle/filter_checkbox_no_icon_toggle": T.PANEL, + "pack_type_sub_menu_panel": T.PANEL, + "pack_type_sub_menu_panel/pack_type_sub_menu": T.STACK_PANEL, + "pack_type_sub_menu_panel/pack_type_sub_menu/addon_packs_filter": T.PANEL, + "pack_type_sub_menu_panel/pack_type_sub_menu/skin_packs_filter": T.PANEL, + "pack_type_sub_menu_panel/pack_type_sub_menu/texture_packs_filter": T.PANEL, + "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel": T.STACK_PANEL, + "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel/worlds_template_filter": T.PANEL, + "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel/world_template_type_filters": T.PANEL, + "pack_type_sub_menu_panel/pack_type_sub_menu/mashup_packs_filter": T.PANEL, + "offer_type_sub_menu_panel": T.STACK_PANEL, + "offer_type_sub_menu_panel/bundles_filter": T.PANEL, + "offer_type_sub_menu_panel/realms_plus_filter": T.PANEL, + "offer_type_sub_menu_panel/csb_filter": T.PANEL, + "realms_plus_filter": T.PANEL, + "realms_plus_filter/realms_plus_filter": T.PANEL, + "csb_filter": T.PANEL, + "csb_filter/csb_filter": T.PANEL, + "realms_plus_gradient_content_panel": T.PANEL, + "realms_plus_gradient_content_panel/gradient": T.IMAGE, + "realms_plus_gradient_content_panel/particles": T.IMAGE, + "realms_plus_gradient_content_panel/content_panel": T.STACK_PANEL, + "csb_gradient_content_panel": T.PANEL, + "csb_gradient_content_panel/gradient": T.IMAGE, + "csb_gradient_content_panel/particles": T.IMAGE, + "csb_gradient_content_panel/content_panel": T.STACK_PANEL, + "filter_section_content": T.STACK_PANEL, + "filter_section_content/section_title_button": T.PANEL, + "filter_section_content/clear_button": T.PANEL, + "filter_section_content/section_sub_menu": T.UNKNOWN, + "filter_section_content_dynamic": T.PANEL, + "filter_section_content_dynamic/filter_section_content": T.STACK_PANEL, + "filter_main_menu_content": T.STACK_PANEL, + "filter_main_menu_content/filter_title_bar_panel": T.BUTTON, + "filter_main_menu_content/offer_type_button": T.PANEL, + "filter_main_menu_content/pack_type_button": T.PANEL, + "filter_main_menu_content/minecoin_button": T.PANEL, + "filter_main_menu_content/rating_button": T.PANEL, + "filter_main_menu_content/creator_button": T.PANEL, + "filter_main_menu_content/graphics_button": T.PANEL, + "filter_main_menu_content/installed_state_button": T.PANEL, + "filter_main_menu_content/filter_main_menu_filter_toggles_section": T.PANEL, + "filter_main_menu_content/filter_main_menu_filter_toggles_section/filter_main_menu_filter_toggle_grid_panel": T.PANEL, + "filter_main_menu_content/clear_button_panel": T.PANEL, + "filter_main_menu_content_persona": T.STACK_PANEL, + "filter_main_menu_content_persona/filter_title_bar_panel": T.BUTTON, + "filter_main_menu_content_persona/persona_body_button": T.PANEL, + "filter_main_menu_content_persona/persona_style_button": T.PANEL, + "filter_main_menu_content_persona/emote_filter_section": T.PANEL, + "filter_main_menu_content_persona/emote_filter_section/filter_emote_toggle_grid_panel": T.PANEL, + "filter_main_menu_content_persona/minecoin_button": T.PANEL, + "filter_main_menu_content_persona/clear_button_panel": T.PANEL, + "filter_section_content_panel": T.PANEL, + "filter_section_content_panel/filter_menu_screen": T.UNKNOWN, + "filter_main_menu_section": T.PANEL, + "filter_main_menu_section_persona": T.PANEL, + "filter_pack_type_section": T.PANEL, + "filter_offer_type_section": T.PANEL, + "filter_type_section": T.PANEL, + "filter_menu_content": T.PANEL, + "filter_menu_content/filter_main_menu_screen": T.PANEL, + "filter_menu_content/filter_offer_type_screen": T.PANEL, + "filter_menu_content/filter_pack_type_screen": T.PANEL, + "filter_menu_content/filter_minecoin_section": T.PANEL, + "filter_menu_content/filter_rating_section": T.PANEL, + "filter_menu_content/filter_creator_section": T.PANEL, + "filter_menu_content/filter_graphics_section": T.PANEL, + "filter_menu_content/filter_installed_state_section": T.PANEL, + "filter_menu_content_persona": T.PANEL, + "filter_menu_content_persona/filter_main_menu_screen": T.PANEL, + "filter_menu_content_persona/filter_style_section": T.PANEL, + "filter_menu_content_persona/filter_body_section": T.PANEL, + "filter_menu_content_persona/filter_minecoin_section": T.PANEL, + "filter_menu_panel": T.STACK_PANEL, + "filter_menu_panel/top_padding": T.PANEL, + "filter_menu_panel/alignment_panel": T.STACK_PANEL, + "filter_menu_panel/alignment_panel/left_padding": T.PANEL, + "filter_menu_panel/alignment_panel/filter_menu_content_scroll": T.PANEL, + "filter_menu_panel/alignment_panel/right_padding": T.PANEL, + "filter_menu_screen_content": T.INPUT_PANEL, + "filter_menu_screen_content/filter_main_panel": T.STACK_PANEL, + "filter_menu_screen_content/filter_main_panel_persona": T.STACK_PANEL, + "filter_menu_screen_content/filter_menu_close_background_button": T.PANEL, } export type StoreInventoryType = { - sign_in_button: T.BUTTON - no_xbl_and_local_content_warning_panel: T.STACK_PANEL - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel": T.IMAGE - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel": T.PANEL - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack": T.STACK_PANEL - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/top_padding": T.PANEL - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1": T.STACK_PANEL - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_center_panel": T.PANEL - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_center_panel/xbl_sign_in_image": T.IMAGE - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_padding_warning": T.PANEL - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel": T.PANEL - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack": T.STACK_PANEL - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/top_padding": T.PANEL - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/message_text": T.BUTTON - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/xbl_image_padding_warning": T.PANEL - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/sign_in_button_centering_panel": T.PANEL - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/sign_in_button_centering_panel/sigh_in_button": T.BUTTON - "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/bottom_padding": T.PANEL - "no_xbl_and_local_content_warning_panel/bottom_padding": T.PANEL - no_xbl_and_no_local_conent_warning_panel: T.STACK_PANEL - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel": T.IMAGE - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel": T.PANEL - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack": T.STACK_PANEL - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/top_padding": T.PANEL - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1": T.STACK_PANEL - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_center_panel": T.PANEL - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_center_panel/xbl_sign_in_image": T.IMAGE - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_padding_warning": T.PANEL - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel": T.PANEL - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack": T.STACK_PANEL - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/top_padding": T.PANEL - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/message_text": T.BUTTON - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/xbl_image_padding_warning": T.PANEL - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/sign_in_button_centering_panel": T.PANEL - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/sign_in_button_centering_panel/sigh_in_button": T.BUTTON - "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/bottom_padding": T.PANEL - "no_xbl_and_no_local_conent_warning_panel/bottom_padding": T.PANEL - inventory_sign_in_panel: T.PANEL - "inventory_sign_in_panel/no_xbl_and_local_content_warning_panel": T.STACK_PANEL - "inventory_sign_in_panel/no_xbl_and_no_local_conent_warning_panel": T.STACK_PANEL - divider_panel: T.STACK_PANEL - "divider_panel/top_pad": T.PANEL - "divider_panel/divider": T.PANEL - "divider_panel/bottom_pad": T.PANEL - right_image: T.IMAGE - down_image: T.IMAGE - section_toggle_base: T.PANEL - owned_toggle: T.PANEL - current_toggle: T.PANEL - removed_toggle: T.PANEL - subscriptions_toggle: T.PANEL - inventory_left_panel: T.STACK_PANEL - "inventory_left_panel/top_pad": T.PANEL - "inventory_left_panel/owned_toggle": T.PANEL - "inventory_left_panel/owned_dropdown_box_panel": T.IMAGE - "inventory_left_panel/owned_dropdown_box_panel/owned_dropdown_box": T.STACK_PANEL - "inventory_left_panel/divider_0": T.STACK_PANEL - "inventory_left_panel/csub_panel": T.PANEL - "inventory_left_panel/csub_panel/csub_stack_panel": T.STACK_PANEL - "inventory_left_panel/divider_1": T.STACK_PANEL - "inventory_left_panel/subscriptions_toggle": T.PANEL - csub_stack_panel: T.STACK_PANEL - "csub_stack_panel/padding_title_vertical": T.PANEL - "csub_stack_panel/section_title": T.STACK_PANEL - "csub_stack_panel/section_title/padding_title_horizontal": T.PANEL - "csub_stack_panel/section_title/testTitle": T.STACK_PANEL - "csub_stack_panel/dropdown_panel": T.PANEL - "csub_stack_panel/dropdown_panel/dropdown_stack_panel": T.STACK_PANEL - "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_toggle": T.PANEL - "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel": T.PANEL - "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel/current_dropdown_box": T.STACK_PANEL - "csub_stack_panel/dropdown_panel/dropdown_stack_panel/pad_1": T.PANEL - "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_toggle": T.PANEL - "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel": T.PANEL - "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel/removed_dropdown_box": T.STACK_PANEL - "csub_stack_panel/dropdown_panel/dropdown_stack_panel/pad_2": T.PANEL - subscriptions_text_panel: T.PANEL - "subscriptions_text_panel/subscriptions_text": T.LABEL - realms_plus_stack_panel: T.STACK_PANEL - "realms_plus_stack_panel/section_title": T.IMAGE - "realms_plus_stack_panel/section_title/border": T.IMAGE - "realms_plus_stack_panel/section_title/section_title_label": T.LABEL - "realms_plus_stack_panel/section_title/particles": T.IMAGE - "realms_plus_stack_panel/dropdown_panel": T.PANEL - "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel": T.STACK_PANEL - "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_0": T.PANEL - "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_toggle": T.PANEL - "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel": T.PANEL - "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel/current_dropdown_box": T.STACK_PANEL - "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_1": T.PANEL - "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_toggle": T.PANEL - "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel": T.PANEL - "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel/removed_dropdown_box": T.STACK_PANEL - "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_2": T.PANEL - dropdown_button_content: T.STACK_PANEL - "dropdown_button_content/title_label": T.LABEL - "dropdown_button_content/pad_0_fill": T.PANEL - "dropdown_button_content/pad_0": T.PANEL - "dropdown_button_content/icon_panel": T.PANEL - "dropdown_button_content/icon_panel/block_icon": T.IMAGE - "dropdown_button_content/pad_1": T.PANEL - "dropdown_button_content/pad_2": T.PANEL - "dropdown_button_content/count_panel": T.PANEL - "dropdown_button_content/count_panel/count": T.LABEL - "dropdown_button_content/pad_3": T.PANEL - "dropdown_button_content/right_carrot": T.PANEL - "dropdown_button_content/right_carrot/right": T.IMAGE - "dropdown_button_content/down_carrot": T.PANEL - "dropdown_button_content/down_carrot/down": T.IMAGE - owned_dropdown_content: T.STACK_PANEL - current_dropdown_content: T.STACK_PANEL - removed_dropdown_content: T.STACK_PANEL - dropdown_box: T.STACK_PANEL - "dropdown_box/top_pad": T.PANEL - "dropdown_box/all": T.BUTTON - "dropdown_box/divider_0": T.STACK_PANEL - "dropdown_box/addons": T.BUTTON - "dropdown_box/divider_1": T.STACK_PANEL - "dropdown_box/skins": T.BUTTON - "dropdown_box/divider_2": T.STACK_PANEL - "dropdown_box/worlds": T.BUTTON - "dropdown_box/divider_3": T.STACK_PANEL - "dropdown_box/textures": T.BUTTON - "dropdown_box/divider_4": T.STACK_PANEL - "dropdown_box/mashups": T.BUTTON - "dropdown_box/bottom_pad": T.PANEL - category_panel_button: T.BUTTON - "category_panel_button/default": T.STACK_PANEL - "category_panel_button/hover": T.STACK_PANEL - "category_panel_button/pressed": T.STACK_PANEL - category_stack_panel: T.STACK_PANEL - "category_stack_panel/text": T.LABEL - "category_stack_panel/fill_pad": T.PANEL - "category_stack_panel/icon": T.IMAGE - "category_stack_panel/pad_1": T.PANEL - "category_stack_panel/number": T.LABEL - search_object: T.PANEL - list_panel: T.INPUT_PANEL - "list_panel/list_panel_content": T.PANEL - "list_panel/list_panel_content/search_and_offers_grid_scroll_panel": T.PANEL - "list_panel/progress_loading": T.PANEL - items_content_section: T.INPUT_PANEL - subscriptions_content_section: T.STACK_PANEL - "subscriptions_content_section/left_pad": T.PANEL - "subscriptions_content_section/search_and_offers_grid_scroll_panel": T.PANEL - right_pane_factory: T.STACK_PANEL - content_area: T.PANEL - "content_area/control": T.STACK_PANEL - "content_area/control/right_pane_factory": T.STACK_PANEL - main_panel: T.STACK_PANEL - "main_panel/inventory_left_panel": T.PANEL - "main_panel/inventory_left_panel/inventory_left_image": T.IMAGE - "main_panel/inventory_left_panel/left_scrolling_panel": T.PANEL - "main_panel/divider_panel": T.PANEL - "main_panel/divider_panel/main_divider": T.IMAGE - "main_panel/inventory_right_panel": T.PANEL - "main_panel/inventory_right_panel/right_panel_background_image": T.IMAGE - "main_panel/inventory_right_panel/content_right_panel": T.PANEL - store_inventory_screen_main_panel: T.PANEL - "store_inventory_screen_main_panel/main_content_view": T.INPUT_PANEL - "store_inventory_screen_main_panel/sort_and_filter_modals": T.PANEL - store_search_screen_content: T.PANEL - "store_search_screen_content/main_panel": T.STACK_PANEL - "store_search_screen_content/popup_dialog_factory": T.FACTORY - store_inventory_screen: T.SCREEN - signin_text_section_body: T.STACK_PANEL - signin_text: T.LABEL - signin_text_02: T.LABEL - signin_text_section: T.STACK_PANEL - "signin_text_section/signin_text": T.LABEL - "signin_text_section/line_1_padding_line_2": T.PANEL - "signin_text_section/signin_text_02": T.LABEL - sign_in_panel_text_body: T.BUTTON + "sign_in_button": T.BUTTON, + "no_xbl_and_local_content_warning_panel": T.STACK_PANEL, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel": T.IMAGE, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel": T.PANEL, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack": T.STACK_PANEL, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/top_padding": T.PANEL, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1": T.STACK_PANEL, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_center_panel": T.PANEL, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_center_panel/xbl_sign_in_image": T.IMAGE, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_padding_warning": T.PANEL, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel": T.PANEL, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack": T.STACK_PANEL, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/top_padding": T.PANEL, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/message_text": T.BUTTON, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/xbl_image_padding_warning": T.PANEL, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/sign_in_button_centering_panel": T.PANEL, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/sign_in_button_centering_panel/sigh_in_button": T.BUTTON, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/bottom_padding": T.PANEL, + "no_xbl_and_local_content_warning_panel/bottom_padding": T.PANEL, + "no_xbl_and_no_local_conent_warning_panel": T.STACK_PANEL, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel": T.IMAGE, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel": T.PANEL, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack": T.STACK_PANEL, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/top_padding": T.PANEL, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1": T.STACK_PANEL, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_center_panel": T.PANEL, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_center_panel/xbl_sign_in_image": T.IMAGE, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_padding_warning": T.PANEL, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel": T.PANEL, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack": T.STACK_PANEL, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/top_padding": T.PANEL, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/message_text": T.BUTTON, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/xbl_image_padding_warning": T.PANEL, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/sign_in_button_centering_panel": T.PANEL, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/sign_in_button_centering_panel/sigh_in_button": T.BUTTON, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/bottom_padding": T.PANEL, + "no_xbl_and_no_local_conent_warning_panel/bottom_padding": T.PANEL, + "inventory_sign_in_panel": T.PANEL, + "inventory_sign_in_panel/no_xbl_and_local_content_warning_panel": T.STACK_PANEL, + "inventory_sign_in_panel/no_xbl_and_no_local_conent_warning_panel": T.STACK_PANEL, + "divider_panel": T.STACK_PANEL, + "divider_panel/top_pad": T.PANEL, + "divider_panel/divider": T.PANEL, + "divider_panel/bottom_pad": T.PANEL, + "right_image": T.IMAGE, + "down_image": T.IMAGE, + "section_toggle_base": T.PANEL, + "owned_toggle": T.PANEL, + "current_toggle": T.PANEL, + "removed_toggle": T.PANEL, + "subscriptions_toggle": T.PANEL, + "inventory_left_panel": T.STACK_PANEL, + "inventory_left_panel/top_pad": T.PANEL, + "inventory_left_panel/owned_toggle": T.PANEL, + "inventory_left_panel/owned_dropdown_box_panel": T.IMAGE, + "inventory_left_panel/owned_dropdown_box_panel/owned_dropdown_box": T.STACK_PANEL, + "inventory_left_panel/divider_0": T.STACK_PANEL, + "inventory_left_panel/csub_panel": T.PANEL, + "inventory_left_panel/csub_panel/csub_stack_panel": T.STACK_PANEL, + "inventory_left_panel/divider_1": T.STACK_PANEL, + "inventory_left_panel/subscriptions_toggle": T.PANEL, + "csub_stack_panel": T.STACK_PANEL, + "csub_stack_panel/padding_title_vertical": T.PANEL, + "csub_stack_panel/section_title": T.STACK_PANEL, + "csub_stack_panel/section_title/padding_title_horizontal": T.PANEL, + "csub_stack_panel/section_title/testTitle": T.STACK_PANEL, + "csub_stack_panel/dropdown_panel": T.PANEL, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel": T.STACK_PANEL, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_toggle": T.PANEL, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel": T.PANEL, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel/current_dropdown_box": T.STACK_PANEL, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/pad_1": T.PANEL, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_toggle": T.PANEL, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel": T.PANEL, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel/removed_dropdown_box": T.STACK_PANEL, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/pad_2": T.PANEL, + "subscriptions_text_panel": T.PANEL, + "subscriptions_text_panel/subscriptions_text": T.LABEL, + "realms_plus_stack_panel": T.STACK_PANEL, + "realms_plus_stack_panel/section_title": T.IMAGE, + "realms_plus_stack_panel/section_title/border": T.IMAGE, + "realms_plus_stack_panel/section_title/section_title_label": T.LABEL, + "realms_plus_stack_panel/section_title/particles": T.IMAGE, + "realms_plus_stack_panel/dropdown_panel": T.PANEL, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel": T.STACK_PANEL, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_0": T.PANEL, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_toggle": T.PANEL, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel": T.PANEL, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel/current_dropdown_box": T.STACK_PANEL, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_1": T.PANEL, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_toggle": T.PANEL, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel": T.PANEL, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel/removed_dropdown_box": T.STACK_PANEL, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_2": T.PANEL, + "dropdown_button_content": T.STACK_PANEL, + "dropdown_button_content/title_label": T.LABEL, + "dropdown_button_content/pad_0_fill": T.PANEL, + "dropdown_button_content/pad_0": T.PANEL, + "dropdown_button_content/icon_panel": T.PANEL, + "dropdown_button_content/icon_panel/block_icon": T.IMAGE, + "dropdown_button_content/pad_1": T.PANEL, + "dropdown_button_content/pad_2": T.PANEL, + "dropdown_button_content/count_panel": T.PANEL, + "dropdown_button_content/count_panel/count": T.LABEL, + "dropdown_button_content/pad_3": T.PANEL, + "dropdown_button_content/right_carrot": T.PANEL, + "dropdown_button_content/right_carrot/right": T.IMAGE, + "dropdown_button_content/down_carrot": T.PANEL, + "dropdown_button_content/down_carrot/down": T.IMAGE, + "owned_dropdown_content": T.STACK_PANEL, + "current_dropdown_content": T.STACK_PANEL, + "removed_dropdown_content": T.STACK_PANEL, + "dropdown_box": T.STACK_PANEL, + "dropdown_box/top_pad": T.PANEL, + "dropdown_box/all": T.BUTTON, + "dropdown_box/divider_0": T.STACK_PANEL, + "dropdown_box/addons": T.BUTTON, + "dropdown_box/divider_1": T.STACK_PANEL, + "dropdown_box/skins": T.BUTTON, + "dropdown_box/divider_2": T.STACK_PANEL, + "dropdown_box/worlds": T.BUTTON, + "dropdown_box/divider_3": T.STACK_PANEL, + "dropdown_box/textures": T.BUTTON, + "dropdown_box/divider_4": T.STACK_PANEL, + "dropdown_box/mashups": T.BUTTON, + "dropdown_box/bottom_pad": T.PANEL, + "category_panel_button": T.BUTTON, + "category_panel_button/default": T.STACK_PANEL, + "category_panel_button/hover": T.STACK_PANEL, + "category_panel_button/pressed": T.STACK_PANEL, + "category_stack_panel": T.STACK_PANEL, + "category_stack_panel/text": T.LABEL, + "category_stack_panel/fill_pad": T.PANEL, + "category_stack_panel/icon": T.IMAGE, + "category_stack_panel/pad_1": T.PANEL, + "category_stack_panel/number": T.LABEL, + "search_object": T.PANEL, + "list_panel": T.INPUT_PANEL, + "list_panel/list_panel_content": T.PANEL, + "list_panel/list_panel_content/search_and_offers_grid_scroll_panel": T.PANEL, + "list_panel/progress_loading": T.PANEL, + "items_content_section": T.INPUT_PANEL, + "subscriptions_content_section": T.STACK_PANEL, + "subscriptions_content_section/left_pad": T.PANEL, + "subscriptions_content_section/search_and_offers_grid_scroll_panel": T.PANEL, + "right_pane_factory": T.STACK_PANEL, + "content_area": T.PANEL, + "content_area/control": T.STACK_PANEL, + "content_area/control/right_pane_factory": T.STACK_PANEL, + "main_panel": T.STACK_PANEL, + "main_panel/inventory_left_panel": T.PANEL, + "main_panel/inventory_left_panel/inventory_left_image": T.IMAGE, + "main_panel/inventory_left_panel/left_scrolling_panel": T.PANEL, + "main_panel/divider_panel": T.PANEL, + "main_panel/divider_panel/main_divider": T.IMAGE, + "main_panel/inventory_right_panel": T.PANEL, + "main_panel/inventory_right_panel/right_panel_background_image": T.IMAGE, + "main_panel/inventory_right_panel/content_right_panel": T.PANEL, + "store_inventory_screen_main_panel": T.PANEL, + "store_inventory_screen_main_panel/main_content_view": T.INPUT_PANEL, + "store_inventory_screen_main_panel/sort_and_filter_modals": T.PANEL, + "store_search_screen_content": T.PANEL, + "store_search_screen_content/main_panel": T.STACK_PANEL, + "store_search_screen_content/popup_dialog_factory": T.FACTORY, + "store_inventory_screen": T.SCREEN, + "signin_text_section_body": T.STACK_PANEL, + "signin_text": T.LABEL, + "signin_text_02": T.LABEL, + "signin_text_section": T.STACK_PANEL, + "signin_text_section/signin_text": T.LABEL, + "signin_text_section/line_1_padding_line_2": T.PANEL, + "signin_text_section/signin_text_02": T.LABEL, + "sign_in_panel_text_body": T.BUTTON, } export type StoreItemListType = { - store_offer_key_art: T.IMAGE - main_panel: T.INPUT_PANEL - "main_panel/search_object": T.PANEL - "main_panel/progress_loading": T.PANEL - scrolling_content_stack: T.STACK_PANEL - "scrolling_content_stack/search_panel": T.UNKNOWN - store_offer_grid: T.GRID - persona_offer_grid: T.GRID - vertical_store_offer_grid: T.GRID - store_offer_title: T.LABEL - store_offer_grid_item: T.PANEL - "store_offer_grid_item/frame": T.IMAGE - "store_offer_grid_item/frame/key_art": T.IMAGE - "store_offer_grid_item/frame/key_art/key_art_frame": T.IMAGE - "store_offer_grid_item/frame/key_art/csb_expiration_banner": T.PANEL - "store_offer_grid_item/frame/progress": T.PANEL - "store_offer_grid_item/frame/title_label_panel": T.PANEL - "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label": T.STACK_PANEL - "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label/title": T.LABEL - "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label/creator_label": T.STACK_PANEL - "store_offer_grid_item/frame/durable_offer_info_panel": T.STACK_PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel": T.STACK_PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/subscription_panel": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rtx_label": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel/markdown_banner": T.STACK_PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/fill_markdown_panel_left": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/markdown_panel": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_markdown_panel_right": T.PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/offer_prompt_panel": T.STACK_PANEL - "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_6": T.PANEL - "store_offer_grid_item/frame/offer_button": T.BUTTON - "store_offer_grid_item/frame/offer_button/hover": T.PANEL - "store_offer_grid_item/frame/offer_button/hover/key_art_size_panel": T.PANEL - "store_offer_grid_item/frame/offer_button/hover/key_art_size_panel/key_art_frame": T.IMAGE - "store_offer_grid_item/frame/offer_button/pressed": T.PANEL - "store_offer_grid_item/frame/offer_button/pressed/key_art_size_panel": T.PANEL - "store_offer_grid_item/frame/offer_button/pressed/key_art_size_panel/key_art_frame": T.IMAGE - "store_offer_grid_item/frame/offer_button/offer_status_icon": T.PANEL - store_screen_content: T.PANEL - "store_screen_content/main_panel": T.STACK_PANEL - "store_screen_content/popup_dialog_factory": T.FACTORY + "store_offer_key_art": T.IMAGE, + "main_panel": T.INPUT_PANEL, + "main_panel/search_object": T.PANEL, + "main_panel/progress_loading": T.PANEL, + "scrolling_content_stack": T.STACK_PANEL, + "scrolling_content_stack/search_panel": T.UNKNOWN, + "store_offer_grid": T.GRID, + "persona_offer_grid": T.GRID, + "vertical_store_offer_grid": T.GRID, + "store_offer_title": T.LABEL, + "store_offer_grid_item": T.PANEL, + "store_offer_grid_item/frame": T.IMAGE, + "store_offer_grid_item/frame/key_art": T.IMAGE, + "store_offer_grid_item/frame/key_art/key_art_frame": T.IMAGE, + "store_offer_grid_item/frame/key_art/csb_expiration_banner": T.PANEL, + "store_offer_grid_item/frame/progress": T.PANEL, + "store_offer_grid_item/frame/title_label_panel": T.PANEL, + "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label": T.STACK_PANEL, + "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label/title": T.LABEL, + "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label/creator_label": T.STACK_PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel": T.STACK_PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel": T.STACK_PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/subscription_panel": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rtx_label": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel/markdown_banner": T.STACK_PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/fill_markdown_panel_left": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/markdown_panel": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_markdown_panel_right": T.PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/offer_prompt_panel": T.STACK_PANEL, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_6": T.PANEL, + "store_offer_grid_item/frame/offer_button": T.BUTTON, + "store_offer_grid_item/frame/offer_button/hover": T.PANEL, + "store_offer_grid_item/frame/offer_button/hover/key_art_size_panel": T.PANEL, + "store_offer_grid_item/frame/offer_button/hover/key_art_size_panel/key_art_frame": T.IMAGE, + "store_offer_grid_item/frame/offer_button/pressed": T.PANEL, + "store_offer_grid_item/frame/offer_button/pressed/key_art_size_panel": T.PANEL, + "store_offer_grid_item/frame/offer_button/pressed/key_art_size_panel/key_art_frame": T.IMAGE, + "store_offer_grid_item/frame/offer_button/offer_status_icon": T.PANEL, + "store_screen_content": T.PANEL, + "store_screen_content/main_panel": T.STACK_PANEL, + "store_screen_content/popup_dialog_factory": T.FACTORY, } export type StoreProgressType = { - store_progress_screen: T.SCREEN - screen_content: T.PANEL - "screen_content/title_image": T.IMAGE - "screen_content/progress_dialog": T.PANEL - dialog_content: T.STACK_PANEL - "dialog_content/tooltip_panel": T.PANEL - "dialog_content/tooltip_panel/tooltip_text": T.LABEL - "dialog_content/padding": T.PANEL - "dialog_content/progress_panel": T.PANEL - "dialog_content/progress_panel/empty_progress_bar": T.IMAGE - "dialog_content/progress_panel/progress_percent_panel": T.PANEL - "dialog_content/progress_panel/progress_percent_panel/full_progress_bar": T.IMAGE - "dialog_content/progress_panel/progress_percent_panel/progress_bar_nub": T.IMAGE - screen_background: T.IMAGE + "store_progress_screen": T.SCREEN, + "screen_content": T.PANEL, + "screen_content/title_image": T.IMAGE, + "screen_content/progress_dialog": T.PANEL, + "dialog_content": T.STACK_PANEL, + "dialog_content/tooltip_panel": T.PANEL, + "dialog_content/tooltip_panel/tooltip_text": T.LABEL, + "dialog_content/padding": T.PANEL, + "dialog_content/progress_panel": T.PANEL, + "dialog_content/progress_panel/empty_progress_bar": T.IMAGE, + "dialog_content/progress_panel/progress_percent_panel": T.PANEL, + "dialog_content/progress_panel/progress_percent_panel/full_progress_bar": T.IMAGE, + "dialog_content/progress_panel/progress_percent_panel/progress_bar_nub": T.IMAGE, + "screen_background": T.IMAGE, } export type PromoTimelineType = { - promo_banner_factory: T.STACK_PANEL - promo_banner_button_content: T.PANEL - "promo_banner_button_content/promo_banner_button": T.LABEL - "promo_banner_button_content/progress_loading_spinner": T.IMAGE - promo_banner_image: T.IMAGE - promo_banner_panel_content: T.PANEL - "promo_banner_panel_content/banner_image": T.IMAGE - "promo_banner_panel_content/banner_text_panel": T.STACK_PANEL - "promo_banner_panel_content/banner_text_panel/padding_0": T.PANEL - "promo_banner_panel_content/banner_text_panel/title_stack_panel": T.STACK_PANEL - "promo_banner_panel_content/banner_text_panel/title_stack_panel/banner_title": T.STACK_PANEL - "promo_banner_panel_content/banner_text_panel/description": T.STACK_PANEL - "promo_banner_panel_content/button_stack_panel": T.STACK_PANEL - "promo_banner_panel_content/button_stack_panel/left_offset": T.PANEL - "promo_banner_panel_content/button_stack_panel/banner_button": T.STACK_PANEL - "promo_banner_panel_content/button_stack_panel/right_offset": T.PANEL - promo_banner_holiday_panel: T.PANEL - "promo_banner_holiday_panel/banner_full_button": T.BUTTON - "promo_banner_holiday_panel/banner_full_button/default": T.PANEL - "promo_banner_holiday_panel/banner_full_button/hover": T.PANEL - "promo_banner_holiday_panel/banner_full_button/pressed": T.PANEL - image_message_panel: T.STACK_PANEL - "image_message_panel/image_message_row_content": T.PANEL - "image_message_panel/padding_0": T.PANEL - image_message_row_content: T.PANEL - "image_message_row_content/gray_background": T.IMAGE - "image_message_row_content/gray_background/message_text": T.LABEL - "image_message_row_content/gray_background/row_image": T.IMAGE - "image_message_row_content/row_button": T.BUTTON - promo_image_panel: T.IMAGE - "promo_image_panel/button_image_panel": T.PANEL - "promo_image_panel/button_animated_panel": T.PANEL - promo_button_image_panel: T.PANEL - "promo_button_image_panel/button_image": T.UNKNOWN - promo_button_image: T.IMAGE - promo_button_animation: T.IMAGE - banner_button: T.PANEL - sdl_text_aligned_panel: T.STACK_PANEL - sdl_text_minecraftTen_aligned_panel: T.STACK_PANEL - sdl_content_aligned_panel: T.STACK_PANEL - "sdl_content_aligned_panel/left__padding_panel": T.PANEL - "sdl_content_aligned_panel/control": T.UNKNOWN - "sdl_content_aligned_panel/right_padding_panel": T.PANEL - sdl_aligned_text: T.LABEL - sdl_aligned_minecraftTen_text: T.LABEL - colored_direction_button_panel: T.PANEL - "colored_direction_button_panel/chevron_image": T.IMAGE - left_corner_art: T.IMAGE - right_corner_art: T.IMAGE - promo_landing_panel: T.INPUT_PANEL - "promo_landing_panel/promo_landing_panel_content": T.STACK_PANEL - "promo_landing_panel/promo_landing_panel_content/promo_top": T.PANEL - "promo_landing_panel/promo_landing_panel_content/pad_0": T.PANEL - "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel": T.PANEL - "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom": T.IMAGE - "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel": T.INPUT_PANEL - "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/left_button_panel": T.PANEL - "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/left_button_panel/left_button": T.BUTTON - "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/offer_grid": T.STACK_PANEL - "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/right_button_panel": T.PANEL - "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/right_button_panel/right_button": T.BUTTON - "promo_landing_panel/promo_landing_panel_content/pad_1": T.PANEL - "promo_landing_panel/left_corner_art": T.IMAGE - "promo_landing_panel/right_corner_art": T.IMAGE - promotion_screen_top_section: T.PANEL - "promotion_screen_top_section/main_panel": T.IMAGE - promotion_top_main_panel: T.IMAGE - "promotion_top_main_panel/promotion_top_main_stack": T.STACK_PANEL - "promotion_top_main_panel/promotion_top_main_stack/main_panel_title": T.STACK_PANEL - "promotion_top_main_panel/promotion_top_main_stack/promo_single_top": T.INPUT_PANEL - "promotion_top_main_panel/promotion_top_main_stack/promo_single_top/single_item_view": T.STACK_PANEL - "promotion_top_main_panel/promotion_top_main_stack/promo_multi_item": T.PANEL - main_panel_title: T.STACK_PANEL - "main_panel_title/padding_0": T.PANEL - "main_panel_title/header_stack": T.STACK_PANEL - "main_panel_title/header_stack/padding_0": T.PANEL - "main_panel_title/header_stack/back_button_centering_panel": T.PANEL - "main_panel_title/header_stack/back_button_centering_panel/button": T.BUTTON - "main_panel_title/header_stack/padding_1": T.PANEL - "main_panel_title/header_stack/header_panel": T.PANEL - "main_panel_title/header_stack/header_panel/title_and_description": T.LABEL - "main_panel_title/header_stack/padding_2": T.PANEL - "main_panel_title/header_stack/claim_all_button_panel": T.PANEL - "main_panel_title/header_stack/claim_all_button_panel/claim_all_button": T.BUTTON - "main_panel_title/padding_1": T.PANEL - "main_panel_title/divdier_centering_panel": T.PANEL - "main_panel_title/divdier_centering_panel/divider": T.IMAGE - "main_panel_title/padding_2": T.PANEL - promo_multi_item_grid: T.GRID - promo_button: T.BUTTON - "promo_button/default": T.PANEL - "promo_button/default/key_art_size_panel": T.PANEL - "promo_button/default/key_art_size_panel/key_art_frame": T.IMAGE - "promo_button/default/key_art_size_panel/key_art_frame/sizing_panel": T.PANEL - "promo_button/default/key_art_size_panel/key_art_frame/platform_restricted_warning_image": T.IMAGE - "promo_button/default/key_art_size_panel/button_frame": T.IMAGE - "promo_button/hover": T.PANEL - "promo_button/hover/key_art_size_panel": T.PANEL - "promo_button/hover/key_art_size_panel/key_art_frame": T.IMAGE - "promo_button/hover/key_art_size_panel/key_art_frame/sizing_panel": T.PANEL - "promo_button/hover/key_art_size_panel/button_frame": T.IMAGE - "promo_button/pressed": T.PANEL - "promo_button/pressed/key_art_frame": T.IMAGE - "promo_button/pressed/key_art_frame/sizing_panel": T.PANEL - "promo_button/pressed/button_frame": T.IMAGE - promo_grid_item: T.PANEL - "promo_grid_item/background_image": T.IMAGE - "promo_grid_item/background_image/promo_content": T.STACK_PANEL - "promo_grid_item/promo_button": T.BUTTON - "promo_grid_item/platform_restricted_error_multi_item": T.PANEL - platform_restricted_error: T.PANEL - "platform_restricted_error/platform_restricted_error_button": T.BUTTON - "platform_restricted_error/platform_restricted_error_button/default": T.PANEL - "platform_restricted_error/platform_restricted_error_button/hover": T.IMAGE - "platform_restricted_error/platform_restricted_error_button/pressed": T.PANEL - "platform_restricted_error/platform_restricted_error_button/white_overlay_to_gray_out": T.IMAGE - promo_grid_item_content: T.STACK_PANEL - "promo_grid_item_content/thumbnail_image": T.IMAGE - "promo_grid_item_content/persona_key_art_frame": T.PANEL - "promo_grid_item_content/persona_key_art_frame/persona_image_panel": T.IMAGE - "promo_grid_item_content/persona_key_art_frame/background": T.IMAGE - "promo_grid_item_content/persona_key_art_frame/rarity_bar_panel": T.IMAGE - "promo_grid_item_content/padding_0": T.PANEL - "promo_grid_item_content/title_tooltip": T.STACK_PANEL - "promo_grid_item_content/title_tooltip/promo_title": T.LABEL - "promo_grid_item_content/title_tooltip/tooltip": T.STACK_PANEL - promotion_period_grid_panel: T.PANEL - "promotion_period_grid_panel/promotion_offer_grid_image": T.PANEL - "promotion_period_grid_panel/promotion_offer_grid_image/item_selected_bg": T.IMAGE - "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel": T.STACK_PANEL - "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/day_label_panel": T.PANEL - "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/day_label_panel/day_label": T.LABEL - "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/pad": T.PANEL - "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel": T.PANEL - "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel/image_panel": T.PANEL - "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel/image_panel/item_button": T.PANEL - promotion_period_offer_panel: T.STACK_PANEL - "promotion_period_offer_panel/period_1": T.PANEL - "promotion_period_offer_panel/padding_0": T.PANEL - "promotion_period_offer_panel/period_2": T.PANEL - "promotion_period_offer_panel/padding_1": T.PANEL - "promotion_period_offer_panel/period_3": T.PANEL - "promotion_period_offer_panel/padding_2": T.PANEL - "promotion_period_offer_panel/period_4": T.PANEL - "promotion_period_offer_panel/padding_3": T.PANEL - "promotion_period_offer_panel/period_5": T.PANEL - "promotion_period_offer_panel/padding_4": T.PANEL - "promotion_period_offer_panel/period_6": T.PANEL - "promotion_period_offer_panel/padding_5": T.PANEL - "promotion_period_offer_panel/period_7": T.PANEL - toggle_button_control: T.PANEL - "toggle_button_control/green_check": T.IMAGE - "toggle_button_control/key_art_image_panel": T.PANEL - "toggle_button_control/key_art_image_panel/image_loading_panel": T.PANEL - "toggle_button_control/key_art_image_panel/key_art_image": T.IMAGE - checked_border: T.PANEL - promotion_period_grid_item: T.PANEL - "promotion_period_grid_item/frame": T.PANEL - "promotion_period_grid_item/frame/offer_button": T.PANEL - "promotion_period_grid_item/frame/offer_button/offer_toggle_button": T.PANEL - vertical_padding_2px: T.PANEL - timer_icon_tooltip_panel: T.PANEL - "timer_icon_tooltip_panel/limited_status_image": T.IMAGE - timer_tooltip_panel_right_extending: T.BUTTON - "timer_tooltip_panel_right_extending/default": T.PANEL - "timer_tooltip_panel_right_extending/hover": T.IMAGE - "timer_tooltip_panel_right_extending/pressed": T.IMAGE - timer_tooltip_panel_left_extending: T.BUTTON - "timer_tooltip_panel_left_extending/default": T.PANEL - "timer_tooltip_panel_left_extending/hover": T.IMAGE - "timer_tooltip_panel_left_extending/pressed": T.IMAGE - no_timer_tooltip_panel: T.BUTTON - "no_timer_tooltip_panel/default": T.PANEL - "no_timer_tooltip_panel/hover": T.PANEL - "no_timer_tooltip_panel/pressed": T.PANEL - promo_timer_panel: T.STACK_PANEL - "promo_timer_panel/timer_icon_and_tooltip_panel": T.PANEL - "promo_timer_panel/timer_icon_and_tooltip_panel/tooltip_button_right_extending": T.BUTTON - "promo_timer_panel/timer_icon_and_tooltip_panel/tooltip_button_left_extending": T.BUTTON - "promo_timer_panel/timer_icon_and_tooltip_panel/notooltip_button": T.BUTTON - "promo_timer_panel/timer_icon_and_tooltip_panel/timer_icon": T.IMAGE - "promo_timer_panel/padding": T.PANEL - "promo_timer_panel/timer_text": T.LABEL - offer_title_panel: T.PANEL - "offer_title_panel/offer_title_label": T.LABEL - title_and_author_panel: T.STACK_PANEL - "title_and_author_panel/author_button_panel": T.PANEL - "title_and_author_panel/author_button_panel/summary_author_button": T.BUTTON - glyph_panel: T.PANEL - "glyph_panel/item_glyph_count_panel": T.STACK_PANEL - "glyph_panel/item_glyph_count_panel/glyph_icon_panel": T.PANEL - "glyph_panel/item_glyph_count_panel/glyph_icon_panel/glyph_icon": T.IMAGE - "glyph_panel/item_glyph_count_panel/center_item_glyph_padding": T.PANEL - "glyph_panel/item_glyph_count_panel/item_glyph_count_panel_label": T.LABEL - "glyph_panel/item_glyph_count_panel/item_glyph_panel_padding": T.PANEL - vertical_glyph_section_content: T.STACK_PANEL - "vertical_glyph_section_content/glyph_content": T.PANEL - "vertical_glyph_section_content/bottom_glyph_content_padding": T.PANEL - glyph_section_panel: T.PANEL - "glyph_section_panel/glyphs": T.STACK_PANEL - "glyph_section_panel/glyphs/skin_glyph_section": T.UNKNOWN - "glyph_section_panel/glyphs/world_glyph_section": T.UNKNOWN - "glyph_section_panel/glyphs/resource_pack_glyph_section": T.UNKNOWN - vertical_glyph_section_panel: T.PANEL - image_glyphs_panel: T.STACK_PANEL - "image_glyphs_panel/world_panel": T.PANEL - "image_glyphs_panel/world_panel/border": T.IMAGE - "image_glyphs_panel/world_panel/world_key_image": T.IMAGE - "image_glyphs_panel/persona_panel": T.PANEL - "image_glyphs_panel/persona_panel/border": T.IMAGE - "image_glyphs_panel/persona_panel/persona_image": T.IMAGE - "image_glyphs_panel/persona_panel/background": T.IMAGE - "image_glyphs_panel/persona_panel/rarity_bar_panel": T.IMAGE - "image_glyphs_panel/divider": T.PANEL - "image_glyphs_panel/info": T.STACK_PANEL - "image_glyphs_panel/info/summary_title_and_author_panel": T.STACK_PANEL - "image_glyphs_panel/info/glyph_section": T.PANEL - "image_glyphs_panel/info/glyph_section/glyph_section_panel": T.PANEL - promo_lower_button_content: T.PANEL - "promo_lower_button_content/promo_banner_button": T.LABEL - "promo_lower_button_content/progress_loading_spinner": T.IMAGE - free_discount_label: T.LABEL - promo_upper_button_content: T.PANEL - "promo_upper_button_content/markdown": T.STACK_PANEL - "promo_upper_button_content/markdown/sales_banner_offset_panel": T.PANEL - "promo_upper_button_content/markdown/sales_banner_offset_panel/sales_banner_panel": T.PANEL - "promo_upper_button_content/markdown/sales_banner_offset_panel/sales_banner_panel/markdown_banner": T.STACK_PANEL - "promo_upper_button_content/markdown/price_markdown_panel": T.PANEL - "promo_upper_button_content/markdown/price_markdown_panel/offer_price": T.LABEL - "promo_upper_button_content/markdown/price_markdown_panel/offer_price/text_strike_through": T.IMAGE - "promo_upper_button_content/promo_item_action_text_panel": T.STACK_PANEL - "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel": T.PANEL - "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel/platform_restricted_warning_image": T.IMAGE - "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel/padding": T.PANEL - "promo_upper_button_content/promo_item_action_text_panel/promo_item_action_text": T.LABEL - "promo_upper_button_content/download_progress_bar": T.PANEL - description_section_panel: T.PANEL - "description_section_panel/contents_description": T.LABEL - offset_title_offer: T.STACK_PANEL - "offset_title_offer/pad_0": T.PANEL - "offset_title_offer/title_panel": T.PANEL - offset_promo_timer: T.STACK_PANEL - "offset_promo_timer/pad_0": T.PANEL - "offset_promo_timer/promo_timer": T.STACK_PANEL - offset_image_glyphs_panel: T.STACK_PANEL - "offset_image_glyphs_panel/pad_0": T.PANEL - "offset_image_glyphs_panel/smaller_panel": T.STACK_PANEL - "offset_image_glyphs_panel/smaller_panel/details": T.STACK_PANEL - "offset_image_glyphs_panel/smaller_panel/description": T.PANEL - promo_pack_detail_panel: T.STACK_PANEL - "promo_pack_detail_panel/offset_title_panel": T.STACK_PANEL - "promo_pack_detail_panel/offsetted_promo_timer": T.STACK_PANEL - "promo_pack_detail_panel/pad_0": T.PANEL - "promo_pack_detail_panel/offsetted_details": T.STACK_PANEL - "promo_pack_detail_panel/pad_1": T.PANEL - promo_left_inner_top_scrolling_content: T.INPUT_PANEL - "promo_left_inner_top_scrolling_content/details": T.STACK_PANEL - promo_left_inner_top: T.STACK_PANEL - "promo_left_inner_top/top": T.PANEL - "promo_left_inner_top/padding2": T.PANEL - promo_left_inner_bottom: T.STACK_PANEL - "promo_left_inner_bottom/banner_button_top_panel": T.PANEL - "promo_left_inner_bottom/banner_button_top_panel/banner_button_top": T.BUTTON - "promo_left_inner_bottom/banner_button_top_panel/platform_restricted_error_single_item": T.PANEL - "promo_left_inner_bottom/banner_button_bottom": T.BUTTON - promo_left_panel: T.STACK_PANEL - "promo_left_panel/top": T.STACK_PANEL - "promo_left_panel/bottom_buttons_padded": T.STACK_PANEL - "promo_left_panel/bottom_buttons_padded/pad_0": T.PANEL - "promo_left_panel/bottom_buttons_padded/bottom": T.STACK_PANEL - "promo_left_panel/padding": T.PANEL - promo_world_image_panel: T.PANEL - "promo_world_image_panel/image": T.PANEL - "promo_world_image_panel/image/key_image": T.IMAGE - "promo_world_image_panel/image/key_image/border": T.IMAGE - promo_grey_bar_panel: T.STACK_PANEL - "promo_grey_bar_panel/grey_bar": T.IMAGE - "promo_grey_bar_panel/green_bar": T.IMAGE - "promo_grey_bar_panel/padding": T.PANEL - promo_world_button_panel: T.STACK_PANEL - "promo_world_button_panel/pan_left_button": T.BUTTON - "promo_world_button_panel/navigation_bar": T.PANEL - "promo_world_button_panel/navigation_bar/grey_bar": T.IMAGE - "promo_world_button_panel/navigation_bar/grey_bar/grey_bar_factory_panel": T.STACK_PANEL - "promo_world_button_panel/pan_right_button": T.BUTTON - promo_world_panel: T.STACK_PANEL - "promo_world_panel/image": T.PANEL - "promo_world_panel/padding1": T.PANEL - "promo_world_panel/buttons": T.STACK_PANEL - "promo_world_panel/padding_3": T.PANEL - promo_skin_panel: T.PANEL - "promo_skin_panel/size_control": T.PANEL - "promo_skin_panel/size_control/background": T.IMAGE - "promo_skin_panel/size_control/skin_button": T.BUTTON - "promo_skin_panel/size_control/skin_button/default": T.PANEL - "promo_skin_panel/size_control/skin_button/hover": T.IMAGE - "promo_skin_panel/size_control/skin_button/pressed": T.PANEL - "promo_skin_panel/size_control/skin_button/content_panel": T.PANEL - "promo_skin_panel/size_control/skin_button/content_panel/paper_doll": T.CUSTOM - promo_skin_grid_panel: T.PANEL - "promo_skin_grid_panel/promo_skin_pack_grid": T.GRID - promo_right_panel_scroll_content: T.STACK_PANEL - "promo_right_panel_scroll_content/world_screenshots_panel": T.PANEL - "promo_right_panel_scroll_content/world_screenshots_panel/world_panel": T.STACK_PANEL - "promo_right_panel_scroll_content/skin_image_panel": T.PANEL - "promo_right_panel_scroll_content/skin_image_panel/skin_panel": T.UNKNOWN - "promo_right_panel_scroll_content/persona_preview": T.INPUT_PANEL - skin_scroll_panel: T.UNKNOWN - persona_classic_skin_grid_panel: T.PANEL - "persona_classic_skin_grid_panel/persona_skin_pack_category_grid": T.GRID - promo_right_panel: T.PANEL - promo_detail_panel: T.STACK_PANEL - "promo_detail_panel/detail": T.STACK_PANEL - "promo_detail_panel/center_spacing": T.PANEL - "promo_detail_panel/right": T.PANEL - promotion_skin_viewer_panel: T.INPUT_PANEL - "promotion_skin_viewer_panel/popup_dialog_factory": T.FACTORY - "promotion_skin_viewer_panel/character_loading_panel": T.IMAGE - "promotion_skin_viewer_panel/skin_model_panel": T.PANEL - "promotion_skin_viewer_panel/skin_model_panel/skin_model": T.CUSTOM - "promotion_skin_viewer_panel/skin_model_panel/arrow_panel": T.PANEL - "promotion_skin_viewer_panel/skin_model_panel/arrow_panel/rotate_arrows": T.IMAGE - promo_popup_toast: T.INPUT_PANEL + "promo_banner_factory": T.STACK_PANEL, + "promo_banner_button_content": T.PANEL, + "promo_banner_button_content/promo_banner_button": T.LABEL, + "promo_banner_button_content/progress_loading_spinner": T.IMAGE, + "promo_banner_image": T.IMAGE, + "promo_banner_panel_content": T.PANEL, + "promo_banner_panel_content/banner_image": T.IMAGE, + "promo_banner_panel_content/banner_text_panel": T.STACK_PANEL, + "promo_banner_panel_content/banner_text_panel/padding_0": T.PANEL, + "promo_banner_panel_content/banner_text_panel/title_stack_panel": T.STACK_PANEL, + "promo_banner_panel_content/banner_text_panel/title_stack_panel/banner_title": T.STACK_PANEL, + "promo_banner_panel_content/banner_text_panel/description": T.STACK_PANEL, + "promo_banner_panel_content/button_stack_panel": T.STACK_PANEL, + "promo_banner_panel_content/button_stack_panel/left_offset": T.PANEL, + "promo_banner_panel_content/button_stack_panel/banner_button": T.STACK_PANEL, + "promo_banner_panel_content/button_stack_panel/right_offset": T.PANEL, + "promo_banner_holiday_panel": T.PANEL, + "promo_banner_holiday_panel/banner_full_button": T.BUTTON, + "promo_banner_holiday_panel/banner_full_button/default": T.PANEL, + "promo_banner_holiday_panel/banner_full_button/hover": T.PANEL, + "promo_banner_holiday_panel/banner_full_button/pressed": T.PANEL, + "image_message_panel": T.STACK_PANEL, + "image_message_panel/image_message_row_content": T.PANEL, + "image_message_panel/padding_0": T.PANEL, + "image_message_row_content": T.PANEL, + "image_message_row_content/gray_background": T.IMAGE, + "image_message_row_content/gray_background/message_text": T.LABEL, + "image_message_row_content/gray_background/row_image": T.IMAGE, + "image_message_row_content/row_button": T.BUTTON, + "promo_image_panel": T.IMAGE, + "promo_image_panel/button_image_panel": T.PANEL, + "promo_image_panel/button_animated_panel": T.PANEL, + "promo_button_image_panel": T.PANEL, + "promo_button_image_panel/button_image": T.UNKNOWN, + "promo_button_image": T.IMAGE, + "promo_button_animation": T.IMAGE, + "banner_button": T.PANEL, + "sdl_text_aligned_panel": T.STACK_PANEL, + "sdl_text_minecraftTen_aligned_panel": T.STACK_PANEL, + "sdl_content_aligned_panel": T.STACK_PANEL, + "sdl_content_aligned_panel/left__padding_panel": T.PANEL, + "sdl_content_aligned_panel/control": T.UNKNOWN, + "sdl_content_aligned_panel/right_padding_panel": T.PANEL, + "sdl_aligned_text": T.LABEL, + "sdl_aligned_minecraftTen_text": T.LABEL, + "colored_direction_button_panel": T.PANEL, + "colored_direction_button_panel/chevron_image": T.IMAGE, + "left_corner_art": T.IMAGE, + "right_corner_art": T.IMAGE, + "promo_landing_panel": T.INPUT_PANEL, + "promo_landing_panel/promo_landing_panel_content": T.STACK_PANEL, + "promo_landing_panel/promo_landing_panel_content/promo_top": T.PANEL, + "promo_landing_panel/promo_landing_panel_content/pad_0": T.PANEL, + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel": T.PANEL, + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom": T.IMAGE, + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel": T.INPUT_PANEL, + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/left_button_panel": T.PANEL, + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/left_button_panel/left_button": T.BUTTON, + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/offer_grid": T.STACK_PANEL, + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/right_button_panel": T.PANEL, + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/right_button_panel/right_button": T.BUTTON, + "promo_landing_panel/promo_landing_panel_content/pad_1": T.PANEL, + "promo_landing_panel/left_corner_art": T.IMAGE, + "promo_landing_panel/right_corner_art": T.IMAGE, + "promotion_screen_top_section": T.PANEL, + "promotion_screen_top_section/main_panel": T.IMAGE, + "promotion_top_main_panel": T.IMAGE, + "promotion_top_main_panel/promotion_top_main_stack": T.STACK_PANEL, + "promotion_top_main_panel/promotion_top_main_stack/main_panel_title": T.STACK_PANEL, + "promotion_top_main_panel/promotion_top_main_stack/promo_single_top": T.INPUT_PANEL, + "promotion_top_main_panel/promotion_top_main_stack/promo_single_top/single_item_view": T.STACK_PANEL, + "promotion_top_main_panel/promotion_top_main_stack/promo_multi_item": T.PANEL, + "main_panel_title": T.STACK_PANEL, + "main_panel_title/padding_0": T.PANEL, + "main_panel_title/header_stack": T.STACK_PANEL, + "main_panel_title/header_stack/padding_0": T.PANEL, + "main_panel_title/header_stack/back_button_centering_panel": T.PANEL, + "main_panel_title/header_stack/back_button_centering_panel/button": T.BUTTON, + "main_panel_title/header_stack/padding_1": T.PANEL, + "main_panel_title/header_stack/header_panel": T.PANEL, + "main_panel_title/header_stack/header_panel/title_and_description": T.LABEL, + "main_panel_title/header_stack/padding_2": T.PANEL, + "main_panel_title/header_stack/claim_all_button_panel": T.PANEL, + "main_panel_title/header_stack/claim_all_button_panel/claim_all_button": T.BUTTON, + "main_panel_title/padding_1": T.PANEL, + "main_panel_title/divdier_centering_panel": T.PANEL, + "main_panel_title/divdier_centering_panel/divider": T.IMAGE, + "main_panel_title/padding_2": T.PANEL, + "promo_multi_item_grid": T.GRID, + "promo_button": T.BUTTON, + "promo_button/default": T.PANEL, + "promo_button/default/key_art_size_panel": T.PANEL, + "promo_button/default/key_art_size_panel/key_art_frame": T.IMAGE, + "promo_button/default/key_art_size_panel/key_art_frame/sizing_panel": T.PANEL, + "promo_button/default/key_art_size_panel/key_art_frame/platform_restricted_warning_image": T.IMAGE, + "promo_button/default/key_art_size_panel/button_frame": T.IMAGE, + "promo_button/hover": T.PANEL, + "promo_button/hover/key_art_size_panel": T.PANEL, + "promo_button/hover/key_art_size_panel/key_art_frame": T.IMAGE, + "promo_button/hover/key_art_size_panel/key_art_frame/sizing_panel": T.PANEL, + "promo_button/hover/key_art_size_panel/button_frame": T.IMAGE, + "promo_button/pressed": T.PANEL, + "promo_button/pressed/key_art_frame": T.IMAGE, + "promo_button/pressed/key_art_frame/sizing_panel": T.PANEL, + "promo_button/pressed/button_frame": T.IMAGE, + "promo_grid_item": T.PANEL, + "promo_grid_item/background_image": T.IMAGE, + "promo_grid_item/background_image/promo_content": T.STACK_PANEL, + "promo_grid_item/promo_button": T.BUTTON, + "promo_grid_item/platform_restricted_error_multi_item": T.PANEL, + "platform_restricted_error": T.PANEL, + "platform_restricted_error/platform_restricted_error_button": T.BUTTON, + "platform_restricted_error/platform_restricted_error_button/default": T.PANEL, + "platform_restricted_error/platform_restricted_error_button/hover": T.IMAGE, + "platform_restricted_error/platform_restricted_error_button/pressed": T.PANEL, + "platform_restricted_error/platform_restricted_error_button/white_overlay_to_gray_out": T.IMAGE, + "promo_grid_item_content": T.STACK_PANEL, + "promo_grid_item_content/thumbnail_image": T.IMAGE, + "promo_grid_item_content/persona_key_art_frame": T.PANEL, + "promo_grid_item_content/persona_key_art_frame/persona_image_panel": T.IMAGE, + "promo_grid_item_content/persona_key_art_frame/background": T.IMAGE, + "promo_grid_item_content/persona_key_art_frame/rarity_bar_panel": T.IMAGE, + "promo_grid_item_content/padding_0": T.PANEL, + "promo_grid_item_content/title_tooltip": T.STACK_PANEL, + "promo_grid_item_content/title_tooltip/promo_title": T.LABEL, + "promo_grid_item_content/title_tooltip/tooltip": T.STACK_PANEL, + "promotion_period_grid_panel": T.PANEL, + "promotion_period_grid_panel/promotion_offer_grid_image": T.PANEL, + "promotion_period_grid_panel/promotion_offer_grid_image/item_selected_bg": T.IMAGE, + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel": T.STACK_PANEL, + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/day_label_panel": T.PANEL, + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/day_label_panel/day_label": T.LABEL, + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/pad": T.PANEL, + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel": T.PANEL, + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel/image_panel": T.PANEL, + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel/image_panel/item_button": T.PANEL, + "promotion_period_offer_panel": T.STACK_PANEL, + "promotion_period_offer_panel/period_1": T.PANEL, + "promotion_period_offer_panel/padding_0": T.PANEL, + "promotion_period_offer_panel/period_2": T.PANEL, + "promotion_period_offer_panel/padding_1": T.PANEL, + "promotion_period_offer_panel/period_3": T.PANEL, + "promotion_period_offer_panel/padding_2": T.PANEL, + "promotion_period_offer_panel/period_4": T.PANEL, + "promotion_period_offer_panel/padding_3": T.PANEL, + "promotion_period_offer_panel/period_5": T.PANEL, + "promotion_period_offer_panel/padding_4": T.PANEL, + "promotion_period_offer_panel/period_6": T.PANEL, + "promotion_period_offer_panel/padding_5": T.PANEL, + "promotion_period_offer_panel/period_7": T.PANEL, + "toggle_button_control": T.PANEL, + "toggle_button_control/green_check": T.IMAGE, + "toggle_button_control/key_art_image_panel": T.PANEL, + "toggle_button_control/key_art_image_panel/image_loading_panel": T.PANEL, + "toggle_button_control/key_art_image_panel/key_art_image": T.IMAGE, + "checked_border": T.PANEL, + "promotion_period_grid_item": T.PANEL, + "promotion_period_grid_item/frame": T.PANEL, + "promotion_period_grid_item/frame/offer_button": T.PANEL, + "promotion_period_grid_item/frame/offer_button/offer_toggle_button": T.PANEL, + "vertical_padding_2px": T.PANEL, + "timer_icon_tooltip_panel": T.PANEL, + "timer_icon_tooltip_panel/limited_status_image": T.IMAGE, + "timer_tooltip_panel_right_extending": T.BUTTON, + "timer_tooltip_panel_right_extending/default": T.PANEL, + "timer_tooltip_panel_right_extending/hover": T.IMAGE, + "timer_tooltip_panel_right_extending/pressed": T.IMAGE, + "timer_tooltip_panel_left_extending": T.BUTTON, + "timer_tooltip_panel_left_extending/default": T.PANEL, + "timer_tooltip_panel_left_extending/hover": T.IMAGE, + "timer_tooltip_panel_left_extending/pressed": T.IMAGE, + "no_timer_tooltip_panel": T.BUTTON, + "no_timer_tooltip_panel/default": T.PANEL, + "no_timer_tooltip_panel/hover": T.PANEL, + "no_timer_tooltip_panel/pressed": T.PANEL, + "promo_timer_panel": T.STACK_PANEL, + "promo_timer_panel/timer_icon_and_tooltip_panel": T.PANEL, + "promo_timer_panel/timer_icon_and_tooltip_panel/tooltip_button_right_extending": T.BUTTON, + "promo_timer_panel/timer_icon_and_tooltip_panel/tooltip_button_left_extending": T.BUTTON, + "promo_timer_panel/timer_icon_and_tooltip_panel/notooltip_button": T.BUTTON, + "promo_timer_panel/timer_icon_and_tooltip_panel/timer_icon": T.IMAGE, + "promo_timer_panel/padding": T.PANEL, + "promo_timer_panel/timer_text": T.LABEL, + "offer_title_panel": T.PANEL, + "offer_title_panel/offer_title_label": T.LABEL, + "title_and_author_panel": T.STACK_PANEL, + "title_and_author_panel/author_button_panel": T.PANEL, + "title_and_author_panel/author_button_panel/summary_author_button": T.BUTTON, + "glyph_panel": T.PANEL, + "glyph_panel/item_glyph_count_panel": T.STACK_PANEL, + "glyph_panel/item_glyph_count_panel/glyph_icon_panel": T.PANEL, + "glyph_panel/item_glyph_count_panel/glyph_icon_panel/glyph_icon": T.IMAGE, + "glyph_panel/item_glyph_count_panel/center_item_glyph_padding": T.PANEL, + "glyph_panel/item_glyph_count_panel/item_glyph_count_panel_label": T.LABEL, + "glyph_panel/item_glyph_count_panel/item_glyph_panel_padding": T.PANEL, + "vertical_glyph_section_content": T.STACK_PANEL, + "vertical_glyph_section_content/glyph_content": T.PANEL, + "vertical_glyph_section_content/bottom_glyph_content_padding": T.PANEL, + "glyph_section_panel": T.PANEL, + "glyph_section_panel/glyphs": T.STACK_PANEL, + "glyph_section_panel/glyphs/skin_glyph_section": T.UNKNOWN, + "glyph_section_panel/glyphs/world_glyph_section": T.UNKNOWN, + "glyph_section_panel/glyphs/resource_pack_glyph_section": T.UNKNOWN, + "vertical_glyph_section_panel": T.PANEL, + "image_glyphs_panel": T.STACK_PANEL, + "image_glyphs_panel/world_panel": T.PANEL, + "image_glyphs_panel/world_panel/border": T.IMAGE, + "image_glyphs_panel/world_panel/world_key_image": T.IMAGE, + "image_glyphs_panel/persona_panel": T.PANEL, + "image_glyphs_panel/persona_panel/border": T.IMAGE, + "image_glyphs_panel/persona_panel/persona_image": T.IMAGE, + "image_glyphs_panel/persona_panel/background": T.IMAGE, + "image_glyphs_panel/persona_panel/rarity_bar_panel": T.IMAGE, + "image_glyphs_panel/divider": T.PANEL, + "image_glyphs_panel/info": T.STACK_PANEL, + "image_glyphs_panel/info/summary_title_and_author_panel": T.STACK_PANEL, + "image_glyphs_panel/info/glyph_section": T.PANEL, + "image_glyphs_panel/info/glyph_section/glyph_section_panel": T.PANEL, + "promo_lower_button_content": T.PANEL, + "promo_lower_button_content/promo_banner_button": T.LABEL, + "promo_lower_button_content/progress_loading_spinner": T.IMAGE, + "free_discount_label": T.LABEL, + "promo_upper_button_content": T.PANEL, + "promo_upper_button_content/markdown": T.STACK_PANEL, + "promo_upper_button_content/markdown/sales_banner_offset_panel": T.PANEL, + "promo_upper_button_content/markdown/sales_banner_offset_panel/sales_banner_panel": T.PANEL, + "promo_upper_button_content/markdown/sales_banner_offset_panel/sales_banner_panel/markdown_banner": T.STACK_PANEL, + "promo_upper_button_content/markdown/price_markdown_panel": T.PANEL, + "promo_upper_button_content/markdown/price_markdown_panel/offer_price": T.LABEL, + "promo_upper_button_content/markdown/price_markdown_panel/offer_price/text_strike_through": T.IMAGE, + "promo_upper_button_content/promo_item_action_text_panel": T.STACK_PANEL, + "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel": T.PANEL, + "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel/platform_restricted_warning_image": T.IMAGE, + "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel/padding": T.PANEL, + "promo_upper_button_content/promo_item_action_text_panel/promo_item_action_text": T.LABEL, + "promo_upper_button_content/download_progress_bar": T.PANEL, + "description_section_panel": T.PANEL, + "description_section_panel/contents_description": T.LABEL, + "offset_title_offer": T.STACK_PANEL, + "offset_title_offer/pad_0": T.PANEL, + "offset_title_offer/title_panel": T.PANEL, + "offset_promo_timer": T.STACK_PANEL, + "offset_promo_timer/pad_0": T.PANEL, + "offset_promo_timer/promo_timer": T.STACK_PANEL, + "offset_image_glyphs_panel": T.STACK_PANEL, + "offset_image_glyphs_panel/pad_0": T.PANEL, + "offset_image_glyphs_panel/smaller_panel": T.STACK_PANEL, + "offset_image_glyphs_panel/smaller_panel/details": T.STACK_PANEL, + "offset_image_glyphs_panel/smaller_panel/description": T.PANEL, + "promo_pack_detail_panel": T.STACK_PANEL, + "promo_pack_detail_panel/offset_title_panel": T.STACK_PANEL, + "promo_pack_detail_panel/offsetted_promo_timer": T.STACK_PANEL, + "promo_pack_detail_panel/pad_0": T.PANEL, + "promo_pack_detail_panel/offsetted_details": T.STACK_PANEL, + "promo_pack_detail_panel/pad_1": T.PANEL, + "promo_left_inner_top_scrolling_content": T.INPUT_PANEL, + "promo_left_inner_top_scrolling_content/details": T.STACK_PANEL, + "promo_left_inner_top": T.STACK_PANEL, + "promo_left_inner_top/top": T.PANEL, + "promo_left_inner_top/padding2": T.PANEL, + "promo_left_inner_bottom": T.STACK_PANEL, + "promo_left_inner_bottom/banner_button_top_panel": T.PANEL, + "promo_left_inner_bottom/banner_button_top_panel/banner_button_top": T.BUTTON, + "promo_left_inner_bottom/banner_button_top_panel/platform_restricted_error_single_item": T.PANEL, + "promo_left_inner_bottom/banner_button_bottom": T.BUTTON, + "promo_left_panel": T.STACK_PANEL, + "promo_left_panel/top": T.STACK_PANEL, + "promo_left_panel/bottom_buttons_padded": T.STACK_PANEL, + "promo_left_panel/bottom_buttons_padded/pad_0": T.PANEL, + "promo_left_panel/bottom_buttons_padded/bottom": T.STACK_PANEL, + "promo_left_panel/padding": T.PANEL, + "promo_world_image_panel": T.PANEL, + "promo_world_image_panel/image": T.PANEL, + "promo_world_image_panel/image/key_image": T.IMAGE, + "promo_world_image_panel/image/key_image/border": T.IMAGE, + "promo_grey_bar_panel": T.STACK_PANEL, + "promo_grey_bar_panel/grey_bar": T.IMAGE, + "promo_grey_bar_panel/green_bar": T.IMAGE, + "promo_grey_bar_panel/padding": T.PANEL, + "promo_world_button_panel": T.STACK_PANEL, + "promo_world_button_panel/pan_left_button": T.BUTTON, + "promo_world_button_panel/navigation_bar": T.PANEL, + "promo_world_button_panel/navigation_bar/grey_bar": T.IMAGE, + "promo_world_button_panel/navigation_bar/grey_bar/grey_bar_factory_panel": T.STACK_PANEL, + "promo_world_button_panel/pan_right_button": T.BUTTON, + "promo_world_panel": T.STACK_PANEL, + "promo_world_panel/image": T.PANEL, + "promo_world_panel/padding1": T.PANEL, + "promo_world_panel/buttons": T.STACK_PANEL, + "promo_world_panel/padding_3": T.PANEL, + "promo_skin_panel": T.PANEL, + "promo_skin_panel/size_control": T.PANEL, + "promo_skin_panel/size_control/background": T.IMAGE, + "promo_skin_panel/size_control/skin_button": T.BUTTON, + "promo_skin_panel/size_control/skin_button/default": T.PANEL, + "promo_skin_panel/size_control/skin_button/hover": T.IMAGE, + "promo_skin_panel/size_control/skin_button/pressed": T.PANEL, + "promo_skin_panel/size_control/skin_button/content_panel": T.PANEL, + "promo_skin_panel/size_control/skin_button/content_panel/paper_doll": T.CUSTOM, + "promo_skin_grid_panel": T.PANEL, + "promo_skin_grid_panel/promo_skin_pack_grid": T.GRID, + "promo_right_panel_scroll_content": T.STACK_PANEL, + "promo_right_panel_scroll_content/world_screenshots_panel": T.PANEL, + "promo_right_panel_scroll_content/world_screenshots_panel/world_panel": T.STACK_PANEL, + "promo_right_panel_scroll_content/skin_image_panel": T.PANEL, + "promo_right_panel_scroll_content/skin_image_panel/skin_panel": T.UNKNOWN, + "promo_right_panel_scroll_content/persona_preview": T.INPUT_PANEL, + "skin_scroll_panel": T.UNKNOWN, + "persona_classic_skin_grid_panel": T.PANEL, + "persona_classic_skin_grid_panel/persona_skin_pack_category_grid": T.GRID, + "promo_right_panel": T.PANEL, + "promo_detail_panel": T.STACK_PANEL, + "promo_detail_panel/detail": T.STACK_PANEL, + "promo_detail_panel/center_spacing": T.PANEL, + "promo_detail_panel/right": T.PANEL, + "promotion_skin_viewer_panel": T.INPUT_PANEL, + "promotion_skin_viewer_panel/popup_dialog_factory": T.FACTORY, + "promotion_skin_viewer_panel/character_loading_panel": T.IMAGE, + "promotion_skin_viewer_panel/skin_model_panel": T.PANEL, + "promotion_skin_viewer_panel/skin_model_panel/skin_model": T.CUSTOM, + "promotion_skin_viewer_panel/skin_model_panel/arrow_panel": T.PANEL, + "promotion_skin_viewer_panel/skin_model_panel/arrow_panel/rotate_arrows": T.IMAGE, + "promo_popup_toast": T.INPUT_PANEL, } export type StoreSaleItemListType = { - banner_header: T.PANEL - "banner_header/label_panel": T.PANEL - "banner_header/label_panel/on_sale_banner": T.IMAGE - "banner_header/label_panel/on_sale_banner/padding_panel": T.PANEL - "banner_header/label_panel/on_sale_banner/padding_panel/sales_row_header_label": T.LABEL - "banner_header/label_panel/on_sale_banner/padding_panel/triangle": T.IMAGE - "banner_header/label_panel/time_remaining_label": T.LABEL - sales_offer_content: T.STACK_PANEL - "sales_offer_content/top_padding": T.PANEL - "sales_offer_content/sales_panel": T.STACK_PANEL - "sales_offer_content/sales_panel/sales_banner_panel": T.PANEL - "sales_offer_content/sales_panel/top_sales_grid_padding": T.PANEL - "sales_offer_content/sales_panel/sales_grid_panel": T.PANEL - "sales_offer_content/sales_panel/sales_grid_panel/sales_offer_grid": T.GRID - all_offer_content: T.PANEL - "all_offer_content/store_offer_grid_panel": T.GRID + "banner_header": T.PANEL, + "banner_header/label_panel": T.PANEL, + "banner_header/label_panel/on_sale_banner": T.IMAGE, + "banner_header/label_panel/on_sale_banner/padding_panel": T.PANEL, + "banner_header/label_panel/on_sale_banner/padding_panel/sales_row_header_label": T.LABEL, + "banner_header/label_panel/on_sale_banner/padding_panel/triangle": T.IMAGE, + "banner_header/label_panel/time_remaining_label": T.LABEL, + "sales_offer_content": T.STACK_PANEL, + "sales_offer_content/top_padding": T.PANEL, + "sales_offer_content/sales_panel": T.STACK_PANEL, + "sales_offer_content/sales_panel/sales_banner_panel": T.PANEL, + "sales_offer_content/sales_panel/top_sales_grid_padding": T.PANEL, + "sales_offer_content/sales_panel/sales_grid_panel": T.PANEL, + "sales_offer_content/sales_panel/sales_grid_panel/sales_offer_grid": T.GRID, + "all_offer_content": T.PANEL, + "all_offer_content/store_offer_grid_panel": T.GRID, } export type StoreSearchType = { - store_offer_grid_item: T.PANEL - trending_row_content: T.PANEL - "trending_row_content/trending_row_panel": T.STACK_PANEL - "trending_row_content/trending_row_panel/trending_row_label_panel": T.PANEL - "trending_row_content/trending_row_panel/trending_row_label_panel/trending_row_label": T.LABEL - "trending_row_content/trending_row_panel/mid_padding": T.PANEL - "trending_row_content/trending_row_panel/trending_offers_grid": T.GRID - "trending_row_content/trending_row_panel/bottom_padding": T.PANEL - trending_rows_grid: T.GRID - search_offer_content: T.PANEL - "search_offer_content/trending_grid": T.GRID - "search_offer_content/item_list_panel": T.PANEL - "search_offer_content/item_list_panel/item_list_grid": T.GRID - main_panel: T.INPUT_PANEL - "main_panel/seach_object": T.PANEL - "main_panel/progress_loading": T.PANEL - store_search_screen_content: T.PANEL - "store_search_screen_content/main_panel": T.STACK_PANEL - "store_search_screen_content/popup_dialog_factory": T.FACTORY - store_search_screen: T.SCREEN + "store_offer_grid_item": T.PANEL, + "trending_row_content": T.PANEL, + "trending_row_content/trending_row_panel": T.STACK_PANEL, + "trending_row_content/trending_row_panel/trending_row_label_panel": T.PANEL, + "trending_row_content/trending_row_panel/trending_row_label_panel/trending_row_label": T.LABEL, + "trending_row_content/trending_row_panel/mid_padding": T.PANEL, + "trending_row_content/trending_row_panel/trending_offers_grid": T.GRID, + "trending_row_content/trending_row_panel/bottom_padding": T.PANEL, + "trending_rows_grid": T.GRID, + "search_offer_content": T.PANEL, + "search_offer_content/trending_grid": T.GRID, + "search_offer_content/item_list_panel": T.PANEL, + "search_offer_content/item_list_panel/item_list_grid": T.GRID, + "main_panel": T.INPUT_PANEL, + "main_panel/seach_object": T.PANEL, + "main_panel/progress_loading": T.PANEL, + "store_search_screen_content": T.PANEL, + "store_search_screen_content/main_panel": T.STACK_PANEL, + "store_search_screen_content/popup_dialog_factory": T.FACTORY, + "store_search_screen": T.SCREEN, } export type SortMenuType = { - sort_menu_toggle_panel: T.PANEL - "sort_menu_toggle_panel/sort_menu_toggle_panel": T.PANEL - "sort_menu_toggle_panel/sort_menu_toggle_panel/sort_menu_toggle": T.PANEL - sort_menu_first_button_content_panel: T.STACK_PANEL - "sort_menu_first_button_content_panel/left_padding": T.PANEL - "sort_menu_first_button_content_panel/centered_sort_logo_icon": T.PANEL - "sort_menu_first_button_content_panel/centered_sort_logo_icon/sort_logo_icon": T.IMAGE - "sort_menu_first_button_content_panel/logo_padding_labels": T.PANEL - "sort_menu_first_button_content_panel/labels_stack_panel": T.STACK_PANEL - "sort_menu_first_button_content_panel/labels_stack_panel/top_padding": T.PANEL - "sort_menu_first_button_content_panel/labels_stack_panel/sort_const_word_top": T.LABEL - "sort_menu_first_button_content_panel/labels_stack_panel/middle_padding": T.PANEL - "sort_menu_first_button_content_panel/labels_stack_panel/current_sort_value_label_bottom": T.LABEL - "sort_menu_first_button_content_panel/labels_stack_panel/bottom_padding": T.PANEL - "sort_menu_first_button_content_panel/labels_padding_x_image": T.PANEL - "sort_menu_first_button_content_panel/x_image_panel": T.PANEL - "sort_menu_first_button_content_panel/x_image_panel/x_image": T.IMAGE - sort_menu_toggles: T.STACK_PANEL - "sort_menu_toggles/relevance_toggle_panel": T.PANEL - "sort_menu_toggles/relevance_toggle_panel/relevance_toggle": T.PANEL - "sort_menu_toggles/sort_toggle_grid": T.PANEL - sort_menu_show: T.STACK_PANEL - "sort_menu_show/1st_button_centering_panel": T.PANEL - "sort_menu_show/1st_button_centering_panel/first_button_main": T.BUTTON - "sort_menu_show/sort_scrolling_content_panel": T.PANEL - sort_menu_panel: T.STACK_PANEL - "sort_menu_panel/top_padding": T.PANEL - "sort_menu_panel/alignment_panel": T.STACK_PANEL - "sort_menu_panel/alignment_panel/left_padding": T.PANEL - "sort_menu_panel/alignment_panel/sort_menu_show": T.STACK_PANEL - "sort_menu_panel/alignment_panel/right_padding": T.PANEL - sort_menu_screen_content: T.INPUT_PANEL - "sort_menu_screen_content/sort_menu_main": T.STACK_PANEL - "sort_menu_screen_content/sort_menu_main_persona": T.STACK_PANEL - "sort_menu_screen_content/sort_menu_background": T.PANEL + "sort_menu_toggle_panel": T.PANEL, + "sort_menu_toggle_panel/sort_menu_toggle_panel": T.PANEL, + "sort_menu_toggle_panel/sort_menu_toggle_panel/sort_menu_toggle": T.PANEL, + "sort_menu_first_button_content_panel": T.STACK_PANEL, + "sort_menu_first_button_content_panel/left_padding": T.PANEL, + "sort_menu_first_button_content_panel/centered_sort_logo_icon": T.PANEL, + "sort_menu_first_button_content_panel/centered_sort_logo_icon/sort_logo_icon": T.IMAGE, + "sort_menu_first_button_content_panel/logo_padding_labels": T.PANEL, + "sort_menu_first_button_content_panel/labels_stack_panel": T.STACK_PANEL, + "sort_menu_first_button_content_panel/labels_stack_panel/top_padding": T.PANEL, + "sort_menu_first_button_content_panel/labels_stack_panel/sort_const_word_top": T.LABEL, + "sort_menu_first_button_content_panel/labels_stack_panel/middle_padding": T.PANEL, + "sort_menu_first_button_content_panel/labels_stack_panel/current_sort_value_label_bottom": T.LABEL, + "sort_menu_first_button_content_panel/labels_stack_panel/bottom_padding": T.PANEL, + "sort_menu_first_button_content_panel/labels_padding_x_image": T.PANEL, + "sort_menu_first_button_content_panel/x_image_panel": T.PANEL, + "sort_menu_first_button_content_panel/x_image_panel/x_image": T.IMAGE, + "sort_menu_toggles": T.STACK_PANEL, + "sort_menu_toggles/relevance_toggle_panel": T.PANEL, + "sort_menu_toggles/relevance_toggle_panel/relevance_toggle": T.PANEL, + "sort_menu_toggles/sort_toggle_grid": T.PANEL, + "sort_menu_show": T.STACK_PANEL, + "sort_menu_show/1st_button_centering_panel": T.PANEL, + "sort_menu_show/1st_button_centering_panel/first_button_main": T.BUTTON, + "sort_menu_show/sort_scrolling_content_panel": T.PANEL, + "sort_menu_panel": T.STACK_PANEL, + "sort_menu_panel/top_padding": T.PANEL, + "sort_menu_panel/alignment_panel": T.STACK_PANEL, + "sort_menu_panel/alignment_panel/left_padding": T.PANEL, + "sort_menu_panel/alignment_panel/sort_menu_show": T.STACK_PANEL, + "sort_menu_panel/alignment_panel/right_padding": T.PANEL, + "sort_menu_screen_content": T.INPUT_PANEL, + "sort_menu_screen_content/sort_menu_main": T.STACK_PANEL, + "sort_menu_screen_content/sort_menu_main_persona": T.STACK_PANEL, + "sort_menu_screen_content/sort_menu_background": T.PANEL, } export type StructureEditorType = { - small_padding: T.PANEL - help_icon: T.IMAGE - common_text_label: T.LABEL - text_edit_control: T.EDIT_BOX - axis_selection_panel: T.PANEL - "axis_selection_panel/label": T.LABEL - "axis_selection_panel/edit_box": T.EDIT_BOX - grid_axis_selection_panel: T.STACK_PANEL - "grid_axis_selection_panel/label_container": T.PANEL - "grid_axis_selection_panel/label_container/label": T.LABEL - "grid_axis_selection_panel/axis_grid": T.GRID - "grid_axis_selection_panel/axis_grid/X": T.PANEL - "grid_axis_selection_panel/axis_grid/Y": T.PANEL - "grid_axis_selection_panel/axis_grid/Z": T.PANEL - "3d_export_button": T.BUTTON - save_button: T.BUTTON - export_button: T.BUTTON - load_button: T.BUTTON - detect_button: T.BUTTON - import_button: T.BUTTON - reset_button: T.BUTTON - help_button: T.BUTTON - toggle_option_panel: T.STACK_PANEL - "toggle_option_panel/toggle": T.TOGGLE - "toggle_option_panel/offset_0": T.PANEL - "toggle_option_panel/first_label_wrapper": T.PANEL - "toggle_option_panel/first_label_wrapper/first_label": T.LABEL - "toggle_option_panel/second_label_wrapper": T.PANEL - "toggle_option_panel/second_label_wrapper/second_label": T.LABEL - include_entities_panel: T.STACK_PANEL - "include_entities_panel/label": T.LABEL - "include_entities_panel/toggle_wrapper": T.PANEL - "include_entities_panel/toggle_wrapper/toggle": T.STACK_PANEL - waterlogging_panel: T.STACK_PANEL - "waterlogging_panel/label": T.LABEL - "waterlogging_panel/toggle_wrapper": T.PANEL - "waterlogging_panel/toggle_wrapper/toggle": T.STACK_PANEL - show_bounding_box_panel: T.STACK_PANEL - "show_bounding_box_panel/label": T.LABEL - "show_bounding_box_panel/toggle_wrapper": T.PANEL - "show_bounding_box_panel/toggle_wrapper/toggle": T.STACK_PANEL - include_player_panel: T.STACK_PANEL - "include_player_panel/label": T.LABEL - "include_player_panel/toggle_wrapper": T.PANEL - "include_player_panel/toggle_wrapper/toggle": T.STACK_PANEL - remove_blocks_panel: T.STACK_PANEL - "remove_blocks_panel/label": T.LABEL - "remove_blocks_panel/toggle_wrapper": T.PANEL - "remove_blocks_panel/toggle_wrapper/toggle": T.STACK_PANEL - "3d_export_mode_panel": T.STACK_PANEL - "3d_export_mode_panel/size_offset_panel": T.STACK_PANEL - "3d_export_mode_panel/size_offset_panel/size_panel": T.STACK_PANEL - "3d_export_mode_panel/size_offset_panel/offset_panel": T.STACK_PANEL - "3d_export_mode_panel/offset_0": T.PANEL - "3d_export_mode_panel/offset_2": T.PANEL - "3d_export_mode_panel/remove_blocks": T.STACK_PANEL - save_mode_panel: T.STACK_PANEL - "save_mode_panel/structure_name": T.PANEL - "save_mode_panel/size_offset_panel": T.STACK_PANEL - "save_mode_panel/size_offset_panel/size_panel": T.STACK_PANEL - "save_mode_panel/size_offset_panel/offset_panel": T.STACK_PANEL - "save_mode_panel/detect_offset": T.PANEL - "save_mode_panel/detect": T.PANEL - "save_mode_panel/include_entities_offset": T.PANEL - "save_mode_panel/include_entities": T.STACK_PANEL - "save_mode_panel/remove_blocks_offset": T.PANEL - "save_mode_panel/remove_blocks": T.STACK_PANEL - "save_mode_panel/redstone_save_offset": T.PANEL - "save_mode_panel/redstone_save_mode": T.PANEL - "save_mode_panel/trailing_offset": T.PANEL - mirror_checkbox: T.STACK_PANEL - "mirror_checkbox/label": T.LABEL - "mirror_checkbox/padding": T.PANEL - "mirror_checkbox/check_box": T.TOGGLE - mirror_checkboxes: T.STACK_PANEL - "mirror_checkboxes/mirror_checkbox_x": T.STACK_PANEL - "mirror_checkboxes/padding": T.PANEL - "mirror_checkboxes/mirror_checkbox_z": T.STACK_PANEL - load_mode_panel: T.STACK_PANEL - "load_mode_panel/structure_name": T.PANEL - "load_mode_panel/offset_panel": T.STACK_PANEL - "load_mode_panel/include_entities_offset": T.PANEL - "load_mode_panel/include_entities": T.STACK_PANEL - "load_mode_panel/remove_blocks_offset": T.PANEL - "load_mode_panel/waterlog_blocks": T.STACK_PANEL - "load_mode_panel/waterlog_blocks_offset": T.PANEL - "load_mode_panel/remove_blocks": T.STACK_PANEL - "load_mode_panel/integrity_offset": T.PANEL - "load_mode_panel/integrity_label": T.LABEL - "load_mode_panel/integrity_field": T.EDIT_BOX - "load_mode_panel/offset_1": T.PANEL - "load_mode_panel/seed_label": T.LABEL - "load_mode_panel/seed_field": T.EDIT_BOX - "load_mode_panel/offset_2": T.PANEL - "load_mode_panel/rotation_slider": T.PANEL - "load_mode_panel/mirror_label": T.LABEL - "load_mode_panel/mirror_checkboxes_centerer": T.PANEL - "load_mode_panel/mirror_checkboxes_centerer/mirror_checkboxes": T.STACK_PANEL - "load_mode_panel/checkbox_offset": T.PANEL - "load_mode_panel/animation_mode": T.PANEL - "load_mode_panel/animation_time_label": T.LABEL - "load_mode_panel/animation_time_field": T.EDIT_BOX - data_mode_panel: T.STACK_PANEL - "data_mode_panel/top_offset": T.PANEL - "data_mode_panel/data_label": T.LABEL - "data_mode_panel/data_label_offset": T.PANEL - "data_mode_panel/data_field": T.EDIT_BOX - "data_mode_panel/data_field_offset": T.PANEL - corner_mode_panel: T.STACK_PANEL - "corner_mode_panel/structure_name": T.PANEL - help_button_panel: T.STACK_PANEL - "help_button_panel/help": T.BUTTON - "help_button_panel/help_divider": T.PANEL - save_button_panel: T.STACK_PANEL - "save_button_panel/divider": T.PANEL - "save_button_panel/save": T.BUTTON - "save_button_panel/save_divider": T.PANEL - "save_button_panel/export": T.BUTTON - "save_button_panel/export_divider": T.PANEL - "save_button_panel/import_divider": T.PANEL - "save_button_panel/reset": T.BUTTON - "save_button_panel/reset_divider": T.PANEL - save_button_panel_no_export: T.STACK_PANEL - "save_button_panel_no_export/divider": T.PANEL - "save_button_panel_no_export/save": T.BUTTON - "save_button_panel_no_export/save_divider": T.PANEL - "save_button_panel_no_export/reset": T.BUTTON - "save_button_panel_no_export/reset_divider": T.PANEL - load_button_panel: T.STACK_PANEL - "load_button_panel/divider": T.PANEL - "load_button_panel/load": T.BUTTON - "load_button_panel/load_divider": T.PANEL - "load_button_panel/export_divider": T.PANEL - "load_button_panel/import": T.BUTTON - "load_button_panel/import_divider": T.PANEL - "load_button_panel/reset": T.BUTTON - "load_button_panel/reset_divider": T.PANEL - load_button_panel_no_export: T.STACK_PANEL - "load_button_panel_no_export/divider": T.PANEL - "load_button_panel_no_export/load": T.BUTTON - "load_button_panel_no_export/load_divider": T.PANEL - "load_button_panel_no_export/reset": T.BUTTON - "load_button_panel_no_export/reset_divider": T.PANEL - "3d_export_button_panel": T.STACK_PANEL - "3d_export_button_panel/divider": T.PANEL - "3d_export_button_panel/3d_export": T.BUTTON - "3d_export_button_panel/3d_export_divider": T.PANEL - "3d_export_button_panel/import": T.BUTTON - "3d_export_button_panel/import_divider": T.PANEL - "3d_export_button_panel/reset": T.BUTTON - "3d_export_button_panel/reset_divider": T.PANEL - data_button_panel: T.STACK_PANEL - "data_button_panel/divider": T.PANEL - "data_button_panel/reset": T.BUTTON - "data_button_panel/reset_divider": T.PANEL - corner_button_panel: T.STACK_PANEL - "corner_button_panel/reset_divider": T.PANEL - button_panel_wrapper: T.IMAGE - "button_panel_wrapper/panel": T.PANEL - "button_panel_wrapper/panel/divider": T.PANEL - "button_panel_wrapper/panel/save_panel": T.STACK_PANEL - "button_panel_wrapper/panel/save_panel_no_export": T.STACK_PANEL - "button_panel_wrapper/panel/corner_panel": T.STACK_PANEL - "button_panel_wrapper/panel/load_panel_no_export": T.STACK_PANEL - "button_panel_wrapper/panel/load_panel": T.STACK_PANEL - "button_panel_wrapper/panel/3d_export_panel": T.STACK_PANEL - "button_panel_wrapper/panel/data_panel": T.STACK_PANEL - "button_panel_wrapper/panel/how_to_play_button": T.STACK_PANEL - "button_panel_wrapper/panel/end_divider": T.PANEL - redstone_dropdown_content: T.PANEL - redstone_save_mode_panel: T.PANEL - animation_mode_dropdown_content: T.PANEL - animation_mode_dropdown: T.PANEL - structure_name_wrapper: T.PANEL - "structure_name_wrapper/structure_name": T.EDIT_BOX - "structure_name_wrapper/structure_name_offset": T.PANEL - detect_button_wrapper: T.PANEL - "detect_button_wrapper/detect": T.BUTTON - "detect_button_wrapper/detect_offset": T.PANEL - mode_dropdown_content: T.PANEL - mode_panel: T.PANEL - scrolling_panel_wrapper: T.IMAGE - "scrolling_panel_wrapper/scrolling_panel": T.PANEL - scrolling_panel: T.PANEL - scroll_panel_content: T.PANEL - "scroll_panel_content/content_stack_panel": T.STACK_PANEL - "scroll_panel_content/content_stack_panel/base_offset": T.PANEL - "scroll_panel_content/content_stack_panel/mode_panel": T.PANEL - "scroll_panel_content/content_stack_panel/mode_panel_offset": T.PANEL - "scroll_panel_content/content_stack_panel/3d_export_mode_panel": T.STACK_PANEL - "scroll_panel_content/content_stack_panel/save_mode_panel": T.STACK_PANEL - "scroll_panel_content/content_stack_panel/load_mode_panel": T.STACK_PANEL - "scroll_panel_content/content_stack_panel/data_mode_panel": T.STACK_PANEL - "scroll_panel_content/content_stack_panel/corner_mode_panel": T.STACK_PANEL - "scroll_panel_content/content_stack_panel/base_mode_offset": T.PANEL - "scroll_panel_content/content_stack_panel/show_bounding_box": T.STACK_PANEL - "scroll_panel_content/content_stack_panel/show_bounding_box_offset": T.PANEL - "scroll_panel_content/content_stack_panel/offset_2": T.PANEL - left_divider_content: T.PANEL - "left_divider_content/scrolling_panel": T.IMAGE - save_message_text: T.PANEL - "save_message_text/save_message_label": T.LABEL - import_message_text: T.PANEL - "import_message_text/save_message_label": T.LABEL - import_failed_message_text: T.PANEL - "import_failed_message_text/save_message_label": T.LABEL - export_disabled_label: T.LABEL - image_panel_wrapper: T.IMAGE - "image_panel_wrapper/image_panel": T.PANEL - "image_panel_wrapper/save_message_factory": T.FACTORY - "image_panel_wrapper/import_message_factory": T.FACTORY - "image_panel_wrapper/import_failed_message_factory": T.FACTORY - "image_panel_wrapper/export_disabled": T.LABEL - corner_text: T.IMAGE - "corner_text/image_panel": T.UNKNOWN - image_panel: T.PANEL - "image_panel/border_indent": T.PANEL - "image_panel/border_indent/background_gradient": T.CUSTOM - "image_panel/border_indent/image_outline": T.IMAGE - "image_panel/border_indent/structure_renderer": T.INPUT_PANEL - "image_panel/border_indent/text_corner": T.STACK_PANEL - "image_panel/border_indent/progress_panel": T.INPUT_PANEL - "image_panel/border_indent/rotate_arrows": T.IMAGE - progress_panel: T.INPUT_PANEL - "progress_panel/stack_panel": T.STACK_PANEL - "progress_panel/stack_panel/label_wrapper": T.PANEL - "progress_panel/stack_panel/label_wrapper/progress_label": T.LABEL - "progress_panel/stack_panel/progress_bar": T.PANEL - background_gradient: T.CUSTOM - corner_text_panel: T.STACK_PANEL - "corner_text_panel/paragraph_1_corner": T.PANEL - "corner_text_panel/padding_1": T.PANEL - "corner_text_panel/paragraph_2_corner": T.PANEL - structure_renderer: T.INPUT_PANEL - "structure_renderer/renderer": T.CUSTOM - black_border: T.IMAGE - rotation_arrows: T.IMAGE - right_divider_content: T.STACK_PANEL - "right_divider_content/base_offset": T.PANEL - "right_divider_content/preview": T.IMAGE - "right_divider_content/image_offset": T.PANEL - "right_divider_content/button_wrapper": T.PANEL - "right_divider_content/button_wrapper/buttons": T.IMAGE - divider_content: T.PANEL - "divider_content/left_side": T.PANEL - "divider_content/right_side": T.STACK_PANEL - structure_editor_content: T.PANEL - "structure_editor_content/background_panel": T.STACK_PANEL - "structure_editor_content/title": T.LABEL - "structure_editor_content/content": T.PANEL - structure_editor_screen: T.SCREEN + "small_padding": T.PANEL, + "help_icon": T.IMAGE, + "common_text_label": T.LABEL, + "text_edit_control": T.EDIT_BOX, + "axis_selection_panel": T.PANEL, + "axis_selection_panel/label": T.LABEL, + "axis_selection_panel/edit_box": T.EDIT_BOX, + "grid_axis_selection_panel": T.STACK_PANEL, + "grid_axis_selection_panel/label_container": T.PANEL, + "grid_axis_selection_panel/label_container/label": T.LABEL, + "grid_axis_selection_panel/axis_grid": T.GRID, + "grid_axis_selection_panel/axis_grid/X": T.PANEL, + "grid_axis_selection_panel/axis_grid/Y": T.PANEL, + "grid_axis_selection_panel/axis_grid/Z": T.PANEL, + "3d_export_button": T.BUTTON, + "save_button": T.BUTTON, + "export_button": T.BUTTON, + "load_button": T.BUTTON, + "detect_button": T.BUTTON, + "import_button": T.BUTTON, + "reset_button": T.BUTTON, + "help_button": T.BUTTON, + "toggle_option_panel": T.STACK_PANEL, + "toggle_option_panel/toggle": T.TOGGLE, + "toggle_option_panel/offset_0": T.PANEL, + "toggle_option_panel/first_label_wrapper": T.PANEL, + "toggle_option_panel/first_label_wrapper/first_label": T.LABEL, + "toggle_option_panel/second_label_wrapper": T.PANEL, + "toggle_option_panel/second_label_wrapper/second_label": T.LABEL, + "include_entities_panel": T.STACK_PANEL, + "include_entities_panel/label": T.LABEL, + "include_entities_panel/toggle_wrapper": T.PANEL, + "include_entities_panel/toggle_wrapper/toggle": T.STACK_PANEL, + "waterlogging_panel": T.STACK_PANEL, + "waterlogging_panel/label": T.LABEL, + "waterlogging_panel/toggle_wrapper": T.PANEL, + "waterlogging_panel/toggle_wrapper/toggle": T.STACK_PANEL, + "show_bounding_box_panel": T.STACK_PANEL, + "show_bounding_box_panel/label": T.LABEL, + "show_bounding_box_panel/toggle_wrapper": T.PANEL, + "show_bounding_box_panel/toggle_wrapper/toggle": T.STACK_PANEL, + "include_player_panel": T.STACK_PANEL, + "include_player_panel/label": T.LABEL, + "include_player_panel/toggle_wrapper": T.PANEL, + "include_player_panel/toggle_wrapper/toggle": T.STACK_PANEL, + "remove_blocks_panel": T.STACK_PANEL, + "remove_blocks_panel/label": T.LABEL, + "remove_blocks_panel/toggle_wrapper": T.PANEL, + "remove_blocks_panel/toggle_wrapper/toggle": T.STACK_PANEL, + "3d_export_mode_panel": T.STACK_PANEL, + "3d_export_mode_panel/size_offset_panel": T.STACK_PANEL, + "3d_export_mode_panel/size_offset_panel/size_panel": T.STACK_PANEL, + "3d_export_mode_panel/size_offset_panel/offset_panel": T.STACK_PANEL, + "3d_export_mode_panel/offset_0": T.PANEL, + "3d_export_mode_panel/offset_2": T.PANEL, + "3d_export_mode_panel/remove_blocks": T.STACK_PANEL, + "save_mode_panel": T.STACK_PANEL, + "save_mode_panel/structure_name": T.PANEL, + "save_mode_panel/size_offset_panel": T.STACK_PANEL, + "save_mode_panel/size_offset_panel/size_panel": T.STACK_PANEL, + "save_mode_panel/size_offset_panel/offset_panel": T.STACK_PANEL, + "save_mode_panel/detect_offset": T.PANEL, + "save_mode_panel/detect": T.PANEL, + "save_mode_panel/include_entities_offset": T.PANEL, + "save_mode_panel/include_entities": T.STACK_PANEL, + "save_mode_panel/remove_blocks_offset": T.PANEL, + "save_mode_panel/remove_blocks": T.STACK_PANEL, + "save_mode_panel/redstone_save_offset": T.PANEL, + "save_mode_panel/redstone_save_mode": T.PANEL, + "save_mode_panel/trailing_offset": T.PANEL, + "mirror_checkbox": T.STACK_PANEL, + "mirror_checkbox/label": T.LABEL, + "mirror_checkbox/padding": T.PANEL, + "mirror_checkbox/check_box": T.TOGGLE, + "mirror_checkboxes": T.STACK_PANEL, + "mirror_checkboxes/mirror_checkbox_x": T.STACK_PANEL, + "mirror_checkboxes/padding": T.PANEL, + "mirror_checkboxes/mirror_checkbox_z": T.STACK_PANEL, + "load_mode_panel": T.STACK_PANEL, + "load_mode_panel/structure_name": T.PANEL, + "load_mode_panel/offset_panel": T.STACK_PANEL, + "load_mode_panel/include_entities_offset": T.PANEL, + "load_mode_panel/include_entities": T.STACK_PANEL, + "load_mode_panel/remove_blocks_offset": T.PANEL, + "load_mode_panel/waterlog_blocks": T.STACK_PANEL, + "load_mode_panel/waterlog_blocks_offset": T.PANEL, + "load_mode_panel/remove_blocks": T.STACK_PANEL, + "load_mode_panel/integrity_offset": T.PANEL, + "load_mode_panel/integrity_label": T.LABEL, + "load_mode_panel/integrity_field": T.EDIT_BOX, + "load_mode_panel/offset_1": T.PANEL, + "load_mode_panel/seed_label": T.LABEL, + "load_mode_panel/seed_field": T.EDIT_BOX, + "load_mode_panel/offset_2": T.PANEL, + "load_mode_panel/rotation_slider": T.PANEL, + "load_mode_panel/mirror_label": T.LABEL, + "load_mode_panel/mirror_checkboxes_centerer": T.PANEL, + "load_mode_panel/mirror_checkboxes_centerer/mirror_checkboxes": T.STACK_PANEL, + "load_mode_panel/checkbox_offset": T.PANEL, + "load_mode_panel/animation_mode": T.PANEL, + "load_mode_panel/animation_time_label": T.LABEL, + "load_mode_panel/animation_time_field": T.EDIT_BOX, + "data_mode_panel": T.STACK_PANEL, + "data_mode_panel/top_offset": T.PANEL, + "data_mode_panel/data_label": T.LABEL, + "data_mode_panel/data_label_offset": T.PANEL, + "data_mode_panel/data_field": T.EDIT_BOX, + "data_mode_panel/data_field_offset": T.PANEL, + "corner_mode_panel": T.STACK_PANEL, + "corner_mode_panel/structure_name": T.PANEL, + "help_button_panel": T.STACK_PANEL, + "help_button_panel/help": T.BUTTON, + "help_button_panel/help_divider": T.PANEL, + "save_button_panel": T.STACK_PANEL, + "save_button_panel/divider": T.PANEL, + "save_button_panel/save": T.BUTTON, + "save_button_panel/save_divider": T.PANEL, + "save_button_panel/export": T.BUTTON, + "save_button_panel/export_divider": T.PANEL, + "save_button_panel/import_divider": T.PANEL, + "save_button_panel/reset": T.BUTTON, + "save_button_panel/reset_divider": T.PANEL, + "save_button_panel_no_export": T.STACK_PANEL, + "save_button_panel_no_export/divider": T.PANEL, + "save_button_panel_no_export/save": T.BUTTON, + "save_button_panel_no_export/save_divider": T.PANEL, + "save_button_panel_no_export/reset": T.BUTTON, + "save_button_panel_no_export/reset_divider": T.PANEL, + "load_button_panel": T.STACK_PANEL, + "load_button_panel/divider": T.PANEL, + "load_button_panel/load": T.BUTTON, + "load_button_panel/load_divider": T.PANEL, + "load_button_panel/export_divider": T.PANEL, + "load_button_panel/import": T.BUTTON, + "load_button_panel/import_divider": T.PANEL, + "load_button_panel/reset": T.BUTTON, + "load_button_panel/reset_divider": T.PANEL, + "load_button_panel_no_export": T.STACK_PANEL, + "load_button_panel_no_export/divider": T.PANEL, + "load_button_panel_no_export/load": T.BUTTON, + "load_button_panel_no_export/load_divider": T.PANEL, + "load_button_panel_no_export/reset": T.BUTTON, + "load_button_panel_no_export/reset_divider": T.PANEL, + "3d_export_button_panel": T.STACK_PANEL, + "3d_export_button_panel/divider": T.PANEL, + "3d_export_button_panel/3d_export": T.BUTTON, + "3d_export_button_panel/3d_export_divider": T.PANEL, + "3d_export_button_panel/import": T.BUTTON, + "3d_export_button_panel/import_divider": T.PANEL, + "3d_export_button_panel/reset": T.BUTTON, + "3d_export_button_panel/reset_divider": T.PANEL, + "data_button_panel": T.STACK_PANEL, + "data_button_panel/divider": T.PANEL, + "data_button_panel/reset": T.BUTTON, + "data_button_panel/reset_divider": T.PANEL, + "corner_button_panel": T.STACK_PANEL, + "corner_button_panel/reset_divider": T.PANEL, + "button_panel_wrapper": T.IMAGE, + "button_panel_wrapper/panel": T.PANEL, + "button_panel_wrapper/panel/divider": T.PANEL, + "button_panel_wrapper/panel/save_panel": T.STACK_PANEL, + "button_panel_wrapper/panel/save_panel_no_export": T.STACK_PANEL, + "button_panel_wrapper/panel/corner_panel": T.STACK_PANEL, + "button_panel_wrapper/panel/load_panel_no_export": T.STACK_PANEL, + "button_panel_wrapper/panel/load_panel": T.STACK_PANEL, + "button_panel_wrapper/panel/3d_export_panel": T.STACK_PANEL, + "button_panel_wrapper/panel/data_panel": T.STACK_PANEL, + "button_panel_wrapper/panel/how_to_play_button": T.STACK_PANEL, + "button_panel_wrapper/panel/end_divider": T.PANEL, + "redstone_dropdown_content": T.PANEL, + "redstone_save_mode_panel": T.PANEL, + "animation_mode_dropdown_content": T.PANEL, + "animation_mode_dropdown": T.PANEL, + "structure_name_wrapper": T.PANEL, + "structure_name_wrapper/structure_name": T.EDIT_BOX, + "structure_name_wrapper/structure_name_offset": T.PANEL, + "detect_button_wrapper": T.PANEL, + "detect_button_wrapper/detect": T.BUTTON, + "detect_button_wrapper/detect_offset": T.PANEL, + "mode_dropdown_content": T.PANEL, + "mode_panel": T.PANEL, + "scrolling_panel_wrapper": T.IMAGE, + "scrolling_panel_wrapper/scrolling_panel": T.PANEL, + "scrolling_panel": T.PANEL, + "scroll_panel_content": T.PANEL, + "scroll_panel_content/content_stack_panel": T.STACK_PANEL, + "scroll_panel_content/content_stack_panel/base_offset": T.PANEL, + "scroll_panel_content/content_stack_panel/mode_panel": T.PANEL, + "scroll_panel_content/content_stack_panel/mode_panel_offset": T.PANEL, + "scroll_panel_content/content_stack_panel/3d_export_mode_panel": T.STACK_PANEL, + "scroll_panel_content/content_stack_panel/save_mode_panel": T.STACK_PANEL, + "scroll_panel_content/content_stack_panel/load_mode_panel": T.STACK_PANEL, + "scroll_panel_content/content_stack_panel/data_mode_panel": T.STACK_PANEL, + "scroll_panel_content/content_stack_panel/corner_mode_panel": T.STACK_PANEL, + "scroll_panel_content/content_stack_panel/base_mode_offset": T.PANEL, + "scroll_panel_content/content_stack_panel/show_bounding_box": T.STACK_PANEL, + "scroll_panel_content/content_stack_panel/show_bounding_box_offset": T.PANEL, + "scroll_panel_content/content_stack_panel/offset_2": T.PANEL, + "left_divider_content": T.PANEL, + "left_divider_content/scrolling_panel": T.IMAGE, + "save_message_text": T.PANEL, + "save_message_text/save_message_label": T.LABEL, + "import_message_text": T.PANEL, + "import_message_text/save_message_label": T.LABEL, + "import_failed_message_text": T.PANEL, + "import_failed_message_text/save_message_label": T.LABEL, + "export_disabled_label": T.LABEL, + "image_panel_wrapper": T.IMAGE, + "image_panel_wrapper/image_panel": T.PANEL, + "image_panel_wrapper/save_message_factory": T.FACTORY, + "image_panel_wrapper/import_message_factory": T.FACTORY, + "image_panel_wrapper/import_failed_message_factory": T.FACTORY, + "image_panel_wrapper/export_disabled": T.LABEL, + "corner_text": T.IMAGE, + "corner_text/image_panel": T.UNKNOWN, + "image_panel": T.PANEL, + "image_panel/border_indent": T.PANEL, + "image_panel/border_indent/background_gradient": T.CUSTOM, + "image_panel/border_indent/image_outline": T.IMAGE, + "image_panel/border_indent/structure_renderer": T.INPUT_PANEL, + "image_panel/border_indent/text_corner": T.STACK_PANEL, + "image_panel/border_indent/progress_panel": T.INPUT_PANEL, + "image_panel/border_indent/rotate_arrows": T.IMAGE, + "progress_panel": T.INPUT_PANEL, + "progress_panel/stack_panel": T.STACK_PANEL, + "progress_panel/stack_panel/label_wrapper": T.PANEL, + "progress_panel/stack_panel/label_wrapper/progress_label": T.LABEL, + "progress_panel/stack_panel/progress_bar": T.PANEL, + "background_gradient": T.CUSTOM, + "corner_text_panel": T.STACK_PANEL, + "corner_text_panel/paragraph_1_corner": T.PANEL, + "corner_text_panel/padding_1": T.PANEL, + "corner_text_panel/paragraph_2_corner": T.PANEL, + "structure_renderer": T.INPUT_PANEL, + "structure_renderer/renderer": T.CUSTOM, + "black_border": T.IMAGE, + "rotation_arrows": T.IMAGE, + "right_divider_content": T.STACK_PANEL, + "right_divider_content/base_offset": T.PANEL, + "right_divider_content/preview": T.IMAGE, + "right_divider_content/image_offset": T.PANEL, + "right_divider_content/button_wrapper": T.PANEL, + "right_divider_content/button_wrapper/buttons": T.IMAGE, + "divider_content": T.PANEL, + "divider_content/left_side": T.PANEL, + "divider_content/right_side": T.STACK_PANEL, + "structure_editor_content": T.PANEL, + "structure_editor_content/background_panel": T.STACK_PANEL, + "structure_editor_content/title": T.LABEL, + "structure_editor_content/content": T.PANEL, + "structure_editor_screen": T.SCREEN, } export type SubmitFeedbackType = { - send_feedback_button: T.BUTTON - write_feedback_panel: T.STACK_PANEL - "write_feedback_panel/pad_1": T.PANEL - "write_feedback_panel/write_feedback_label": T.LABEL - "write_feedback_panel/pad_2": T.PANEL - "write_feedback_panel/feedback_textbox": T.EDIT_BOX - "write_feedback_panel/remaining_characters_panel": T.PANEL - "write_feedback_panel/remaining_characters_panel/remaining_characters_count_label": T.LABEL - scroll_panel: T.PANEL - "scroll_panel/write_feedback_panel": T.STACK_PANEL - main_panel: T.PANEL - "main_panel/scrolling_panel": T.PANEL - submit_feedback_screen: T.SCREEN - submit_feedback_content: T.PANEL - "submit_feedback_content/submit_feedback_main_panel": T.PANEL - "submit_feedback_content/progress_loading": T.IMAGE + "send_feedback_button": T.BUTTON, + "write_feedback_panel": T.STACK_PANEL, + "write_feedback_panel/pad_1": T.PANEL, + "write_feedback_panel/write_feedback_label": T.LABEL, + "write_feedback_panel/pad_2": T.PANEL, + "write_feedback_panel/feedback_textbox": T.EDIT_BOX, + "write_feedback_panel/remaining_characters_panel": T.PANEL, + "write_feedback_panel/remaining_characters_panel/remaining_characters_count_label": T.LABEL, + "scroll_panel": T.PANEL, + "scroll_panel/write_feedback_panel": T.STACK_PANEL, + "main_panel": T.PANEL, + "main_panel/scrolling_panel": T.PANEL, + "submit_feedback_screen": T.SCREEN, + "submit_feedback_content": T.PANEL, + "submit_feedback_content/submit_feedback_main_panel": T.PANEL, + "submit_feedback_content/progress_loading": T.IMAGE, } export type TabbedUpsellType = { - padding_horizontal: T.PANEL - padding_vertical: T.PANEL - text_horizontal_padding: T.PANEL - tabbed_upsell_buy_now_button: T.BUTTON - tabbed_buy_now_label: T.PANEL - "tabbed_buy_now_label/button_label": T.LABEL - label_panel: T.PANEL - "label_panel/label_text": T.LABEL - text_panel: T.STACK_PANEL - "text_panel/tab_content_title_panel": T.PANEL - "text_panel/tab_content_description_panel": T.PANEL - "text_panel/tab_content_description_panel_second": T.PANEL - dialog_image: T.IMAGE - dialog_image_with_border: T.IMAGE - "dialog_image_with_border/dialog_image": T.IMAGE - content_image_panel: T.STACK_PANEL - "content_image_panel/minecraft_dialog_image_with_border": T.IMAGE - "content_image_panel/horizontal_padding_01": T.PANEL - "content_image_panel/scrolling_panel": T.PANEL - scroll_text: T.BUTTON - image_panel: T.PANEL - "image_panel/dialog_image_with_border": T.IMAGE - "image_panel/focus_image": T.UNKNOWN - top_tab: T.PANEL - tab_navigation_panel_layout: T.STACK_PANEL - "tab_navigation_panel_layout/navigation_tabs": T.PANEL - "tab_navigation_panel_layout/navigation_tabs/content": T.UNKNOWN - common_tab_navigation_panel_layout: T.STACK_PANEL - tabbed_tab_navigation_panel_layout: T.STACK_PANEL - "tabbed_tab_navigation_panel_layout/minecraft_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_01": T.PANEL - "tabbed_tab_navigation_panel_layout/xbl_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_02": T.PANEL - "tabbed_tab_navigation_panel_layout/achievements_navigation_tab3": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_03": T.PANEL - "tabbed_tab_navigation_panel_layout/multiplayer_navigation_tab4": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_04": T.PANEL - "tabbed_tab_navigation_panel_layout/server_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_05": T.PANEL - "tabbed_tab_navigation_panel_layout/store_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_06": T.PANEL - "tabbed_tab_navigation_panel_layout/creative_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_07": T.PANEL - "tabbed_tab_navigation_panel_layout/packs_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_08": T.PANEL - "tabbed_tab_navigation_panel_layout/seeds_navigation_tab": T.PANEL - tabbed_tab_content_panel_layout: T.PANEL - "tabbed_tab_content_panel_layout/minecraft_tab_content": T.PANEL - "tabbed_tab_content_panel_layout/xbl_tab_content2": T.PANEL - "tabbed_tab_content_panel_layout/achievements_tab_content3": T.PANEL - "tabbed_tab_content_panel_layout/multiplayer_tab_content4": T.PANEL - "tabbed_tab_content_panel_layout/server_tab_content5": T.PANEL - "tabbed_tab_content_panel_layout/store_tab_content6": T.PANEL - "tabbed_tab_content_panel_layout/creative_tab_content7": T.PANEL - "tabbed_tab_content_panel_layout/packs_tab_content8": T.PANEL - "tabbed_tab_content_panel_layout/seeds_tab_content9": T.PANEL - common_tab_content_panel: T.PANEL - "common_tab_content_panel/content": T.UNKNOWN - minecraft_tab_content_panel: T.PANEL - xbl_tab_content_panel: T.PANEL - achievements_tab_content_panel: T.PANEL - multiplayer_tab_content_panel: T.PANEL - server_tab_content_panel: T.PANEL - store_tab_content_panel: T.PANEL - creative_tab_content_panel: T.PANEL - packs_tab_content_panel: T.PANEL - seeds_tab_content_panel: T.PANEL - common_tab_screen_panel: T.STACK_PANEL - "common_tab_screen_panel/tab_navigation_panel": T.STACK_PANEL - "common_tab_screen_panel/padding_01": T.PANEL - "common_tab_screen_panel/tab_content_panel": T.UNKNOWN - tabbed_screen_panel: T.STACK_PANEL - button_panel: T.STACK_PANEL - "button_panel/padding_5": T.PANEL - "button_panel/buy_now_button": T.BUTTON - "button_panel/padding_6": T.PANEL - tab_panel: T.STACK_PANEL - "tab_panel/padding_3": T.PANEL - "tab_panel/main_control": T.STACK_PANEL - "tab_panel/padding_4": T.PANEL - tabbed_upsell_content: T.STACK_PANEL - "tabbed_upsell_content/padding_0": T.PANEL - "tabbed_upsell_content/tab_panel": T.STACK_PANEL - "tabbed_upsell_content/padding_1": T.PANEL - "tabbed_upsell_content/button_panel": T.STACK_PANEL - "tabbed_upsell_content/padding_2": T.PANEL - tabbed_upsell_screen: T.SCREEN - tabbed_upsell_screen_panel: T.PANEL - "tabbed_upsell_screen_panel/tabbed_upsell_screen_content": T.PANEL - "tabbed_upsell_screen_panel/background": T.IMAGE + "padding_horizontal": T.PANEL, + "padding_vertical": T.PANEL, + "text_horizontal_padding": T.PANEL, + "tabbed_upsell_buy_now_button": T.BUTTON, + "tabbed_buy_now_label": T.PANEL, + "tabbed_buy_now_label/button_label": T.LABEL, + "label_panel": T.PANEL, + "label_panel/label_text": T.LABEL, + "text_panel": T.STACK_PANEL, + "text_panel/tab_content_title_panel": T.PANEL, + "text_panel/tab_content_description_panel": T.PANEL, + "text_panel/tab_content_description_panel_second": T.PANEL, + "dialog_image": T.IMAGE, + "dialog_image_with_border": T.IMAGE, + "dialog_image_with_border/dialog_image": T.IMAGE, + "content_image_panel": T.STACK_PANEL, + "content_image_panel/minecraft_dialog_image_with_border": T.IMAGE, + "content_image_panel/horizontal_padding_01": T.PANEL, + "content_image_panel/scrolling_panel": T.PANEL, + "scroll_text": T.BUTTON, + "image_panel": T.PANEL, + "image_panel/dialog_image_with_border": T.IMAGE, + "image_panel/focus_image": T.UNKNOWN, + "top_tab": T.PANEL, + "tab_navigation_panel_layout": T.STACK_PANEL, + "tab_navigation_panel_layout/navigation_tabs": T.PANEL, + "tab_navigation_panel_layout/navigation_tabs/content": T.UNKNOWN, + "common_tab_navigation_panel_layout": T.STACK_PANEL, + "tabbed_tab_navigation_panel_layout": T.STACK_PANEL, + "tabbed_tab_navigation_panel_layout/minecraft_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_01": T.PANEL, + "tabbed_tab_navigation_panel_layout/xbl_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_02": T.PANEL, + "tabbed_tab_navigation_panel_layout/achievements_navigation_tab3": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_03": T.PANEL, + "tabbed_tab_navigation_panel_layout/multiplayer_navigation_tab4": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_04": T.PANEL, + "tabbed_tab_navigation_panel_layout/server_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_05": T.PANEL, + "tabbed_tab_navigation_panel_layout/store_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_06": T.PANEL, + "tabbed_tab_navigation_panel_layout/creative_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_07": T.PANEL, + "tabbed_tab_navigation_panel_layout/packs_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_08": T.PANEL, + "tabbed_tab_navigation_panel_layout/seeds_navigation_tab": T.PANEL, + "tabbed_tab_content_panel_layout": T.PANEL, + "tabbed_tab_content_panel_layout/minecraft_tab_content": T.PANEL, + "tabbed_tab_content_panel_layout/xbl_tab_content2": T.PANEL, + "tabbed_tab_content_panel_layout/achievements_tab_content3": T.PANEL, + "tabbed_tab_content_panel_layout/multiplayer_tab_content4": T.PANEL, + "tabbed_tab_content_panel_layout/server_tab_content5": T.PANEL, + "tabbed_tab_content_panel_layout/store_tab_content6": T.PANEL, + "tabbed_tab_content_panel_layout/creative_tab_content7": T.PANEL, + "tabbed_tab_content_panel_layout/packs_tab_content8": T.PANEL, + "tabbed_tab_content_panel_layout/seeds_tab_content9": T.PANEL, + "common_tab_content_panel": T.PANEL, + "common_tab_content_panel/content": T.UNKNOWN, + "minecraft_tab_content_panel": T.PANEL, + "xbl_tab_content_panel": T.PANEL, + "achievements_tab_content_panel": T.PANEL, + "multiplayer_tab_content_panel": T.PANEL, + "server_tab_content_panel": T.PANEL, + "store_tab_content_panel": T.PANEL, + "creative_tab_content_panel": T.PANEL, + "packs_tab_content_panel": T.PANEL, + "seeds_tab_content_panel": T.PANEL, + "common_tab_screen_panel": T.STACK_PANEL, + "common_tab_screen_panel/tab_navigation_panel": T.STACK_PANEL, + "common_tab_screen_panel/padding_01": T.PANEL, + "common_tab_screen_panel/tab_content_panel": T.UNKNOWN, + "tabbed_screen_panel": T.STACK_PANEL, + "button_panel": T.STACK_PANEL, + "button_panel/padding_5": T.PANEL, + "button_panel/buy_now_button": T.BUTTON, + "button_panel/padding_6": T.PANEL, + "tab_panel": T.STACK_PANEL, + "tab_panel/padding_3": T.PANEL, + "tab_panel/main_control": T.STACK_PANEL, + "tab_panel/padding_4": T.PANEL, + "tabbed_upsell_content": T.STACK_PANEL, + "tabbed_upsell_content/padding_0": T.PANEL, + "tabbed_upsell_content/tab_panel": T.STACK_PANEL, + "tabbed_upsell_content/padding_1": T.PANEL, + "tabbed_upsell_content/button_panel": T.STACK_PANEL, + "tabbed_upsell_content/padding_2": T.PANEL, + "tabbed_upsell_screen": T.SCREEN, + "tabbed_upsell_screen_panel": T.PANEL, + "tabbed_upsell_screen_panel/tabbed_upsell_screen_content": T.PANEL, + "tabbed_upsell_screen_panel/background": T.IMAGE, } export type ThanksForTestingType = { - padding_horizontal: T.PANEL - padding_vertical: T.PANEL - text_horizontal_padding: T.PANEL - tabbed_upsell_buy_now_button: T.BUTTON - tabbed_buy_now_label: T.PANEL - "tabbed_buy_now_label/button_label": T.LABEL - label_panel: T.PANEL - "label_panel/label_text": T.LABEL - text_panel: T.STACK_PANEL - "text_panel/tab_content_title_panel": T.PANEL - "text_panel/tab_content_description_panel": T.PANEL - "text_panel/tab_content_description_panel_second": T.PANEL - dialog_image: T.IMAGE - dialog_image_with_border: T.IMAGE - "dialog_image_with_border/dialog_image": T.IMAGE - content_image_panel: T.STACK_PANEL - "content_image_panel/minecraft_dialog_image_with_border": T.IMAGE - "content_image_panel/horizontal_padding_01": T.PANEL - "content_image_panel/scrolling_panel": T.PANEL - scroll_text: T.BUTTON - image_panel: T.PANEL - "image_panel/dialog_image_with_border": T.IMAGE - "image_panel/focus_image": T.UNKNOWN - top_tab: T.PANEL - tab_navigation_panel_layout: T.STACK_PANEL - "tab_navigation_panel_layout/navigation_tabs": T.PANEL - "tab_navigation_panel_layout/navigation_tabs/content": T.UNKNOWN - common_tab_navigation_panel_layout: T.STACK_PANEL - tabbed_tab_navigation_panel_layout: T.STACK_PANEL - "tabbed_tab_navigation_panel_layout/minecraft_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_01": T.PANEL - "tabbed_tab_navigation_panel_layout/xbl_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_02": T.PANEL - "tabbed_tab_navigation_panel_layout/achievements_navigation_tab3": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_03": T.PANEL - "tabbed_tab_navigation_panel_layout/multiplayer_navigation_tab4": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_04": T.PANEL - "tabbed_tab_navigation_panel_layout/server_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_05": T.PANEL - "tabbed_tab_navigation_panel_layout/store_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_06": T.PANEL - "tabbed_tab_navigation_panel_layout/creative_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_07": T.PANEL - "tabbed_tab_navigation_panel_layout/packs_navigation_tab": T.PANEL - "tabbed_tab_navigation_panel_layout/nav_padding_08": T.PANEL - "tabbed_tab_navigation_panel_layout/seeds_navigation_tab": T.PANEL - tabbed_tab_content_panel_layout: T.PANEL - "tabbed_tab_content_panel_layout/minecraft_tab_content": T.PANEL - "tabbed_tab_content_panel_layout/xbl_tab_content2": T.PANEL - "tabbed_tab_content_panel_layout/achievements_tab_content3": T.PANEL - "tabbed_tab_content_panel_layout/multiplayer_tab_content4": T.PANEL - "tabbed_tab_content_panel_layout/server_tab_content5": T.PANEL - "tabbed_tab_content_panel_layout/store_tab_content6": T.PANEL - "tabbed_tab_content_panel_layout/creative_tab_content7": T.PANEL - "tabbed_tab_content_panel_layout/packs_tab_content8": T.PANEL - "tabbed_tab_content_panel_layout/seeds_tab_content9": T.PANEL - common_tab_content_panel: T.PANEL - "common_tab_content_panel/content": T.UNKNOWN - minecraft_tab_content_panel: T.PANEL - xbl_tab_content_panel: T.PANEL - achievements_tab_content_panel: T.PANEL - multiplayer_tab_content_panel: T.PANEL - server_tab_content_panel: T.PANEL - store_tab_content_panel: T.PANEL - creative_tab_content_panel: T.PANEL - packs_tab_content_panel: T.PANEL - seeds_tab_content_panel: T.PANEL - common_tab_screen_panel: T.STACK_PANEL - "common_tab_screen_panel/tab_navigation_panel": T.STACK_PANEL - "common_tab_screen_panel/padding_01": T.PANEL - "common_tab_screen_panel/tab_content_panel": T.UNKNOWN - tabbed_screen_panel: T.STACK_PANEL - button_panel: T.STACK_PANEL - "button_panel/padding_5": T.PANEL - "button_panel/buy_now_button": T.BUTTON - "button_panel/padding_6": T.PANEL - tab_panel: T.STACK_PANEL - "tab_panel/padding_3": T.PANEL - "tab_panel/main_control": T.STACK_PANEL - "tab_panel/padding_4": T.PANEL - tabbed_upsell_content: T.STACK_PANEL - "tabbed_upsell_content/padding_0": T.PANEL - "tabbed_upsell_content/tab_panel": T.STACK_PANEL - "tabbed_upsell_content/padding_1": T.PANEL - "tabbed_upsell_content/button_panel": T.STACK_PANEL - "tabbed_upsell_content/padding_2": T.PANEL - thanks_for_testing_screen: T.SCREEN - tabbed_upsell_screen_panel: T.PANEL - "tabbed_upsell_screen_panel/tabbed_upsell_screen_content": T.PANEL - "tabbed_upsell_screen_panel/background": T.IMAGE + "padding_horizontal": T.PANEL, + "padding_vertical": T.PANEL, + "text_horizontal_padding": T.PANEL, + "tabbed_upsell_buy_now_button": T.BUTTON, + "tabbed_buy_now_label": T.PANEL, + "tabbed_buy_now_label/button_label": T.LABEL, + "label_panel": T.PANEL, + "label_panel/label_text": T.LABEL, + "text_panel": T.STACK_PANEL, + "text_panel/tab_content_title_panel": T.PANEL, + "text_panel/tab_content_description_panel": T.PANEL, + "text_panel/tab_content_description_panel_second": T.PANEL, + "dialog_image": T.IMAGE, + "dialog_image_with_border": T.IMAGE, + "dialog_image_with_border/dialog_image": T.IMAGE, + "content_image_panel": T.STACK_PANEL, + "content_image_panel/minecraft_dialog_image_with_border": T.IMAGE, + "content_image_panel/horizontal_padding_01": T.PANEL, + "content_image_panel/scrolling_panel": T.PANEL, + "scroll_text": T.BUTTON, + "image_panel": T.PANEL, + "image_panel/dialog_image_with_border": T.IMAGE, + "image_panel/focus_image": T.UNKNOWN, + "top_tab": T.PANEL, + "tab_navigation_panel_layout": T.STACK_PANEL, + "tab_navigation_panel_layout/navigation_tabs": T.PANEL, + "tab_navigation_panel_layout/navigation_tabs/content": T.UNKNOWN, + "common_tab_navigation_panel_layout": T.STACK_PANEL, + "tabbed_tab_navigation_panel_layout": T.STACK_PANEL, + "tabbed_tab_navigation_panel_layout/minecraft_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_01": T.PANEL, + "tabbed_tab_navigation_panel_layout/xbl_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_02": T.PANEL, + "tabbed_tab_navigation_panel_layout/achievements_navigation_tab3": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_03": T.PANEL, + "tabbed_tab_navigation_panel_layout/multiplayer_navigation_tab4": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_04": T.PANEL, + "tabbed_tab_navigation_panel_layout/server_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_05": T.PANEL, + "tabbed_tab_navigation_panel_layout/store_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_06": T.PANEL, + "tabbed_tab_navigation_panel_layout/creative_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_07": T.PANEL, + "tabbed_tab_navigation_panel_layout/packs_navigation_tab": T.PANEL, + "tabbed_tab_navigation_panel_layout/nav_padding_08": T.PANEL, + "tabbed_tab_navigation_panel_layout/seeds_navigation_tab": T.PANEL, + "tabbed_tab_content_panel_layout": T.PANEL, + "tabbed_tab_content_panel_layout/minecraft_tab_content": T.PANEL, + "tabbed_tab_content_panel_layout/xbl_tab_content2": T.PANEL, + "tabbed_tab_content_panel_layout/achievements_tab_content3": T.PANEL, + "tabbed_tab_content_panel_layout/multiplayer_tab_content4": T.PANEL, + "tabbed_tab_content_panel_layout/server_tab_content5": T.PANEL, + "tabbed_tab_content_panel_layout/store_tab_content6": T.PANEL, + "tabbed_tab_content_panel_layout/creative_tab_content7": T.PANEL, + "tabbed_tab_content_panel_layout/packs_tab_content8": T.PANEL, + "tabbed_tab_content_panel_layout/seeds_tab_content9": T.PANEL, + "common_tab_content_panel": T.PANEL, + "common_tab_content_panel/content": T.UNKNOWN, + "minecraft_tab_content_panel": T.PANEL, + "xbl_tab_content_panel": T.PANEL, + "achievements_tab_content_panel": T.PANEL, + "multiplayer_tab_content_panel": T.PANEL, + "server_tab_content_panel": T.PANEL, + "store_tab_content_panel": T.PANEL, + "creative_tab_content_panel": T.PANEL, + "packs_tab_content_panel": T.PANEL, + "seeds_tab_content_panel": T.PANEL, + "common_tab_screen_panel": T.STACK_PANEL, + "common_tab_screen_panel/tab_navigation_panel": T.STACK_PANEL, + "common_tab_screen_panel/padding_01": T.PANEL, + "common_tab_screen_panel/tab_content_panel": T.UNKNOWN, + "tabbed_screen_panel": T.STACK_PANEL, + "button_panel": T.STACK_PANEL, + "button_panel/padding_5": T.PANEL, + "button_panel/buy_now_button": T.BUTTON, + "button_panel/padding_6": T.PANEL, + "tab_panel": T.STACK_PANEL, + "tab_panel/padding_3": T.PANEL, + "tab_panel/main_control": T.STACK_PANEL, + "tab_panel/padding_4": T.PANEL, + "tabbed_upsell_content": T.STACK_PANEL, + "tabbed_upsell_content/padding_0": T.PANEL, + "tabbed_upsell_content/tab_panel": T.STACK_PANEL, + "tabbed_upsell_content/padding_1": T.PANEL, + "tabbed_upsell_content/button_panel": T.STACK_PANEL, + "tabbed_upsell_content/padding_2": T.PANEL, + "thanks_for_testing_screen": T.SCREEN, + "tabbed_upsell_screen_panel": T.PANEL, + "tabbed_upsell_screen_panel/tabbed_upsell_screen_content": T.PANEL, + "tabbed_upsell_screen_panel/background": T.IMAGE, } export type ThirdPartyStoreType = { - third_party_store_screen: T.SCREEN + "third_party_store_screen": T.SCREEN, } export type ToastScreenType = { - toast_image: T.IMAGE - toast_icon: T.PANEL - "toast_icon/toast_icon": T.IMAGE - xbox_icon: T.PANEL - third_party_invite_icon: T.PANEL - third_party_achievement_icon: T.PANEL - persona_icon: T.PANEL - "persona_icon/item": T.PANEL - resource_pack_icon: T.PANEL - "resource_pack_icon/resource_pack_image": T.IMAGE - key_art_image: T.PANEL - gamer_score_icon: T.IMAGE - toast_label: T.LABEL - static_button_state_panel: T.PANEL - static_button: T.BUTTON - "static_button/default": T.PANEL - "static_button/hover": T.PANEL - "static_button/pressed": T.PANEL - "static_button/locked": T.PANEL - popup: T.INPUT_PANEL - "popup/background": T.IMAGE - "popup/popup_content": T.STACK_PANEL - "popup/popup_content/icon_padding": T.STACK_PANEL - "popup/popup_content/text_padding": T.PANEL - "popup/popup_content/text_panel": T.PANEL - "popup/popup_content/text_panel/text_stack_panel": T.STACK_PANEL - "popup/popup_content/button_panel": T.PANEL - "popup/popup_content/button_panel/visual_button": T.BUTTON - item_renderer: T.CUSTOM - game_tip_label: T.LABEL - toast_progress_bar: T.PANEL - "toast_progress_bar/toast_duration_progress_bar": T.CUSTOM - recipe_unlocked_icon: T.STACK_PANEL - "recipe_unlocked_icon/padding_vertical": T.PANEL - "recipe_unlocked_icon/item_renderer": T.CUSTOM - recipe_unlocked_popup: T.IMAGE - "recipe_unlocked_popup/input_panel": T.INPUT_PANEL - "recipe_unlocked_popup/input_panel/label_panel": T.STACK_PANEL - "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_1": T.PANEL - "recipe_unlocked_popup/input_panel/label_panel/recipe_unlocked_icon": T.STACK_PANEL - "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_2": T.PANEL - "recipe_unlocked_popup/input_panel/label_panel/label_panel": T.STACK_PANEL - "recipe_unlocked_popup/input_panel/label_panel/label_panel/padding_vertical_1": T.PANEL - "recipe_unlocked_popup/input_panel/label_panel/label_panel/label": T.LABEL - "recipe_unlocked_popup/input_panel/label_panel/label_panel/padding_vertical_2": T.PANEL - "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_3": T.PANEL - recipe_unlocked_pocket_popup: T.IMAGE - "recipe_unlocked_pocket_popup/input_panel": T.INPUT_PANEL - "recipe_unlocked_pocket_popup/input_panel/label_panel": T.STACK_PANEL - "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_1": T.PANEL - "recipe_unlocked_pocket_popup/input_panel/label_panel/recipe_unlocked_icon": T.STACK_PANEL - "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_2": T.PANEL - "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel": T.STACK_PANEL - "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/padding_vertical": T.PANEL - "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/label": T.LABEL - "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/padding_vertical_1": T.PANEL - "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_3": T.PANEL - text_stack_panel: T.STACK_PANEL - "text_stack_panel/title": T.LABEL - "text_stack_panel/subtitle": T.STACK_PANEL - "text_stack_panel/subtitle/icon_padding": T.PANEL - "text_stack_panel/subtitle/icon_padding/gamer_score_icon": T.IMAGE - "text_stack_panel/subtitle/subtext_offset": T.PANEL - "text_stack_panel/subtitle/subtext_offset/subtext": T.LABEL - join_button_icon: T.IMAGE - chat_popup: T.INPUT_PANEL - splitscreen_join_popup: T.STACK_PANEL - "splitscreen_join_popup/join_button_icon": T.IMAGE - "splitscreen_join_popup/join_prompt_text_panel": T.PANEL - "splitscreen_join_popup/join_prompt_text_panel/join_prompt_text": T.LABEL - formfitting_alpha_toast: T.PANEL - "formfitting_alpha_toast/bg": T.IMAGE - "formfitting_alpha_toast/bg/label": T.LABEL - snackbar: T.PANEL - "snackbar/body": T.IMAGE - "snackbar/body/background": T.IMAGE - "snackbar/body/background/content": T.STACK_PANEL - "snackbar/body/background/content/left_padding": T.PANEL - "snackbar/body/background/content/vertically_central_text": T.STACK_PANEL - "snackbar/body/background/content/vertically_central_text/top_padding": T.PANEL - "snackbar/body/background/content/vertically_central_text/text": T.LABEL - "snackbar/body/background/content/right_padding": T.PANEL - "snackbar/body/background/right_shadow": T.IMAGE - progress_button_content: T.STACK_PANEL - "progress_button_content/gamepad_icon_glyph": T.LABEL - "progress_button_content/spacer": T.PANEL - "progress_button_content/progress_button_label": T.LABEL - progress_popup: T.INPUT_PANEL - "progress_popup/background": T.IMAGE - "progress_popup/popup_content": T.STACK_PANEL - "progress_popup/popup_content/progress_toast_image": T.IMAGE - "progress_popup/popup_content/profilepicture": T.CUSTOM - "progress_popup/popup_content/text_padding": T.PANEL - "progress_popup/popup_content/progress_content_vertical_panel": T.STACK_PANEL - "progress_popup/popup_content/progress_content_vertical_panel/title_text_label": T.LABEL - "progress_popup/popup_content/progress_content_vertical_panel/subtext": T.LABEL - "progress_popup/popup_content/progress_content_vertical_panel/stacked_progress_bar": T.PANEL - "progress_popup/popup_content/progress_content_vertical_panel/end_progress_padding": T.PANEL - "progress_popup/popup_content/divider_padding": T.PANEL - "progress_popup/popup_content/divider_image": T.IMAGE - "progress_popup/popup_content/popup_decline_button": T.BUTTON - "progress_popup/popup_content/end_padding": T.PANEL - party_invite_popup: T.INPUT_PANEL - "party_invite_popup/background": T.IMAGE - "party_invite_popup/party_invite_content": T.STACK_PANEL - "party_invite_popup/party_invite_content/profilepicture": T.CUSTOM - "party_invite_popup/party_invite_content/text_padding": T.PANEL - "party_invite_popup/party_invite_content/party_invite_content_vertical_panel": T.STACK_PANEL - "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/title_text_label": T.LABEL - "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/subtext": T.LABEL - "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/end_padding": T.PANEL - "party_invite_popup/party_invite_content/divider_padding": T.PANEL - "party_invite_popup/party_invite_content/divider_image": T.IMAGE - "party_invite_popup/party_invite_content/party_invite_button": T.BUTTON - "party_invite_popup/party_invite_content/end_padding": T.PANEL - party_travel_popup: T.INPUT_PANEL - toast_screen: T.SCREEN - toast_screen_content: T.PANEL - "toast_screen_content/content_log_panel": T.PANEL - "toast_screen_content/perf_turtle_panel": T.PANEL + "toast_image": T.IMAGE, + "toast_icon": T.PANEL, + "toast_icon/toast_icon": T.IMAGE, + "xbox_icon": T.PANEL, + "third_party_invite_icon": T.PANEL, + "third_party_achievement_icon": T.PANEL, + "persona_icon": T.PANEL, + "persona_icon/item": T.PANEL, + "resource_pack_icon": T.PANEL, + "resource_pack_icon/resource_pack_image": T.IMAGE, + "key_art_image": T.PANEL, + "gamer_score_icon": T.IMAGE, + "toast_label": T.LABEL, + "static_button_state_panel": T.PANEL, + "static_button": T.BUTTON, + "static_button/default": T.PANEL, + "static_button/hover": T.PANEL, + "static_button/pressed": T.PANEL, + "static_button/locked": T.PANEL, + "popup": T.INPUT_PANEL, + "popup/background": T.IMAGE, + "popup/popup_content": T.STACK_PANEL, + "popup/popup_content/icon_padding": T.STACK_PANEL, + "popup/popup_content/text_padding": T.PANEL, + "popup/popup_content/text_panel": T.PANEL, + "popup/popup_content/text_panel/text_stack_panel": T.STACK_PANEL, + "popup/popup_content/button_panel": T.PANEL, + "popup/popup_content/button_panel/visual_button": T.BUTTON, + "item_renderer": T.CUSTOM, + "game_tip_label": T.LABEL, + "toast_progress_bar": T.PANEL, + "toast_progress_bar/toast_duration_progress_bar": T.CUSTOM, + "recipe_unlocked_icon": T.STACK_PANEL, + "recipe_unlocked_icon/padding_vertical": T.PANEL, + "recipe_unlocked_icon/item_renderer": T.CUSTOM, + "recipe_unlocked_popup": T.IMAGE, + "recipe_unlocked_popup/input_panel": T.INPUT_PANEL, + "recipe_unlocked_popup/input_panel/label_panel": T.STACK_PANEL, + "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_1": T.PANEL, + "recipe_unlocked_popup/input_panel/label_panel/recipe_unlocked_icon": T.STACK_PANEL, + "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_2": T.PANEL, + "recipe_unlocked_popup/input_panel/label_panel/label_panel": T.STACK_PANEL, + "recipe_unlocked_popup/input_panel/label_panel/label_panel/padding_vertical_1": T.PANEL, + "recipe_unlocked_popup/input_panel/label_panel/label_panel/label": T.LABEL, + "recipe_unlocked_popup/input_panel/label_panel/label_panel/padding_vertical_2": T.PANEL, + "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_3": T.PANEL, + "recipe_unlocked_pocket_popup": T.IMAGE, + "recipe_unlocked_pocket_popup/input_panel": T.INPUT_PANEL, + "recipe_unlocked_pocket_popup/input_panel/label_panel": T.STACK_PANEL, + "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_1": T.PANEL, + "recipe_unlocked_pocket_popup/input_panel/label_panel/recipe_unlocked_icon": T.STACK_PANEL, + "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_2": T.PANEL, + "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel": T.STACK_PANEL, + "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/padding_vertical": T.PANEL, + "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/label": T.LABEL, + "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/padding_vertical_1": T.PANEL, + "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_3": T.PANEL, + "text_stack_panel": T.STACK_PANEL, + "text_stack_panel/title": T.LABEL, + "text_stack_panel/subtitle": T.STACK_PANEL, + "text_stack_panel/subtitle/icon_padding": T.PANEL, + "text_stack_panel/subtitle/icon_padding/gamer_score_icon": T.IMAGE, + "text_stack_panel/subtitle/subtext_offset": T.PANEL, + "text_stack_panel/subtitle/subtext_offset/subtext": T.LABEL, + "join_button_icon": T.IMAGE, + "chat_popup": T.INPUT_PANEL, + "splitscreen_join_popup": T.STACK_PANEL, + "splitscreen_join_popup/join_button_icon": T.IMAGE, + "splitscreen_join_popup/join_prompt_text_panel": T.PANEL, + "splitscreen_join_popup/join_prompt_text_panel/join_prompt_text": T.LABEL, + "formfitting_alpha_toast": T.PANEL, + "formfitting_alpha_toast/bg": T.IMAGE, + "formfitting_alpha_toast/bg/label": T.LABEL, + "snackbar": T.PANEL, + "snackbar/body": T.IMAGE, + "snackbar/body/background": T.IMAGE, + "snackbar/body/background/content": T.STACK_PANEL, + "snackbar/body/background/content/left_padding": T.PANEL, + "snackbar/body/background/content/vertically_central_text": T.STACK_PANEL, + "snackbar/body/background/content/vertically_central_text/top_padding": T.PANEL, + "snackbar/body/background/content/vertically_central_text/text": T.LABEL, + "snackbar/body/background/content/right_padding": T.PANEL, + "snackbar/body/background/right_shadow": T.IMAGE, + "progress_button_content": T.STACK_PANEL, + "progress_button_content/gamepad_icon_glyph": T.LABEL, + "progress_button_content/spacer": T.PANEL, + "progress_button_content/progress_button_label": T.LABEL, + "progress_popup": T.INPUT_PANEL, + "progress_popup/background": T.IMAGE, + "progress_popup/popup_content": T.STACK_PANEL, + "progress_popup/popup_content/progress_toast_image": T.IMAGE, + "progress_popup/popup_content/profilepicture": T.CUSTOM, + "progress_popup/popup_content/text_padding": T.PANEL, + "progress_popup/popup_content/progress_content_vertical_panel": T.STACK_PANEL, + "progress_popup/popup_content/progress_content_vertical_panel/title_text_label": T.LABEL, + "progress_popup/popup_content/progress_content_vertical_panel/subtext": T.LABEL, + "progress_popup/popup_content/progress_content_vertical_panel/stacked_progress_bar": T.PANEL, + "progress_popup/popup_content/progress_content_vertical_panel/end_progress_padding": T.PANEL, + "progress_popup/popup_content/divider_padding": T.PANEL, + "progress_popup/popup_content/divider_image": T.IMAGE, + "progress_popup/popup_content/popup_decline_button": T.BUTTON, + "progress_popup/popup_content/end_padding": T.PANEL, + "party_invite_popup": T.INPUT_PANEL, + "party_invite_popup/background": T.IMAGE, + "party_invite_popup/party_invite_content": T.STACK_PANEL, + "party_invite_popup/party_invite_content/profilepicture": T.CUSTOM, + "party_invite_popup/party_invite_content/text_padding": T.PANEL, + "party_invite_popup/party_invite_content/party_invite_content_vertical_panel": T.STACK_PANEL, + "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/title_text_label": T.LABEL, + "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/subtext": T.LABEL, + "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/end_padding": T.PANEL, + "party_invite_popup/party_invite_content/divider_padding": T.PANEL, + "party_invite_popup/party_invite_content/divider_image": T.IMAGE, + "party_invite_popup/party_invite_content/party_invite_button": T.BUTTON, + "party_invite_popup/party_invite_content/end_padding": T.PANEL, + "party_travel_popup": T.INPUT_PANEL, + "toast_screen": T.SCREEN, + "toast_screen_content": T.PANEL, + "toast_screen_content/content_log_panel": T.PANEL, + "toast_screen_content/perf_turtle_panel": T.PANEL, } export type TokenFaqType = { - main_panel: T.STACK_PANEL - "main_panel/faq_question_1": T.BUTTON - "main_panel/faq_question_1_divider": T.STACK_PANEL - "main_panel/faq_question_2": T.BUTTON - "main_panel/faq_question_2_divider": T.STACK_PANEL - "main_panel/faq_question_3": T.BUTTON - "main_panel/faq_question_3_divider": T.STACK_PANEL - "main_panel/faq_question_4": T.BUTTON - "main_panel/faq_question_4_divider": T.STACK_PANEL - "main_panel/faq_question_5": T.BUTTON - scrolling_panel: T.PANEL - token_faq_screen_content: T.PANEL - "token_faq_screen_content/dialog": T.PANEL - background: T.IMAGE - token_faq_screen: T.SCREEN - token_content_panel: T.STACK_PANEL - "token_content_panel/token_info_text": T.LABEL - token_popup_content: T.PANEL - "token_popup_content/dialog": T.PANEL - token_faq_button_panel: T.BUTTON - back_button_panel: T.BUTTON - token_popup: T.SCREEN + "main_panel": T.STACK_PANEL, + "main_panel/faq_question_1": T.BUTTON, + "main_panel/faq_question_1_divider": T.STACK_PANEL, + "main_panel/faq_question_2": T.BUTTON, + "main_panel/faq_question_2_divider": T.STACK_PANEL, + "main_panel/faq_question_3": T.BUTTON, + "main_panel/faq_question_3_divider": T.STACK_PANEL, + "main_panel/faq_question_4": T.BUTTON, + "main_panel/faq_question_4_divider": T.STACK_PANEL, + "main_panel/faq_question_5": T.BUTTON, + "scrolling_panel": T.PANEL, + "token_faq_screen_content": T.PANEL, + "token_faq_screen_content/dialog": T.PANEL, + "background": T.IMAGE, + "token_faq_screen": T.SCREEN, + "token_content_panel": T.STACK_PANEL, + "token_content_panel/token_info_text": T.LABEL, + "token_popup_content": T.PANEL, + "token_popup_content/dialog": T.PANEL, + "token_faq_button_panel": T.BUTTON, + "back_button_panel": T.BUTTON, + "token_popup": T.SCREEN, } export type TradeType = { - cycle_recipe_button: T.BUTTON - cycle_recipe_left_button: T.BUTTON - cycle_recipe_right_button: T.BUTTON - arrow_image: T.IMAGE - cross_out_icon: T.IMAGE - highlight_slot_panel: T.PANEL - "highlight_slot_panel/hover_text": T.CUSTOM - recipe_button: T.BUTTON - "recipe_button/hover": T.PANEL - recipe_item_panel: T.PANEL - "recipe_item_panel/item_renderer": T.CUSTOM - "recipe_item_panel/item_renderer/stack_count_label": T.LABEL - "recipe_item_panel/recipe_button": T.BUTTON - trade_item_slot: T.PANEL - "trade_item_slot/container_item": T.INPUT_PANEL - trade_item_slotB: T.PANEL - trade_item_slot_result_button: T.BUTTON - trade_item_slot_result: T.PANEL - arrow: T.PANEL - "arrow/arrow_image": T.IMAGE - "arrow/cross_out_icon": T.IMAGE - "arrow/recipe_button": T.BUTTON - purchase_grid_item: T.STACK_PANEL - "purchase_grid_item/top_item": T.UNKNOWN - "purchase_grid_item/padding": T.PANEL - "purchase_grid_item/bottom_item": T.UNKNOWN - purchase_grid: T.GRID - "purchase_grid/grid_slot1": T.STACK_PANEL - "purchase_grid/grid_slot2": T.STACK_PANEL - "purchase_grid/arrow": T.STACK_PANEL - "purchase_grid/result_item_slot": T.STACK_PANEL - greyed_item_panel: T.PANEL - "greyed_item_panel/item_renderer": T.CUSTOM - cycle_panel_keyboard: T.PANEL - "cycle_panel_keyboard/left": T.BUTTON - "cycle_panel_keyboard/right": T.BUTTON - cycle_panel_gamepad: T.PANEL - "cycle_panel_gamepad/left": T.BUTTON - "cycle_panel_gamepad/right": T.BUTTON - cycle_panel: T.PANEL - "cycle_panel/keyboard": T.PANEL - "cycle_panel/gamepad": T.PANEL - merchant_purchase_panel: T.PANEL - "merchant_purchase_panel/purchase_grid": T.GRID - top_half_panel: T.PANEL - "top_half_panel/villager_name_label": T.LABEL - "top_half_panel/cycle_panel": T.PANEL - "top_half_panel/merchant_purchase_panel": T.PANEL - trade_panel: T.PANEL - "trade_panel/gamepad_helpers": T.STACK_PANEL - "trade_panel/selected_item_details_factory": T.FACTORY - "trade_panel/item_lock_notification_factory": T.FACTORY - "trade_panel/root_panel": T.INPUT_PANEL - "trade_panel/root_panel/common_panel": T.PANEL - "trade_panel/root_panel/trade_inventory": T.PANEL - "trade_panel/root_panel/trade_inventory/top_half_panel": T.PANEL - "trade_panel/root_panel/trade_inventory/inventory_panel_bottom_half_with_label": T.PANEL - "trade_panel/root_panel/trade_inventory/hotbar_grid_template": T.GRID - "trade_panel/root_panel/trade_inventory/inventory_selected_icon_button": T.BUTTON - "trade_panel/root_panel/trade_inventory/gamepad_cursor": T.BUTTON - "trade_panel/flying_item_renderer": T.CUSTOM - trade_screen: T.SCREEN + "cycle_recipe_button": T.BUTTON, + "cycle_recipe_left_button": T.BUTTON, + "cycle_recipe_right_button": T.BUTTON, + "arrow_image": T.IMAGE, + "cross_out_icon": T.IMAGE, + "highlight_slot_panel": T.PANEL, + "highlight_slot_panel/hover_text": T.CUSTOM, + "recipe_button": T.BUTTON, + "recipe_button/hover": T.PANEL, + "recipe_item_panel": T.PANEL, + "recipe_item_panel/item_renderer": T.CUSTOM, + "recipe_item_panel/item_renderer/stack_count_label": T.LABEL, + "recipe_item_panel/recipe_button": T.BUTTON, + "trade_item_slot": T.PANEL, + "trade_item_slot/container_item": T.INPUT_PANEL, + "trade_item_slotB": T.PANEL, + "trade_item_slot_result_button": T.BUTTON, + "trade_item_slot_result": T.PANEL, + "arrow": T.PANEL, + "arrow/arrow_image": T.IMAGE, + "arrow/cross_out_icon": T.IMAGE, + "arrow/recipe_button": T.BUTTON, + "purchase_grid_item": T.STACK_PANEL, + "purchase_grid_item/top_item": T.UNKNOWN, + "purchase_grid_item/padding": T.PANEL, + "purchase_grid_item/bottom_item": T.UNKNOWN, + "purchase_grid": T.GRID, + "purchase_grid/grid_slot1": T.STACK_PANEL, + "purchase_grid/grid_slot2": T.STACK_PANEL, + "purchase_grid/arrow": T.STACK_PANEL, + "purchase_grid/result_item_slot": T.STACK_PANEL, + "greyed_item_panel": T.PANEL, + "greyed_item_panel/item_renderer": T.CUSTOM, + "cycle_panel_keyboard": T.PANEL, + "cycle_panel_keyboard/left": T.BUTTON, + "cycle_panel_keyboard/right": T.BUTTON, + "cycle_panel_gamepad": T.PANEL, + "cycle_panel_gamepad/left": T.BUTTON, + "cycle_panel_gamepad/right": T.BUTTON, + "cycle_panel": T.PANEL, + "cycle_panel/keyboard": T.PANEL, + "cycle_panel/gamepad": T.PANEL, + "merchant_purchase_panel": T.PANEL, + "merchant_purchase_panel/purchase_grid": T.GRID, + "top_half_panel": T.PANEL, + "top_half_panel/villager_name_label": T.LABEL, + "top_half_panel/cycle_panel": T.PANEL, + "top_half_panel/merchant_purchase_panel": T.PANEL, + "trade_panel": T.PANEL, + "trade_panel/gamepad_helpers": T.STACK_PANEL, + "trade_panel/selected_item_details_factory": T.FACTORY, + "trade_panel/item_lock_notification_factory": T.FACTORY, + "trade_panel/root_panel": T.INPUT_PANEL, + "trade_panel/root_panel/common_panel": T.PANEL, + "trade_panel/root_panel/trade_inventory": T.PANEL, + "trade_panel/root_panel/trade_inventory/top_half_panel": T.PANEL, + "trade_panel/root_panel/trade_inventory/inventory_panel_bottom_half_with_label": T.PANEL, + "trade_panel/root_panel/trade_inventory/hotbar_grid_template": T.GRID, + "trade_panel/root_panel/trade_inventory/inventory_selected_icon_button": T.BUTTON, + "trade_panel/root_panel/trade_inventory/gamepad_cursor": T.BUTTON, + "trade_panel/flying_item_renderer": T.CUSTOM, + "trade_screen": T.SCREEN, } export type TradePocketType = { - background_image: T.IMAGE - recipe_item_panel: T.PANEL - "recipe_item_panel/item_renderer": T.CUSTOM - "recipe_item_panel/item_renderer/stack_count_label": T.LABEL - result_item_panel: T.PANEL - "result_item_panel/output_item_name": T.LABEL - "result_item_panel/recipe_item_panel": T.PANEL - trade_item_slot: T.PANEL - "trade_item_slot/container_item": T.INPUT_PANEL - trade_item_slotB: T.PANEL - trade_item_slot_result_button: T.BUTTON - trade_item_slot_result: T.PANEL - purchase_grid: T.GRID - "purchase_grid/grid_slot1": T.STACK_PANEL - "purchase_grid/grid_slot2": T.STACK_PANEL - "purchase_grid/arrow": T.STACK_PANEL - "purchase_grid/result_item_slot": T.STACK_PANEL - merchant_purchase_panel: T.PANEL - "merchant_purchase_panel/left": T.BUTTON - "merchant_purchase_panel/purchase_grid": T.GRID - "merchant_purchase_panel/right": T.BUTTON - merchant_panel: T.PANEL - "merchant_panel/merchant_purchase_panel": T.PANEL - inventory_grid: T.GRID - inventory_content: T.PANEL - "inventory_content/scrolling_panel": T.PANEL - half_screen: T.PANEL - inventory_half_screen: T.PANEL - "inventory_half_screen/inventory_content": T.PANEL - merchant_half_screen: T.PANEL - "merchant_half_screen/merchant_panel": T.PANEL - header: T.PANEL - "header/header_background": T.IMAGE - "header/close_button": T.BUTTON - "header/villager_name_label": T.LABEL - trade_panel: T.SCREEN - "trade_panel/bg": T.IMAGE - "trade_panel/root_panel": T.INPUT_PANEL - "trade_panel/header": T.PANEL - "trade_panel/inventory": T.PANEL - "trade_panel/merchant_half_screen": T.PANEL - "trade_panel/gamepad_helpers": T.STACK_PANEL - "trade_panel/container_gamepad_helpers": T.STACK_PANEL - "trade_panel/inventory_selected_icon_button": T.BUTTON - "trade_panel/selected_item_details_factory": T.FACTORY - "trade_panel/item_lock_notification_factory": T.FACTORY - "trade_panel/flying_item_renderer": T.CUSTOM + "background_image": T.IMAGE, + "recipe_item_panel": T.PANEL, + "recipe_item_panel/item_renderer": T.CUSTOM, + "recipe_item_panel/item_renderer/stack_count_label": T.LABEL, + "result_item_panel": T.PANEL, + "result_item_panel/output_item_name": T.LABEL, + "result_item_panel/recipe_item_panel": T.PANEL, + "trade_item_slot": T.PANEL, + "trade_item_slot/container_item": T.INPUT_PANEL, + "trade_item_slotB": T.PANEL, + "trade_item_slot_result_button": T.BUTTON, + "trade_item_slot_result": T.PANEL, + "purchase_grid": T.GRID, + "purchase_grid/grid_slot1": T.STACK_PANEL, + "purchase_grid/grid_slot2": T.STACK_PANEL, + "purchase_grid/arrow": T.STACK_PANEL, + "purchase_grid/result_item_slot": T.STACK_PANEL, + "merchant_purchase_panel": T.PANEL, + "merchant_purchase_panel/left": T.BUTTON, + "merchant_purchase_panel/purchase_grid": T.GRID, + "merchant_purchase_panel/right": T.BUTTON, + "merchant_panel": T.PANEL, + "merchant_panel/merchant_purchase_panel": T.PANEL, + "inventory_grid": T.GRID, + "inventory_content": T.PANEL, + "inventory_content/scrolling_panel": T.PANEL, + "half_screen": T.PANEL, + "inventory_half_screen": T.PANEL, + "inventory_half_screen/inventory_content": T.PANEL, + "merchant_half_screen": T.PANEL, + "merchant_half_screen/merchant_panel": T.PANEL, + "header": T.PANEL, + "header/header_background": T.IMAGE, + "header/close_button": T.BUTTON, + "header/villager_name_label": T.LABEL, + "trade_panel": T.SCREEN, + "trade_panel/bg": T.IMAGE, + "trade_panel/root_panel": T.INPUT_PANEL, + "trade_panel/header": T.PANEL, + "trade_panel/inventory": T.PANEL, + "trade_panel/merchant_half_screen": T.PANEL, + "trade_panel/gamepad_helpers": T.STACK_PANEL, + "trade_panel/container_gamepad_helpers": T.STACK_PANEL, + "trade_panel/inventory_selected_icon_button": T.BUTTON, + "trade_panel/selected_item_details_factory": T.FACTORY, + "trade_panel/item_lock_notification_factory": T.FACTORY, + "trade_panel/flying_item_renderer": T.CUSTOM, } export type Trade2Type = { - toolbar_background: T.IMAGE - arrow_left_image: T.IMAGE - arrow_right_image: T.IMAGE - trade_cell_image: T.IMAGE - cross_out_image: T.IMAGE - lock_image: T.IMAGE - scroll_background_image: T.IMAGE - red_slash: T.IMAGE - blue_progress_bar: T.IMAGE - white_progress_bar: T.IMAGE - empty_progress_bar: T.IMAGE - progress_bar_nub: T.IMAGE - hover_button: T.BUTTON - "hover_button/hover_text": T.CUSTOM - stack_count_label: T.LABEL - changed_item_count_label: T.STACK_PANEL - "changed_item_count_label/stack_count_label": T.LABEL - "changed_item_count_label/stack_count_label/red_slash": T.IMAGE - "changed_item_count_label/stack_count_label/red_slash_double": T.IMAGE - "changed_item_count_label/padding": T.PANEL - "changed_item_count_label/second_stack_count_label": T.LABEL - single_item_grid: T.GRID - "single_item_grid/item_with_count": T.PANEL - "single_item_grid/item_with_count/item_renderer": T.CUSTOM - "single_item_grid/item_with_count/item_renderer/stack_count_label": T.LABEL - "single_item_grid/item_with_count/item_renderer/changed_item_count_label": T.STACK_PANEL - "single_item_grid/item_with_count/item_renderer/hover_button": T.BUTTON - trade_item_1: T.GRID - trade_item_2: T.GRID - sell_item: T.GRID - arrow_holder: T.PANEL - "arrow_holder/arrow_image": T.IMAGE - "arrow_holder/cross_out_image": T.IMAGE - "arrow_holder/lock_image": T.IMAGE - toggle_content: T.STACK_PANEL - "toggle_content/padding_1": T.PANEL - "toggle_content/trade_item_1": T.GRID - "toggle_content/padding_2": T.PANEL - "toggle_content/padding_2_extra": T.PANEL - "toggle_content/trade_item_2": T.GRID - "toggle_content/padding_3": T.PANEL - "toggle_content/padding_3_extra": T.PANEL - "toggle_content/arrow_holder": T.PANEL - "toggle_content/padding_4": T.PANEL - "toggle_content/sell_item_holder": T.PANEL - "toggle_content/sell_item_holder/sell_item": T.GRID - "toggle_content/sell_item_holder_with_less_padding": T.PANEL - "toggle_content/sell_item_holder_with_less_padding/sell_item": T.GRID - "toggle_content/padding_5": T.PANEL - toggle_content_holder: T.PANEL - "toggle_content_holder/toggle_content": T.UNKNOWN - trade_toggle_unchecked: T.PANEL - "trade_toggle_unchecked/toggle_checked_normal": T.PANEL - "trade_toggle_unchecked/toggle_checked_red": T.PANEL - trade_toggle_checked: T.PANEL - "trade_toggle_checked/toggle_checked_normal": T.PANEL - "trade_toggle_checked/toggle_checked_red": T.PANEL - trade_toggle_locked: T.PANEL - trade_actual_toggle: T.TOGGLE - trade_toggle: T.PANEL - trade_toggle_holder: T.PANEL - "trade_toggle_holder/trade_toggle": T.PANEL - trade_toggle_stack_panel: T.STACK_PANEL - tier_label: T.LABEL - tier_label_locked: T.LABEL - tier_stack_panel: T.STACK_PANEL - "tier_stack_panel/padding": T.PANEL - "tier_stack_panel/tier_label_holder": T.PANEL - "tier_stack_panel/tier_label_holder/tier_label": T.LABEL - "tier_stack_panel/tier_label_holder/tier_label_locked": T.LABEL - "tier_stack_panel/trade_toggle_stack_panel": T.STACK_PANEL - trade_selector_stack_panel: T.STACK_PANEL - scroll_inner_input_panel: T.INPUT_PANEL - "scroll_inner_input_panel/trade_selector_stack_panel": T.STACK_PANEL - trade_scroll_panel: T.PANEL - left_panel: T.INPUT_PANEL - "left_panel/bg": T.PANEL - "left_panel/trade_scroll_panel": T.PANEL - exp_progress_bar: T.PANEL - "exp_progress_bar/empty_progress_bar": T.IMAGE - "exp_progress_bar/empty_progress_bar/progress_bar_nub": T.IMAGE - "exp_progress_bar/empty_progress_bar/blue_progress_bar": T.IMAGE - "exp_progress_bar/empty_progress_bar/white_progress_bar": T.IMAGE - trade_details: T.PANEL - "trade_details/item_panel_image": T.IMAGE - "trade_details/item_panel_image/item_text_label": T.LABEL - trade_details_factory: T.FACTORY - trade_details_factory_holder: T.PANEL - trade_details_button: T.BUTTON - trade_details_1_button: T.BUTTON - trade_details_2_button: T.BUTTON - enchantment_details_button: T.BUTTON - trade_result_item_slot_button: T.BUTTON - red_cell_image: T.IMAGE - container_cell_image: T.PANEL - "container_cell_image/cell_image": T.IMAGE - "container_cell_image/red_cell_image": T.IMAGE - item_slot: T.INPUT_PANEL - ingredient_1_item_slot: T.INPUT_PANEL - ingredient_2_item_slot: T.INPUT_PANEL - result_item_slot: T.INPUT_PANEL - item_slot_holder: T.PANEL - "item_slot_holder/ingredient_1_item_slot": T.UNKNOWN - "item_slot_holder/trade_details_1_button": T.UNKNOWN - "item_slot_holder/trade_details_1_factory_holder": T.PANEL - item_slots_stack_panel: T.STACK_PANEL - "item_slots_stack_panel/ingredient_item_1_holder": T.PANEL - "item_slots_stack_panel/ingredient_item_2_holder": T.PANEL - "item_slots_stack_panel/pointing_right_arrow_holder": T.PANEL - "item_slots_stack_panel/pointing_right_arrow_holder/arrow_right_image": T.IMAGE - "item_slots_stack_panel/pointing_left_arrow_holder": T.PANEL - "item_slots_stack_panel/pointing_left_arrow_holder/arrow_left_image": T.IMAGE - "item_slots_stack_panel/result_item_slot_holder": T.PANEL - trade_button: T.BUTTON - how_to_play_button: T.BUTTON - top_half_stack_panel: T.STACK_PANEL - "top_half_stack_panel/item_slots_holder": T.PANEL - "top_half_stack_panel/item_slots_holder/item_slots_stack_panel": T.STACK_PANEL - "top_half_stack_panel/padding_1": T.PANEL - "top_half_stack_panel/trade_button_holder": T.PANEL - "top_half_stack_panel/trade_button_holder/trade_button": T.BUTTON - "top_half_stack_panel/how_to_play_button_holder": T.PANEL - "top_half_stack_panel/how_to_play_button_holder/how_to_play_button": T.BUTTON - top_half_panel: T.PANEL - "top_half_panel/top_half_stack_panel": T.STACK_PANEL - villager_name_label: T.LABEL - right_panel: T.INPUT_PANEL - "right_panel/common_panel": T.PANEL - "right_panel/trade_screen_inventory": T.PANEL - "right_panel/trade_screen_inventory/villager_name_label": T.LABEL - "right_panel/trade_screen_inventory/exp_progress_bar": T.PANEL - "right_panel/trade_screen_inventory/top_half_panel": T.PANEL - "right_panel/trade_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL - "right_panel/trade_screen_inventory/hotbar_grid": T.GRID - toolbar_panel: T.INPUT_PANEL - "toolbar_panel/toolbar_background": T.IMAGE - "toolbar_panel/toolbar_background/toolbar_stack_panel": T.STACK_PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": T.PANEL - "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": T.BUTTON - "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": T.PANEL - toolbar_anchor: T.PANEL - "toolbar_anchor/toolbar_panel": T.INPUT_PANEL - center_fold: T.INPUT_PANEL - "center_fold/center_bg": T.IMAGE - screen_stack_panel: T.STACK_PANEL - "screen_stack_panel/left_panel": T.INPUT_PANEL - "screen_stack_panel/center_fold": T.INPUT_PANEL - "screen_stack_panel/right_panel": T.INPUT_PANEL - "screen_stack_panel/toolbar_anchor": T.PANEL - gamepad_helper_x: T.STACK_PANEL - gamepad_helper_y: T.STACK_PANEL - screen_panel: T.PANEL - "screen_panel/screen_stack_panel": T.STACK_PANEL - "screen_panel/container_gamepad_helpers": T.STACK_PANEL - "screen_panel/selected_item_details_factory": T.FACTORY - "screen_panel/item_lock_notification_factory": T.FACTORY - "screen_panel/inventory_selected_icon_button": T.BUTTON - "screen_panel/inventory_take_progress_icon_button": T.BUTTON - "screen_panel/flying_item_renderer": T.CUSTOM - trade_screen: T.SCREEN + "toolbar_background": T.IMAGE, + "arrow_left_image": T.IMAGE, + "arrow_right_image": T.IMAGE, + "trade_cell_image": T.IMAGE, + "cross_out_image": T.IMAGE, + "lock_image": T.IMAGE, + "scroll_background_image": T.IMAGE, + "red_slash": T.IMAGE, + "blue_progress_bar": T.IMAGE, + "white_progress_bar": T.IMAGE, + "empty_progress_bar": T.IMAGE, + "progress_bar_nub": T.IMAGE, + "hover_button": T.BUTTON, + "hover_button/hover_text": T.CUSTOM, + "stack_count_label": T.LABEL, + "changed_item_count_label": T.STACK_PANEL, + "changed_item_count_label/stack_count_label": T.LABEL, + "changed_item_count_label/stack_count_label/red_slash": T.IMAGE, + "changed_item_count_label/stack_count_label/red_slash_double": T.IMAGE, + "changed_item_count_label/padding": T.PANEL, + "changed_item_count_label/second_stack_count_label": T.LABEL, + "single_item_grid": T.GRID, + "single_item_grid/item_with_count": T.PANEL, + "single_item_grid/item_with_count/item_renderer": T.CUSTOM, + "single_item_grid/item_with_count/item_renderer/stack_count_label": T.LABEL, + "single_item_grid/item_with_count/item_renderer/changed_item_count_label": T.STACK_PANEL, + "single_item_grid/item_with_count/item_renderer/hover_button": T.BUTTON, + "trade_item_1": T.GRID, + "trade_item_2": T.GRID, + "sell_item": T.GRID, + "arrow_holder": T.PANEL, + "arrow_holder/arrow_image": T.IMAGE, + "arrow_holder/cross_out_image": T.IMAGE, + "arrow_holder/lock_image": T.IMAGE, + "toggle_content": T.STACK_PANEL, + "toggle_content/padding_1": T.PANEL, + "toggle_content/trade_item_1": T.GRID, + "toggle_content/padding_2": T.PANEL, + "toggle_content/padding_2_extra": T.PANEL, + "toggle_content/trade_item_2": T.GRID, + "toggle_content/padding_3": T.PANEL, + "toggle_content/padding_3_extra": T.PANEL, + "toggle_content/arrow_holder": T.PANEL, + "toggle_content/padding_4": T.PANEL, + "toggle_content/sell_item_holder": T.PANEL, + "toggle_content/sell_item_holder/sell_item": T.GRID, + "toggle_content/sell_item_holder_with_less_padding": T.PANEL, + "toggle_content/sell_item_holder_with_less_padding/sell_item": T.GRID, + "toggle_content/padding_5": T.PANEL, + "toggle_content_holder": T.PANEL, + "toggle_content_holder/toggle_content": T.UNKNOWN, + "trade_toggle_unchecked": T.PANEL, + "trade_toggle_unchecked/toggle_checked_normal": T.PANEL, + "trade_toggle_unchecked/toggle_checked_red": T.PANEL, + "trade_toggle_checked": T.PANEL, + "trade_toggle_checked/toggle_checked_normal": T.PANEL, + "trade_toggle_checked/toggle_checked_red": T.PANEL, + "trade_toggle_locked": T.PANEL, + "trade_actual_toggle": T.TOGGLE, + "trade_toggle": T.PANEL, + "trade_toggle_holder": T.PANEL, + "trade_toggle_holder/trade_toggle": T.PANEL, + "trade_toggle_stack_panel": T.STACK_PANEL, + "tier_label": T.LABEL, + "tier_label_locked": T.LABEL, + "tier_stack_panel": T.STACK_PANEL, + "tier_stack_panel/padding": T.PANEL, + "tier_stack_panel/tier_label_holder": T.PANEL, + "tier_stack_panel/tier_label_holder/tier_label": T.LABEL, + "tier_stack_panel/tier_label_holder/tier_label_locked": T.LABEL, + "tier_stack_panel/trade_toggle_stack_panel": T.STACK_PANEL, + "trade_selector_stack_panel": T.STACK_PANEL, + "scroll_inner_input_panel": T.INPUT_PANEL, + "scroll_inner_input_panel/trade_selector_stack_panel": T.STACK_PANEL, + "trade_scroll_panel": T.PANEL, + "left_panel": T.INPUT_PANEL, + "left_panel/bg": T.PANEL, + "left_panel/trade_scroll_panel": T.PANEL, + "exp_progress_bar": T.PANEL, + "exp_progress_bar/empty_progress_bar": T.IMAGE, + "exp_progress_bar/empty_progress_bar/progress_bar_nub": T.IMAGE, + "exp_progress_bar/empty_progress_bar/blue_progress_bar": T.IMAGE, + "exp_progress_bar/empty_progress_bar/white_progress_bar": T.IMAGE, + "trade_details": T.PANEL, + "trade_details/item_panel_image": T.IMAGE, + "trade_details/item_panel_image/item_text_label": T.LABEL, + "trade_details_factory": T.FACTORY, + "trade_details_factory_holder": T.PANEL, + "trade_details_button": T.BUTTON, + "trade_details_1_button": T.BUTTON, + "trade_details_2_button": T.BUTTON, + "enchantment_details_button": T.BUTTON, + "trade_result_item_slot_button": T.BUTTON, + "red_cell_image": T.IMAGE, + "container_cell_image": T.PANEL, + "container_cell_image/cell_image": T.IMAGE, + "container_cell_image/red_cell_image": T.IMAGE, + "item_slot": T.INPUT_PANEL, + "ingredient_1_item_slot": T.INPUT_PANEL, + "ingredient_2_item_slot": T.INPUT_PANEL, + "result_item_slot": T.INPUT_PANEL, + "item_slot_holder": T.PANEL, + "item_slot_holder/ingredient_1_item_slot": T.UNKNOWN, + "item_slot_holder/trade_details_1_button": T.UNKNOWN, + "item_slot_holder/trade_details_1_factory_holder": T.PANEL, + "item_slots_stack_panel": T.STACK_PANEL, + "item_slots_stack_panel/ingredient_item_1_holder": T.PANEL, + "item_slots_stack_panel/ingredient_item_2_holder": T.PANEL, + "item_slots_stack_panel/pointing_right_arrow_holder": T.PANEL, + "item_slots_stack_panel/pointing_right_arrow_holder/arrow_right_image": T.IMAGE, + "item_slots_stack_panel/pointing_left_arrow_holder": T.PANEL, + "item_slots_stack_panel/pointing_left_arrow_holder/arrow_left_image": T.IMAGE, + "item_slots_stack_panel/result_item_slot_holder": T.PANEL, + "trade_button": T.BUTTON, + "how_to_play_button": T.BUTTON, + "top_half_stack_panel": T.STACK_PANEL, + "top_half_stack_panel/item_slots_holder": T.PANEL, + "top_half_stack_panel/item_slots_holder/item_slots_stack_panel": T.STACK_PANEL, + "top_half_stack_panel/padding_1": T.PANEL, + "top_half_stack_panel/trade_button_holder": T.PANEL, + "top_half_stack_panel/trade_button_holder/trade_button": T.BUTTON, + "top_half_stack_panel/how_to_play_button_holder": T.PANEL, + "top_half_stack_panel/how_to_play_button_holder/how_to_play_button": T.BUTTON, + "top_half_panel": T.PANEL, + "top_half_panel/top_half_stack_panel": T.STACK_PANEL, + "villager_name_label": T.LABEL, + "right_panel": T.INPUT_PANEL, + "right_panel/common_panel": T.PANEL, + "right_panel/trade_screen_inventory": T.PANEL, + "right_panel/trade_screen_inventory/villager_name_label": T.LABEL, + "right_panel/trade_screen_inventory/exp_progress_bar": T.PANEL, + "right_panel/trade_screen_inventory/top_half_panel": T.PANEL, + "right_panel/trade_screen_inventory/inventory_panel_bottom_half_with_label": T.PANEL, + "right_panel/trade_screen_inventory/hotbar_grid": T.GRID, + "toolbar_panel": T.INPUT_PANEL, + "toolbar_panel/toolbar_background": T.IMAGE, + "toolbar_panel/toolbar_background/toolbar_stack_panel": T.STACK_PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": T.PANEL, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": T.BUTTON, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": T.PANEL, + "toolbar_anchor": T.PANEL, + "toolbar_anchor/toolbar_panel": T.INPUT_PANEL, + "center_fold": T.INPUT_PANEL, + "center_fold/center_bg": T.IMAGE, + "screen_stack_panel": T.STACK_PANEL, + "screen_stack_panel/left_panel": T.INPUT_PANEL, + "screen_stack_panel/center_fold": T.INPUT_PANEL, + "screen_stack_panel/right_panel": T.INPUT_PANEL, + "screen_stack_panel/toolbar_anchor": T.PANEL, + "gamepad_helper_x": T.STACK_PANEL, + "gamepad_helper_y": T.STACK_PANEL, + "screen_panel": T.PANEL, + "screen_panel/screen_stack_panel": T.STACK_PANEL, + "screen_panel/container_gamepad_helpers": T.STACK_PANEL, + "screen_panel/selected_item_details_factory": T.FACTORY, + "screen_panel/item_lock_notification_factory": T.FACTORY, + "screen_panel/inventory_selected_icon_button": T.BUTTON, + "screen_panel/inventory_take_progress_icon_button": T.BUTTON, + "screen_panel/flying_item_renderer": T.CUSTOM, + "trade_screen": T.SCREEN, } export type Trade2PocketType = { - chest_item_renderer: T.CUSTOM - trade_icon: T.IMAGE - arrow_right_image: T.IMAGE - right_navigation_tabs: T.STACK_PANEL - "right_navigation_tabs/pocket_tab_close_button": T.IMAGE - "right_navigation_tabs/fill": T.PANEL - trade_slots_panel: T.IMAGE - "trade_slots_panel/item_slots_stack_panel": T.STACK_PANEL - trade_and_help_buttons: T.STACK_PANEL - "trade_and_help_buttons/trade_button_holder": T.PANEL - "trade_and_help_buttons/trade_button_holder/trade_button": T.BUTTON - "trade_and_help_buttons/how_to_play_button_holder": T.PANEL - "trade_and_help_buttons/how_to_play_button_holder/how_to_play_button": T.BUTTON - name_and_trade_slots_stack_panel: T.STACK_PANEL - "name_and_trade_slots_stack_panel/padding_1": T.PANEL - "name_and_trade_slots_stack_panel/villager_name_label_holder": T.PANEL - "name_and_trade_slots_stack_panel/villager_name_label_holder/villager_name_label": T.LABEL - "name_and_trade_slots_stack_panel/padding_2": T.PANEL - "name_and_trade_slots_stack_panel/exp_progress_bar_holder": T.PANEL - "name_and_trade_slots_stack_panel/exp_progress_bar_holder/exp_progress_bar": T.PANEL - "name_and_trade_slots_stack_panel/padding_3": T.PANEL - "name_and_trade_slots_stack_panel/trade_slots_panel": T.IMAGE - "name_and_trade_slots_stack_panel/padding_4": T.PANEL - "name_and_trade_slots_stack_panel/trade_and_help_buttons": T.STACK_PANEL - right_panel: T.STACK_PANEL - "right_panel/content": T.INPUT_PANEL - "right_panel/content/bg": T.PANEL - "right_panel/content/name_and_trade_slots_stack_panel": T.STACK_PANEL - "right_panel/navigation_tabs_holder": T.PANEL - "right_panel/navigation_tabs_holder/right_navigation_tabs": T.STACK_PANEL - left_tab_trade: T.PANEL - left_tab_inventory: T.PANEL - left_navigation_tabs: T.STACK_PANEL - "left_navigation_tabs/left_tab_trades": T.PANEL - "left_navigation_tabs/padding": T.PANEL - "left_navigation_tabs/left_tab_inventory": T.PANEL - arrow_holder: T.PANEL - "arrow_holder/arrow_image": T.IMAGE - "arrow_holder/cross_out_image": T.IMAGE - "arrow_holder/lock_image": T.IMAGE - inventory_scroll_panel: T.PANEL - toggle_content: T.STACK_PANEL - "toggle_content/padding_1": T.PANEL - "toggle_content/trade_item_holder": T.STACK_PANEL - "toggle_content/trade_item_holder/padding_left": T.PANEL - "toggle_content/trade_item_holder/trade_item_1": T.GRID - "toggle_content/trade_item_holder/padding_middle": T.PANEL - "toggle_content/trade_item_holder/trade_item_2": T.GRID - "toggle_content/trade_item_holder/padding_right": T.PANEL - "toggle_content/padding_2": T.PANEL - "toggle_content/arrow_holder": T.PANEL - "toggle_content/padding_3": T.PANEL - "toggle_content/sell_item_holder": T.PANEL - "toggle_content/sell_item_holder/sell_item": T.GRID - "toggle_content/padding_4": T.PANEL - left_panel: T.STACK_PANEL - "left_panel/gamepad_helpers_and_tabs_holder": T.PANEL - "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": T.PANEL - "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": T.PANEL - "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": T.STACK_PANEL - "left_panel/content": T.INPUT_PANEL - "left_panel/content/bg": T.PANEL - "left_panel/content/inventory_scroll_panel": T.PANEL - "left_panel/content/trade_scroll_panel": T.PANEL - pocket_hotbar_and_content_panels: T.STACK_PANEL - screen_panel: T.PANEL - "screen_panel/pocket_hotbar_and_content_panels": T.STACK_PANEL - "screen_panel/container_gamepad_helpers": T.STACK_PANEL - "screen_panel/selected_item_details_factory": T.FACTORY - "screen_panel/item_lock_notification_factory": T.FACTORY - "screen_panel/inventory_selected_icon_button": T.BUTTON - "screen_panel/inventory_take_progress_icon_button": T.BUTTON - "screen_panel/flying_item_renderer": T.CUSTOM + "chest_item_renderer": T.CUSTOM, + "trade_icon": T.IMAGE, + "arrow_right_image": T.IMAGE, + "right_navigation_tabs": T.STACK_PANEL, + "right_navigation_tabs/pocket_tab_close_button": T.IMAGE, + "right_navigation_tabs/fill": T.PANEL, + "trade_slots_panel": T.IMAGE, + "trade_slots_panel/item_slots_stack_panel": T.STACK_PANEL, + "trade_and_help_buttons": T.STACK_PANEL, + "trade_and_help_buttons/trade_button_holder": T.PANEL, + "trade_and_help_buttons/trade_button_holder/trade_button": T.BUTTON, + "trade_and_help_buttons/how_to_play_button_holder": T.PANEL, + "trade_and_help_buttons/how_to_play_button_holder/how_to_play_button": T.BUTTON, + "name_and_trade_slots_stack_panel": T.STACK_PANEL, + "name_and_trade_slots_stack_panel/padding_1": T.PANEL, + "name_and_trade_slots_stack_panel/villager_name_label_holder": T.PANEL, + "name_and_trade_slots_stack_panel/villager_name_label_holder/villager_name_label": T.LABEL, + "name_and_trade_slots_stack_panel/padding_2": T.PANEL, + "name_and_trade_slots_stack_panel/exp_progress_bar_holder": T.PANEL, + "name_and_trade_slots_stack_panel/exp_progress_bar_holder/exp_progress_bar": T.PANEL, + "name_and_trade_slots_stack_panel/padding_3": T.PANEL, + "name_and_trade_slots_stack_panel/trade_slots_panel": T.IMAGE, + "name_and_trade_slots_stack_panel/padding_4": T.PANEL, + "name_and_trade_slots_stack_panel/trade_and_help_buttons": T.STACK_PANEL, + "right_panel": T.STACK_PANEL, + "right_panel/content": T.INPUT_PANEL, + "right_panel/content/bg": T.PANEL, + "right_panel/content/name_and_trade_slots_stack_panel": T.STACK_PANEL, + "right_panel/navigation_tabs_holder": T.PANEL, + "right_panel/navigation_tabs_holder/right_navigation_tabs": T.STACK_PANEL, + "left_tab_trade": T.PANEL, + "left_tab_inventory": T.PANEL, + "left_navigation_tabs": T.STACK_PANEL, + "left_navigation_tabs/left_tab_trades": T.PANEL, + "left_navigation_tabs/padding": T.PANEL, + "left_navigation_tabs/left_tab_inventory": T.PANEL, + "arrow_holder": T.PANEL, + "arrow_holder/arrow_image": T.IMAGE, + "arrow_holder/cross_out_image": T.IMAGE, + "arrow_holder/lock_image": T.IMAGE, + "inventory_scroll_panel": T.PANEL, + "toggle_content": T.STACK_PANEL, + "toggle_content/padding_1": T.PANEL, + "toggle_content/trade_item_holder": T.STACK_PANEL, + "toggle_content/trade_item_holder/padding_left": T.PANEL, + "toggle_content/trade_item_holder/trade_item_1": T.GRID, + "toggle_content/trade_item_holder/padding_middle": T.PANEL, + "toggle_content/trade_item_holder/trade_item_2": T.GRID, + "toggle_content/trade_item_holder/padding_right": T.PANEL, + "toggle_content/padding_2": T.PANEL, + "toggle_content/arrow_holder": T.PANEL, + "toggle_content/padding_3": T.PANEL, + "toggle_content/sell_item_holder": T.PANEL, + "toggle_content/sell_item_holder/sell_item": T.GRID, + "toggle_content/padding_4": T.PANEL, + "left_panel": T.STACK_PANEL, + "left_panel/gamepad_helpers_and_tabs_holder": T.PANEL, + "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": T.PANEL, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": T.PANEL, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": T.STACK_PANEL, + "left_panel/content": T.INPUT_PANEL, + "left_panel/content/bg": T.PANEL, + "left_panel/content/inventory_scroll_panel": T.PANEL, + "left_panel/content/trade_scroll_panel": T.PANEL, + "pocket_hotbar_and_content_panels": T.STACK_PANEL, + "screen_panel": T.PANEL, + "screen_panel/pocket_hotbar_and_content_panels": T.STACK_PANEL, + "screen_panel/container_gamepad_helpers": T.STACK_PANEL, + "screen_panel/selected_item_details_factory": T.FACTORY, + "screen_panel/item_lock_notification_factory": T.FACTORY, + "screen_panel/inventory_selected_icon_button": T.BUTTON, + "screen_panel/inventory_take_progress_icon_button": T.BUTTON, + "screen_panel/flying_item_renderer": T.CUSTOM, } export type TrialUpsellType = { - normal_stroke_button: T.IMAGE - normal_description_label: T.LABEL - trialTime: T.CUSTOM - trial_label: T.LABEL - trial_description_panel: T.PANEL - "trial_description_panel/description_text": T.LABEL - trial_expired_description_panel: T.STACK_PANEL - "trial_expired_description_panel/vertical_padding_0": T.PANEL - "trial_expired_description_panel/line1": T.LABEL - "trial_expired_description_panel/vertical_padding_1": T.PANEL - "trial_expired_description_panel/line2": T.LABEL - "trial_expired_description_panel/line3": T.LABEL - "trial_expired_description_panel/line4": T.LABEL - "trial_expired_description_panel/line5": T.LABEL - continue_button: T.BUTTON - buy_button: T.BUTTON - root_panel: T.PANEL - trial_upsell_screen_dialog: T.PANEL - trial_upsell_expired_screen_dialog: T.PANEL - button_content_panel: T.PANEL - "button_content_panel/buy": T.BUTTON - "button_content_panel/continue": T.BUTTON - trial_upsell_screen: T.SCREEN - trial_upsell_screen_content: T.PANEL - "trial_upsell_screen_content/trialTime": T.CUSTOM - "trial_upsell_screen_content/root_panel": T.PANEL - "trial_upsell_screen_content/root_panel/trial_upsell_screen_dialog": T.PANEL - trial_upsell_expired_screen: T.SCREEN - trial_upsell_expired_screen_content: T.PANEL - "trial_upsell_expired_screen_content/trialTime": T.CUSTOM - "trial_upsell_expired_screen_content/root_panel": T.PANEL - "trial_upsell_expired_screen_content/root_panel/trial_upsell_expired_screen_dialog": T.PANEL - content_description_panel: T.PANEL - "content_description_panel/scrolling_panel": T.PANEL + "normal_stroke_button": T.IMAGE, + "normal_description_label": T.LABEL, + "trialTime": T.CUSTOM, + "trial_label": T.LABEL, + "trial_description_panel": T.PANEL, + "trial_description_panel/description_text": T.LABEL, + "trial_expired_description_panel": T.STACK_PANEL, + "trial_expired_description_panel/vertical_padding_0": T.PANEL, + "trial_expired_description_panel/line1": T.LABEL, + "trial_expired_description_panel/vertical_padding_1": T.PANEL, + "trial_expired_description_panel/line2": T.LABEL, + "trial_expired_description_panel/line3": T.LABEL, + "trial_expired_description_panel/line4": T.LABEL, + "trial_expired_description_panel/line5": T.LABEL, + "continue_button": T.BUTTON, + "buy_button": T.BUTTON, + "root_panel": T.PANEL, + "trial_upsell_screen_dialog": T.PANEL, + "trial_upsell_expired_screen_dialog": T.PANEL, + "button_content_panel": T.PANEL, + "button_content_panel/buy": T.BUTTON, + "button_content_panel/continue": T.BUTTON, + "trial_upsell_screen": T.SCREEN, + "trial_upsell_screen_content": T.PANEL, + "trial_upsell_screen_content/trialTime": T.CUSTOM, + "trial_upsell_screen_content/root_panel": T.PANEL, + "trial_upsell_screen_content/root_panel/trial_upsell_screen_dialog": T.PANEL, + "trial_upsell_expired_screen": T.SCREEN, + "trial_upsell_expired_screen_content": T.PANEL, + "trial_upsell_expired_screen_content/trialTime": T.CUSTOM, + "trial_upsell_expired_screen_content/root_panel": T.PANEL, + "trial_upsell_expired_screen_content/root_panel/trial_upsell_expired_screen_dialog": T.PANEL, + "content_description_panel": T.PANEL, + "content_description_panel/scrolling_panel": T.PANEL, } export type UgcViewerType = { - padding: T.PANEL - world_label: T.LABEL - world_image: T.IMAGE - button_content: T.PANEL - "button_content/stack_panel": T.STACK_PANEL - "button_content/stack_panel/world_label": T.LABEL - "button_content/stack_panel/world_panel": T.PANEL - "button_content/stack_panel/world_panel/background": T.IMAGE - "button_content/stack_panel/world_panel/background/world_image": T.IMAGE - grid_item: T.PANEL - "grid_item/button": T.BUTTON - place_holder_control: T.PANEL - "place_holder_control/search_icon": T.IMAGE - "place_holder_control/place_holder_text": T.LABEL - search_box: T.EDIT_BOX - grid_content: T.GRID - scrolling_content: T.PANEL - "scrolling_content/grid_content": T.GRID - main_panel: T.STACK_PANEL - "main_panel/padding_0": T.PANEL - "main_panel/centerer_panel_0": T.PANEL - "main_panel/centerer_panel_0/search_box": T.EDIT_BOX - "main_panel/padding_1": T.PANEL - "main_panel/centerer_panel_1": T.PANEL - "main_panel/centerer_panel_1/scrolling_panel": T.PANEL - "main_panel/padding_2": T.PANEL - ugc_viewer_screen: T.SCREEN - screen_content: T.PANEL - "screen_content/main_panel": T.PANEL + "padding": T.PANEL, + "world_label": T.LABEL, + "world_image": T.IMAGE, + "button_content": T.PANEL, + "button_content/stack_panel": T.STACK_PANEL, + "button_content/stack_panel/world_label": T.LABEL, + "button_content/stack_panel/world_panel": T.PANEL, + "button_content/stack_panel/world_panel/background": T.IMAGE, + "button_content/stack_panel/world_panel/background/world_image": T.IMAGE, + "grid_item": T.PANEL, + "grid_item/button": T.BUTTON, + "place_holder_control": T.PANEL, + "place_holder_control/search_icon": T.IMAGE, + "place_holder_control/place_holder_text": T.LABEL, + "search_box": T.EDIT_BOX, + "grid_content": T.GRID, + "scrolling_content": T.PANEL, + "scrolling_content/grid_content": T.GRID, + "main_panel": T.STACK_PANEL, + "main_panel/padding_0": T.PANEL, + "main_panel/centerer_panel_0": T.PANEL, + "main_panel/centerer_panel_0/search_box": T.EDIT_BOX, + "main_panel/padding_1": T.PANEL, + "main_panel/centerer_panel_1": T.PANEL, + "main_panel/centerer_panel_1/scrolling_panel": T.PANEL, + "main_panel/padding_2": T.PANEL, + "ugc_viewer_screen": T.SCREEN, + "screen_content": T.PANEL, + "screen_content/main_panel": T.PANEL, } export type CommonArtType = { - title_image: T.IMAGE - title_image_edu: T.IMAGE - splash_text: T.CUSTOM - title_panel_pocket: T.PANEL - "title_panel_pocket/title_image": T.IMAGE - "title_panel_pocket/splash_text": T.CUSTOM - title_panel_win10: T.PANEL - "title_panel_win10/title_image": T.IMAGE - "title_panel_win10/splash_text": T.CUSTOM - title_panel_osx: T.PANEL - "title_panel_osx/title_image": T.IMAGE - "title_panel_osx/splash_text": T.CUSTOM - title_panel_edu_desktop: T.PANEL - "title_panel_edu_desktop/banner_control": T.PANEL - "title_panel_edu_desktop/banner_control/banner": T.IMAGE - "title_panel_edu_desktop/banner_control/drop_shadow": T.IMAGE - "title_panel_edu_desktop/title_control": T.PANEL - "title_panel_edu_desktop/title_control/title_image_edu": T.IMAGE - "title_panel_edu_desktop/title_control/splash_text": T.CUSTOM - title_panel_edu_mobile: T.PANEL - "title_panel_edu_mobile/title_control": T.PANEL - "title_panel_edu_mobile/title_control/title_image_edu": T.IMAGE - "title_panel_edu_mobile/title_control/splash_text": T.CUSTOM - title_panel_content: T.PANEL - start_title_panel_content: T.PANEL - pause_logo_panel: T.INPUT_PANEL - "pause_logo_panel/logo": T.UNKNOWN + "title_image": T.IMAGE, + "title_image_edu": T.IMAGE, + "splash_text": T.CUSTOM, + "title_panel_pocket": T.PANEL, + "title_panel_pocket/title_image": T.IMAGE, + "title_panel_pocket/splash_text": T.CUSTOM, + "title_panel_win10": T.PANEL, + "title_panel_win10/title_image": T.IMAGE, + "title_panel_win10/splash_text": T.CUSTOM, + "title_panel_osx": T.PANEL, + "title_panel_osx/title_image": T.IMAGE, + "title_panel_osx/splash_text": T.CUSTOM, + "title_panel_edu_desktop": T.PANEL, + "title_panel_edu_desktop/banner_control": T.PANEL, + "title_panel_edu_desktop/banner_control/banner": T.IMAGE, + "title_panel_edu_desktop/banner_control/drop_shadow": T.IMAGE, + "title_panel_edu_desktop/title_control": T.PANEL, + "title_panel_edu_desktop/title_control/title_image_edu": T.IMAGE, + "title_panel_edu_desktop/title_control/splash_text": T.CUSTOM, + "title_panel_edu_mobile": T.PANEL, + "title_panel_edu_mobile/title_control": T.PANEL, + "title_panel_edu_mobile/title_control/title_image_edu": T.IMAGE, + "title_panel_edu_mobile/title_control/splash_text": T.CUSTOM, + "title_panel_content": T.PANEL, + "start_title_panel_content": T.PANEL, + "pause_logo_panel": T.INPUT_PANEL, + "pause_logo_panel/logo": T.UNKNOWN, } export type CommonType = { - empty_panel: T.PANEL - vertical_padding_8px: T.PANEL - horizontal_padding_2px: T.PANEL - empty_image: T.IMAGE - horizontal_stack_panel: T.STACK_PANEL - vertical_stack_panel: T.STACK_PANEL - vert_stack_centering_panel: T.PANEL - "vert_stack_centering_panel/stack_content": T.UNKNOWN - button: T.BUTTON - screen_header_title_panel: T.PANEL - "screen_header_title_panel/store_header_title": T.LABEL - back_button: T.BUTTON - back_title_button: T.STACK_PANEL - "back_title_button/panel1": T.PANEL - "back_title_button/panel1/button": T.BUTTON - "back_title_button/padding1": T.PANEL - "back_title_button/panel2": T.PANEL - "back_title_button/panel2/label": T.LABEL - chevron_image: T.IMAGE - back_button_content: T.STACK_PANEL - "back_button_content/chevron_panel": T.PANEL - "back_button_content/chevron_panel/left_chevron": T.IMAGE - "back_button_content/padding1": T.PANEL - "back_button_content/label_panel": T.PANEL - "back_button_content/label_panel/label": T.LABEL - label_hover: T.PANEL - "label_hover/hover": T.IMAGE - tts_activate_sibling: T.BUTTON - "tts_activate_sibling/default": T.PANEL - "tts_activate_sibling/pressed": T.PANEL - "tts_activate_sibling/hover": T.PANEL - back_title_button_content: T.STACK_PANEL - "back_title_button_content/padding1": T.PANEL - "back_title_button_content/chevron_panel": T.PANEL - "back_title_button_content/chevron_panel/left_chevron": T.IMAGE - "back_title_button_content/padding2": T.PANEL - toggle_visuals: T.PANEL - "toggle_visuals/unchecked": T.UNKNOWN - "toggle_visuals/checked": T.UNKNOWN - "toggle_visuals/unchecked_hover": T.UNKNOWN - "toggle_visuals/checked_hover": T.UNKNOWN - "toggle_visuals/unchecked_locked": T.UNKNOWN - "toggle_visuals/checked_locked": T.UNKNOWN - "toggle_visuals/unchecked_locked_hover": T.UNKNOWN - "toggle_visuals/checked_locked_hover": T.UNKNOWN - toggle: T.PANEL - radio_toggle: T.PANEL - checkbox: T.PANEL - checkbox_image: T.IMAGE - checked_image: T.IMAGE - unchecked_image: T.IMAGE - checked_hover_image: T.IMAGE - unchecked_hover_image: T.IMAGE - rotating_text: T.CAROUSEL_LABEL - button_text: T.LABEL - toggle_state_template: T.IMAGE - new_button_label: T.LABEL - checkbox_checked_state: T.IMAGE - checkbox_unchecked_state: T.IMAGE - checkbox_checked_hover_state: T.IMAGE - checkbox_unchecked_hover_state: T.IMAGE - checkbox_checked_locked_state: T.IMAGE - checkbox_unchecked_locked_state: T.IMAGE - radio_toggle_checked_state: T.IMAGE - radio_toggle_unchecked_state: T.IMAGE - radio_toggle_checked_hover_state: T.IMAGE - radio_toggle_unchecked_hover_state: T.IMAGE - radio_toggle_checked_locked_state: T.IMAGE - radio_toggle_unchecked_locked_state: T.IMAGE - slider_button_state: T.IMAGE - slider_button_layout: T.IMAGE - slider_button_hover_layout: T.IMAGE - slider_button_locked_layout: T.IMAGE - slider_button_indent_layout: T.IMAGE - slider_box: T.SLIDER_BOX - "slider_box/default": T.UNKNOWN - "slider_box/hover": T.UNKNOWN - "slider_box/indent": T.UNKNOWN - "slider_box/locked": T.UNKNOWN - "slider_box/locked/transparent_grey": T.IMAGE - slider_background: T.IMAGE - slider_background_hover: T.IMAGE - slider_progress: T.IMAGE - slider_progress_hover: T.IMAGE - slider_border: T.IMAGE - slider_bar_default: T.IMAGE - "slider_bar_default/sizing_panel": T.PANEL - "slider_bar_default/transparent_grey": T.IMAGE - slider_bar_hover: T.IMAGE - slider_step: T.IMAGE - slider_step_hover: T.IMAGE - slider_step_progress: T.IMAGE - slider_step_progress_hover: T.IMAGE - slider: T.SLIDER - "slider/slider_box": T.SLIDER_BOX - "slider/slider_bar_default": T.IMAGE - "slider/slider_bar_hover": T.IMAGE - dropdown_background: T.IMAGE - dropdown: T.PANEL - "dropdown/dropdown_content": T.INPUT_PANEL - "dropdown/dropdown_content/0": T.UNKNOWN - dropdown_no_scrollpanel: T.PANEL - square_image_border_white: T.IMAGE - focus_border_white: T.IMAGE - focus_border_yellow: T.IMAGE - focus_border_black: T.IMAGE - non_interact_focus_border: T.IMAGE - non_interact_focus_border_button: T.BUTTON - "non_interact_focus_border_button/default": T.UNKNOWN - "non_interact_focus_border_button/hover": T.UNKNOWN - "non_interact_focus_border_button/pressed": T.UNKNOWN - "non_interact_focus_border_button/content": T.UNKNOWN - tts_label_focus_wrapper: T.PANEL - "tts_label_focus_wrapper/label": T.UNKNOWN - "tts_label_focus_wrapper/focus_border": T.BUTTON - default_indent: T.IMAGE - edit_box_indent: T.IMAGE - edit_box_indent_hover: T.IMAGE - transparent_edit_box_indent: T.IMAGE - transparent_edit_box_indent_hover: T.IMAGE - text_edit_box_label: T.LABEL - text_edit_box_place_holder_label: T.LABEL - text_magnifying_glass_image: T.IMAGE - text_close_X_button_image: T.IMAGE - text_close_X_button_image_hover: T.IMAGE - clear_text_button: T.BUTTON - "clear_text_button/default": T.IMAGE - "clear_text_button/hover": T.IMAGE - "clear_text_button/pressed": T.IMAGE - text_edit_box: T.EDIT_BOX - "text_edit_box/centering_panel": T.PANEL - "text_edit_box/centering_panel/clipper_panel": T.PANEL - "text_edit_box/centering_panel/clipper_panel/magnifying_glass": T.IMAGE - "text_edit_box/centering_panel/clipper_panel/clear_text_button_panel": T.PANEL - "text_edit_box/centering_panel/clipper_panel/clear_text_button_panel/clear_text_button": T.BUTTON - "text_edit_box/centering_panel/clipper_panel/visibility_panel": T.PANEL - "text_edit_box/centering_panel/clipper_panel/visibility_panel/place_holder_control": T.UNKNOWN - "text_edit_box/locked": T.PANEL - "text_edit_box/locked/edit_box_indent": T.UNKNOWN - "text_edit_box/default": T.UNKNOWN - "text_edit_box/hover": T.UNKNOWN - "text_edit_box/pressed": T.UNKNOWN - text_edit_box_scrolling_content: T.INPUT_PANEL - scrollable_text_edit_box: T.EDIT_BOX - "scrollable_text_edit_box/centering_panel": T.PANEL - "scrollable_text_edit_box/centering_panel/clipper_panel": T.PANEL - "scrollable_text_edit_box/centering_panel/clipper_panel/text_edit_text_control": T.PANEL - "scrollable_text_edit_box/centering_panel/clipper_panel/visibility_panel": T.PANEL - "scrollable_text_edit_box/centering_panel/clipper_panel/visibility_panel/place_holder_control": T.UNKNOWN - "scrollable_text_edit_box/locked": T.PANEL - "scrollable_text_edit_box/locked/edit_box_indent": T.UNKNOWN - "scrollable_text_edit_box/default": T.UNKNOWN - "scrollable_text_edit_box/hover": T.UNKNOWN - "scrollable_text_edit_box/pressed": T.UNKNOWN - transparent_text_edit_box: T.EDIT_BOX - "transparent_text_edit_box/clipper_panel": T.PANEL - "transparent_text_edit_box/clipper_panel/visibility_panel": T.PANEL - "transparent_text_edit_box/clipper_panel/visibility_panel/place_holder_control": T.UNKNOWN - "transparent_text_edit_box/locked": T.PANEL - "transparent_text_edit_box/locked/edit_box_indent": T.UNKNOWN - "transparent_text_edit_box/default": T.UNKNOWN - "transparent_text_edit_box/hover": T.UNKNOWN - "transparent_text_edit_box/pressed": T.UNKNOWN - multiline_text_edit_box: T.EDIT_BOX - scrollable_multiline_text_edit_box: T.EDIT_BOX - dirt_background: T.IMAGE - portal_background: T.IMAGE - empty_progress_bar: T.IMAGE - filled_progress_bar: T.IMAGE - empty_progress_bar_beveled: T.IMAGE - progress_bar_beveled_overlay: T.IMAGE - filled_progress_bar_for_collections: T.IMAGE - progress_bar: T.PANEL - "progress_bar/empty_progress_bar": T.IMAGE - "progress_bar/filled_progress_bar": T.IMAGE - progress_bar_for_collections: T.PANEL - "progress_bar_for_collections/empty_progress_bar": T.IMAGE - "progress_bar_for_collections/filled_progress_bar_for_collections": T.IMAGE - horizontal_divider: T.PANEL - "horizontal_divider/divider_image": T.IMAGE - vertical_divider: T.PANEL - "vertical_divider/divider_image": T.IMAGE - underline: T.IMAGE - single_line_label: T.PANEL - "single_line_label/label_panel": T.LABEL - "single_line_label/label_panel/0": T.UNKNOWN - gamepad_helper_icon_description: T.LABEL - gamepad_helper_icon_image: T.IMAGE - keyboard_helper_icon_image: T.IMAGE - gamepad_helper: T.STACK_PANEL - "gamepad_helper/icon_panel": T.PANEL - "gamepad_helper/description_panel": T.PANEL - "gamepad_helper/description_panel/desc": T.UNKNOWN - gamepad_helpers: T.STACK_PANEL - gamepad_helpers_a_and_b: T.STACK_PANEL - "gamepad_helpers_a_and_b/gamepad_helper_a": T.STACK_PANEL - "gamepad_helpers_a_and_b/control": T.PANEL - "gamepad_helpers_a_and_b/gamepad_helper_b": T.STACK_PANEL - container_gamepad_helpers: T.STACK_PANEL - "container_gamepad_helpers/fill_panel": T.PANEL - "container_gamepad_helpers/buttons": T.STACK_PANEL - "container_gamepad_helpers/buttons/gamepad_helper_x": T.UNKNOWN - "container_gamepad_helpers/buttons/gamepad_helper_a": T.UNKNOWN - "container_gamepad_helpers/buttons/gamepad_helper_y": T.UNKNOWN - "container_gamepad_helpers/buttons/gamepad_helper_b": T.UNKNOWN - "container_gamepad_helpers/buffer_panel_right": T.PANEL - tabs_left_gamepad_helpers: T.PANEL - "tabs_left_gamepad_helpers/gamepad_helper_left_bumper": T.STACK_PANEL - "tabs_left_gamepad_helpers/gamepad_helper_left_trigger": T.STACK_PANEL - tabs_right_gamepad_helpers: T.PANEL - "tabs_right_gamepad_helpers/gamepad_helper_right_bumper": T.STACK_PANEL - "tabs_right_gamepad_helpers/gamepad_helper_right_trigger": T.STACK_PANEL - keyboard_helper_description: T.LABEL - keyboard_helper: T.STACK_PANEL - "keyboard_helper/image_centerer": T.PANEL - "keyboard_helper/image_centerer/image": T.IMAGE - "keyboard_helper/image_centerer/image/keyboard_character": T.LABEL - "keyboard_helper/centerer": T.PANEL - "keyboard_helper/centerer/desc": T.UNKNOWN - keyboard_helpers: T.PANEL - gamepad_icon_button: T.IMAGE - gamepad_helper_start: T.STACK_PANEL - gamepad_helper_a: T.STACK_PANEL - gamepad_helper_a_14: T.STACK_PANEL - gamepad_helper_b: T.STACK_PANEL - gamepad_helper_b_14: T.STACK_PANEL - gamepad_helper_x: T.STACK_PANEL - gamepad_helper_x_14: T.STACK_PANEL - gamepad_helper_y: T.STACK_PANEL - gamepad_helper_y_14: T.STACK_PANEL - keyboard_helper_keys: T.STACK_PANEL - gamepad_helper_left_trigger: T.STACK_PANEL - gamepad_helper_right_trigger: T.STACK_PANEL - keyboard_left_trigger: T.STACK_PANEL - keyboard_right_trigger: T.STACK_PANEL - gamepad_icon_dpad: T.IMAGE - gamepad_helper_dpad: T.STACK_PANEL - gamepad_helper_dpad_down: T.STACK_PANEL - gamepad_helper_dpad_left: T.STACK_PANEL - gamepad_helper_dpad_right: T.STACK_PANEL - gamepad_helper_dpad_up: T.STACK_PANEL - gamepad_icon_thumbstick: T.IMAGE - gamepad_helper_thumbstick: T.STACK_PANEL - gamepad_helper_thumbstick_right: T.STACK_PANEL - gamepad_helper_thumbstick_left: T.STACK_PANEL - gamepad_helper_left_bumper: T.STACK_PANEL - gamepad_helper_right_bumper: T.STACK_PANEL - dialog_background_common: T.IMAGE - dialog_background_hollow_common: T.IMAGE - "dialog_background_hollow_common/control": T.IMAGE - dialog_background_opaque: T.IMAGE - dialog_background_hollow_1: T.IMAGE - dialog_background_hollow_2: T.IMAGE - dialog_background_hollow_3: T.IMAGE - dialog_background_hollow_4: T.IMAGE - dialog_background_hollow_4_thin: T.IMAGE - dialog_background_hollow_5: T.IMAGE - dialog_background_hollow_6: T.IMAGE - dialog_background_hollow_7: T.IMAGE - dialog_background_hollow_8: T.IMAGE - dialog_divider: T.IMAGE - normal_button: T.IMAGE - normal_stroke_button: T.IMAGE - section_heading_label: T.LABEL - section_divider: T.STACK_PANEL - "section_divider/padding1": T.PANEL - "section_divider/divider_parent": T.PANEL - "section_divider/divider_parent/divider": T.IMAGE - "section_divider/padding2": T.PANEL - minecraftTenLabel: T.LABEL - close_button_image: T.IMAGE - close_button_panel: T.PANEL - "close_button_panel/close_button_image": T.IMAGE - close_button: T.BUTTON - "close_button/default": T.PANEL - "close_button/hover": T.PANEL - "close_button/pressed": T.PANEL - close_button_grey_bg: T.BUTTON - "close_button_grey_bg/default": T.PANEL - "close_button_grey_bg/hover": T.PANEL - "close_button_grey_bg/pressed": T.PANEL - close_button_high_contrast: T.BUTTON - "close_button_high_contrast/background": T.IMAGE - "close_button_high_contrast/default": T.PANEL - "close_button_high_contrast/hover": T.PANEL - "close_button_high_contrast/pressed": T.PANEL - compact_close_button: T.BUTTON - "compact_close_button/default": T.PANEL - "compact_close_button/hover": T.PANEL - "compact_close_button/pressed": T.PANEL - light_close_button: T.BUTTON - "light_close_button/default": T.PANEL - "light_close_button/hover": T.PANEL - "light_close_button/pressed": T.PANEL - help_button: T.BUTTON - "help_button/default": T.IMAGE - "help_button/hover": T.IMAGE - "help_button/pressed": T.IMAGE - cell_image: T.IMAGE - cell_image_selected: T.IMAGE - cell_image_panel: T.PANEL - "cell_image_panel/cell_image": T.IMAGE - "cell_image_panel/cell_image_selected": T.IMAGE - cell_overlay: T.UNKNOWN - highlight_slot: T.IMAGE - white_border_slot: T.IMAGE - progressive_select_progress_bar: T.PANEL - "progressive_select_progress_bar/stack_progress_bar_down": T.IMAGE - "progressive_select_progress_bar/stack_progress_bar_down/progressive_select_progress_bar": T.IMAGE - "progressive_select_progress_bar/stack_progress_bar_down/progressive_select_text": T.LABEL - stack_splitting_overlay: T.PANEL - "stack_splitting_overlay/classic_stack_splitting_overlay": T.PANEL - "stack_splitting_overlay/classic_stack_splitting_overlay/stack_splitting_bar": T.PANEL - "stack_splitting_overlay/pocket_stack_splitting_overlay": T.PANEL - "stack_splitting_overlay/pocket_stack_splitting_overlay/stack_splitting_bar": T.PANEL - inventory_hold_icon_holding: T.PANEL - "inventory_hold_icon_holding/progressive_down": T.PANEL - "inventory_hold_icon_holding/progressive_up": T.PANEL - "inventory_hold_icon_holding/progressive_left_side": T.PANEL - "inventory_hold_icon_holding/progressive_right_side": T.PANEL - inventory_hold_icon_release: T.CUSTOM - highlight_slot_panel: T.PANEL - "highlight_slot_panel/highlight": T.IMAGE - "highlight_slot_panel/highlight/hover_text": T.CUSTOM - "highlight_slot_panel/white_border": T.IMAGE - pocket_ui_highlight_slot: T.IMAGE - hover_text: T.CUSTOM - screen_background: T.IMAGE - stack_count_label: T.LABEL - durability_bar: T.CUSTOM - durability_bar_grabbed: T.CUSTOM - storage_bar: T.CUSTOM - storage_bar_grabbed: T.CUSTOM - item_renderer: T.CUSTOM - filtered_item_renderer: T.CUSTOM - flying_item_renderer: T.CUSTOM - selected_item_details: T.PANEL - "selected_item_details/item_panel_image": T.IMAGE - item_panel_image: T.IMAGE - "item_panel_image/item_text_label": T.LABEL - item_text_label: T.LABEL - selected_item_details_factory: T.FACTORY - item_lock_notification: T.PANEL - "item_lock_notification/notification_background_image": T.IMAGE - "item_lock_notification/notification_background_image/notification_text_label": T.LABEL - item_lock_notification_factory: T.FACTORY - empty_panel_size_y_0: T.PANEL - scroll_background_and_viewport: T.PANEL - "scroll_background_and_viewport/background": T.UNKNOWN - "scroll_background_and_viewport/scrolling_view_port": T.PANEL - "scroll_background_and_viewport/scrolling_view_port/scrolling_content": T.UNKNOWN - scroll_bar_and_track: T.PANEL - "scroll_bar_and_track/stack_panel": T.STACK_PANEL - "scroll_bar_and_track/stack_panel/empty_panel_0": T.PANEL - "scroll_bar_and_track/stack_panel/panel": T.PANEL - "scroll_bar_and_track/stack_panel/panel/centered_panel": T.PANEL - "scroll_bar_and_track/stack_panel/panel/centered_panel/track": T.SCROLL_TRACK - "scroll_bar_and_track/stack_panel/panel/centered_panel/scroll_box": T.PANEL - "scroll_bar_and_track/stack_panel/empty_panel_1": T.PANEL - scroll_view_control: T.SCROLL_VIEW - "scroll_view_control/stack_panel": T.STACK_PANEL - "scroll_view_control/stack_panel/background_and_viewport": T.PANEL - "scroll_view_control/stack_panel/bar_and_track": T.PANEL - "scroll_view_control/panel": T.PANEL - "scroll_view_control/panel/background_and_viewport": T.PANEL - "scroll_view_control/panel/bar_and_track": T.PANEL - scrollbar_track: T.SCROLL_TRACK - "scrollbar_track/bar_indent": T.UNKNOWN - scroll_box: T.PANEL - "scroll_box/box": T.SCROLLBAR_BOX - "scroll_box/box/mouse_box": T.UNKNOWN - "scroll_box/box/touch_box": T.UNKNOWN - scroll_box_indent: T.IMAGE - scrollbar_box_image: T.IMAGE - touch_scrollbar_box_image: T.IMAGE - new_touch_scrollbar_box_image: T.IMAGE - container_touch_scrollbar_box_image: T.IMAGE - scroll_indent_image: T.IMAGE - scrolling_panel_base: T.INPUT_PANEL - scrolling_panel: T.PANEL - "scrolling_panel/scroll_touch": T.INPUT_PANEL - "scrolling_panel/scroll_mouse": T.INPUT_PANEL - scrolling_panel_with_offset: T.PANEL - container_slot_button_prototype: T.BUTTON - "container_slot_button_prototype/hover": T.UNKNOWN - no_coalesce_container_slot_button: T.BUTTON - pocket_ui_container_slot: T.BUTTON - "pocket_ui_container_slot/hover": T.PANEL - "pocket_ui_container_slot/hover/highlight_square": T.IMAGE - slot_selected: T.IMAGE - "slot_selected/progress_bar_release": T.CUSTOM - container_item: T.INPUT_PANEL - "container_item/item_cell": T.PANEL - "container_item/item_cell/item": T.PANEL - "container_item/item_cell/item/stack_count_label": T.LABEL - "container_item/item_cell/durability_bar": T.CUSTOM - "container_item/item_cell/storage_bar": T.CUSTOM - "container_item/item_cell_overlay_ref": T.UNKNOWN - "container_item/item_selected_image": T.IMAGE - "container_item/item_button_ref": T.UNKNOWN - "container_item/container_item_lock_overlay": T.PANEL - "container_item/item_lock_cell_image": T.IMAGE - "container_item/bundle_slot_panel": T.PANEL - pocket_ui_container_item: T.INPUT_PANEL - pocket_ui_large_container_item: T.INPUT_PANEL - container_item_lock_yellow: T.IMAGE - container_item_lock_red: T.IMAGE - container_item_lock_overlay: T.PANEL - "container_item_lock_overlay/container_item_lock_yellow": T.IMAGE - "container_item_lock_overlay/container_item_lock_red": T.IMAGE - item_lock_cell_image: T.IMAGE - container_grid: T.GRID - pocket_container_grid: T.GRID - container_scroll_box_image: T.IMAGE - container_scroll_bar_side_rails: T.IMAGE - container_scrollbar_track: T.PANEL - "container_scrollbar_track/rails": T.IMAGE - container_scroll_background_image: T.IMAGE - container_scroll_panel: T.PANEL - pocket_ui_highlight_selected_slot: T.IMAGE - pocket_hotbar_panel: T.INPUT_PANEL - "pocket_hotbar_panel/bg": T.PANEL - "pocket_hotbar_panel/hotbar_grid": T.GRID - drop_item_panel: T.INPUT_PANEL - pocket_hotbar_and_content_panels: T.STACK_PANEL - "pocket_hotbar_and_content_panels/pocket_content_panels": T.STACK_PANEL - "pocket_hotbar_and_content_panels/hotbar_drop_item_panel": T.INPUT_PANEL - "pocket_hotbar_and_content_panels/hotbar_drop_item_panel/pocket_hotbar_panel": T.INPUT_PANEL - blank_pocket_content_panel: T.PANEL - pocket_content_panels: T.STACK_PANEL - "pocket_content_panels/left_panel": T.UNKNOWN - "pocket_content_panels/offset_panel": T.INPUT_PANEL - "pocket_content_panels/offset_panel/center_bg": T.IMAGE - "pocket_content_panels/right_panel": T.UNKNOWN - inventory_selected_icon: T.CUSTOM - inventory_selected_stack_size_text: T.LABEL - inventory_hold_icon: T.CUSTOM - inventory_selected_item_lock_overlay: T.PANEL - "inventory_selected_item_lock_overlay/container_item_lock_yellow": T.IMAGE - "inventory_selected_item_lock_overlay/container_item_lock_red": T.IMAGE - inventory_icon_panel: T.PANEL - "inventory_icon_panel/selected_item_icon": T.CUSTOM - "inventory_icon_panel/selected_stack_size_text": T.LABEL - "inventory_icon_panel/selected_item_lock_overlay": T.PANEL - "inventory_icon_panel/hover_text": T.CUSTOM - inventory_selected_icon_button: T.BUTTON - "inventory_selected_icon_button/default": T.PANEL - "inventory_selected_icon_button/pressed": T.PANEL - "inventory_selected_icon_button/hover": T.PANEL - "inventory_selected_icon_button/durability_bar_grabbed": T.CUSTOM - "inventory_selected_icon_button/storage_bar_grabbed": T.CUSTOM - inventory_take_progress_icon_button: T.BUTTON - "inventory_take_progress_icon_button/default": T.CUSTOM - "inventory_take_progress_icon_button/pressed": T.CUSTOM - "inventory_take_progress_icon_button/hover": T.CUSTOM - gamepad_cursor_image: T.IMAGE - gamepad_cursor_button: T.BUTTON - "gamepad_cursor_button/default": T.IMAGE - "gamepad_cursor_button/pressed": T.IMAGE - "gamepad_cursor_button/hover": T.IMAGE - grid_item_for_inventory: T.INPUT_PANEL - grid_item_for_hotbar: T.INPUT_PANEL - hotbar_grid_template: T.GRID - inventory_panel: T.PANEL - "inventory_panel/inventory_grid": T.GRID - inventory_panel_bottom_half: T.PANEL - "inventory_panel_bottom_half/inventory_panel": T.PANEL - inventory_panel_bottom_half_with_label: T.PANEL - "inventory_panel_bottom_half_with_label/inventory_panel": T.PANEL - "inventory_panel_bottom_half_with_label/inventory_label": T.LABEL - common_panel: T.PANEL - "common_panel/bg_image": T.UNKNOWN - "common_panel/dialog_divider": T.IMAGE - "common_panel/close_button_holder": T.PANEL - "common_panel/close_button_holder/close": T.BUTTON - "common_panel/close_button_holder/compact_close": T.BUTTON - root_panel: T.INPUT_PANEL - input_panel: T.INPUT_PANEL - base_screen: T.SCREEN - "base_screen/variables_button_mappings_and_controls": T.INPUT_PANEL - "base_screen/variables_button_mappings_and_controls/bg_no_safezone_screen_panel": T.UNKNOWN - "base_screen/variables_button_mappings_and_controls/safezone_screen_matrix": T.STACK_PANEL - "base_screen/variables_button_mappings_and_controls/screen_background": T.PANEL - "base_screen/loading_bars_background": T.IMAGE - "base_screen/loading_bars_background/loading_bars": T.IMAGE - render_below_base_screen: T.SCREEN - safezone_buffer: T.PANEL - top_safezone_vertical_buffer: T.PANEL - bottom_safezone_vertical_buffer: T.PANEL - left_safezone_horizontal_buffer: T.PANEL - right_safezone_horizontal_buffer: T.PANEL - safe_zone_stack: T.STACK_PANEL - "safe_zone_stack/top_outer_control": T.UNKNOWN - "safe_zone_stack/top_inner_control": T.UNKNOWN - "safe_zone_stack/header_bar": T.UNKNOWN - safezone_inner_matrix: T.STACK_PANEL - "safezone_inner_matrix/outer_top": T.PANEL - "safezone_inner_matrix/outer_top/top_side_control": T.UNKNOWN - "safezone_inner_matrix/inner_top": T.PANEL - "safezone_inner_matrix/inner_top/top_side_control": T.UNKNOWN - "safezone_inner_matrix/safezone_screen_panel": T.PANEL - "safezone_inner_matrix/inner_bottom": T.PANEL - "safezone_inner_matrix/outer_bottom": T.PANEL - safezone_outer_matrix: T.STACK_PANEL - "safezone_outer_matrix/outer_left": T.PANEL - "safezone_outer_matrix/outer_left/outer_left_safe_zone_stack": T.STACK_PANEL - "safezone_outer_matrix/inner_left": T.PANEL - "safezone_outer_matrix/inner_left/inner_left_safe_zone_stack": T.STACK_PANEL - "safezone_outer_matrix/inner_matrix": T.STACK_PANEL - "safezone_outer_matrix/inner_right": T.PANEL - "safezone_outer_matrix/inner_right/inner_right_safe_zone_stack": T.STACK_PANEL - "safezone_outer_matrix/outer_right": T.PANEL - "safezone_outer_matrix/outer_right/outer_right_safe_zone_stack": T.STACK_PANEL - bundle_tooltip_wrapper: T.PANEL - "bundle_tooltip_wrapper/bundle_tooltip_factory_wrapper": T.PANEL - "bundle_tooltip_wrapper/bundle_touch_tooltip": T.PANEL - screen_panel: T.PANEL - "screen_panel/root_screen_panel": T.UNKNOWN - "screen_panel/additional_screen_content": T.UNKNOWN - "screen_panel/popup_dialog_factory": T.FACTORY - "screen_panel/bundle_hover_tooltip": T.PANEL - base_screen_empty_panel: T.PANEL - modal_screen: T.SCREEN - realms_error_modal_screen: T.SCREEN - modal_area_panel_base: T.INPUT_PANEL - inactive_modal_pane_fade: T.IMAGE - inventory_screen_common: T.SCREEN - fullscreen_header: T.STACK_PANEL - "fullscreen_header/top_bar": T.IMAGE - "fullscreen_header/top_bar/title_stack_panel": T.STACK_PANEL - "fullscreen_header/top_bar/title_stack_panel/padding1": T.PANEL - "fullscreen_header/top_bar/title_stack_panel/back_button_content_panel": T.PANEL - "fullscreen_header/top_bar/title_stack_panel/padding2": T.PANEL - "fullscreen_header/child_control": T.UNKNOWN - back_content_panel: T.PANEL - "back_content_panel/back_button": T.STACK_PANEL - top_bar: T.IMAGE - tooltip_background: T.IMAGE - tooltip_button_content: T.IMAGE - "tooltip_button_content/tooltip_panel_content": T.UNKNOWN - static_tooltip_popup_with_image_and_text: T.IMAGE - "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel": T.STACK_PANEL - "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel": T.PANEL - "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel": T.PANEL - "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel/0": T.UNKNOWN - "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/padding": T.PANEL - "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text": T.LABEL - "static_tooltip_popup_with_image_and_text/tooltip_chevron": T.IMAGE - dynamic_tooltip_popup_with_custom_content: T.IMAGE - "dynamic_tooltip_popup_with_custom_content/tooltip_content": T.UNKNOWN - "dynamic_tooltip_popup_with_custom_content/tooltip_chevron": T.IMAGE - dynamic_tooltip_popup_with_image_and_text: T.IMAGE - "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel": T.STACK_PANEL - "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel": T.PANEL - "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel": T.PANEL - "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel/0": T.UNKNOWN - "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/padding": T.PANEL - "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text": T.LABEL - "dynamic_tooltip_popup_with_image_and_text/tooltip_chevron": T.IMAGE - dynamic_tooltip_left: T.IMAGE - dynamic_tooltip_below: T.IMAGE - dynamic_custom_tooltip_below: T.IMAGE - dynamic_tooltip: T.PANEL - "dynamic_tooltip/above": T.PANEL - "dynamic_tooltip/above/content": T.IMAGE - "dynamic_tooltip/below": T.PANEL - "dynamic_tooltip/below/content": T.IMAGE - legacy_pocket_close_button_default: T.IMAGE - legacy_pocket_close_button_pressed: T.IMAGE - legacy_pocket_close_button: T.BUTTON - "legacy_pocket_close_button/default": T.IMAGE - "legacy_pocket_close_button/hover": T.IMAGE - "legacy_pocket_close_button/pressed": T.IMAGE - info_icon: T.IMAGE - error_glyph: T.IMAGE - service_repo_image_panel: T.PANEL - "service_repo_image_panel/service_repo_image": T.IMAGE - "service_repo_image_panel/progress_loading": T.PANEL - common_cycler: T.UNKNOWN - image_cycler: T.IMAGE_CYCLER - text_cycler: T.LABEL_CYCLER - squaring_panel: T.PANEL - "squaring_panel/squaring_panel": T.PANEL - "squaring_panel/squaring_panel/squaring_panel_content": T.UNKNOWN + "empty_panel": T.PANEL, + "vertical_padding_8px": T.PANEL, + "horizontal_padding_2px": T.PANEL, + "empty_image": T.IMAGE, + "horizontal_stack_panel": T.STACK_PANEL, + "vertical_stack_panel": T.STACK_PANEL, + "vert_stack_centering_panel": T.PANEL, + "vert_stack_centering_panel/stack_content": T.UNKNOWN, + "button": T.BUTTON, + "screen_header_title_panel": T.PANEL, + "screen_header_title_panel/store_header_title": T.LABEL, + "back_button": T.BUTTON, + "back_title_button": T.STACK_PANEL, + "back_title_button/panel1": T.PANEL, + "back_title_button/panel1/button": T.BUTTON, + "back_title_button/padding1": T.PANEL, + "back_title_button/panel2": T.PANEL, + "back_title_button/panel2/label": T.LABEL, + "chevron_image": T.IMAGE, + "back_button_content": T.STACK_PANEL, + "back_button_content/chevron_panel": T.PANEL, + "back_button_content/chevron_panel/left_chevron": T.IMAGE, + "back_button_content/padding1": T.PANEL, + "back_button_content/label_panel": T.PANEL, + "back_button_content/label_panel/label": T.LABEL, + "label_hover": T.PANEL, + "label_hover/hover": T.IMAGE, + "tts_activate_sibling": T.BUTTON, + "tts_activate_sibling/default": T.PANEL, + "tts_activate_sibling/pressed": T.PANEL, + "tts_activate_sibling/hover": T.PANEL, + "back_title_button_content": T.STACK_PANEL, + "back_title_button_content/padding1": T.PANEL, + "back_title_button_content/chevron_panel": T.PANEL, + "back_title_button_content/chevron_panel/left_chevron": T.IMAGE, + "back_title_button_content/padding2": T.PANEL, + "toggle_visuals": T.PANEL, + "toggle_visuals/unchecked": T.UNKNOWN, + "toggle_visuals/checked": T.UNKNOWN, + "toggle_visuals/unchecked_hover": T.UNKNOWN, + "toggle_visuals/checked_hover": T.UNKNOWN, + "toggle_visuals/unchecked_locked": T.UNKNOWN, + "toggle_visuals/checked_locked": T.UNKNOWN, + "toggle_visuals/unchecked_locked_hover": T.UNKNOWN, + "toggle_visuals/checked_locked_hover": T.UNKNOWN, + "toggle": T.PANEL, + "radio_toggle": T.PANEL, + "checkbox": T.PANEL, + "checkbox_image": T.IMAGE, + "checked_image": T.IMAGE, + "unchecked_image": T.IMAGE, + "checked_hover_image": T.IMAGE, + "unchecked_hover_image": T.IMAGE, + "rotating_text": T.CAROUSEL_LABEL, + "button_text": T.LABEL, + "toggle_state_template": T.IMAGE, + "new_button_label": T.LABEL, + "checkbox_checked_state": T.IMAGE, + "checkbox_unchecked_state": T.IMAGE, + "checkbox_checked_hover_state": T.IMAGE, + "checkbox_unchecked_hover_state": T.IMAGE, + "checkbox_checked_locked_state": T.IMAGE, + "checkbox_unchecked_locked_state": T.IMAGE, + "radio_toggle_checked_state": T.IMAGE, + "radio_toggle_unchecked_state": T.IMAGE, + "radio_toggle_checked_hover_state": T.IMAGE, + "radio_toggle_unchecked_hover_state": T.IMAGE, + "radio_toggle_checked_locked_state": T.IMAGE, + "radio_toggle_unchecked_locked_state": T.IMAGE, + "slider_button_state": T.IMAGE, + "slider_button_layout": T.IMAGE, + "slider_button_hover_layout": T.IMAGE, + "slider_button_locked_layout": T.IMAGE, + "slider_button_indent_layout": T.IMAGE, + "slider_box": T.SLIDER_BOX, + "slider_box/default": T.UNKNOWN, + "slider_box/hover": T.UNKNOWN, + "slider_box/indent": T.UNKNOWN, + "slider_box/locked": T.UNKNOWN, + "slider_box/locked/transparent_grey": T.IMAGE, + "slider_background": T.IMAGE, + "slider_background_hover": T.IMAGE, + "slider_progress": T.IMAGE, + "slider_progress_hover": T.IMAGE, + "slider_border": T.IMAGE, + "slider_bar_default": T.IMAGE, + "slider_bar_default/sizing_panel": T.PANEL, + "slider_bar_default/transparent_grey": T.IMAGE, + "slider_bar_hover": T.IMAGE, + "slider_step": T.IMAGE, + "slider_step_hover": T.IMAGE, + "slider_step_progress": T.IMAGE, + "slider_step_progress_hover": T.IMAGE, + "slider": T.SLIDER, + "slider/slider_box": T.SLIDER_BOX, + "slider/slider_bar_default": T.IMAGE, + "slider/slider_bar_hover": T.IMAGE, + "dropdown_background": T.IMAGE, + "dropdown": T.PANEL, + "dropdown/dropdown_content": T.INPUT_PANEL, + "dropdown/dropdown_content/0": T.UNKNOWN, + "dropdown_no_scrollpanel": T.PANEL, + "square_image_border_white": T.IMAGE, + "focus_border_white": T.IMAGE, + "focus_border_yellow": T.IMAGE, + "focus_border_black": T.IMAGE, + "non_interact_focus_border": T.IMAGE, + "non_interact_focus_border_button": T.BUTTON, + "non_interact_focus_border_button/default": T.UNKNOWN, + "non_interact_focus_border_button/hover": T.UNKNOWN, + "non_interact_focus_border_button/pressed": T.UNKNOWN, + "non_interact_focus_border_button/content": T.UNKNOWN, + "tts_label_focus_wrapper": T.PANEL, + "tts_label_focus_wrapper/label": T.UNKNOWN, + "tts_label_focus_wrapper/focus_border": T.BUTTON, + "default_indent": T.IMAGE, + "edit_box_indent": T.IMAGE, + "edit_box_indent_hover": T.IMAGE, + "transparent_edit_box_indent": T.IMAGE, + "transparent_edit_box_indent_hover": T.IMAGE, + "text_edit_box_label": T.LABEL, + "text_edit_box_place_holder_label": T.LABEL, + "text_magnifying_glass_image": T.IMAGE, + "text_close_X_button_image": T.IMAGE, + "text_close_X_button_image_hover": T.IMAGE, + "clear_text_button": T.BUTTON, + "clear_text_button/default": T.IMAGE, + "clear_text_button/hover": T.IMAGE, + "clear_text_button/pressed": T.IMAGE, + "text_edit_box": T.EDIT_BOX, + "text_edit_box/centering_panel": T.PANEL, + "text_edit_box/centering_panel/clipper_panel": T.PANEL, + "text_edit_box/centering_panel/clipper_panel/magnifying_glass": T.IMAGE, + "text_edit_box/centering_panel/clipper_panel/clear_text_button_panel": T.PANEL, + "text_edit_box/centering_panel/clipper_panel/clear_text_button_panel/clear_text_button": T.BUTTON, + "text_edit_box/centering_panel/clipper_panel/visibility_panel": T.PANEL, + "text_edit_box/centering_panel/clipper_panel/visibility_panel/place_holder_control": T.UNKNOWN, + "text_edit_box/locked": T.PANEL, + "text_edit_box/locked/edit_box_indent": T.UNKNOWN, + "text_edit_box/default": T.UNKNOWN, + "text_edit_box/hover": T.UNKNOWN, + "text_edit_box/pressed": T.UNKNOWN, + "text_edit_box_scrolling_content": T.INPUT_PANEL, + "scrollable_text_edit_box": T.EDIT_BOX, + "scrollable_text_edit_box/centering_panel": T.PANEL, + "scrollable_text_edit_box/centering_panel/clipper_panel": T.PANEL, + "scrollable_text_edit_box/centering_panel/clipper_panel/text_edit_text_control": T.PANEL, + "scrollable_text_edit_box/centering_panel/clipper_panel/visibility_panel": T.PANEL, + "scrollable_text_edit_box/centering_panel/clipper_panel/visibility_panel/place_holder_control": T.UNKNOWN, + "scrollable_text_edit_box/locked": T.PANEL, + "scrollable_text_edit_box/locked/edit_box_indent": T.UNKNOWN, + "scrollable_text_edit_box/default": T.UNKNOWN, + "scrollable_text_edit_box/hover": T.UNKNOWN, + "scrollable_text_edit_box/pressed": T.UNKNOWN, + "transparent_text_edit_box": T.EDIT_BOX, + "transparent_text_edit_box/clipper_panel": T.PANEL, + "transparent_text_edit_box/clipper_panel/visibility_panel": T.PANEL, + "transparent_text_edit_box/clipper_panel/visibility_panel/place_holder_control": T.UNKNOWN, + "transparent_text_edit_box/locked": T.PANEL, + "transparent_text_edit_box/locked/edit_box_indent": T.UNKNOWN, + "transparent_text_edit_box/default": T.UNKNOWN, + "transparent_text_edit_box/hover": T.UNKNOWN, + "transparent_text_edit_box/pressed": T.UNKNOWN, + "multiline_text_edit_box": T.EDIT_BOX, + "scrollable_multiline_text_edit_box": T.EDIT_BOX, + "dirt_background": T.IMAGE, + "portal_background": T.IMAGE, + "empty_progress_bar": T.IMAGE, + "filled_progress_bar": T.IMAGE, + "empty_progress_bar_beveled": T.IMAGE, + "progress_bar_beveled_overlay": T.IMAGE, + "filled_progress_bar_for_collections": T.IMAGE, + "progress_bar": T.PANEL, + "progress_bar/empty_progress_bar": T.IMAGE, + "progress_bar/filled_progress_bar": T.IMAGE, + "progress_bar_for_collections": T.PANEL, + "progress_bar_for_collections/empty_progress_bar": T.IMAGE, + "progress_bar_for_collections/filled_progress_bar_for_collections": T.IMAGE, + "horizontal_divider": T.PANEL, + "horizontal_divider/divider_image": T.IMAGE, + "vertical_divider": T.PANEL, + "vertical_divider/divider_image": T.IMAGE, + "underline": T.IMAGE, + "single_line_label": T.PANEL, + "single_line_label/label_panel": T.LABEL, + "single_line_label/label_panel/0": T.UNKNOWN, + "gamepad_helper_icon_description": T.LABEL, + "gamepad_helper_icon_image": T.IMAGE, + "keyboard_helper_icon_image": T.IMAGE, + "gamepad_helper": T.STACK_PANEL, + "gamepad_helper/icon_panel": T.PANEL, + "gamepad_helper/description_panel": T.PANEL, + "gamepad_helper/description_panel/desc": T.UNKNOWN, + "gamepad_helpers": T.STACK_PANEL, + "gamepad_helpers_a_and_b": T.STACK_PANEL, + "gamepad_helpers_a_and_b/gamepad_helper_a": T.STACK_PANEL, + "gamepad_helpers_a_and_b/control": T.PANEL, + "gamepad_helpers_a_and_b/gamepad_helper_b": T.STACK_PANEL, + "container_gamepad_helpers": T.STACK_PANEL, + "container_gamepad_helpers/fill_panel": T.PANEL, + "container_gamepad_helpers/buttons": T.STACK_PANEL, + "container_gamepad_helpers/buttons/gamepad_helper_x": T.UNKNOWN, + "container_gamepad_helpers/buttons/gamepad_helper_a": T.UNKNOWN, + "container_gamepad_helpers/buttons/gamepad_helper_y": T.UNKNOWN, + "container_gamepad_helpers/buttons/gamepad_helper_b": T.UNKNOWN, + "container_gamepad_helpers/buffer_panel_right": T.PANEL, + "tabs_left_gamepad_helpers": T.PANEL, + "tabs_left_gamepad_helpers/gamepad_helper_left_bumper": T.STACK_PANEL, + "tabs_left_gamepad_helpers/gamepad_helper_left_trigger": T.STACK_PANEL, + "tabs_right_gamepad_helpers": T.PANEL, + "tabs_right_gamepad_helpers/gamepad_helper_right_bumper": T.STACK_PANEL, + "tabs_right_gamepad_helpers/gamepad_helper_right_trigger": T.STACK_PANEL, + "keyboard_helper_description": T.LABEL, + "keyboard_helper": T.STACK_PANEL, + "keyboard_helper/image_centerer": T.PANEL, + "keyboard_helper/image_centerer/image": T.IMAGE, + "keyboard_helper/image_centerer/image/keyboard_character": T.LABEL, + "keyboard_helper/centerer": T.PANEL, + "keyboard_helper/centerer/desc": T.UNKNOWN, + "keyboard_helpers": T.PANEL, + "gamepad_icon_button": T.IMAGE, + "gamepad_helper_start": T.STACK_PANEL, + "gamepad_helper_a": T.STACK_PANEL, + "gamepad_helper_a_14": T.STACK_PANEL, + "gamepad_helper_b": T.STACK_PANEL, + "gamepad_helper_b_14": T.STACK_PANEL, + "gamepad_helper_x": T.STACK_PANEL, + "gamepad_helper_x_14": T.STACK_PANEL, + "gamepad_helper_y": T.STACK_PANEL, + "gamepad_helper_y_14": T.STACK_PANEL, + "keyboard_helper_keys": T.STACK_PANEL, + "gamepad_helper_left_trigger": T.STACK_PANEL, + "gamepad_helper_right_trigger": T.STACK_PANEL, + "keyboard_left_trigger": T.STACK_PANEL, + "keyboard_right_trigger": T.STACK_PANEL, + "gamepad_icon_dpad": T.IMAGE, + "gamepad_helper_dpad": T.STACK_PANEL, + "gamepad_helper_dpad_down": T.STACK_PANEL, + "gamepad_helper_dpad_left": T.STACK_PANEL, + "gamepad_helper_dpad_right": T.STACK_PANEL, + "gamepad_helper_dpad_up": T.STACK_PANEL, + "gamepad_icon_thumbstick": T.IMAGE, + "gamepad_helper_thumbstick": T.STACK_PANEL, + "gamepad_helper_thumbstick_right": T.STACK_PANEL, + "gamepad_helper_thumbstick_left": T.STACK_PANEL, + "gamepad_helper_left_bumper": T.STACK_PANEL, + "gamepad_helper_right_bumper": T.STACK_PANEL, + "dialog_background_common": T.IMAGE, + "dialog_background_hollow_common": T.IMAGE, + "dialog_background_hollow_common/control": T.IMAGE, + "dialog_background_opaque": T.IMAGE, + "dialog_background_hollow_1": T.IMAGE, + "dialog_background_hollow_2": T.IMAGE, + "dialog_background_hollow_3": T.IMAGE, + "dialog_background_hollow_4": T.IMAGE, + "dialog_background_hollow_4_thin": T.IMAGE, + "dialog_background_hollow_5": T.IMAGE, + "dialog_background_hollow_6": T.IMAGE, + "dialog_background_hollow_7": T.IMAGE, + "dialog_background_hollow_8": T.IMAGE, + "dialog_divider": T.IMAGE, + "normal_button": T.IMAGE, + "normal_stroke_button": T.IMAGE, + "section_heading_label": T.LABEL, + "section_divider": T.STACK_PANEL, + "section_divider/padding1": T.PANEL, + "section_divider/divider_parent": T.PANEL, + "section_divider/divider_parent/divider": T.IMAGE, + "section_divider/padding2": T.PANEL, + "minecraftTenLabel": T.LABEL, + "close_button_image": T.IMAGE, + "close_button_panel": T.PANEL, + "close_button_panel/close_button_image": T.IMAGE, + "close_button": T.BUTTON, + "close_button/default": T.PANEL, + "close_button/hover": T.PANEL, + "close_button/pressed": T.PANEL, + "close_button_grey_bg": T.BUTTON, + "close_button_grey_bg/default": T.PANEL, + "close_button_grey_bg/hover": T.PANEL, + "close_button_grey_bg/pressed": T.PANEL, + "close_button_high_contrast": T.BUTTON, + "close_button_high_contrast/background": T.IMAGE, + "close_button_high_contrast/default": T.PANEL, + "close_button_high_contrast/hover": T.PANEL, + "close_button_high_contrast/pressed": T.PANEL, + "compact_close_button": T.BUTTON, + "compact_close_button/default": T.PANEL, + "compact_close_button/hover": T.PANEL, + "compact_close_button/pressed": T.PANEL, + "light_close_button": T.BUTTON, + "light_close_button/default": T.PANEL, + "light_close_button/hover": T.PANEL, + "light_close_button/pressed": T.PANEL, + "help_button": T.BUTTON, + "help_button/default": T.IMAGE, + "help_button/hover": T.IMAGE, + "help_button/pressed": T.IMAGE, + "cell_image": T.IMAGE, + "cell_image_selected": T.IMAGE, + "cell_image_panel": T.PANEL, + "cell_image_panel/cell_image": T.IMAGE, + "cell_image_panel/cell_image_selected": T.IMAGE, + "cell_overlay": T.UNKNOWN, + "highlight_slot": T.IMAGE, + "white_border_slot": T.IMAGE, + "progressive_select_progress_bar": T.PANEL, + "progressive_select_progress_bar/stack_progress_bar_down": T.IMAGE, + "progressive_select_progress_bar/stack_progress_bar_down/progressive_select_progress_bar": T.IMAGE, + "progressive_select_progress_bar/stack_progress_bar_down/progressive_select_text": T.LABEL, + "stack_splitting_overlay": T.PANEL, + "stack_splitting_overlay/classic_stack_splitting_overlay": T.PANEL, + "stack_splitting_overlay/classic_stack_splitting_overlay/stack_splitting_bar": T.PANEL, + "stack_splitting_overlay/pocket_stack_splitting_overlay": T.PANEL, + "stack_splitting_overlay/pocket_stack_splitting_overlay/stack_splitting_bar": T.PANEL, + "inventory_hold_icon_holding": T.PANEL, + "inventory_hold_icon_holding/progressive_down": T.PANEL, + "inventory_hold_icon_holding/progressive_up": T.PANEL, + "inventory_hold_icon_holding/progressive_left_side": T.PANEL, + "inventory_hold_icon_holding/progressive_right_side": T.PANEL, + "inventory_hold_icon_release": T.CUSTOM, + "highlight_slot_panel": T.PANEL, + "highlight_slot_panel/highlight": T.IMAGE, + "highlight_slot_panel/highlight/hover_text": T.CUSTOM, + "highlight_slot_panel/white_border": T.IMAGE, + "pocket_ui_highlight_slot": T.IMAGE, + "hover_text": T.CUSTOM, + "screen_background": T.IMAGE, + "stack_count_label": T.LABEL, + "durability_bar": T.CUSTOM, + "durability_bar_grabbed": T.CUSTOM, + "storage_bar": T.CUSTOM, + "storage_bar_grabbed": T.CUSTOM, + "item_renderer": T.CUSTOM, + "filtered_item_renderer": T.CUSTOM, + "flying_item_renderer": T.CUSTOM, + "selected_item_details": T.PANEL, + "selected_item_details/item_panel_image": T.IMAGE, + "item_panel_image": T.IMAGE, + "item_panel_image/item_text_label": T.LABEL, + "item_text_label": T.LABEL, + "selected_item_details_factory": T.FACTORY, + "item_lock_notification": T.PANEL, + "item_lock_notification/notification_background_image": T.IMAGE, + "item_lock_notification/notification_background_image/notification_text_label": T.LABEL, + "item_lock_notification_factory": T.FACTORY, + "empty_panel_size_y_0": T.PANEL, + "scroll_background_and_viewport": T.PANEL, + "scroll_background_and_viewport/background": T.UNKNOWN, + "scroll_background_and_viewport/scrolling_view_port": T.PANEL, + "scroll_background_and_viewport/scrolling_view_port/scrolling_content": T.UNKNOWN, + "scroll_bar_and_track": T.PANEL, + "scroll_bar_and_track/stack_panel": T.STACK_PANEL, + "scroll_bar_and_track/stack_panel/empty_panel_0": T.PANEL, + "scroll_bar_and_track/stack_panel/panel": T.PANEL, + "scroll_bar_and_track/stack_panel/panel/centered_panel": T.PANEL, + "scroll_bar_and_track/stack_panel/panel/centered_panel/track": T.SCROLL_TRACK, + "scroll_bar_and_track/stack_panel/panel/centered_panel/scroll_box": T.PANEL, + "scroll_bar_and_track/stack_panel/empty_panel_1": T.PANEL, + "scroll_view_control": T.SCROLL_VIEW, + "scroll_view_control/stack_panel": T.STACK_PANEL, + "scroll_view_control/stack_panel/background_and_viewport": T.PANEL, + "scroll_view_control/stack_panel/bar_and_track": T.PANEL, + "scroll_view_control/panel": T.PANEL, + "scroll_view_control/panel/background_and_viewport": T.PANEL, + "scroll_view_control/panel/bar_and_track": T.PANEL, + "scrollbar_track": T.SCROLL_TRACK, + "scrollbar_track/bar_indent": T.UNKNOWN, + "scroll_box": T.PANEL, + "scroll_box/box": T.SCROLLBAR_BOX, + "scroll_box/box/mouse_box": T.UNKNOWN, + "scroll_box/box/touch_box": T.UNKNOWN, + "scroll_box_indent": T.IMAGE, + "scrollbar_box_image": T.IMAGE, + "touch_scrollbar_box_image": T.IMAGE, + "new_touch_scrollbar_box_image": T.IMAGE, + "container_touch_scrollbar_box_image": T.IMAGE, + "scroll_indent_image": T.IMAGE, + "scrolling_panel_base": T.INPUT_PANEL, + "scrolling_panel": T.PANEL, + "scrolling_panel/scroll_touch": T.INPUT_PANEL, + "scrolling_panel/scroll_mouse": T.INPUT_PANEL, + "scrolling_panel_with_offset": T.PANEL, + "container_slot_button_prototype": T.BUTTON, + "container_slot_button_prototype/hover": T.UNKNOWN, + "no_coalesce_container_slot_button": T.BUTTON, + "pocket_ui_container_slot": T.BUTTON, + "pocket_ui_container_slot/hover": T.PANEL, + "pocket_ui_container_slot/hover/highlight_square": T.IMAGE, + "slot_selected": T.IMAGE, + "slot_selected/progress_bar_release": T.CUSTOM, + "container_item": T.INPUT_PANEL, + "container_item/item_cell": T.PANEL, + "container_item/item_cell/item": T.PANEL, + "container_item/item_cell/item/stack_count_label": T.LABEL, + "container_item/item_cell/durability_bar": T.CUSTOM, + "container_item/item_cell/storage_bar": T.CUSTOM, + "container_item/item_cell_overlay_ref": T.UNKNOWN, + "container_item/item_selected_image": T.IMAGE, + "container_item/item_button_ref": T.UNKNOWN, + "container_item/container_item_lock_overlay": T.PANEL, + "container_item/item_lock_cell_image": T.IMAGE, + "container_item/bundle_slot_panel": T.PANEL, + "pocket_ui_container_item": T.INPUT_PANEL, + "pocket_ui_large_container_item": T.INPUT_PANEL, + "container_item_lock_yellow": T.IMAGE, + "container_item_lock_red": T.IMAGE, + "container_item_lock_overlay": T.PANEL, + "container_item_lock_overlay/container_item_lock_yellow": T.IMAGE, + "container_item_lock_overlay/container_item_lock_red": T.IMAGE, + "item_lock_cell_image": T.IMAGE, + "container_grid": T.GRID, + "pocket_container_grid": T.GRID, + "container_scroll_box_image": T.IMAGE, + "container_scroll_bar_side_rails": T.IMAGE, + "container_scrollbar_track": T.PANEL, + "container_scrollbar_track/rails": T.IMAGE, + "container_scroll_background_image": T.IMAGE, + "container_scroll_panel": T.PANEL, + "pocket_ui_highlight_selected_slot": T.IMAGE, + "pocket_hotbar_panel": T.INPUT_PANEL, + "pocket_hotbar_panel/bg": T.PANEL, + "pocket_hotbar_panel/hotbar_grid": T.GRID, + "drop_item_panel": T.INPUT_PANEL, + "pocket_hotbar_and_content_panels": T.STACK_PANEL, + "pocket_hotbar_and_content_panels/pocket_content_panels": T.STACK_PANEL, + "pocket_hotbar_and_content_panels/hotbar_drop_item_panel": T.INPUT_PANEL, + "pocket_hotbar_and_content_panels/hotbar_drop_item_panel/pocket_hotbar_panel": T.INPUT_PANEL, + "blank_pocket_content_panel": T.PANEL, + "pocket_content_panels": T.STACK_PANEL, + "pocket_content_panels/left_panel": T.UNKNOWN, + "pocket_content_panels/offset_panel": T.INPUT_PANEL, + "pocket_content_panels/offset_panel/center_bg": T.IMAGE, + "pocket_content_panels/right_panel": T.UNKNOWN, + "inventory_selected_icon": T.CUSTOM, + "inventory_selected_stack_size_text": T.LABEL, + "inventory_hold_icon": T.CUSTOM, + "inventory_selected_item_lock_overlay": T.PANEL, + "inventory_selected_item_lock_overlay/container_item_lock_yellow": T.IMAGE, + "inventory_selected_item_lock_overlay/container_item_lock_red": T.IMAGE, + "inventory_icon_panel": T.PANEL, + "inventory_icon_panel/selected_item_icon": T.CUSTOM, + "inventory_icon_panel/selected_stack_size_text": T.LABEL, + "inventory_icon_panel/selected_item_lock_overlay": T.PANEL, + "inventory_icon_panel/hover_text": T.CUSTOM, + "inventory_selected_icon_button": T.BUTTON, + "inventory_selected_icon_button/default": T.PANEL, + "inventory_selected_icon_button/pressed": T.PANEL, + "inventory_selected_icon_button/hover": T.PANEL, + "inventory_selected_icon_button/durability_bar_grabbed": T.CUSTOM, + "inventory_selected_icon_button/storage_bar_grabbed": T.CUSTOM, + "inventory_take_progress_icon_button": T.BUTTON, + "inventory_take_progress_icon_button/default": T.CUSTOM, + "inventory_take_progress_icon_button/pressed": T.CUSTOM, + "inventory_take_progress_icon_button/hover": T.CUSTOM, + "gamepad_cursor_image": T.IMAGE, + "gamepad_cursor_button": T.BUTTON, + "gamepad_cursor_button/default": T.IMAGE, + "gamepad_cursor_button/pressed": T.IMAGE, + "gamepad_cursor_button/hover": T.IMAGE, + "grid_item_for_inventory": T.INPUT_PANEL, + "grid_item_for_hotbar": T.INPUT_PANEL, + "hotbar_grid_template": T.GRID, + "inventory_panel": T.PANEL, + "inventory_panel/inventory_grid": T.GRID, + "inventory_panel_bottom_half": T.PANEL, + "inventory_panel_bottom_half/inventory_panel": T.PANEL, + "inventory_panel_bottom_half_with_label": T.PANEL, + "inventory_panel_bottom_half_with_label/inventory_panel": T.PANEL, + "inventory_panel_bottom_half_with_label/inventory_label": T.LABEL, + "common_panel": T.PANEL, + "common_panel/bg_image": T.UNKNOWN, + "common_panel/dialog_divider": T.IMAGE, + "common_panel/close_button_holder": T.PANEL, + "common_panel/close_button_holder/close": T.BUTTON, + "common_panel/close_button_holder/compact_close": T.BUTTON, + "root_panel": T.INPUT_PANEL, + "input_panel": T.INPUT_PANEL, + "base_screen": T.SCREEN, + "base_screen/variables_button_mappings_and_controls": T.INPUT_PANEL, + "base_screen/variables_button_mappings_and_controls/bg_no_safezone_screen_panel": T.UNKNOWN, + "base_screen/variables_button_mappings_and_controls/safezone_screen_matrix": T.STACK_PANEL, + "base_screen/variables_button_mappings_and_controls/screen_background": T.PANEL, + "base_screen/loading_bars_background": T.IMAGE, + "base_screen/loading_bars_background/loading_bars": T.IMAGE, + "render_below_base_screen": T.SCREEN, + "safezone_buffer": T.PANEL, + "top_safezone_vertical_buffer": T.PANEL, + "bottom_safezone_vertical_buffer": T.PANEL, + "left_safezone_horizontal_buffer": T.PANEL, + "right_safezone_horizontal_buffer": T.PANEL, + "safe_zone_stack": T.STACK_PANEL, + "safe_zone_stack/top_outer_control": T.UNKNOWN, + "safe_zone_stack/top_inner_control": T.UNKNOWN, + "safe_zone_stack/header_bar": T.UNKNOWN, + "safezone_inner_matrix": T.STACK_PANEL, + "safezone_inner_matrix/outer_top": T.PANEL, + "safezone_inner_matrix/outer_top/top_side_control": T.UNKNOWN, + "safezone_inner_matrix/inner_top": T.PANEL, + "safezone_inner_matrix/inner_top/top_side_control": T.UNKNOWN, + "safezone_inner_matrix/safezone_screen_panel": T.PANEL, + "safezone_inner_matrix/inner_bottom": T.PANEL, + "safezone_inner_matrix/outer_bottom": T.PANEL, + "safezone_outer_matrix": T.STACK_PANEL, + "safezone_outer_matrix/outer_left": T.PANEL, + "safezone_outer_matrix/outer_left/outer_left_safe_zone_stack": T.STACK_PANEL, + "safezone_outer_matrix/inner_left": T.PANEL, + "safezone_outer_matrix/inner_left/inner_left_safe_zone_stack": T.STACK_PANEL, + "safezone_outer_matrix/inner_matrix": T.STACK_PANEL, + "safezone_outer_matrix/inner_right": T.PANEL, + "safezone_outer_matrix/inner_right/inner_right_safe_zone_stack": T.STACK_PANEL, + "safezone_outer_matrix/outer_right": T.PANEL, + "safezone_outer_matrix/outer_right/outer_right_safe_zone_stack": T.STACK_PANEL, + "bundle_tooltip_wrapper": T.PANEL, + "bundle_tooltip_wrapper/bundle_tooltip_factory_wrapper": T.PANEL, + "bundle_tooltip_wrapper/bundle_touch_tooltip": T.PANEL, + "screen_panel": T.PANEL, + "screen_panel/root_screen_panel": T.UNKNOWN, + "screen_panel/additional_screen_content": T.UNKNOWN, + "screen_panel/popup_dialog_factory": T.FACTORY, + "screen_panel/bundle_hover_tooltip": T.PANEL, + "base_screen_empty_panel": T.PANEL, + "modal_screen": T.SCREEN, + "realms_error_modal_screen": T.SCREEN, + "modal_area_panel_base": T.INPUT_PANEL, + "inactive_modal_pane_fade": T.IMAGE, + "inventory_screen_common": T.SCREEN, + "fullscreen_header": T.STACK_PANEL, + "fullscreen_header/top_bar": T.IMAGE, + "fullscreen_header/top_bar/title_stack_panel": T.STACK_PANEL, + "fullscreen_header/top_bar/title_stack_panel/padding1": T.PANEL, + "fullscreen_header/top_bar/title_stack_panel/back_button_content_panel": T.PANEL, + "fullscreen_header/top_bar/title_stack_panel/padding2": T.PANEL, + "fullscreen_header/child_control": T.UNKNOWN, + "back_content_panel": T.PANEL, + "back_content_panel/back_button": T.STACK_PANEL, + "top_bar": T.IMAGE, + "tooltip_background": T.IMAGE, + "tooltip_button_content": T.IMAGE, + "tooltip_button_content/tooltip_panel_content": T.UNKNOWN, + "static_tooltip_popup_with_image_and_text": T.IMAGE, + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel": T.STACK_PANEL, + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel": T.PANEL, + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel": T.PANEL, + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel/0": T.UNKNOWN, + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/padding": T.PANEL, + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text": T.LABEL, + "static_tooltip_popup_with_image_and_text/tooltip_chevron": T.IMAGE, + "dynamic_tooltip_popup_with_custom_content": T.IMAGE, + "dynamic_tooltip_popup_with_custom_content/tooltip_content": T.UNKNOWN, + "dynamic_tooltip_popup_with_custom_content/tooltip_chevron": T.IMAGE, + "dynamic_tooltip_popup_with_image_and_text": T.IMAGE, + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel": T.STACK_PANEL, + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel": T.PANEL, + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel": T.PANEL, + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel/0": T.UNKNOWN, + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/padding": T.PANEL, + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text": T.LABEL, + "dynamic_tooltip_popup_with_image_and_text/tooltip_chevron": T.IMAGE, + "dynamic_tooltip_left": T.IMAGE, + "dynamic_tooltip_below": T.IMAGE, + "dynamic_custom_tooltip_below": T.IMAGE, + "dynamic_tooltip": T.PANEL, + "dynamic_tooltip/above": T.PANEL, + "dynamic_tooltip/above/content": T.IMAGE, + "dynamic_tooltip/below": T.PANEL, + "dynamic_tooltip/below/content": T.IMAGE, + "legacy_pocket_close_button_default": T.IMAGE, + "legacy_pocket_close_button_pressed": T.IMAGE, + "legacy_pocket_close_button": T.BUTTON, + "legacy_pocket_close_button/default": T.IMAGE, + "legacy_pocket_close_button/hover": T.IMAGE, + "legacy_pocket_close_button/pressed": T.IMAGE, + "info_icon": T.IMAGE, + "error_glyph": T.IMAGE, + "service_repo_image_panel": T.PANEL, + "service_repo_image_panel/service_repo_image": T.IMAGE, + "service_repo_image_panel/progress_loading": T.PANEL, + "common_cycler": T.UNKNOWN, + "image_cycler": T.IMAGE_CYCLER, + "text_cycler": T.LABEL_CYCLER, + "squaring_panel": T.PANEL, + "squaring_panel/squaring_panel": T.PANEL, + "squaring_panel/squaring_panel/squaring_panel_content": T.UNKNOWN, } export type CommonClassicType = { - button: T.BUTTON - button_state_default: T.IMAGE - button_state_hover: T.IMAGE - button_state_pressed: T.IMAGE - toggle: T.PANEL - toggle_checked_state: T.IMAGE - toggle_unchecked_state: T.IMAGE - toggle_checked_hovered_state: T.PANEL - "toggle_checked_hovered_state/toggle_checked_state": T.IMAGE - "toggle_checked_hovered_state/hover": T.IMAGE - toggle_unchecked_hovered_state: T.PANEL - "toggle_unchecked_hovered_state/toggle_unchecked_state": T.IMAGE - "toggle_unchecked_hovered_state/hover": T.IMAGE + "button": T.BUTTON, + "button_state_default": T.IMAGE, + "button_state_hover": T.IMAGE, + "button_state_pressed": T.IMAGE, + "toggle": T.PANEL, + "toggle_checked_state": T.IMAGE, + "toggle_unchecked_state": T.IMAGE, + "toggle_checked_hovered_state": T.PANEL, + "toggle_checked_hovered_state/toggle_checked_state": T.IMAGE, + "toggle_checked_hovered_state/hover": T.IMAGE, + "toggle_unchecked_hovered_state": T.PANEL, + "toggle_unchecked_hovered_state/toggle_unchecked_state": T.IMAGE, + "toggle_unchecked_hovered_state/hover": T.IMAGE, } export type EduCommonType = { - light_label: T.LABEL - dark_label: T.LABEL - readable_label: T.LABEL - slider_toggle: T.TOGGLE - trash_default: T.IMAGE - trash_hover: T.IMAGE - trash_pressed: T.IMAGE - photo_trash_button: T.BUTTON - "photo_trash_button/default": T.IMAGE - "photo_trash_button/hover": T.IMAGE - "photo_trash_button/pressed": T.IMAGE - download_progress_modal_panel: T.INPUT_PANEL - "download_progress_modal_panel/downloading": T.PANEL - loading_progress_modal_panel: T.INPUT_PANEL - "loading_progress_modal_panel/loading": T.PANEL - modal_cancel_button: T.BUTTON - modal_progress_panel_with_cancel: T.PANEL - "modal_progress_panel_with_cancel/common_panel": T.PANEL - "modal_progress_panel_with_cancel/title": T.LABEL - "modal_progress_panel_with_cancel/content": T.PANEL - "modal_progress_panel_with_cancel/content/title_panel": T.PANEL - "modal_progress_panel_with_cancel/content/label": T.LABEL - "modal_progress_panel_with_cancel/content/progress_loading_bars": T.IMAGE - "modal_progress_panel_with_cancel/cancel_button": T.BUTTON - modal_progress_panel_no_button: T.PANEL - "modal_progress_panel_no_button/common_panel": T.PANEL - "modal_progress_panel_no_button/content": T.PANEL - "modal_progress_panel_no_button/content/progress_title_text": T.LABEL - "modal_progress_panel_no_button/content/progress_loading_bars": T.IMAGE - apple_animation: T.IMAGE - book_animation: T.IMAGE - edu_loading_animation: T.IMAGE - horizontal_stack_item: T.PANEL - vertical_stack_item: T.PANEL - back_button_padded: T.STACK_PANEL - "back_button_padded/back_button_padding_before": T.PANEL - "back_button_padded/back_button": T.STACK_PANEL - home_button_content: T.IMAGE - home_button: T.BUTTON - underline_text: T.PANEL - "underline_text/label_hover": T.PANEL - underline_button: T.BUTTON - "underline_button/default": T.PANEL - "underline_button/hover": T.PANEL - "underline_button/pressed": T.PANEL - edu_screen_header: T.IMAGE - "edu_screen_header/title_controls": T.STACK_PANEL - "edu_screen_header/title_controls/back_item": T.PANEL - "edu_screen_header/title_controls/back_item/back_button": T.STACK_PANEL - "edu_screen_header/title_controls/back_item/gamepad": T.STACK_PANEL - "edu_screen_header/title_controls/image_item": T.PANEL - "edu_screen_header/title_controls/image_item/image": T.IMAGE - "edu_screen_header/title_controls/image_item_template": T.PANEL - "edu_screen_header/title_controls/image_item_template/image": T.IMAGE - "edu_screen_header/title_controls/image_item_template/image/image_color": T.IMAGE - "edu_screen_header/title_controls/title_text_padding": T.PANEL - "edu_screen_header/title_controls/title_item": T.PANEL - "edu_screen_header/title_controls/title_item/title": T.LABEL - share_dialog_title: T.LABEL - share_header_panel: T.PANEL - "share_header_panel/title": T.LABEL - "share_header_panel/close_button": T.BUTTON - teams_advanced_share_header_panel: T.PANEL - add_resource_share_header_panel: T.PANEL - body_panel: T.PANEL - "body_panel/body_stack": T.UNKNOWN - teams_body_panel: T.PANEL - teams_body_resource_panel: T.PANEL - teams_simple_body_resource_panel: T.PANEL - joincode_body_panel: T.PANEL - add_resource_body_panel: T.PANEL - icon_section: T.STACK_PANEL - "icon_section/icon_stack_panel": T.STACK_PANEL - "icon_section/icon_padding": T.PANEL - add_resources_section: T.STACK_PANEL - "add_resources_section/divider": T.PANEL - "add_resources_section/add_resource_label": T.PANEL - "add_resources_section/teams_padding_middle": T.PANEL - "add_resources_section/resource_button": T.BUTTON - edit_resource_uri_glyph: T.IMAGE - edit_resources_section: T.STACK_PANEL - "edit_resources_section/divider": T.PANEL - "edit_resources_section/resource_label_text": T.PANEL - "edit_resources_section/teams_padding_middle": T.PANEL - "edit_resources_section/edit_resource_body_button_stack": T.STACK_PANEL - "edit_resources_section/edit_resource_body_button_stack/resource_button": T.UNKNOWN - "edit_resources_section/edit_resource_body_button_stack/padding_middle": T.PANEL - "edit_resources_section/edit_resource_body_button_stack/edit_resource_uri_button": T.BUTTON - body_content_stack: T.STACK_PANEL - "body_content_stack/body_text_centering_panel": T.PANEL - "body_content_stack/body_text_centering_panel/body_text": T.PANEL - "body_content_stack/padding_middle": T.PANEL - "body_content_stack/icons": T.STACK_PANEL - "body_content_stack/copy_link_centering_panel": T.PANEL - "body_content_stack/copy_link_centering_panel/copy_link_panel": T.STACK_PANEL - "body_content_stack/add_resources": T.STACK_PANEL - "body_content_stack/edit_resources": T.STACK_PANEL - teams_simple_body_content_stack: T.STACK_PANEL - teams_body_content_stack: T.STACK_PANEL - teams_body_resource_content_stack: T.STACK_PANEL - joincode_body_content_stack: T.STACK_PANEL - add_resource_body_content_stack: T.STACK_PANEL - "add_resource_body_content_stack/label_one_centering_panel": T.PANEL - "add_resource_body_content_stack/label_one_centering_panel/teams_share_label": T.PANEL - "add_resource_body_content_stack/label_padding_middle": T.PANEL - "add_resource_body_content_stack/label_two_centering_panel": T.PANEL - "add_resource_body_content_stack/label_two_centering_panel/teams_share_label": T.PANEL - "add_resource_body_content_stack/learn_more_padding_middle": T.PANEL - "add_resource_body_content_stack/link1": T.BUTTON - "add_resource_body_content_stack/url_padding_middle": T.PANEL - "add_resource_body_content_stack/url_label": T.PANEL - "add_resource_body_content_stack/url_textbox": T.EDIT_BOX - "add_resource_body_content_stack/inline_notification": T.IMAGE - "add_resource_body_content_stack/inline_notification_spacer": T.PANEL - "add_resource_body_content_stack/button_name_label": T.PANEL - "add_resource_body_content_stack/button_middle_spacer": T.PANEL - "add_resource_body_content_stack/button_name_textbox": T.EDIT_BOX - "add_resource_body_content_stack/button_name_textbox_next_disabled": T.EDIT_BOX - add_edit_resource_body_content_stack: T.PANEL - "add_edit_resource_body_content_stack/scroll_content": T.PANEL - "add_edit_resource_body_content_stack/scroll_content/scrolling_panel": T.PANEL - resource_popup_buttons: T.STACK_PANEL - "resource_popup_buttons/done_button": T.BUTTON - "resource_popup_buttons/button_padding": T.PANEL - "resource_popup_buttons/back_button_panel": T.PANEL - "resource_popup_buttons/back_button_panel/back_button_enabled": T.BUTTON - "resource_popup_buttons/back_button_panel/back_button_disabled": T.BUTTON - add_resource_popup_lower_button_panel: T.PANEL - "add_resource_popup_lower_button_panel/edit_resource_popup_buttons": T.STACK_PANEL - "add_resource_popup_lower_button_panel/add_resource_popup_buttons": T.STACK_PANEL - share_dialog_body_text: T.PANEL - "share_dialog_body_text/tts_border": T.BUTTON - "share_dialog_body_text/text": T.LABEL - share_icon: T.IMAGE - share_label: T.STACK_PANEL - "share_label/share_image_offset_panel": T.PANEL - "share_label/share_image_offset_panel/link_share": T.IMAGE - copy_link_stack_panel: T.STACK_PANEL - "copy_link_stack_panel/link_box": T.EDIT_BOX - "copy_link_stack_panel/copy_button": T.BUTTON - icon_stack_panel: T.STACK_PANEL - "icon_stack_panel/padding_left": T.PANEL - "icon_stack_panel/teams_button": T.BUTTON - "icon_stack_panel/teams_mail_padding": T.PANEL - "icon_stack_panel/mail_button": T.BUTTON - "icon_stack_panel/mail_classrooms_padding": T.PANEL - "icon_stack_panel/classrooms_button": T.BUTTON - "icon_stack_panel/padding_right": T.PANEL - default_share_button_contents: T.PANEL - "default_share_button_contents/background": T.IMAGE - "default_share_button_contents/image": T.IMAGE - default_share_button: T.BUTTON - "default_share_button/default": T.PANEL - "default_share_button/hover": T.PANEL - "default_share_button/pressed": T.PANEL - vertical_divider: T.PANEL - "vertical_divider/divider": T.IMAGE - horizontal_divider: T.PANEL - "horizontal_divider/divider": T.IMAGE - stack_panel_grid_slot: T.PANEL - "stack_panel_grid_slot/stack_panel_grid_item_panel": T.PANEL - "stack_panel_grid_slot/stack_panel_grid_item_panel/stack_panel_grid_item": T.UNKNOWN - stack_panel_grid_row: T.STACK_PANEL - "stack_panel_grid_row/stack_panel_grid_row_item": T.PANEL - "stack_panel_grid_row/stack_panel_grid_row_item/row": T.STACK_PANEL - "stack_panel_grid_row/divider": T.PANEL - "stack_panel_grid_row/divider/line": T.IMAGE - stack_panel_grid: T.STACK_PANEL - border: T.IMAGE - description_panel: T.IMAGE - "description_panel/border": T.BUTTON - "description_panel/description": T.LABEL - edu_share_text_popup: T.INPUT_PANEL - teams_edu_share_text_popup: T.INPUT_PANEL - teams_edu_share_resource_popup: T.INPUT_PANEL - teams_edu_simple_share_resource_popup: T.INPUT_PANEL - joincode_edu_popup: T.INPUT_PANEL - add_resource_dialog: T.INPUT_PANEL - share_popup_dialog_factory: T.FACTORY - inline_notification: T.IMAGE - "inline_notification/stack": T.STACK_PANEL - "inline_notification/stack/icon": T.IMAGE - "inline_notification/stack/spacer": T.PANEL - "inline_notification/stack/warning_text": T.LABEL - search_button_content: T.IMAGE - search_bar_and_home_button: T.STACK_PANEL - "search_bar_and_home_button/search_bar": T.PANEL - "search_bar_and_home_button/search_bar/search_bar": T.EDIT_BOX - "search_bar_and_home_button/search_button": T.BUTTON - "search_bar_and_home_button/search_pad": T.PANEL - "search_bar_and_home_button/home_button": T.BUTTON - "search_bar_and_home_button/end_pad": T.PANEL - hotbar_hint: T.PANEL - "hotbar_hint/inactive_slot_dimmer": T.IMAGE - "hotbar_hint/bound_key_glyph_background": T.IMAGE - "hotbar_hint/bound_key_glyph_background/bound_key_glyph_text": T.LABEL - view_toggle_content: T.STACK_PANEL - "view_toggle_content/button_image_templates": T.IMAGE - "view_toggle_content/button_image_templates/image_color_templates": T.IMAGE - "view_toggle_content/button_image_worlds": T.IMAGE - "view_toggle_content/button_label_wrapper": T.PANEL - "view_toggle_content/button_label_wrapper/button_label": T.LABEL - "view_toggle_content/left_edge_text_padding": T.PANEL - worlds_and_templates_search_bar: T.IMAGE - "worlds_and_templates_search_bar/stack_panel": T.STACK_PANEL - "worlds_and_templates_search_bar/stack_panel/search_bar_wrapper": T.PANEL - "worlds_and_templates_search_bar/stack_panel/search_bar_wrapper/search_bar": T.EDIT_BOX - "worlds_and_templates_search_bar/stack_panel/temp_padding": T.PANEL - "worlds_and_templates_search_bar/stack_panel/view_toggle_background": T.IMAGE - "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel": T.STACK_PANEL - "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/left_edge_padding": T.PANEL - "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/view_toggle_button": T.BUTTON - "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/right_edge_padding": T.PANEL - edu_cloud_conflict_resolution_popup_dialog_factory: T.FACTORY - edu_cloud_conflict_resolution_popup: T.INPUT_PANEL - edu_cloud_conflict_resolution_content: T.STACK_PANEL - "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper": T.PANEL - "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper/tts_border": T.BUTTON - "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper/conflict_resolution_description": T.LABEL - "edu_cloud_conflict_resolution_content/padding1": T.PANEL - "edu_cloud_conflict_resolution_content/world_info_wrapper": T.PANEL - "edu_cloud_conflict_resolution_content/world_info_wrapper/tts_border": T.BUTTON - "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack": T.STACK_PANEL - "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/local_world_name_label": T.LABEL - "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/local_world_last_changed_label": T.LABEL - "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/cloud_world_name_label": T.LABEL - "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/cloud_world_last_changed_label": T.LABEL - "edu_cloud_conflict_resolution_content/padding2": T.PANEL - "edu_cloud_conflict_resolution_content/keep_local_button": T.BUTTON - "edu_cloud_conflict_resolution_content/keep_cloud_button": T.BUTTON - "edu_cloud_conflict_resolution_content/keep_both_button": T.BUTTON - nested_buttons_base_definition: T.STACK_PANEL + "light_label": T.LABEL, + "dark_label": T.LABEL, + "readable_label": T.LABEL, + "slider_toggle": T.TOGGLE, + "trash_default": T.IMAGE, + "trash_hover": T.IMAGE, + "trash_pressed": T.IMAGE, + "photo_trash_button": T.BUTTON, + "photo_trash_button/default": T.IMAGE, + "photo_trash_button/hover": T.IMAGE, + "photo_trash_button/pressed": T.IMAGE, + "download_progress_modal_panel": T.INPUT_PANEL, + "download_progress_modal_panel/downloading": T.PANEL, + "loading_progress_modal_panel": T.INPUT_PANEL, + "loading_progress_modal_panel/loading": T.PANEL, + "modal_cancel_button": T.BUTTON, + "modal_progress_panel_with_cancel": T.PANEL, + "modal_progress_panel_with_cancel/common_panel": T.PANEL, + "modal_progress_panel_with_cancel/title": T.LABEL, + "modal_progress_panel_with_cancel/content": T.PANEL, + "modal_progress_panel_with_cancel/content/title_panel": T.PANEL, + "modal_progress_panel_with_cancel/content/label": T.LABEL, + "modal_progress_panel_with_cancel/content/progress_loading_bars": T.IMAGE, + "modal_progress_panel_with_cancel/cancel_button": T.BUTTON, + "modal_progress_panel_no_button": T.PANEL, + "modal_progress_panel_no_button/common_panel": T.PANEL, + "modal_progress_panel_no_button/content": T.PANEL, + "modal_progress_panel_no_button/content/progress_title_text": T.LABEL, + "modal_progress_panel_no_button/content/progress_loading_bars": T.IMAGE, + "apple_animation": T.IMAGE, + "book_animation": T.IMAGE, + "edu_loading_animation": T.IMAGE, + "horizontal_stack_item": T.PANEL, + "vertical_stack_item": T.PANEL, + "back_button_padded": T.STACK_PANEL, + "back_button_padded/back_button_padding_before": T.PANEL, + "back_button_padded/back_button": T.STACK_PANEL, + "home_button_content": T.IMAGE, + "home_button": T.BUTTON, + "underline_text": T.PANEL, + "underline_text/label_hover": T.PANEL, + "underline_button": T.BUTTON, + "underline_button/default": T.PANEL, + "underline_button/hover": T.PANEL, + "underline_button/pressed": T.PANEL, + "edu_screen_header": T.IMAGE, + "edu_screen_header/title_controls": T.STACK_PANEL, + "edu_screen_header/title_controls/back_item": T.PANEL, + "edu_screen_header/title_controls/back_item/back_button": T.STACK_PANEL, + "edu_screen_header/title_controls/back_item/gamepad": T.STACK_PANEL, + "edu_screen_header/title_controls/image_item": T.PANEL, + "edu_screen_header/title_controls/image_item/image": T.IMAGE, + "edu_screen_header/title_controls/image_item_template": T.PANEL, + "edu_screen_header/title_controls/image_item_template/image": T.IMAGE, + "edu_screen_header/title_controls/image_item_template/image/image_color": T.IMAGE, + "edu_screen_header/title_controls/title_text_padding": T.PANEL, + "edu_screen_header/title_controls/title_item": T.PANEL, + "edu_screen_header/title_controls/title_item/title": T.LABEL, + "share_dialog_title": T.LABEL, + "share_header_panel": T.PANEL, + "share_header_panel/title": T.LABEL, + "share_header_panel/close_button": T.BUTTON, + "teams_advanced_share_header_panel": T.PANEL, + "add_resource_share_header_panel": T.PANEL, + "body_panel": T.PANEL, + "body_panel/body_stack": T.UNKNOWN, + "teams_body_panel": T.PANEL, + "teams_body_resource_panel": T.PANEL, + "teams_simple_body_resource_panel": T.PANEL, + "joincode_body_panel": T.PANEL, + "add_resource_body_panel": T.PANEL, + "icon_section": T.STACK_PANEL, + "icon_section/icon_stack_panel": T.STACK_PANEL, + "icon_section/icon_padding": T.PANEL, + "add_resources_section": T.STACK_PANEL, + "add_resources_section/divider": T.PANEL, + "add_resources_section/add_resource_label": T.PANEL, + "add_resources_section/teams_padding_middle": T.PANEL, + "add_resources_section/resource_button": T.BUTTON, + "edit_resource_uri_glyph": T.IMAGE, + "edit_resources_section": T.STACK_PANEL, + "edit_resources_section/divider": T.PANEL, + "edit_resources_section/resource_label_text": T.PANEL, + "edit_resources_section/teams_padding_middle": T.PANEL, + "edit_resources_section/edit_resource_body_button_stack": T.STACK_PANEL, + "edit_resources_section/edit_resource_body_button_stack/resource_button": T.UNKNOWN, + "edit_resources_section/edit_resource_body_button_stack/padding_middle": T.PANEL, + "edit_resources_section/edit_resource_body_button_stack/edit_resource_uri_button": T.BUTTON, + "body_content_stack": T.STACK_PANEL, + "body_content_stack/body_text_centering_panel": T.PANEL, + "body_content_stack/body_text_centering_panel/body_text": T.PANEL, + "body_content_stack/padding_middle": T.PANEL, + "body_content_stack/icons": T.STACK_PANEL, + "body_content_stack/copy_link_centering_panel": T.PANEL, + "body_content_stack/copy_link_centering_panel/copy_link_panel": T.STACK_PANEL, + "body_content_stack/add_resources": T.STACK_PANEL, + "body_content_stack/edit_resources": T.STACK_PANEL, + "teams_simple_body_content_stack": T.STACK_PANEL, + "teams_body_content_stack": T.STACK_PANEL, + "teams_body_resource_content_stack": T.STACK_PANEL, + "joincode_body_content_stack": T.STACK_PANEL, + "add_resource_body_content_stack": T.STACK_PANEL, + "add_resource_body_content_stack/label_one_centering_panel": T.PANEL, + "add_resource_body_content_stack/label_one_centering_panel/teams_share_label": T.PANEL, + "add_resource_body_content_stack/label_padding_middle": T.PANEL, + "add_resource_body_content_stack/label_two_centering_panel": T.PANEL, + "add_resource_body_content_stack/label_two_centering_panel/teams_share_label": T.PANEL, + "add_resource_body_content_stack/learn_more_padding_middle": T.PANEL, + "add_resource_body_content_stack/link1": T.BUTTON, + "add_resource_body_content_stack/url_padding_middle": T.PANEL, + "add_resource_body_content_stack/url_label": T.PANEL, + "add_resource_body_content_stack/url_textbox": T.EDIT_BOX, + "add_resource_body_content_stack/inline_notification": T.IMAGE, + "add_resource_body_content_stack/inline_notification_spacer": T.PANEL, + "add_resource_body_content_stack/button_name_label": T.PANEL, + "add_resource_body_content_stack/button_middle_spacer": T.PANEL, + "add_resource_body_content_stack/button_name_textbox": T.EDIT_BOX, + "add_resource_body_content_stack/button_name_textbox_next_disabled": T.EDIT_BOX, + "add_edit_resource_body_content_stack": T.PANEL, + "add_edit_resource_body_content_stack/scroll_content": T.PANEL, + "add_edit_resource_body_content_stack/scroll_content/scrolling_panel": T.PANEL, + "resource_popup_buttons": T.STACK_PANEL, + "resource_popup_buttons/done_button": T.BUTTON, + "resource_popup_buttons/button_padding": T.PANEL, + "resource_popup_buttons/back_button_panel": T.PANEL, + "resource_popup_buttons/back_button_panel/back_button_enabled": T.BUTTON, + "resource_popup_buttons/back_button_panel/back_button_disabled": T.BUTTON, + "add_resource_popup_lower_button_panel": T.PANEL, + "add_resource_popup_lower_button_panel/edit_resource_popup_buttons": T.STACK_PANEL, + "add_resource_popup_lower_button_panel/add_resource_popup_buttons": T.STACK_PANEL, + "share_dialog_body_text": T.PANEL, + "share_dialog_body_text/tts_border": T.BUTTON, + "share_dialog_body_text/text": T.LABEL, + "share_icon": T.IMAGE, + "share_label": T.STACK_PANEL, + "share_label/share_image_offset_panel": T.PANEL, + "share_label/share_image_offset_panel/link_share": T.IMAGE, + "copy_link_stack_panel": T.STACK_PANEL, + "copy_link_stack_panel/link_box": T.EDIT_BOX, + "copy_link_stack_panel/copy_button": T.BUTTON, + "icon_stack_panel": T.STACK_PANEL, + "icon_stack_panel/padding_left": T.PANEL, + "icon_stack_panel/teams_button": T.BUTTON, + "icon_stack_panel/teams_mail_padding": T.PANEL, + "icon_stack_panel/mail_button": T.BUTTON, + "icon_stack_panel/mail_classrooms_padding": T.PANEL, + "icon_stack_panel/classrooms_button": T.BUTTON, + "icon_stack_panel/padding_right": T.PANEL, + "default_share_button_contents": T.PANEL, + "default_share_button_contents/background": T.IMAGE, + "default_share_button_contents/image": T.IMAGE, + "default_share_button": T.BUTTON, + "default_share_button/default": T.PANEL, + "default_share_button/hover": T.PANEL, + "default_share_button/pressed": T.PANEL, + "vertical_divider": T.PANEL, + "vertical_divider/divider": T.IMAGE, + "horizontal_divider": T.PANEL, + "horizontal_divider/divider": T.IMAGE, + "stack_panel_grid_slot": T.PANEL, + "stack_panel_grid_slot/stack_panel_grid_item_panel": T.PANEL, + "stack_panel_grid_slot/stack_panel_grid_item_panel/stack_panel_grid_item": T.UNKNOWN, + "stack_panel_grid_row": T.STACK_PANEL, + "stack_panel_grid_row/stack_panel_grid_row_item": T.PANEL, + "stack_panel_grid_row/stack_panel_grid_row_item/row": T.STACK_PANEL, + "stack_panel_grid_row/divider": T.PANEL, + "stack_panel_grid_row/divider/line": T.IMAGE, + "stack_panel_grid": T.STACK_PANEL, + "border": T.IMAGE, + "description_panel": T.IMAGE, + "description_panel/border": T.BUTTON, + "description_panel/description": T.LABEL, + "edu_share_text_popup": T.INPUT_PANEL, + "teams_edu_share_text_popup": T.INPUT_PANEL, + "teams_edu_share_resource_popup": T.INPUT_PANEL, + "teams_edu_simple_share_resource_popup": T.INPUT_PANEL, + "joincode_edu_popup": T.INPUT_PANEL, + "add_resource_dialog": T.INPUT_PANEL, + "share_popup_dialog_factory": T.FACTORY, + "inline_notification": T.IMAGE, + "inline_notification/stack": T.STACK_PANEL, + "inline_notification/stack/icon": T.IMAGE, + "inline_notification/stack/spacer": T.PANEL, + "inline_notification/stack/warning_text": T.LABEL, + "search_button_content": T.IMAGE, + "search_bar_and_home_button": T.STACK_PANEL, + "search_bar_and_home_button/search_bar": T.PANEL, + "search_bar_and_home_button/search_bar/search_bar": T.EDIT_BOX, + "search_bar_and_home_button/search_button": T.BUTTON, + "search_bar_and_home_button/search_pad": T.PANEL, + "search_bar_and_home_button/home_button": T.BUTTON, + "search_bar_and_home_button/end_pad": T.PANEL, + "hotbar_hint": T.PANEL, + "hotbar_hint/inactive_slot_dimmer": T.IMAGE, + "hotbar_hint/bound_key_glyph_background": T.IMAGE, + "hotbar_hint/bound_key_glyph_background/bound_key_glyph_text": T.LABEL, + "view_toggle_content": T.STACK_PANEL, + "view_toggle_content/button_image_templates": T.IMAGE, + "view_toggle_content/button_image_templates/image_color_templates": T.IMAGE, + "view_toggle_content/button_image_worlds": T.IMAGE, + "view_toggle_content/button_label_wrapper": T.PANEL, + "view_toggle_content/button_label_wrapper/button_label": T.LABEL, + "view_toggle_content/left_edge_text_padding": T.PANEL, + "worlds_and_templates_search_bar": T.IMAGE, + "worlds_and_templates_search_bar/stack_panel": T.STACK_PANEL, + "worlds_and_templates_search_bar/stack_panel/search_bar_wrapper": T.PANEL, + "worlds_and_templates_search_bar/stack_panel/search_bar_wrapper/search_bar": T.EDIT_BOX, + "worlds_and_templates_search_bar/stack_panel/temp_padding": T.PANEL, + "worlds_and_templates_search_bar/stack_panel/view_toggle_background": T.IMAGE, + "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel": T.STACK_PANEL, + "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/left_edge_padding": T.PANEL, + "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/view_toggle_button": T.BUTTON, + "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/right_edge_padding": T.PANEL, + "edu_cloud_conflict_resolution_popup_dialog_factory": T.FACTORY, + "edu_cloud_conflict_resolution_popup": T.INPUT_PANEL, + "edu_cloud_conflict_resolution_content": T.STACK_PANEL, + "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper": T.PANEL, + "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper/tts_border": T.BUTTON, + "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper/conflict_resolution_description": T.LABEL, + "edu_cloud_conflict_resolution_content/padding1": T.PANEL, + "edu_cloud_conflict_resolution_content/world_info_wrapper": T.PANEL, + "edu_cloud_conflict_resolution_content/world_info_wrapper/tts_border": T.BUTTON, + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack": T.STACK_PANEL, + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/local_world_name_label": T.LABEL, + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/local_world_last_changed_label": T.LABEL, + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/cloud_world_name_label": T.LABEL, + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/cloud_world_last_changed_label": T.LABEL, + "edu_cloud_conflict_resolution_content/padding2": T.PANEL, + "edu_cloud_conflict_resolution_content/keep_local_button": T.BUTTON, + "edu_cloud_conflict_resolution_content/keep_cloud_button": T.BUTTON, + "edu_cloud_conflict_resolution_content/keep_both_button": T.BUTTON, + "nested_buttons_base_definition": T.STACK_PANEL, } export type PurchaseCommonType = { - banner_fill: T.IMAGE - banner_empty: T.IMAGE - screenshots_grid_item: T.PANEL - "screenshots_grid_item/frame": T.IMAGE - "screenshots_grid_item/frame/screenshot_image": T.IMAGE - "screenshots_grid_item/frame/progress_loading": T.PANEL - "screenshots_grid_item/frame/screenshot_button": T.BUTTON - "screenshots_grid_item/frame/screenshot_button/hover": T.IMAGE - "screenshots_grid_item/frame/screenshot_button/pressed": T.IMAGE - screenshots_grid: T.GRID - key_image_frame: T.IMAGE - "key_image_frame/zoomed": T.IMAGE - offer_grid_item: T.PANEL - "offer_grid_item/frame": T.IMAGE - "offer_grid_item/frame/offer_key_art": T.IMAGE - "offer_grid_item/frame/offer_button": T.BUTTON - "offer_grid_item/frame/offer_button/hover": T.IMAGE - "offer_grid_item/frame/offer_button/pressed": T.IMAGE - offer_grid: T.GRID - key_art_and_text: T.STACK_PANEL - "key_art_and_text/key_image_panel": T.INPUT_PANEL - "key_art_and_text/key_image_panel/key_image": T.IMAGE - "key_art_and_text/padding": T.PANEL - "key_art_and_text/description_scroll": T.PANEL - pack_description: T.LABEL + "banner_fill": T.IMAGE, + "banner_empty": T.IMAGE, + "screenshots_grid_item": T.PANEL, + "screenshots_grid_item/frame": T.IMAGE, + "screenshots_grid_item/frame/screenshot_image": T.IMAGE, + "screenshots_grid_item/frame/progress_loading": T.PANEL, + "screenshots_grid_item/frame/screenshot_button": T.BUTTON, + "screenshots_grid_item/frame/screenshot_button/hover": T.IMAGE, + "screenshots_grid_item/frame/screenshot_button/pressed": T.IMAGE, + "screenshots_grid": T.GRID, + "key_image_frame": T.IMAGE, + "key_image_frame/zoomed": T.IMAGE, + "offer_grid_item": T.PANEL, + "offer_grid_item/frame": T.IMAGE, + "offer_grid_item/frame/offer_key_art": T.IMAGE, + "offer_grid_item/frame/offer_button": T.BUTTON, + "offer_grid_item/frame/offer_button/hover": T.IMAGE, + "offer_grid_item/frame/offer_button/pressed": T.IMAGE, + "offer_grid": T.GRID, + "key_art_and_text": T.STACK_PANEL, + "key_art_and_text/key_image_panel": T.INPUT_PANEL, + "key_art_and_text/key_image_panel/key_image": T.IMAGE, + "key_art_and_text/padding": T.PANEL, + "key_art_and_text/description_scroll": T.PANEL, + "pack_description": T.LABEL, } export type CommonButtonsType = { - button_image: T.IMAGE - background_button_image: T.IMAGE - locked_button_image: T.IMAGE - light_button_assets: T.BUTTON - dark_button_assets: T.BUTTON - focus_border: T.IMAGE - new_ui_button_panel: T.PANEL - "new_ui_button_panel/button_content": T.PANEL - "new_ui_button_panel/border": T.IMAGE - new_ui_form_fitting_button_panel: T.PANEL - "new_ui_form_fitting_button_panel/border": T.IMAGE - new_ui_width_fitting_button_panel: T.PANEL - "new_ui_width_fitting_button_panel/border": T.IMAGE - new_ui_height_fitting_button_panel: T.PANEL - "new_ui_height_fitting_button_panel/border": T.IMAGE - borderless_form_fitting_button_panel: T.PANEL - light_text_button: T.BUTTON - "light_text_button/default": T.UNKNOWN - "light_text_button/hover": T.UNKNOWN - "light_text_button/pressed": T.UNKNOWN - "light_text_button/locked": T.UNKNOWN - dark_text_button: T.BUTTON - "dark_text_button/default": T.UNKNOWN - "dark_text_button/hover": T.UNKNOWN - "dark_text_button/pressed": T.UNKNOWN - "dark_text_button/locked": T.UNKNOWN - new_ui_binding_button_label: T.LABEL - underline_button: T.BUTTON - "underline_button/default": T.PANEL - "underline_button/default/label_default": T.PANEL - "underline_button/hover": T.PANEL - "underline_button/hover/label_hover": T.PANEL - "underline_button/pressed": T.PANEL - "underline_button/pressed/label_hover": T.PANEL - read_button: T.PANEL - "read_button/read_button_inner": T.BUTTON - light_content_form_fitting_button: T.BUTTON - dark_content_form_fitting_button: T.BUTTON - light_text_form_fitting_button: T.BUTTON - dark_text_form_fitting_button: T.BUTTON - transparent_content_button: T.BUTTON - single_image_with_border_button: T.BUTTON - light_content_button: T.BUTTON - "light_content_button/default": T.UNKNOWN - "light_content_button/hover": T.UNKNOWN - "light_content_button/pressed": T.UNKNOWN - "light_content_button/locked": T.UNKNOWN - light_content_button_control_content: T.BUTTON - "light_content_button_control_content/default": T.UNKNOWN - "light_content_button_control_content/hover": T.UNKNOWN - "light_content_button_control_content/pressed": T.UNKNOWN - "light_content_button_control_content/locked": T.UNKNOWN - deactivated_light_content_button: T.BUTTON - dark_content_button: T.BUTTON - "dark_content_button/default": T.UNKNOWN - "dark_content_button/hover": T.UNKNOWN - "dark_content_button/pressed": T.UNKNOWN - "dark_content_button/locked": T.UNKNOWN - no_background_content_button: T.BUTTON - "no_background_content_button/default": T.UNKNOWN - "no_background_content_button/hover": T.UNKNOWN - "no_background_content_button/pressed": T.UNKNOWN - "no_background_content_button/locked": T.UNKNOWN - button_content_panel: T.PANEL - "button_content_panel/content": T.UNKNOWN - form_fitting_button_content_panel: T.PANEL - "form_fitting_button_content_panel/content": T.UNKNOWN - horizontal_form_fitting: T.PANEL - "horizontal_form_fitting/content": T.UNKNOWN - width_fitting_button_content_panel: T.PANEL - "width_fitting_button_content_panel/content": T.UNKNOWN - height_fitting_button_content_panel: T.PANEL - "height_fitting_button_content_panel/content": T.UNKNOWN - light_glyph_button: T.BUTTON - "light_glyph_button/default": T.PANEL - "light_glyph_button/hover": T.PANEL - "light_glyph_button/pressed": T.PANEL - "light_glyph_button/locked": T.PANEL - dark_glyph_button_default: T.PANEL - dark_glyph_button_hover: T.PANEL - dark_glyph_button_pressed: T.PANEL - dark_glyph_button_locked: T.PANEL - dark_glyph_button: T.BUTTON - "dark_glyph_button/default": T.PANEL - "dark_glyph_button/hover": T.PANEL - "dark_glyph_button/pressed": T.PANEL - "dark_glyph_button/locked": T.PANEL - dark_glyph_button_with_custom_control: T.BUTTON - "dark_glyph_button_with_custom_control/custom_control": T.UNKNOWN - "dark_glyph_button_with_custom_control/default": T.PANEL - "dark_glyph_button_with_custom_control/hover": T.PANEL - "dark_glyph_button_with_custom_control/pressed": T.PANEL - "dark_glyph_button_with_custom_control/locked": T.PANEL - glyph_content_panel: T.PANEL - "glyph_content_panel/glyph_button_content": T.UNKNOWN - hyperlink_button: T.BUTTON - hyperlink_content_button: T.BUTTON - nested_button_assets: T.IMAGE - nested_overlay_assets: T.IMAGE - nested_label_content_background_assets: T.IMAGE - nested_label_background_assets: T.IMAGE - nested_transparent_label_content_background_assets: T.PANEL - "nested_transparent_label_content_background_assets/assets": T.IMAGE - nested_base_label: T.LABEL - nested_centered_label_control: T.PANEL - "nested_centered_label_control/label": T.LABEL - nested_label_with_image_control: T.STACK_PANEL - "nested_label_with_image_control/image": T.IMAGE - "nested_label_with_image_control/image_to_label_padding": T.PANEL - "nested_label_with_image_control/label_panel": T.PANEL - "nested_label_with_image_control/label_panel/label": T.LABEL - nested_six_part_empty_definition: T.LABEL - nested_six_part_label_control: T.PANEL - "nested_six_part_label_control/left_top_label": T.UNKNOWN - "nested_six_part_label_control/left_middle_label": T.UNKNOWN - "nested_six_part_label_control/left_bottom_label": T.UNKNOWN - "nested_six_part_label_control/right_top_label": T.UNKNOWN - "nested_six_part_label_control/right_middle_label": T.UNKNOWN - "nested_six_part_label_control/right_bottom_label": T.UNKNOWN - nested_dark_button_assets: T.IMAGE - nested_content_background_assets: T.IMAGE - nested_content_overlay_assets: T.IMAGE - nested_dark_control_with_image: T.PANEL - "nested_dark_control_with_image/background": T.IMAGE - "nested_dark_control_with_image/image_panel": T.PANEL - "nested_dark_control_with_image/image_panel/image": T.IMAGE - nestable_button: T.PANEL - "nestable_button/nested_controls_panel": T.INPUT_PANEL - "nestable_button/nested_controls_panel/locked_overlay": T.IMAGE - "nestable_button/nested_controls_panel/nested_controls": T.UNKNOWN - "nestable_button/base_button": T.BUTTON - "nestable_button/base_button/default": T.PANEL - "nestable_button/base_button/hover": T.PANEL - "nestable_button/base_button/pressed": T.PANEL - "nestable_button/base_button/locked": T.PANEL - nested_button_base: T.PANEL - "nested_button_base/button_overlay": T.UNKNOWN - "nested_button_base/button_control": T.STACK_PANEL - "nested_button_base/button_control/control_area": T.PANEL - "nested_button_base/button_control/control_area/background": T.UNKNOWN - "nested_button_base/button_control/control_area/control": T.UNKNOWN - "nested_button_base/button_control/control_area/overlay": T.UNKNOWN - "nested_button_base/button_control/button_stack_padding": T.PANEL - "nested_button_base/button_control/label_area": T.PANEL - "nested_button_base/button_control/label_area/background": T.UNKNOWN - "nested_button_base/button_control/label_area/control_background": T.UNKNOWN - "nested_button_base/button_control/label_area/control": T.UNKNOWN - dark_nestable_button: T.PANEL - transparent_label_nestable_button: T.PANEL - static_tooltip_notification_panel: T.BUTTON - "static_tooltip_notification_panel/default": T.IMAGE - "static_tooltip_notification_panel/pressed": T.IMAGE - "static_tooltip_notification_panel/hover": T.IMAGE - "static_tooltip_notification_panel/locked": T.IMAGE - "static_tooltip_notification_panel/static_tooltip_popup_panel": T.IMAGE - dynamic_tooltip_notification_panel: T.BUTTON - "dynamic_tooltip_notification_panel/default": T.IMAGE - "dynamic_tooltip_notification_panel/pressed": T.IMAGE - "dynamic_tooltip_notification_panel/hover": T.IMAGE - "dynamic_tooltip_notification_panel/locked": T.IMAGE - "dynamic_tooltip_notification_panel/dyanmic_tooltip_popup_panel": T.IMAGE - text_body_focus_border_for_controller_button: T.BUTTON - "text_body_focus_border_for_controller_button/default": T.PANEL - "text_body_focus_border_for_controller_button/hover": T.PANEL - "text_body_focus_border_for_controller_button/hover/focus_border": T.IMAGE - "text_body_focus_border_for_controller_button/text_control": T.UNKNOWN + "button_image": T.IMAGE, + "background_button_image": T.IMAGE, + "locked_button_image": T.IMAGE, + "light_button_assets": T.BUTTON, + "dark_button_assets": T.BUTTON, + "focus_border": T.IMAGE, + "new_ui_button_panel": T.PANEL, + "new_ui_button_panel/button_content": T.PANEL, + "new_ui_button_panel/border": T.IMAGE, + "new_ui_form_fitting_button_panel": T.PANEL, + "new_ui_form_fitting_button_panel/border": T.IMAGE, + "new_ui_width_fitting_button_panel": T.PANEL, + "new_ui_width_fitting_button_panel/border": T.IMAGE, + "new_ui_height_fitting_button_panel": T.PANEL, + "new_ui_height_fitting_button_panel/border": T.IMAGE, + "borderless_form_fitting_button_panel": T.PANEL, + "light_text_button": T.BUTTON, + "light_text_button/default": T.UNKNOWN, + "light_text_button/hover": T.UNKNOWN, + "light_text_button/pressed": T.UNKNOWN, + "light_text_button/locked": T.UNKNOWN, + "dark_text_button": T.BUTTON, + "dark_text_button/default": T.UNKNOWN, + "dark_text_button/hover": T.UNKNOWN, + "dark_text_button/pressed": T.UNKNOWN, + "dark_text_button/locked": T.UNKNOWN, + "new_ui_binding_button_label": T.LABEL, + "underline_button": T.BUTTON, + "underline_button/default": T.PANEL, + "underline_button/default/label_default": T.PANEL, + "underline_button/hover": T.PANEL, + "underline_button/hover/label_hover": T.PANEL, + "underline_button/pressed": T.PANEL, + "underline_button/pressed/label_hover": T.PANEL, + "read_button": T.PANEL, + "read_button/read_button_inner": T.BUTTON, + "light_content_form_fitting_button": T.BUTTON, + "dark_content_form_fitting_button": T.BUTTON, + "light_text_form_fitting_button": T.BUTTON, + "dark_text_form_fitting_button": T.BUTTON, + "transparent_content_button": T.BUTTON, + "single_image_with_border_button": T.BUTTON, + "light_content_button": T.BUTTON, + "light_content_button/default": T.UNKNOWN, + "light_content_button/hover": T.UNKNOWN, + "light_content_button/pressed": T.UNKNOWN, + "light_content_button/locked": T.UNKNOWN, + "light_content_button_control_content": T.BUTTON, + "light_content_button_control_content/default": T.UNKNOWN, + "light_content_button_control_content/hover": T.UNKNOWN, + "light_content_button_control_content/pressed": T.UNKNOWN, + "light_content_button_control_content/locked": T.UNKNOWN, + "deactivated_light_content_button": T.BUTTON, + "dark_content_button": T.BUTTON, + "dark_content_button/default": T.UNKNOWN, + "dark_content_button/hover": T.UNKNOWN, + "dark_content_button/pressed": T.UNKNOWN, + "dark_content_button/locked": T.UNKNOWN, + "no_background_content_button": T.BUTTON, + "no_background_content_button/default": T.UNKNOWN, + "no_background_content_button/hover": T.UNKNOWN, + "no_background_content_button/pressed": T.UNKNOWN, + "no_background_content_button/locked": T.UNKNOWN, + "button_content_panel": T.PANEL, + "button_content_panel/content": T.UNKNOWN, + "form_fitting_button_content_panel": T.PANEL, + "form_fitting_button_content_panel/content": T.UNKNOWN, + "horizontal_form_fitting": T.PANEL, + "horizontal_form_fitting/content": T.UNKNOWN, + "width_fitting_button_content_panel": T.PANEL, + "width_fitting_button_content_panel/content": T.UNKNOWN, + "height_fitting_button_content_panel": T.PANEL, + "height_fitting_button_content_panel/content": T.UNKNOWN, + "light_glyph_button": T.BUTTON, + "light_glyph_button/default": T.PANEL, + "light_glyph_button/hover": T.PANEL, + "light_glyph_button/pressed": T.PANEL, + "light_glyph_button/locked": T.PANEL, + "dark_glyph_button_default": T.PANEL, + "dark_glyph_button_hover": T.PANEL, + "dark_glyph_button_pressed": T.PANEL, + "dark_glyph_button_locked": T.PANEL, + "dark_glyph_button": T.BUTTON, + "dark_glyph_button/default": T.PANEL, + "dark_glyph_button/hover": T.PANEL, + "dark_glyph_button/pressed": T.PANEL, + "dark_glyph_button/locked": T.PANEL, + "dark_glyph_button_with_custom_control": T.BUTTON, + "dark_glyph_button_with_custom_control/custom_control": T.UNKNOWN, + "dark_glyph_button_with_custom_control/default": T.PANEL, + "dark_glyph_button_with_custom_control/hover": T.PANEL, + "dark_glyph_button_with_custom_control/pressed": T.PANEL, + "dark_glyph_button_with_custom_control/locked": T.PANEL, + "glyph_content_panel": T.PANEL, + "glyph_content_panel/glyph_button_content": T.UNKNOWN, + "hyperlink_button": T.BUTTON, + "hyperlink_content_button": T.BUTTON, + "nested_button_assets": T.IMAGE, + "nested_overlay_assets": T.IMAGE, + "nested_label_content_background_assets": T.IMAGE, + "nested_label_background_assets": T.IMAGE, + "nested_transparent_label_content_background_assets": T.PANEL, + "nested_transparent_label_content_background_assets/assets": T.IMAGE, + "nested_base_label": T.LABEL, + "nested_centered_label_control": T.PANEL, + "nested_centered_label_control/label": T.LABEL, + "nested_label_with_image_control": T.STACK_PANEL, + "nested_label_with_image_control/image": T.IMAGE, + "nested_label_with_image_control/image_to_label_padding": T.PANEL, + "nested_label_with_image_control/label_panel": T.PANEL, + "nested_label_with_image_control/label_panel/label": T.LABEL, + "nested_six_part_empty_definition": T.LABEL, + "nested_six_part_label_control": T.PANEL, + "nested_six_part_label_control/left_top_label": T.UNKNOWN, + "nested_six_part_label_control/left_middle_label": T.UNKNOWN, + "nested_six_part_label_control/left_bottom_label": T.UNKNOWN, + "nested_six_part_label_control/right_top_label": T.UNKNOWN, + "nested_six_part_label_control/right_middle_label": T.UNKNOWN, + "nested_six_part_label_control/right_bottom_label": T.UNKNOWN, + "nested_dark_button_assets": T.IMAGE, + "nested_content_background_assets": T.IMAGE, + "nested_content_overlay_assets": T.IMAGE, + "nested_dark_control_with_image": T.PANEL, + "nested_dark_control_with_image/background": T.IMAGE, + "nested_dark_control_with_image/image_panel": T.PANEL, + "nested_dark_control_with_image/image_panel/image": T.IMAGE, + "nestable_button": T.PANEL, + "nestable_button/nested_controls_panel": T.INPUT_PANEL, + "nestable_button/nested_controls_panel/locked_overlay": T.IMAGE, + "nestable_button/nested_controls_panel/nested_controls": T.UNKNOWN, + "nestable_button/base_button": T.BUTTON, + "nestable_button/base_button/default": T.PANEL, + "nestable_button/base_button/hover": T.PANEL, + "nestable_button/base_button/pressed": T.PANEL, + "nestable_button/base_button/locked": T.PANEL, + "nested_button_base": T.PANEL, + "nested_button_base/button_overlay": T.UNKNOWN, + "nested_button_base/button_control": T.STACK_PANEL, + "nested_button_base/button_control/control_area": T.PANEL, + "nested_button_base/button_control/control_area/background": T.UNKNOWN, + "nested_button_base/button_control/control_area/control": T.UNKNOWN, + "nested_button_base/button_control/control_area/overlay": T.UNKNOWN, + "nested_button_base/button_control/button_stack_padding": T.PANEL, + "nested_button_base/button_control/label_area": T.PANEL, + "nested_button_base/button_control/label_area/background": T.UNKNOWN, + "nested_button_base/button_control/label_area/control_background": T.UNKNOWN, + "nested_button_base/button_control/label_area/control": T.UNKNOWN, + "dark_nestable_button": T.PANEL, + "transparent_label_nestable_button": T.PANEL, + "static_tooltip_notification_panel": T.BUTTON, + "static_tooltip_notification_panel/default": T.IMAGE, + "static_tooltip_notification_panel/pressed": T.IMAGE, + "static_tooltip_notification_panel/hover": T.IMAGE, + "static_tooltip_notification_panel/locked": T.IMAGE, + "static_tooltip_notification_panel/static_tooltip_popup_panel": T.IMAGE, + "dynamic_tooltip_notification_panel": T.BUTTON, + "dynamic_tooltip_notification_panel/default": T.IMAGE, + "dynamic_tooltip_notification_panel/pressed": T.IMAGE, + "dynamic_tooltip_notification_panel/hover": T.IMAGE, + "dynamic_tooltip_notification_panel/locked": T.IMAGE, + "dynamic_tooltip_notification_panel/dyanmic_tooltip_popup_panel": T.IMAGE, + "text_body_focus_border_for_controller_button": T.BUTTON, + "text_body_focus_border_for_controller_button/default": T.PANEL, + "text_body_focus_border_for_controller_button/hover": T.PANEL, + "text_body_focus_border_for_controller_button/hover/focus_border": T.IMAGE, + "text_body_focus_border_for_controller_button/text_control": T.UNKNOWN, } export type CommonDialogsType = { - standard_title_label: T.LABEL - title_label: T.PANEL - "title_label/common_dialogs_0": T.LABEL - "title_label/common_dialogs_1": T.UNKNOWN - main_panel_three_buttons: T.PANEL - "main_panel_three_buttons/common_panel": T.PANEL - "main_panel_three_buttons/title_label": T.PANEL - "main_panel_three_buttons/panel_indent": T.PANEL - "main_panel_three_buttons/panel_indent/inside_header_panel": T.UNKNOWN - "main_panel_three_buttons/top_button_panel": T.UNKNOWN - "main_panel_three_buttons/middle_button_panel": T.UNKNOWN - "main_panel_three_buttons/bottom_button_panel": T.UNKNOWN - main_panel_two_buttons: T.PANEL - "main_panel_two_buttons/common_panel": T.PANEL - "main_panel_two_buttons/title_label": T.PANEL - "main_panel_two_buttons/panel_indent": T.PANEL - "main_panel_two_buttons/panel_indent/inside_header_panel": T.UNKNOWN - "main_panel_two_buttons/top_button_panel": T.UNKNOWN - "main_panel_two_buttons/bottom_button_panel": T.UNKNOWN - main_panel_one_button: T.PANEL - "main_panel_one_button/common_panel": T.PANEL - "main_panel_one_button/title_label": T.PANEL - "main_panel_one_button/panel_indent": T.PANEL - "main_panel_one_button/panel_indent/inside_header_panel": T.UNKNOWN - "main_panel_one_button/bottom_button_panel": T.UNKNOWN - main_panel_no_buttons: T.PANEL - "main_panel_no_buttons/common_panel": T.PANEL - "main_panel_no_buttons/title_label": T.PANEL - "main_panel_no_buttons/panel_indent": T.PANEL - "main_panel_no_buttons/panel_indent/inside_header_panel": T.UNKNOWN - main_panel_no_title_no_buttons: T.PANEL - "main_panel_no_title_no_buttons/common_panel": T.PANEL - "main_panel_no_title_no_buttons/panel_indent": T.PANEL - "main_panel_no_title_no_buttons/panel_indent/inside_header_panel": T.UNKNOWN - main_panel_small_title_one_button: T.PANEL - "main_panel_small_title_one_button/common_panel": T.PANEL - "main_panel_small_title_one_button/title_label": T.PANEL - "main_panel_small_title_one_button/panel_indent": T.PANEL - "main_panel_small_title_one_button/panel_indent/inside_header_panel": T.UNKNOWN - "main_panel_small_title_one_button/bottom_button_panel": T.UNKNOWN - main_panel: T.PANEL - "main_panel/modal_background_image": T.UNKNOWN - "main_panel/panel_indent": T.PANEL - "main_panel/panel_indent/inside_header_panel": T.UNKNOWN - form_fitting_main_panel_no_buttons: T.PANEL - "form_fitting_main_panel_no_buttons/common_panel": T.PANEL - common_panel: T.PANEL - "common_panel/bg_image": T.UNKNOWN - dialog_background_common: T.IMAGE - dialog_background_thin: T.IMAGE - flat_solid_background: T.IMAGE - dialog_background_hollow_common: T.IMAGE - "dialog_background_hollow_common/control": T.IMAGE - "dialog_background_hollow_common/control/inside_header_panel": T.UNKNOWN - "dialog_background_hollow_common/control/close_button_holder": T.STACK_PANEL - "dialog_background_hollow_common/control/title_label": T.PANEL - common_close_button_holder: T.STACK_PANEL - "common_close_button_holder/close": T.BUTTON - "common_close_button_holder/compact_close": T.BUTTON - dialog_background_opaque: T.IMAGE - dialog_background_opaque_with_child: T.IMAGE - dialog_background_hollow_1: T.IMAGE - dialog_background_hollow_2: T.IMAGE - dialog_background_hollow_3: T.IMAGE - dialog_background_hollow_4: T.IMAGE - dialog_background_hollow_6: T.UNKNOWN - full_screen_background: T.PANEL - "full_screen_background/background": T.UNKNOWN - background_image: T.IMAGE + "standard_title_label": T.LABEL, + "title_label": T.PANEL, + "title_label/common_dialogs_0": T.LABEL, + "title_label/common_dialogs_1": T.UNKNOWN, + "main_panel_three_buttons": T.PANEL, + "main_panel_three_buttons/common_panel": T.PANEL, + "main_panel_three_buttons/title_label": T.PANEL, + "main_panel_three_buttons/panel_indent": T.PANEL, + "main_panel_three_buttons/panel_indent/inside_header_panel": T.UNKNOWN, + "main_panel_three_buttons/top_button_panel": T.UNKNOWN, + "main_panel_three_buttons/middle_button_panel": T.UNKNOWN, + "main_panel_three_buttons/bottom_button_panel": T.UNKNOWN, + "main_panel_two_buttons": T.PANEL, + "main_panel_two_buttons/common_panel": T.PANEL, + "main_panel_two_buttons/title_label": T.PANEL, + "main_panel_two_buttons/panel_indent": T.PANEL, + "main_panel_two_buttons/panel_indent/inside_header_panel": T.UNKNOWN, + "main_panel_two_buttons/top_button_panel": T.UNKNOWN, + "main_panel_two_buttons/bottom_button_panel": T.UNKNOWN, + "main_panel_one_button": T.PANEL, + "main_panel_one_button/common_panel": T.PANEL, + "main_panel_one_button/title_label": T.PANEL, + "main_panel_one_button/panel_indent": T.PANEL, + "main_panel_one_button/panel_indent/inside_header_panel": T.UNKNOWN, + "main_panel_one_button/bottom_button_panel": T.UNKNOWN, + "main_panel_no_buttons": T.PANEL, + "main_panel_no_buttons/common_panel": T.PANEL, + "main_panel_no_buttons/title_label": T.PANEL, + "main_panel_no_buttons/panel_indent": T.PANEL, + "main_panel_no_buttons/panel_indent/inside_header_panel": T.UNKNOWN, + "main_panel_no_title_no_buttons": T.PANEL, + "main_panel_no_title_no_buttons/common_panel": T.PANEL, + "main_panel_no_title_no_buttons/panel_indent": T.PANEL, + "main_panel_no_title_no_buttons/panel_indent/inside_header_panel": T.UNKNOWN, + "main_panel_small_title_one_button": T.PANEL, + "main_panel_small_title_one_button/common_panel": T.PANEL, + "main_panel_small_title_one_button/title_label": T.PANEL, + "main_panel_small_title_one_button/panel_indent": T.PANEL, + "main_panel_small_title_one_button/panel_indent/inside_header_panel": T.UNKNOWN, + "main_panel_small_title_one_button/bottom_button_panel": T.UNKNOWN, + "main_panel": T.PANEL, + "main_panel/modal_background_image": T.UNKNOWN, + "main_panel/panel_indent": T.PANEL, + "main_panel/panel_indent/inside_header_panel": T.UNKNOWN, + "form_fitting_main_panel_no_buttons": T.PANEL, + "form_fitting_main_panel_no_buttons/common_panel": T.PANEL, + "common_panel": T.PANEL, + "common_panel/bg_image": T.UNKNOWN, + "dialog_background_common": T.IMAGE, + "dialog_background_thin": T.IMAGE, + "flat_solid_background": T.IMAGE, + "dialog_background_hollow_common": T.IMAGE, + "dialog_background_hollow_common/control": T.IMAGE, + "dialog_background_hollow_common/control/inside_header_panel": T.UNKNOWN, + "dialog_background_hollow_common/control/close_button_holder": T.STACK_PANEL, + "dialog_background_hollow_common/control/title_label": T.PANEL, + "common_close_button_holder": T.STACK_PANEL, + "common_close_button_holder/close": T.BUTTON, + "common_close_button_holder/compact_close": T.BUTTON, + "dialog_background_opaque": T.IMAGE, + "dialog_background_opaque_with_child": T.IMAGE, + "dialog_background_hollow_1": T.IMAGE, + "dialog_background_hollow_2": T.IMAGE, + "dialog_background_hollow_3": T.IMAGE, + "dialog_background_hollow_4": T.IMAGE, + "dialog_background_hollow_6": T.UNKNOWN, + "full_screen_background": T.PANEL, + "full_screen_background/background": T.UNKNOWN, + "background_image": T.IMAGE, } export type CommonTabsType = { - empty_tab_content: T.PANEL - tab_image: T.IMAGE - tab_panel: T.PANEL - "tab_panel/tab_image": T.UNKNOWN - "tab_panel/tab_content_sizer": T.PANEL - "tab_panel/tab_content_sizer/tab_content": T.UNKNOWN - base_tab: T.PANEL - tab_top: T.PANEL - tab_left: T.PANEL - tab_right: T.PANEL - pocket_tab_left: T.PANEL - pocket_tab_right: T.PANEL - pocket_tab_close_button: T.IMAGE - "pocket_tab_close_button/close_button": T.BUTTON - pocket_tab_help_button: T.IMAGE - "pocket_tab_help_button/help_button": T.BUTTON - pocket_tab_close_and_help_button: T.IMAGE - "pocket_tab_close_and_help_button/close_button": T.BUTTON - "pocket_tab_close_and_help_button/help_button": T.BUTTON - tab_close_and_help_button: T.IMAGE - "tab_close_and_help_button/close_button": T.BUTTON - "tab_close_and_help_button/help_button": T.BUTTON + "empty_tab_content": T.PANEL, + "tab_image": T.IMAGE, + "tab_panel": T.PANEL, + "tab_panel/tab_image": T.UNKNOWN, + "tab_panel/tab_content_sizer": T.PANEL, + "tab_panel/tab_content_sizer/tab_content": T.UNKNOWN, + "base_tab": T.PANEL, + "tab_top": T.PANEL, + "tab_left": T.PANEL, + "tab_right": T.PANEL, + "pocket_tab_left": T.PANEL, + "pocket_tab_right": T.PANEL, + "pocket_tab_close_button": T.IMAGE, + "pocket_tab_close_button/close_button": T.BUTTON, + "pocket_tab_help_button": T.IMAGE, + "pocket_tab_help_button/help_button": T.BUTTON, + "pocket_tab_close_and_help_button": T.IMAGE, + "pocket_tab_close_and_help_button/close_button": T.BUTTON, + "pocket_tab_close_and_help_button/help_button": T.BUTTON, + "tab_close_and_help_button": T.IMAGE, + "tab_close_and_help_button/close_button": T.BUTTON, + "tab_close_and_help_button/help_button": T.BUTTON, } export type CommonTogglesType = { - content_toggle_image_panel: T.PANEL - "content_toggle_image_panel/icon": T.IMAGE - content_toggle_label_panel: T.PANEL - "content_toggle_label_panel/toggle_label": T.LABEL - content_toggle_icon_panel: T.PANEL - "content_toggle_icon_panel/content_toggle_image": T.IMAGE - toggle_content_panel: T.STACK_PANEL - "toggle_content_panel/toggle_image_panel": T.UNKNOWN - "toggle_content_panel/toggle_image_padding_label": T.PANEL - "toggle_content_panel/toggle_label_panel": T.UNKNOWN - "toggle_content_panel/toggle_label_padding_toggle_icon": T.PANEL - "toggle_content_panel/toggle_icon": T.PANEL - vertical_form_fitting_toggle_content: T.STACK_PANEL - "vertical_form_fitting_toggle_content/toggle_image_panel": T.UNKNOWN - "vertical_form_fitting_toggle_content/toggle_image_padding_label": T.PANEL - "vertical_form_fitting_toggle_content/toggle_label_panel": T.UNKNOWN - "vertical_form_fitting_toggle_content/toggle_label_padding_toggle_icon": T.PANEL - "vertical_form_fitting_toggle_content/toggle_icon": T.PANEL - light_text_toggle: T.PANEL - light_image_toggle: T.PANEL - light_content_toggle: T.PANEL - dark_ui_toggle: T.PANEL - dark_text_toggle: T.PANEL - dark_image_toggle: T.PANEL - dark_content_toggle: T.PANEL - dark_vertical_template_toggle: T.PANEL - dark_vertical_form_fitting_content_toggle: T.PANEL - "dark_vertical_form_fitting_content_toggle/dark_content_toggle": T.PANEL - dark_template_toggle: T.PANEL - light_template_toggle: T.PANEL - light_ui_toggle: T.PANEL - switch_toggle: T.PANEL - light_text_toggle_collection: T.PANEL - light_image_toggle_collection: T.PANEL - dark_text_toggle_collection: T.PANEL - dark_image_toggle_collection: T.PANEL - dark_ui_toggle_collection: T.PANEL - light_ui_toggle_collection: T.PANEL - switch_toggle_collection: T.PANEL - toggle_state_panel: T.PANEL - "toggle_state_panel/button_panel": T.UNKNOWN - toggle_unchecked: T.PANEL - toggle_checked: T.PANEL - toggle_unchecked_hover: T.PANEL - toggle_checked_hover: T.PANEL - toggle_locked: T.PANEL - toggle_unchecked_locked: T.PANEL - toggle_checked_locked: T.PANEL - toggle_unchecked_hover_with_chevron: T.PANEL - toggle_checked_hover_with_chevron: T.PANEL - toggle_image: T.PANEL - "toggle_image/image": T.UNKNOWN - radio_off_icon: T.IMAGE - radio_off_hover_icon: T.IMAGE - radio_on_icon: T.IMAGE - radio_on_hover_icon: T.IMAGE - check_box_button_toggle_image: T.IMAGE - checkbox_button_checked_state: T.IMAGE - checkbox_button_unchecked_state: T.IMAGE - checkbox_button_checked_hover_state: T.IMAGE - checkbox_button_unchecked_hover_state: T.IMAGE - checkbox_button_checked_locked_state: T.IMAGE - checkbox_button_unchecked_locked_state: T.IMAGE - toggle_checkbox_unchecked: T.PANEL - toggle_checkbox_checked: T.PANEL - toggle_checkbox_unchecked_hover: T.PANEL - toggle_checkbox_checked_hover: T.PANEL - toggle_checkbox_unchecked_locked: T.PANEL - toggle_checkbox_checked_locked: T.PANEL - check_box_button_ui_panel: T.PANEL - "check_box_button_ui_panel/toggle_image": T.PANEL - "check_box_button_ui_panel/toggle_image/button_content": T.PANEL - "check_box_button_ui_panel/toggle_image/border": T.IMAGE - "check_box_button_ui_panel/toggle_image/checkbox_image": T.PANEL - "check_box_button_ui_panel/toggle_image/checkbox_image/image": T.UNKNOWN - button_and_checkbox_template: T.PANEL - button_with_checkbox_toggle: T.PANEL + "content_toggle_image_panel": T.PANEL, + "content_toggle_image_panel/icon": T.IMAGE, + "content_toggle_label_panel": T.PANEL, + "content_toggle_label_panel/toggle_label": T.LABEL, + "content_toggle_icon_panel": T.PANEL, + "content_toggle_icon_panel/content_toggle_image": T.IMAGE, + "toggle_content_panel": T.STACK_PANEL, + "toggle_content_panel/toggle_image_panel": T.UNKNOWN, + "toggle_content_panel/toggle_image_padding_label": T.PANEL, + "toggle_content_panel/toggle_label_panel": T.UNKNOWN, + "toggle_content_panel/toggle_label_padding_toggle_icon": T.PANEL, + "toggle_content_panel/toggle_icon": T.PANEL, + "vertical_form_fitting_toggle_content": T.STACK_PANEL, + "vertical_form_fitting_toggle_content/toggle_image_panel": T.UNKNOWN, + "vertical_form_fitting_toggle_content/toggle_image_padding_label": T.PANEL, + "vertical_form_fitting_toggle_content/toggle_label_panel": T.UNKNOWN, + "vertical_form_fitting_toggle_content/toggle_label_padding_toggle_icon": T.PANEL, + "vertical_form_fitting_toggle_content/toggle_icon": T.PANEL, + "light_text_toggle": T.PANEL, + "light_image_toggle": T.PANEL, + "light_content_toggle": T.PANEL, + "dark_ui_toggle": T.PANEL, + "dark_text_toggle": T.PANEL, + "dark_image_toggle": T.PANEL, + "dark_content_toggle": T.PANEL, + "dark_vertical_template_toggle": T.PANEL, + "dark_vertical_form_fitting_content_toggle": T.PANEL, + "dark_vertical_form_fitting_content_toggle/dark_content_toggle": T.PANEL, + "dark_template_toggle": T.PANEL, + "light_template_toggle": T.PANEL, + "light_ui_toggle": T.PANEL, + "switch_toggle": T.PANEL, + "light_text_toggle_collection": T.PANEL, + "light_image_toggle_collection": T.PANEL, + "dark_text_toggle_collection": T.PANEL, + "dark_image_toggle_collection": T.PANEL, + "dark_ui_toggle_collection": T.PANEL, + "light_ui_toggle_collection": T.PANEL, + "switch_toggle_collection": T.PANEL, + "toggle_state_panel": T.PANEL, + "toggle_state_panel/button_panel": T.UNKNOWN, + "toggle_unchecked": T.PANEL, + "toggle_checked": T.PANEL, + "toggle_unchecked_hover": T.PANEL, + "toggle_checked_hover": T.PANEL, + "toggle_locked": T.PANEL, + "toggle_unchecked_locked": T.PANEL, + "toggle_checked_locked": T.PANEL, + "toggle_unchecked_hover_with_chevron": T.PANEL, + "toggle_checked_hover_with_chevron": T.PANEL, + "toggle_image": T.PANEL, + "toggle_image/image": T.UNKNOWN, + "radio_off_icon": T.IMAGE, + "radio_off_hover_icon": T.IMAGE, + "radio_on_icon": T.IMAGE, + "radio_on_hover_icon": T.IMAGE, + "check_box_button_toggle_image": T.IMAGE, + "checkbox_button_checked_state": T.IMAGE, + "checkbox_button_unchecked_state": T.IMAGE, + "checkbox_button_checked_hover_state": T.IMAGE, + "checkbox_button_unchecked_hover_state": T.IMAGE, + "checkbox_button_checked_locked_state": T.IMAGE, + "checkbox_button_unchecked_locked_state": T.IMAGE, + "toggle_checkbox_unchecked": T.PANEL, + "toggle_checkbox_checked": T.PANEL, + "toggle_checkbox_unchecked_hover": T.PANEL, + "toggle_checkbox_checked_hover": T.PANEL, + "toggle_checkbox_unchecked_locked": T.PANEL, + "toggle_checkbox_checked_locked": T.PANEL, + "check_box_button_ui_panel": T.PANEL, + "check_box_button_ui_panel/toggle_image": T.PANEL, + "check_box_button_ui_panel/toggle_image/button_content": T.PANEL, + "check_box_button_ui_panel/toggle_image/border": T.IMAGE, + "check_box_button_ui_panel/toggle_image/checkbox_image": T.PANEL, + "check_box_button_ui_panel/toggle_image/checkbox_image/image": T.UNKNOWN, + "button_and_checkbox_template": T.PANEL, + "button_with_checkbox_toggle": T.PANEL, } export type FriendsbuttonType = { - friendsdrawer_animated_icon: T.IMAGE - profilepicture: T.CUSTOM - persona_icon_with_border: T.PANEL - "persona_icon_with_border/profile_icon": T.CUSTOM - "persona_icon_with_border/border_black": T.IMAGE - friendsdrawer_persona_icons: T.STACK_PANEL - social_button_stackpanel: T.STACK_PANEL - "social_button_stackpanel/image_panel": T.PANEL - "social_button_stackpanel/image_panel/social_icon": T.IMAGE - social_button_hover_stackpanel: T.STACK_PANEL - self_persona_stackpanel: T.STACK_PANEL - "self_persona_stackpanel/self_icon": T.PANEL - single_friend_persona_stackpanel: T.STACK_PANEL - "single_friend_persona_stackpanel/self_icon": T.STACK_PANEL - "single_friend_persona_stackpanel/friend_one_icon": T.PANEL - many_friend_persona_stackpanel: T.STACK_PANEL - "many_friend_persona_stackpanel/self_icon": T.STACK_PANEL - "many_friend_persona_stackpanel/extra_friends_text_panel": T.PANEL - "many_friend_persona_stackpanel/extra_friends_text_panel/background": T.IMAGE - "many_friend_persona_stackpanel/extra_friends_text_panel/extra_members_label": T.LABEL - "many_friend_persona_stackpanel/extra_friends_text_panel/border_black": T.IMAGE - button: T.BUTTON - "button/default": T.UNKNOWN - "button/hover": T.UNKNOWN - "button/pressed": T.UNKNOWN - "button/locked": T.UNKNOWN - social_factory_stackpanel_default: T.STACK_PANEL - social_factory_stackpanel_hovered: T.STACK_PANEL - friendsdrawer_button_content: T.STACK_PANEL - "friendsdrawer_button_content/social_factory_stackpanel": T.UNKNOWN - "friendsdrawer_button_content/padding_middle": T.PANEL - "friendsdrawer_button_content/vertically_centered_text": T.STACK_PANEL - "friendsdrawer_button_content/vertically_centered_text/top_padding": T.PANEL - "friendsdrawer_button_content/vertically_centered_text/profile_button_label": T.LABEL - "friendsdrawer_button_content/padding_right": T.PANEL - friendsdrawer_hover_button_content: T.STACK_PANEL - friends_drawer_popup: T.BUTTON + "friendsdrawer_animated_icon": T.IMAGE, + "profilepicture": T.CUSTOM, + "persona_icon_with_border": T.PANEL, + "persona_icon_with_border/profile_icon": T.CUSTOM, + "persona_icon_with_border/border_black": T.IMAGE, + "friendsdrawer_persona_icons": T.STACK_PANEL, + "social_button_stackpanel": T.STACK_PANEL, + "social_button_stackpanel/image_panel": T.PANEL, + "social_button_stackpanel/image_panel/social_icon": T.IMAGE, + "social_button_hover_stackpanel": T.STACK_PANEL, + "self_persona_stackpanel": T.STACK_PANEL, + "self_persona_stackpanel/self_icon": T.PANEL, + "single_friend_persona_stackpanel": T.STACK_PANEL, + "single_friend_persona_stackpanel/self_icon": T.STACK_PANEL, + "single_friend_persona_stackpanel/friend_one_icon": T.PANEL, + "many_friend_persona_stackpanel": T.STACK_PANEL, + "many_friend_persona_stackpanel/self_icon": T.STACK_PANEL, + "many_friend_persona_stackpanel/extra_friends_text_panel": T.PANEL, + "many_friend_persona_stackpanel/extra_friends_text_panel/background": T.IMAGE, + "many_friend_persona_stackpanel/extra_friends_text_panel/extra_members_label": T.LABEL, + "many_friend_persona_stackpanel/extra_friends_text_panel/border_black": T.IMAGE, + "button": T.BUTTON, + "button/default": T.UNKNOWN, + "button/hover": T.UNKNOWN, + "button/pressed": T.UNKNOWN, + "button/locked": T.UNKNOWN, + "social_factory_stackpanel_default": T.STACK_PANEL, + "social_factory_stackpanel_hovered": T.STACK_PANEL, + "friendsdrawer_button_content": T.STACK_PANEL, + "friendsdrawer_button_content/social_factory_stackpanel": T.UNKNOWN, + "friendsdrawer_button_content/padding_middle": T.PANEL, + "friendsdrawer_button_content/vertically_centered_text": T.STACK_PANEL, + "friendsdrawer_button_content/vertically_centered_text/top_padding": T.PANEL, + "friendsdrawer_button_content/vertically_centered_text/profile_button_label": T.LABEL, + "friendsdrawer_button_content/padding_right": T.PANEL, + "friendsdrawer_hover_button_content": T.STACK_PANEL, + "friends_drawer_popup": T.BUTTON, } export type IconbuttonType = { - iconbutton_animated_icon: T.IMAGE - button: T.BUTTON - iconbutton_button_content: T.STACK_PANEL - "iconbutton_button_content/icon_wrapper": T.PANEL - "iconbutton_button_content/icon_wrapper/icon_with_border": T.PANEL - "iconbutton_button_content/icon_wrapper/icon_with_border/iconbutton_animated_icon": T.IMAGE - "iconbutton_button_content/icon_wrapper/icon_with_border/border_black": T.IMAGE - "iconbutton_button_content/padding_middle": T.PANEL - "iconbutton_button_content/vertically_centered_text": T.STACK_PANEL - "iconbutton_button_content/vertically_centered_text/top_padding": T.PANEL - "iconbutton_button_content/vertically_centered_text/profile_button_label": T.LABEL + "iconbutton_animated_icon": T.IMAGE, + "button": T.BUTTON, + "iconbutton_button_content": T.STACK_PANEL, + "iconbutton_button_content/icon_wrapper": T.PANEL, + "iconbutton_button_content/icon_wrapper/icon_with_border": T.PANEL, + "iconbutton_button_content/icon_wrapper/icon_with_border/iconbutton_animated_icon": T.IMAGE, + "iconbutton_button_content/icon_wrapper/icon_with_border/border_black": T.IMAGE, + "iconbutton_button_content/padding_middle": T.PANEL, + "iconbutton_button_content/vertically_centered_text": T.STACK_PANEL, + "iconbutton_button_content/vertically_centered_text/top_padding": T.PANEL, + "iconbutton_button_content/vertically_centered_text/profile_button_label": T.LABEL, } export type UpdateDimensionsType = { - update_dimensions_update_and_play_button: T.BUTTON - update_dimensions_description: T.LABEL - update_dimensions_label_panel: T.PANEL - make_backup_checkbox: T.PANEL - "make_backup_checkbox/header_description_stack_panel": T.STACK_PANEL - "make_backup_checkbox/header_description_stack_panel/checkbox_visuals": T.PANEL - "make_backup_checkbox/header_description_stack_panel/buffer_panel": T.PANEL - "make_backup_checkbox/header_description_stack_panel/buffer_panel/label": T.LABEL - "make_backup_checkbox/header_description_stack_panel/another_panel": T.PANEL - world_upgrade: T.IMAGE - update_dimensions_dialog: T.PANEL - "update_dimensions_dialog/common_panel": T.PANEL - "update_dimensions_dialog/title_label": T.PANEL - "update_dimensions_dialog/panel_indent": T.PANEL - "update_dimensions_dialog/panel_indent/inside_header_panel": T.UNKNOWN - "update_dimensions_dialog/top_button_panel": T.UNKNOWN - "update_dimensions_dialog/bottom_button_panel": T.UNKNOWN - "update_dimensions_dialog/world_upgrade_image": T.IMAGE - gamepad_helpers: T.PANEL - "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL - update_dimensions_screen: T.SCREEN - update_dimensions_screen_content: T.PANEL - "update_dimensions_screen_content/update_dimensions_dialog": T.PANEL - "update_dimensions_screen_content/gamepad_helpers": T.PANEL + "update_dimensions_update_and_play_button": T.BUTTON, + "update_dimensions_description": T.LABEL, + "update_dimensions_label_panel": T.PANEL, + "make_backup_checkbox": T.PANEL, + "make_backup_checkbox/header_description_stack_panel": T.STACK_PANEL, + "make_backup_checkbox/header_description_stack_panel/checkbox_visuals": T.PANEL, + "make_backup_checkbox/header_description_stack_panel/buffer_panel": T.PANEL, + "make_backup_checkbox/header_description_stack_panel/buffer_panel/label": T.LABEL, + "make_backup_checkbox/header_description_stack_panel/another_panel": T.PANEL, + "world_upgrade": T.IMAGE, + "update_dimensions_dialog": T.PANEL, + "update_dimensions_dialog/common_panel": T.PANEL, + "update_dimensions_dialog/title_label": T.PANEL, + "update_dimensions_dialog/panel_indent": T.PANEL, + "update_dimensions_dialog/panel_indent/inside_header_panel": T.UNKNOWN, + "update_dimensions_dialog/top_button_panel": T.UNKNOWN, + "update_dimensions_dialog/bottom_button_panel": T.UNKNOWN, + "update_dimensions_dialog/world_upgrade_image": T.IMAGE, + "gamepad_helpers": T.PANEL, + "gamepad_helpers/gamepad_helper_a": T.STACK_PANEL, + "update_dimensions_screen": T.SCREEN, + "update_dimensions_screen_content": T.PANEL, + "update_dimensions_screen_content/update_dimensions_dialog": T.PANEL, + "update_dimensions_screen_content/gamepad_helpers": T.PANEL, } export type UpdateVersionType = { - update_version_screen: T.SCREEN - update_version_popup: T.PANEL - background: T.IMAGE - update_version_content: T.STACK_PANEL - "update_version_content/top_of_version_panel": T.STACK_PANEL - "update_version_content/spacer_1px": T.PANEL - "update_version_content/update_body_text": T.LABEL - "update_version_content/spacer_1px_2": T.PANEL - patch_notes_panel: T.IMAGE - "patch_notes_panel/patch_notes_text": T.PANEL - picture_and_patch_notes: T.STACK_PANEL - "picture_and_patch_notes/patch_notes_image_outline": T.IMAGE - "picture_and_patch_notes/patch_notes_image_outline/patch_notes_image": T.IMAGE - "picture_and_patch_notes/patch_notes_panel": T.IMAGE - patch_notes: T.PANEL - "patch_notes/patch_notes_text": T.LABEL - update_body_text: T.LABEL - update_button: T.BUTTON + "update_version_screen": T.SCREEN, + "update_version_popup": T.PANEL, + "background": T.IMAGE, + "update_version_content": T.STACK_PANEL, + "update_version_content/top_of_version_panel": T.STACK_PANEL, + "update_version_content/spacer_1px": T.PANEL, + "update_version_content/update_body_text": T.LABEL, + "update_version_content/spacer_1px_2": T.PANEL, + "patch_notes_panel": T.IMAGE, + "patch_notes_panel/patch_notes_text": T.PANEL, + "picture_and_patch_notes": T.STACK_PANEL, + "picture_and_patch_notes/patch_notes_image_outline": T.IMAGE, + "picture_and_patch_notes/patch_notes_image_outline/patch_notes_image": T.IMAGE, + "picture_and_patch_notes/patch_notes_panel": T.IMAGE, + "patch_notes": T.PANEL, + "patch_notes/patch_notes_text": T.LABEL, + "update_body_text": T.LABEL, + "update_button": T.BUTTON, } export type WorldRecoveryType = { - world_recovery_screen: T.SCREEN - world_recovery_screen_content: T.PANEL - "world_recovery_screen_content/dialog": T.PANEL - description_panel: T.PANEL - scrolling_panel: T.PANEL - description_label: T.LABEL - button_panel: T.BUTTON - background: T.IMAGE + "world_recovery_screen": T.SCREEN, + "world_recovery_screen_content": T.PANEL, + "world_recovery_screen_content/dialog": T.PANEL, + "description_panel": T.PANEL, + "scrolling_panel": T.PANEL, + "description_label": T.LABEL, + "button_panel": T.BUTTON, + "background": T.IMAGE, } export type WorldTemplatesType = { - horizontal_padding: T.PANEL - world_icon: T.IMAGE - realms_icon: T.IMAGE - label_background: T.IMAGE - lock_icon: T.IMAGE - realms_plus_icon: T.IMAGE - new_world_toggle: T.PANEL - new_realm_toggle: T.PANEL - world_button_content: T.STACK_PANEL - "world_button_content/horizontal_padding_0": T.PANEL - "world_button_content/icon_panel": T.PANEL - "world_button_content/horizontal_padding_1": T.PANEL - "world_button_content/world_button_label_panel": T.PANEL - "world_button_content/world_button_label_panel/world_button_label": T.LABEL - "world_button_content/horizontal_padding_2": T.PANEL - world_button_label: T.LABEL - common_button_template: T.BUTTON - generate_random: T.BUTTON - help_button: T.BUTTON - grid_button_content_template: T.STACK_PANEL - "grid_button_content_template/content": T.UNKNOWN - label_content_template: T.STACK_PANEL - "label_content_template/label_panel": T.PANEL - "label_content_template/label_panel/label_panel_layout": T.PANEL - "label_content_template/label_panel/label_panel_layout/label": T.LABEL - my_templates_label: T.STACK_PANEL - realms_plus_templates_label: T.STACK_PANEL - custom_templates_label: T.STACK_PANEL - generate_random_button: T.STACK_PANEL - realms_templates_info: T.IMAGE - "realms_templates_info/info_label": T.LABEL - world_list_text: T.LABEL - world_template_screenshot: T.IMAGE - "world_template_screenshot/picture": T.IMAGE - world_template_name: T.LABEL - world_template_description: T.LABEL - world_template_version: T.LABEL - template_download_text: T.LABEL - world_template_text_panel: T.PANEL - "world_template_text_panel/text_indent": T.PANEL - "world_template_text_panel/text_indent/top_side": T.STACK_PANEL - "world_template_text_panel/text_indent/top_side/world_template_name": T.LABEL - "world_template_text_panel/text_indent/top_side/download_text_label": T.LABEL - "world_template_text_panel/text_indent/bottom_side": T.STACK_PANEL - "world_template_text_panel/text_indent/bottom_side/csb_icon": T.PANEL - "world_template_text_panel/text_indent/bottom_side/pad": T.PANEL - "world_template_text_panel/text_indent/bottom_side/world_template_description": T.LABEL - "world_template_text_panel/text_indent/bottom_side/world_template_version": T.LABEL - csb_banner: T.PANEL - "csb_banner/banner": T.IMAGE - world_template_content_panel: T.STACK_PANEL - "world_template_content_panel/world_template_screenshot": T.IMAGE - "world_template_content_panel/world_template_text_panel": T.PANEL - "world_template_content_panel/lock_panel": T.PANEL - "world_template_content_panel/lock_panel/lock_icon": T.IMAGE - world_template_item_button: T.BUTTON - realms_plus_template_item_button: T.BUTTON - world_template_item: T.STACK_PANEL - "world_template_item/world_template_item_button": T.BUTTON - realms_plus_template_item: T.STACK_PANEL - "realms_plus_template_item/realms_plus_template_item_button": T.BUTTON - world_template_item_grid: T.GRID - see_more_templates_button: T.BUTTON - suggested_see_more_button: T.BUTTON - realms_plus_see_more_button: T.BUTTON - world_template_inventory_see_more_button: T.BUTTON - custom_world_template_see_more_button: T.BUTTON - world_template_section_factory: T.STACK_PANEL - suggested_template_section_factory: T.STACK_PANEL - realms_plus_template_section_factory: T.STACK_PANEL - world_template_inventory_section_factory: T.STACK_PANEL - custom_world_template_section_factory: T.STACK_PANEL - custom_world_template_item_grid: T.GRID - no_owned_templates_text_label: T.LABEL - no_owned_templates_text: T.LABEL - no_template_content_owned: T.IMAGE - "no_template_content_owned/no_template_content_owned_text_panel": T.LABEL - common_scrolling_panel: T.PANEL - common_content: T.PANEL - scrolling_offsets: T.PANEL - template_scroll_content: T.PANEL - "template_scroll_content/scrolling_panel": T.PANEL - common_scroll_pane: T.PANEL - template_scroll_panel: T.PANEL - "template_scroll_panel/world_template_screen_content_stack_panel": T.STACK_PANEL - world_list_grids_stack: T.STACK_PANEL - "world_list_grids_stack/template_list_panel": T.STACK_PANEL - "world_list_grids_stack/template_list_panel/my_templates_label_panel": T.STACK_PANEL - "world_list_grids_stack/template_list_panel/world_template_inventory_section_factory": T.STACK_PANEL - "world_list_grids_stack/template_list_panel/template_bottom_padding": T.PANEL - "world_list_grids_stack/store_panel": T.PANEL - "world_list_grids_stack/store_panel/loading_panel": T.PANEL - "world_list_grids_stack/store_panel/store_grids": T.STACK_PANEL - "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel": T.STACK_PANEL - "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_label_panel": T.STACK_PANEL - "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_template_section_factory": T.STACK_PANEL - "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_template_bottom_padding": T.PANEL - "world_list_grids_stack/store_panel/store_grids/suggested_content_panel": T.STACK_PANEL - "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_content_offers_title_label": T.LABEL - "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_template_section_factory": T.STACK_PANEL - "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_template_bottom_padding": T.PANEL - "world_list_grids_stack/custom_template_panel": T.STACK_PANEL - "world_list_grids_stack/custom_template_panel/custom_templates_label_panel": T.STACK_PANEL - "world_list_grids_stack/custom_template_panel/custom_world_template_section_factory": T.STACK_PANEL - "world_list_grids_stack/custom_template_panel/custom_template_list_bottom_padding": T.PANEL - "world_list_grids_stack/realms_info_panel": T.STACK_PANEL - "world_list_grids_stack/realms_info_panel/padding": T.PANEL - "world_list_grids_stack/realms_info_panel/realms_templates_info": T.IMAGE - "world_list_grids_stack/realms_info_panel/open_uri_button": T.BUTTON - world_list_grid_content: T.PANEL - "world_list_grid_content/world_list_grids_stack": T.STACK_PANEL - world_template_screen_content_stack_panel: T.STACK_PANEL - "world_template_screen_content_stack_panel/padding_0": T.PANEL - "world_template_screen_content_stack_panel/crossplatform_disabled_panel": T.IMAGE - "world_template_screen_content_stack_panel/crossplatform_disabled_panel/disable_text": T.LABEL - "world_template_screen_content_stack_panel/crossplatform_disable_spacer": T.PANEL - "world_template_screen_content_stack_panel/generate_random_panel": T.STACK_PANEL - "world_template_screen_content_stack_panel/generate_random_button_bottom_padding": T.PANEL - "world_template_screen_content_stack_panel/world_list_grid_content": T.PANEL - open_account_setting_button: T.BUTTON - world_templates_screen: T.SCREEN - world_templates_picker_content: T.PANEL - "world_templates_picker_content/background": T.STACK_PANEL + "horizontal_padding": T.PANEL, + "world_icon": T.IMAGE, + "realms_icon": T.IMAGE, + "label_background": T.IMAGE, + "lock_icon": T.IMAGE, + "realms_plus_icon": T.IMAGE, + "new_world_toggle": T.PANEL, + "new_realm_toggle": T.PANEL, + "world_button_content": T.STACK_PANEL, + "world_button_content/horizontal_padding_0": T.PANEL, + "world_button_content/icon_panel": T.PANEL, + "world_button_content/horizontal_padding_1": T.PANEL, + "world_button_content/world_button_label_panel": T.PANEL, + "world_button_content/world_button_label_panel/world_button_label": T.LABEL, + "world_button_content/horizontal_padding_2": T.PANEL, + "world_button_label": T.LABEL, + "common_button_template": T.BUTTON, + "generate_random": T.BUTTON, + "help_button": T.BUTTON, + "grid_button_content_template": T.STACK_PANEL, + "grid_button_content_template/content": T.UNKNOWN, + "label_content_template": T.STACK_PANEL, + "label_content_template/label_panel": T.PANEL, + "label_content_template/label_panel/label_panel_layout": T.PANEL, + "label_content_template/label_panel/label_panel_layout/label": T.LABEL, + "my_templates_label": T.STACK_PANEL, + "realms_plus_templates_label": T.STACK_PANEL, + "custom_templates_label": T.STACK_PANEL, + "generate_random_button": T.STACK_PANEL, + "realms_templates_info": T.IMAGE, + "realms_templates_info/info_label": T.LABEL, + "world_list_text": T.LABEL, + "world_template_screenshot": T.IMAGE, + "world_template_screenshot/picture": T.IMAGE, + "world_template_name": T.LABEL, + "world_template_description": T.LABEL, + "world_template_version": T.LABEL, + "template_download_text": T.LABEL, + "world_template_text_panel": T.PANEL, + "world_template_text_panel/text_indent": T.PANEL, + "world_template_text_panel/text_indent/top_side": T.STACK_PANEL, + "world_template_text_panel/text_indent/top_side/world_template_name": T.LABEL, + "world_template_text_panel/text_indent/top_side/download_text_label": T.LABEL, + "world_template_text_panel/text_indent/bottom_side": T.STACK_PANEL, + "world_template_text_panel/text_indent/bottom_side/csb_icon": T.PANEL, + "world_template_text_panel/text_indent/bottom_side/pad": T.PANEL, + "world_template_text_panel/text_indent/bottom_side/world_template_description": T.LABEL, + "world_template_text_panel/text_indent/bottom_side/world_template_version": T.LABEL, + "csb_banner": T.PANEL, + "csb_banner/banner": T.IMAGE, + "world_template_content_panel": T.STACK_PANEL, + "world_template_content_panel/world_template_screenshot": T.IMAGE, + "world_template_content_panel/world_template_text_panel": T.PANEL, + "world_template_content_panel/lock_panel": T.PANEL, + "world_template_content_panel/lock_panel/lock_icon": T.IMAGE, + "world_template_item_button": T.BUTTON, + "realms_plus_template_item_button": T.BUTTON, + "world_template_item": T.STACK_PANEL, + "world_template_item/world_template_item_button": T.BUTTON, + "realms_plus_template_item": T.STACK_PANEL, + "realms_plus_template_item/realms_plus_template_item_button": T.BUTTON, + "world_template_item_grid": T.GRID, + "see_more_templates_button": T.BUTTON, + "suggested_see_more_button": T.BUTTON, + "realms_plus_see_more_button": T.BUTTON, + "world_template_inventory_see_more_button": T.BUTTON, + "custom_world_template_see_more_button": T.BUTTON, + "world_template_section_factory": T.STACK_PANEL, + "suggested_template_section_factory": T.STACK_PANEL, + "realms_plus_template_section_factory": T.STACK_PANEL, + "world_template_inventory_section_factory": T.STACK_PANEL, + "custom_world_template_section_factory": T.STACK_PANEL, + "custom_world_template_item_grid": T.GRID, + "no_owned_templates_text_label": T.LABEL, + "no_owned_templates_text": T.LABEL, + "no_template_content_owned": T.IMAGE, + "no_template_content_owned/no_template_content_owned_text_panel": T.LABEL, + "common_scrolling_panel": T.PANEL, + "common_content": T.PANEL, + "scrolling_offsets": T.PANEL, + "template_scroll_content": T.PANEL, + "template_scroll_content/scrolling_panel": T.PANEL, + "common_scroll_pane": T.PANEL, + "template_scroll_panel": T.PANEL, + "template_scroll_panel/world_template_screen_content_stack_panel": T.STACK_PANEL, + "world_list_grids_stack": T.STACK_PANEL, + "world_list_grids_stack/template_list_panel": T.STACK_PANEL, + "world_list_grids_stack/template_list_panel/my_templates_label_panel": T.STACK_PANEL, + "world_list_grids_stack/template_list_panel/world_template_inventory_section_factory": T.STACK_PANEL, + "world_list_grids_stack/template_list_panel/template_bottom_padding": T.PANEL, + "world_list_grids_stack/store_panel": T.PANEL, + "world_list_grids_stack/store_panel/loading_panel": T.PANEL, + "world_list_grids_stack/store_panel/store_grids": T.STACK_PANEL, + "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel": T.STACK_PANEL, + "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_label_panel": T.STACK_PANEL, + "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_template_section_factory": T.STACK_PANEL, + "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_template_bottom_padding": T.PANEL, + "world_list_grids_stack/store_panel/store_grids/suggested_content_panel": T.STACK_PANEL, + "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_content_offers_title_label": T.LABEL, + "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_template_section_factory": T.STACK_PANEL, + "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_template_bottom_padding": T.PANEL, + "world_list_grids_stack/custom_template_panel": T.STACK_PANEL, + "world_list_grids_stack/custom_template_panel/custom_templates_label_panel": T.STACK_PANEL, + "world_list_grids_stack/custom_template_panel/custom_world_template_section_factory": T.STACK_PANEL, + "world_list_grids_stack/custom_template_panel/custom_template_list_bottom_padding": T.PANEL, + "world_list_grids_stack/realms_info_panel": T.STACK_PANEL, + "world_list_grids_stack/realms_info_panel/padding": T.PANEL, + "world_list_grids_stack/realms_info_panel/realms_templates_info": T.IMAGE, + "world_list_grids_stack/realms_info_panel/open_uri_button": T.BUTTON, + "world_list_grid_content": T.PANEL, + "world_list_grid_content/world_list_grids_stack": T.STACK_PANEL, + "world_template_screen_content_stack_panel": T.STACK_PANEL, + "world_template_screen_content_stack_panel/padding_0": T.PANEL, + "world_template_screen_content_stack_panel/crossplatform_disabled_panel": T.IMAGE, + "world_template_screen_content_stack_panel/crossplatform_disabled_panel/disable_text": T.LABEL, + "world_template_screen_content_stack_panel/crossplatform_disable_spacer": T.PANEL, + "world_template_screen_content_stack_panel/generate_random_panel": T.STACK_PANEL, + "world_template_screen_content_stack_panel/generate_random_button_bottom_padding": T.PANEL, + "world_template_screen_content_stack_panel/world_list_grid_content": T.PANEL, + "open_account_setting_button": T.BUTTON, + "world_templates_screen": T.SCREEN, + "world_templates_picker_content": T.PANEL, + "world_templates_picker_content/background": T.STACK_PANEL, } export type XblConsoleQrSigninType = { - banner_fill: T.IMAGE - main_panel_qr: T.STACK_PANEL - "main_panel_qr/left_panel": T.STACK_PANEL - "main_panel_qr/divider": T.PANEL - "main_panel_qr/right_panel": T.STACK_PANEL - "main_panel_qr/right_panel/scrolling_panel_sizer": T.PANEL - "main_panel_qr/right_panel/scrolling_panel_sizer/right_scroll_panel": T.BUTTON - common_scrolling_panel: T.PANEL - gamepad_helpers: T.PANEL - "gamepad_helpers/gamepad_helper_b": T.STACK_PANEL - xbl_console_qr_signin: T.SCREEN - xbl_console_qr_signin_screen_content: T.PANEL - "xbl_console_qr_signin_screen_content/gamepad_helpers": T.PANEL - "xbl_console_qr_signin_screen_content/dialog": T.PANEL - dialog: T.PANEL - scroll_content_focus_border: T.BUTTON - left_panel: T.STACK_PANEL - "left_panel/left_header": T.LABEL - "left_panel/padding_1": T.PANEL - "left_panel/left_body": T.LABEL - "left_panel/padding_2": T.PANEL - "left_panel/qr_panel": T.PANEL - "left_panel/qr_panel/qr_border": T.IMAGE - "left_panel/qr_panel/qr_code": T.CUSTOM - "left_panel/qr_panel/bee_overlay": T.IMAGE - input_panel_wrapper: T.INPUT_PANEL - "input_panel_wrapper/r_scroll_panel": T.STACK_PANEL - right_scroll_panel: T.STACK_PANEL - "right_scroll_panel/right_header": T.LABEL - "right_scroll_panel/padding_1": T.PANEL - "right_scroll_panel/website_message_label": T.LABEL - "right_scroll_panel/padding_2": T.PANEL - "right_scroll_panel/wrapper_panel_1": T.PANEL - "right_scroll_panel/wrapper_panel_1/banner_1": T.IMAGE - "right_scroll_panel/wrapper_panel_1/banner_1/url_label": T.LABEL - "right_scroll_panel/padding_3": T.PANEL - "right_scroll_panel/code_message_label": T.LABEL - "right_scroll_panel/padding_4": T.PANEL - "right_scroll_panel/wrapper_panel_2": T.PANEL - "right_scroll_panel/wrapper_panel_2/banner_2": T.IMAGE - "right_scroll_panel/wrapper_panel_2/banner_2/code_label": T.LABEL - "right_scroll_panel/padding_5": T.PANEL - "right_scroll_panel/code_message_body1": T.LABEL - "right_scroll_panel/padding_6": T.PANEL - "right_scroll_panel/code_message_body2": T.LABEL - "right_scroll_panel/padding_7": T.PANEL - "right_scroll_panel/warning_messages": T.STACK_PANEL - ps4_warning_message_panel: T.STACK_PANEL - "ps4_warning_message_panel/sign_in_account_message": T.LABEL - "ps4_warning_message_panel/padding_1": T.PANEL - "ps4_warning_message_panel/permanent_linking_message": T.LABEL + "banner_fill": T.IMAGE, + "main_panel_qr": T.STACK_PANEL, + "main_panel_qr/left_panel": T.STACK_PANEL, + "main_panel_qr/divider": T.PANEL, + "main_panel_qr/right_panel": T.STACK_PANEL, + "main_panel_qr/right_panel/scrolling_panel_sizer": T.PANEL, + "main_panel_qr/right_panel/scrolling_panel_sizer/right_scroll_panel": T.BUTTON, + "common_scrolling_panel": T.PANEL, + "gamepad_helpers": T.PANEL, + "gamepad_helpers/gamepad_helper_b": T.STACK_PANEL, + "xbl_console_qr_signin": T.SCREEN, + "xbl_console_qr_signin_screen_content": T.PANEL, + "xbl_console_qr_signin_screen_content/gamepad_helpers": T.PANEL, + "xbl_console_qr_signin_screen_content/dialog": T.PANEL, + "dialog": T.PANEL, + "scroll_content_focus_border": T.BUTTON, + "left_panel": T.STACK_PANEL, + "left_panel/left_header": T.LABEL, + "left_panel/padding_1": T.PANEL, + "left_panel/left_body": T.LABEL, + "left_panel/padding_2": T.PANEL, + "left_panel/qr_panel": T.PANEL, + "left_panel/qr_panel/qr_border": T.IMAGE, + "left_panel/qr_panel/qr_code": T.CUSTOM, + "left_panel/qr_panel/bee_overlay": T.IMAGE, + "input_panel_wrapper": T.INPUT_PANEL, + "input_panel_wrapper/r_scroll_panel": T.STACK_PANEL, + "right_scroll_panel": T.STACK_PANEL, + "right_scroll_panel/right_header": T.LABEL, + "right_scroll_panel/padding_1": T.PANEL, + "right_scroll_panel/website_message_label": T.LABEL, + "right_scroll_panel/padding_2": T.PANEL, + "right_scroll_panel/wrapper_panel_1": T.PANEL, + "right_scroll_panel/wrapper_panel_1/banner_1": T.IMAGE, + "right_scroll_panel/wrapper_panel_1/banner_1/url_label": T.LABEL, + "right_scroll_panel/padding_3": T.PANEL, + "right_scroll_panel/code_message_label": T.LABEL, + "right_scroll_panel/padding_4": T.PANEL, + "right_scroll_panel/wrapper_panel_2": T.PANEL, + "right_scroll_panel/wrapper_panel_2/banner_2": T.IMAGE, + "right_scroll_panel/wrapper_panel_2/banner_2/code_label": T.LABEL, + "right_scroll_panel/padding_5": T.PANEL, + "right_scroll_panel/code_message_body1": T.LABEL, + "right_scroll_panel/padding_6": T.PANEL, + "right_scroll_panel/code_message_body2": T.LABEL, + "right_scroll_panel/padding_7": T.PANEL, + "right_scroll_panel/warning_messages": T.STACK_PANEL, + "ps4_warning_message_panel": T.STACK_PANEL, + "ps4_warning_message_panel/sign_in_account_message": T.LABEL, + "ps4_warning_message_panel/padding_1": T.PANEL, + "ps4_warning_message_panel/permanent_linking_message": T.LABEL, } export type XblConsoleSigninType = { - banner_fill: T.IMAGE - main_panel: T.STACK_PANEL - "main_panel/padding_0": T.PANEL - "main_panel/message_label_panel": T.STACK_PANEL - "main_panel/message_label_panel/message_label": T.LABEL - "main_panel/padding_1": T.PANEL - "main_panel/website_message_label": T.LABEL - "main_panel/banner_1": T.IMAGE - "main_panel/banner_1/url_label": T.LABEL - "main_panel/padding_2": T.PANEL - "main_panel/code_message_label": T.LABEL - "main_panel/banner_2": T.IMAGE - "main_panel/banner_2/code_label": T.LABEL - gamepad_helpers: T.PANEL - "gamepad_helpers/gamepad_helper_b": T.STACK_PANEL - xbl_console_signin: T.SCREEN - xbl_console_signin_screen_content: T.PANEL - "xbl_console_signin_screen_content/gamepad_helpers": T.PANEL - "xbl_console_signin_screen_content/dialog": T.PANEL - dialog: T.PANEL + "banner_fill": T.IMAGE, + "main_panel": T.STACK_PANEL, + "main_panel/padding_0": T.PANEL, + "main_panel/message_label_panel": T.STACK_PANEL, + "main_panel/message_label_panel/message_label": T.LABEL, + "main_panel/padding_1": T.PANEL, + "main_panel/website_message_label": T.LABEL, + "main_panel/banner_1": T.IMAGE, + "main_panel/banner_1/url_label": T.LABEL, + "main_panel/padding_2": T.PANEL, + "main_panel/code_message_label": T.LABEL, + "main_panel/banner_2": T.IMAGE, + "main_panel/banner_2/code_label": T.LABEL, + "gamepad_helpers": T.PANEL, + "gamepad_helpers/gamepad_helper_b": T.STACK_PANEL, + "xbl_console_signin": T.SCREEN, + "xbl_console_signin_screen_content": T.PANEL, + "xbl_console_signin_screen_content/gamepad_helpers": T.PANEL, + "xbl_console_signin_screen_content/dialog": T.PANEL, + "dialog": T.PANEL, } export type XblConsoleSigninSucceededType = { - banner_fill: T.IMAGE - gamer_score_icon: T.IMAGE - profile_pic: T.CUSTOM - gamertag_label: T.LABEL - gamer_score_label: T.LABEL - gamer_score_panel: T.STACK_PANEL - "gamer_score_panel/gamer_score_icon": T.IMAGE - "gamer_score_panel/padding_0": T.PANEL - "gamer_score_panel/gamer_score_panel": T.PANEL - "gamer_score_panel/gamer_score_panel/gamer_score": T.LABEL - button_panel: T.PANEL - "button_panel/play": T.BUTTON - text_panel: T.PANEL - "text_panel/new_account_text": T.LABEL - third_party_platform_legal_text: T.PANEL - new_account_text_panel: T.PANEL - gamer_profile_panel: T.STACK_PANEL - "gamer_profile_panel/picture_panel": T.PANEL - "gamer_profile_panel/picture_panel/banner": T.IMAGE - "gamer_profile_panel/picture_panel/banner/profile_pic": T.CUSTOM - "gamer_profile_panel/padding_1": T.PANEL - "gamer_profile_panel/info_panel": T.PANEL - "gamer_profile_panel/info_panel/profile_info_panel": T.STACK_PANEL - "gamer_profile_panel/info_panel/profile_info_panel/gamertag_label": T.LABEL - "gamer_profile_panel/info_panel/profile_info_panel/padding_0": T.PANEL - "gamer_profile_panel/info_panel/profile_info_panel/gamer_score_panel": T.STACK_PANEL - main_panel: T.STACK_PANEL - "main_panel/profile": T.STACK_PANEL - "main_panel/padding_0": T.PANEL - "main_panel/third_party_legal_text_panel": T.PANEL - "main_panel/padding_1": T.PANEL - "main_panel/new_account_text_panel": T.PANEL - "main_panel/padding_2": T.PANEL - "main_panel/button_panel": T.PANEL - xbl_console_signin_succeeded: T.SCREEN - xbl_console_signin_succeeded_screen_content: T.PANEL - "xbl_console_signin_succeeded_screen_content/dialog": T.PANEL - dialog: T.PANEL + "banner_fill": T.IMAGE, + "gamer_score_icon": T.IMAGE, + "profile_pic": T.CUSTOM, + "gamertag_label": T.LABEL, + "gamer_score_label": T.LABEL, + "gamer_score_panel": T.STACK_PANEL, + "gamer_score_panel/gamer_score_icon": T.IMAGE, + "gamer_score_panel/padding_0": T.PANEL, + "gamer_score_panel/gamer_score_panel": T.PANEL, + "gamer_score_panel/gamer_score_panel/gamer_score": T.LABEL, + "button_panel": T.PANEL, + "button_panel/play": T.BUTTON, + "text_panel": T.PANEL, + "text_panel/new_account_text": T.LABEL, + "third_party_platform_legal_text": T.PANEL, + "new_account_text_panel": T.PANEL, + "gamer_profile_panel": T.STACK_PANEL, + "gamer_profile_panel/picture_panel": T.PANEL, + "gamer_profile_panel/picture_panel/banner": T.IMAGE, + "gamer_profile_panel/picture_panel/banner/profile_pic": T.CUSTOM, + "gamer_profile_panel/padding_1": T.PANEL, + "gamer_profile_panel/info_panel": T.PANEL, + "gamer_profile_panel/info_panel/profile_info_panel": T.STACK_PANEL, + "gamer_profile_panel/info_panel/profile_info_panel/gamertag_label": T.LABEL, + "gamer_profile_panel/info_panel/profile_info_panel/padding_0": T.PANEL, + "gamer_profile_panel/info_panel/profile_info_panel/gamer_score_panel": T.STACK_PANEL, + "main_panel": T.STACK_PANEL, + "main_panel/profile": T.STACK_PANEL, + "main_panel/padding_0": T.PANEL, + "main_panel/third_party_legal_text_panel": T.PANEL, + "main_panel/padding_1": T.PANEL, + "main_panel/new_account_text_panel": T.PANEL, + "main_panel/padding_2": T.PANEL, + "main_panel/button_panel": T.PANEL, + "xbl_console_signin_succeeded": T.SCREEN, + "xbl_console_signin_succeeded_screen_content": T.PANEL, + "xbl_console_signin_succeeded_screen_content/dialog": T.PANEL, + "dialog": T.PANEL, } export type XblImmediateSigninType = { - xbl_immediate_signin_screen: T.SCREEN - xbl_immediate_signin_screen_content: T.PANEL - "xbl_immediate_signin_screen_content/root_panel": T.PANEL + "xbl_immediate_signin_screen": T.SCREEN, + "xbl_immediate_signin_screen_content": T.PANEL, + "xbl_immediate_signin_screen_content/root_panel": T.PANEL, } export type Win10TrialConversionType = { - padding_horizontal: T.PANEL - padding_vertical: T.PANEL - padding_vertical_3: T.PANEL - background_image: T.IMAGE - title_image: T.IMAGE - focus_border: T.IMAGE - pack_image: T.IMAGE - pack_image_panel: T.PANEL - "pack_image_panel/pack_image": T.IMAGE - title_image_border: T.IMAGE - "title_image_border/image": T.IMAGE - pack_image_with_border: T.IMAGE - "pack_image_with_border/image": T.IMAGE - label_panel: T.LABEL - button_panel: T.STACK_PANEL - "button_panel/padding_5": T.PANEL - "button_panel/buy_now_button": T.BUTTON - "button_panel/padding_6": T.PANEL - buy_now_button: T.BUTTON - buy_now_label: T.PANEL - "buy_now_label/button_label": T.LABEL - is_focused: T.IMAGE - filler_panel: T.PANEL - focus_border_button: T.BUTTON - "focus_border_button/default": T.PANEL - "focus_border_button/hover": T.IMAGE - "focus_border_button/pressed": T.IMAGE - grid_item: T.STACK_PANEL - "grid_item/padding_1": T.PANEL - "grid_item/pack_image_pane": T.PANEL - "grid_item/padding_2": T.PANEL - "grid_item/pack_panel": T.STACK_PANEL - "grid_item/padding_3": T.PANEL - grid_item_vertical: T.PANEL - "grid_item_vertical/grid_item_horizontal": T.STACK_PANEL - "grid_item_vertical/pack_grid": T.BUTTON - pack_panel: T.STACK_PANEL - "pack_panel/packtitle": T.LABEL - "pack_panel/padding_2": T.PANEL - "pack_panel/packdesc": T.LABEL - collection_main_panel: T.STACK_PANEL - "collection_main_panel/padding_1": T.PANEL - "collection_main_panel/title_panel": T.LABEL - "collection_main_panel/padding_2": T.PANEL - "collection_main_panel/title_image_panel": T.PANEL - "collection_main_panel/title_image_panel/border_image": T.IMAGE - "collection_main_panel/padding_3": T.PANEL - "collection_main_panel/offer_panel": T.STACK_PANEL - "collection_main_panel/offer_panel/padding_1": T.PANEL - "collection_main_panel/offer_panel/label_panel": T.PANEL - "collection_main_panel/offer_panel/label_panel/offer_label": T.LABEL - "collection_main_panel/offer_panel/padding_2": T.PANEL - "collection_main_panel/padding_4": T.PANEL - "collection_main_panel/button_panel": T.STACK_PANEL - "collection_main_panel/padding_5": T.PANEL - "collection_main_panel/include_panel": T.STACK_PANEL - "collection_main_panel/include_panel/padding_1": T.PANEL - "collection_main_panel/include_panel/include_label": T.LABEL - "collection_main_panel/padding_6": T.PANEL - "collection_main_panel/pack_list_grid": T.GRID - background_image_with_border: T.IMAGE - "background_image_with_border/main_panel_no_buttons": T.STACK_PANEL - win10_trial_conversion_main_panel: T.PANEL - "win10_trial_conversion_main_panel/scrolling_panel": T.PANEL - vertical_main_panel: T.STACK_PANEL - "vertical_main_panel/padding_1": T.PANEL - "vertical_main_panel/panel": T.STACK_PANEL - "vertical_main_panel/padding_2": T.PANEL - horizontal_main_panel: T.STACK_PANEL - "horizontal_main_panel/padding_1": T.PANEL - "horizontal_main_panel/starter_collection": T.IMAGE - "horizontal_main_panel/padding_2": T.PANEL - "horizontal_main_panel/master_collection": T.IMAGE - win10_trial_conversion_screen: T.SCREEN - win10_trial_conversion_panel: T.STACK_PANEL + "padding_horizontal": T.PANEL, + "padding_vertical": T.PANEL, + "padding_vertical_3": T.PANEL, + "background_image": T.IMAGE, + "title_image": T.IMAGE, + "focus_border": T.IMAGE, + "pack_image": T.IMAGE, + "pack_image_panel": T.PANEL, + "pack_image_panel/pack_image": T.IMAGE, + "title_image_border": T.IMAGE, + "title_image_border/image": T.IMAGE, + "pack_image_with_border": T.IMAGE, + "pack_image_with_border/image": T.IMAGE, + "label_panel": T.LABEL, + "button_panel": T.STACK_PANEL, + "button_panel/padding_5": T.PANEL, + "button_panel/buy_now_button": T.BUTTON, + "button_panel/padding_6": T.PANEL, + "buy_now_button": T.BUTTON, + "buy_now_label": T.PANEL, + "buy_now_label/button_label": T.LABEL, + "is_focused": T.IMAGE, + "filler_panel": T.PANEL, + "focus_border_button": T.BUTTON, + "focus_border_button/default": T.PANEL, + "focus_border_button/hover": T.IMAGE, + "focus_border_button/pressed": T.IMAGE, + "grid_item": T.STACK_PANEL, + "grid_item/padding_1": T.PANEL, + "grid_item/pack_image_pane": T.PANEL, + "grid_item/padding_2": T.PANEL, + "grid_item/pack_panel": T.STACK_PANEL, + "grid_item/padding_3": T.PANEL, + "grid_item_vertical": T.PANEL, + "grid_item_vertical/grid_item_horizontal": T.STACK_PANEL, + "grid_item_vertical/pack_grid": T.BUTTON, + "pack_panel": T.STACK_PANEL, + "pack_panel/packtitle": T.LABEL, + "pack_panel/padding_2": T.PANEL, + "pack_panel/packdesc": T.LABEL, + "collection_main_panel": T.STACK_PANEL, + "collection_main_panel/padding_1": T.PANEL, + "collection_main_panel/title_panel": T.LABEL, + "collection_main_panel/padding_2": T.PANEL, + "collection_main_panel/title_image_panel": T.PANEL, + "collection_main_panel/title_image_panel/border_image": T.IMAGE, + "collection_main_panel/padding_3": T.PANEL, + "collection_main_panel/offer_panel": T.STACK_PANEL, + "collection_main_panel/offer_panel/padding_1": T.PANEL, + "collection_main_panel/offer_panel/label_panel": T.PANEL, + "collection_main_panel/offer_panel/label_panel/offer_label": T.LABEL, + "collection_main_panel/offer_panel/padding_2": T.PANEL, + "collection_main_panel/padding_4": T.PANEL, + "collection_main_panel/button_panel": T.STACK_PANEL, + "collection_main_panel/padding_5": T.PANEL, + "collection_main_panel/include_panel": T.STACK_PANEL, + "collection_main_panel/include_panel/padding_1": T.PANEL, + "collection_main_panel/include_panel/include_label": T.LABEL, + "collection_main_panel/padding_6": T.PANEL, + "collection_main_panel/pack_list_grid": T.GRID, + "background_image_with_border": T.IMAGE, + "background_image_with_border/main_panel_no_buttons": T.STACK_PANEL, + "win10_trial_conversion_main_panel": T.PANEL, + "win10_trial_conversion_main_panel/scrolling_panel": T.PANEL, + "vertical_main_panel": T.STACK_PANEL, + "vertical_main_panel/padding_1": T.PANEL, + "vertical_main_panel/panel": T.STACK_PANEL, + "vertical_main_panel/padding_2": T.PANEL, + "horizontal_main_panel": T.STACK_PANEL, + "horizontal_main_panel/padding_1": T.PANEL, + "horizontal_main_panel/starter_collection": T.IMAGE, + "horizontal_main_panel/padding_2": T.PANEL, + "horizontal_main_panel/master_collection": T.IMAGE, + "win10_trial_conversion_screen": T.SCREEN, + "win10_trial_conversion_panel": T.STACK_PANEL, } diff --git a/test/app.ts b/test/app.ts index 6e13e20..9fc8cd6 100644 --- a/test/app.ts +++ b/test/app.ts @@ -1 +1,14 @@ -import {} from ".." +import { BagBinding, f, ItemAuxID, Label } from ".." + +const text = Label({ + text: "#text", + [BagBinding.ITEM_ID_AUX]: ItemAuxID.DIAMOND, + "#x": 2, +}) + +text.addBindings({ + source_property_name: f(`Test: #{ -(${BagBinding.ITEM_ID_AUX} % #x) == 0 }`), + target_property_name: BagBinding.TEXT, +}) + +console.log(text)