diff --git a/README.md b/README.md new file mode 100644 index 0000000..e5a1af5 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +![image](/resources/logo.png) diff --git a/package.json b/package.json index 465b61f..7d29401 100644 --- a/package.json +++ b/package.json @@ -17,16 +17,18 @@ "license": "MIT", "author": "Asaki Yuki", "type": "module", - "main": "dist/index.js", - "types": "dist/index.d.ts", + "main": "dist/js/index.js", + "types": "dist/types/index.d.ts", "scripts": { "build": "tsc", "dev": "tsc --watch", + "test": "bun test/app.ts", "prefetch": "bun scripts/prefetch", "vanilla:defs": "bun scripts/vanilladefs", "gen:enums": "bun scripts/enum", "gen:items": "bun scripts/items", - "gen:autocomplete": "bun scripts/autocomplete-build" + "gen:autocomplete": "bun scripts/autocomplete-build", + "full-build": "bun run prefetch;\nbun run vanilla:defs;\nbun run gen:enums;\nbun run gen:items;\nbun run gen:autocomplete;\nbun run build" }, "devDependencies": { "@types/node": "^25.0.3", diff --git a/resources/logo.png b/resources/logo.png new file mode 100644 index 0000000..803e02f Binary files /dev/null and b/resources/logo.png differ diff --git a/scripts/autocomplete-build.ts b/scripts/autocomplete-build.ts index e464766..6e61787 100644 --- a/scripts/autocomplete-build.ts +++ b/scripts/autocomplete-build.ts @@ -10,7 +10,12 @@ const intelliSense: string[] = [ 'import { Type as T } from "../enums/Type.js"\n', "export type Namespace = keyof IntelliSense;", "export type Element = Extract", - "export type VanillaType> = IntelliSense[T][K]\n", + "export type VanillaElementInfo> = IntelliSense[T][K]", + "// @ts-ignore", + 'export type VanillaType> = VanillaElementInfo["type"]', + "// @ts-ignore", + 'export type VanillaElementChilds> = VanillaElementInfo["children"]', + "\n", "export type IntelliSense = {", ] @@ -27,9 +32,12 @@ for (const [namespace, element] of Object.entries(data)) { ePaths: string[] = [` "${namespace}": {`] for (const [ePath, info] of Object.entries(element)) { - const { file, type, extend } = info + const { file, type, extend, children } = info + + const childType = children?.map((v: string) => `'${v}'`).join(" | ") || "string" + eType.push(`"${ePath}"`) - eType3.push(` "${ePath}": T.${type.toUpperCase()},`) + eType3.push(` "${ePath}": { type: T.${type.toUpperCase()}, children: ${childType} },`) ePaths.push(` "${ePath}": "${file}",`) } diff --git a/scripts/vanilladefs.ts b/scripts/vanilladefs.ts index 35b1449..84bcf99 100644 --- a/scripts/vanilladefs.ts +++ b/scripts/vanilladefs.ts @@ -6,6 +6,8 @@ const vanilla: NamespaceMap = new Map() function readControls(namespace: string, file: string, elements: ElementMap, data: any[], prefix: string) { prefix += "/" + const childs: string[] = [] + for (const element of data) { const [fullname, properties] = Object.entries(element)[0] @@ -17,6 +19,7 @@ function readControls(namespace: string, file: string, elements: ElementMap, dat const [name, $2] = fullname.split("@") if (name.startsWith("$")) continue + childs.push(name) if ($2 && !$2.startsWith("$")) { const [$3, $4] = $2.split(".") @@ -37,9 +40,12 @@ function readControls(namespace: string, file: string, elements: ElementMap, dat const controls = (properties).controls if (controls) { - readControls(namespace, file, elements, controls, prefix + name) + const childs = readControls(namespace, file, elements, controls, prefix + name) + if (childs.length) data.children = childs } } + + return childs } function readData(namespace: string, file: string, elements: ElementMap, data: any) { @@ -73,7 +79,8 @@ function readData(namespace: string, file: string, elements: ElementMap, data: a const controls = (properties).controls if (controls) { - readControls(namespace, file, elements, controls, name) + const childs = readControls(namespace, file, elements, controls, name) + if (childs.length) data.children = childs } } } @@ -148,6 +155,7 @@ interface VanillaElement { namespace: string } anim_type?: string + children?: string[] type: string file: string } diff --git a/src/compilers/FormatProperties.ts b/src/compilers/FormatProperties.ts index 2edf2d6..dae702b 100644 --- a/src/compilers/FormatProperties.ts +++ b/src/compilers/FormatProperties.ts @@ -1,3 +1,6 @@ +import { AnimationKeyframe } from "../components/AnimationKeyframe.js" +import { AnimType } from "../types/enums/AnimType.js" +import { KeyframeAnimationProperties } from "../types/properties/element/Animation.js" import { Binding } from "../types/properties/value.js" export function FormatProperties(properties: any) { @@ -27,3 +30,11 @@ export function FormatProperties(properties: any) { return properties } + +export function FormatAnimationProperties(properties: KeyframeAnimationProperties) { + if (properties.next instanceof AnimationKeyframe) { + properties.next = `${properties.next}` + } + + return properties +} diff --git a/src/compilers/Memory.ts b/src/compilers/Memory.ts index 7160a09..37a219b 100644 --- a/src/compilers/Memory.ts +++ b/src/compilers/Memory.ts @@ -1,9 +1,11 @@ +import { AnimationKeyframe } from "../components/AnimationKeyframe.js" import { Class } from "../components/Class.js" import { UI } from "../components/UI.js" +import { AnimType } from "../types/enums/AnimType.js" import { Renderer } from "../types/enums/Renderer.js" import { Type } from "../types/enums/Type.js" -type Element = UI +type Element = UI | AnimationKeyframe interface FileInterface { namespace: string elements: Element[] @@ -13,7 +15,7 @@ type Files = Map export class Memory extends Class { protected static files: Files = new Map() - public static add(element: UI) { + public static add(element: UI | AnimationKeyframe) { let file = Memory.files.get(element.path) if (!file) { diff --git a/src/compilers/RunEnd.ts b/src/compilers/RunEnd.ts index d21c86c..88ee3fb 100644 --- a/src/compilers/RunEnd.ts +++ b/src/compilers/RunEnd.ts @@ -1,5 +1,9 @@ import { Memory } from "./Memory.js" -process.on("beforeExit", () => { - // console.log(Memory.build()) -}) +const isBuildMode = process.argv.includes("--build") + +if (isBuildMode) { + process.on("beforeExit", () => { + console.log(JSON.stringify(Memory.build(), null, 2)) + }) +} diff --git a/src/components/Animation.ts b/src/components/Animation.ts index 2da4edf..d475dd1 100644 --- a/src/components/Animation.ts +++ b/src/components/Animation.ts @@ -1,3 +1,63 @@ +import { AnimType } from "../types/enums/AnimType.js" +import { AnimationProperties } from "../types/properties/element/Animation.js" import { Class } from "./Class.js" +import { KeyframeController } from "./KeyframeController.js" -export class Animation extends Class {} +export class Animation extends Class { + protected keyframes: KeyframeController[] = [] + protected loop = false + + constructor( + readonly type: T, + ...keyframes: (AnimationProperties | number)[] + ) { + super() + if (type === AnimType.WAIT) console.warn("Why are you create a wait animation?") + this.addKeyframes(...keyframes) + } + + protected lastKey() { + return this.keyframes[this.keyframes.length - 1] + } + + protected firstKey() { + return this.keyframes[0] + } + + addKeyframes(...keyframes: (AnimationProperties | number)[]) { + for (const $ of keyframes) { + let keyframe: AnimationProperties, animType: AnimType + + if (typeof $ === "number") { + keyframe = { duration: $ } + animType = AnimType.WAIT + } else { + keyframe = $ + animType = this.type + } + + const keyframeController = new KeyframeController(animType, keyframe as AnimationProperties) + + const prevKeyframe = this.lastKey() + if (prevKeyframe) prevKeyframe.setNext(keyframeController) + + if (this.loop) keyframeController.setNext(this.firstKey() as KeyframeController) + + this.keyframes.push(keyframeController) + } + } + + setLoop(boolean: boolean) { + this.loop = boolean + + if (this.loop) { + const prevKeyframe = this.lastKey() + if (prevKeyframe) prevKeyframe.setNext(this.firstKey() as KeyframeController) + } else { + const prevKeyframe = this.lastKey() + if (prevKeyframe) prevKeyframe.clearNext() + } + + return this + } +} diff --git a/src/components/AnimationKeyframe.ts b/src/components/AnimationKeyframe.ts index f1b81bd..0eb5349 100644 --- a/src/components/AnimationKeyframe.ts +++ b/src/components/AnimationKeyframe.ts @@ -1,3 +1,61 @@ +import { FormatAnimationProperties } from "../compilers/FormatProperties.js" +import { Memory } from "../compilers/Memory.js" +import { AnimType } from "../types/enums/AnimType.js" +import { KeyframeAnimationProperties } from "../types/properties/element/Animation.js" import { Class } from "./Class.js" +import { RandomString } from "./Utils.js" -export class AnimationKeyframe extends Class {} +import util from "node:util" + +export class AnimationKeyframe extends Class { + readonly path: string + readonly name: string + readonly namespace: string + + constructor( + readonly type: T, + readonly properties: KeyframeAnimationProperties, + name?: string, + namespace?: string, + path?: string, + ) { + super() + + if (name === "namespace") { + console.error("The 'namespace' cannot be used as a name") + process.exit(1) + } + + if (namespace && !/^\w+$/.test(namespace)) { + console.error(`The '${namespace}' cannot be used as a namespace`) + process.exit(1) + } + + this.name = name || RandomString(16) + this.namespace = namespace || RandomString(16) + this.path = path || `@/${this.namespace}` + + Memory.add(this) + } + + protected toJsonUI() { + return FormatAnimationProperties(this.properties) + } + + protected toJSON() { + return { + anim_type: this.type, + ...this.toJsonUI(), + } + } + + protected toString() { + return `@${this.namespace}.${this.name}` + } + + protected [util.inspect.custom]($: any, opts: any) { + return `\x1b[33mAnimationKeyFrame\x1b[0m<\x1b[92m${ + this.type + }\x1b[0m> \x1b[92m"${this}\x1b[92m"\x1b[0m ${util.inspect(this.toJsonUI(), opts)}\n` + } +} diff --git a/src/components/KeyframeController.ts b/src/components/KeyframeController.ts new file mode 100644 index 0000000..ddfb688 --- /dev/null +++ b/src/components/KeyframeController.ts @@ -0,0 +1,19 @@ +import { AnimType } from "../types/enums/AnimType.js" +import { KeyframeAnimationProperties } from "../types/properties/element/Animation.js" +import { AnimationKeyframe } from "./AnimationKeyframe.js" + +export class KeyframeController extends AnimationKeyframe { + constructor(type: T, properties: KeyframeAnimationProperties, name?: string, namespace?: string, path?: string) { + super(type, properties, name, namespace, path) + } + + setNext(keyframe: AnimationKeyframe) { + this.properties.next = keyframe + return this + } + + clearNext() { + delete this.properties.next + return this + } +} diff --git a/src/components/UI.ts b/src/components/UI.ts index f071fc5..07903b9 100644 --- a/src/components/UI.ts +++ b/src/components/UI.ts @@ -1,30 +1,31 @@ -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 { ArrayName } from "../types/enums/ArrayName.js" +import { Operation } from "../types/enums/Operation.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 { BindingItem, ButtonMapping, ModificationItem, VariableItem, Variables } from "../types/properties/value.js" import { Class } from "./Class.js" -import { ExtendsOf, RandomString } from "./Utils.js" +import { ExtendsOf, RandomString, ResolveBinding } from "./Utils.js" import util from "node:util" export class UI extends Class { readonly path: string - readonly name: string readonly namespace: string - readonly extend?: UI + readonly extend?: UI readonly extendable: boolean - readonly controls = new Map, Properties]>() - readonly bindings: BindingItem[] = [] - readonly extendType?: Type - properties: Properties = {} + protected readonly controls = new Map, Properties]>() + protected readonly bindings: BindingItem[] = [] + protected readonly variables: VariableItem[] = [] + protected readonly buttonMappings: ButtonMapping[] = [] + protected readonly extendType?: Type + + protected properties: Properties = {} constructor( public type?: T, @@ -55,60 +56,72 @@ export class UI extends Class 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 - } - + /** + * Set properties for this element + * @param properties + * @returns + */ setProperties(properties: Properties) { this.properties = { ...this.properties, ...properties } return this } + /** + * Bind data (coming from the code) to this UI element to use. + * @param bindings + * @returns + */ addBindings(...bindings: BindingItem[]) { - for (const binding of bindings) { - if (binding.source_property_name) { - if (isCompileBinding(binding.source_property_name)) { - const { gen, out } = new Parser(binding.source_property_name.slice(1, -1)).out() - if (gen) this.bindings.push(...gen) - binding.source_property_name = out - } + this.bindings.push(...ResolveBinding(...bindings)) + return this + } - binding.binding_type = BindingType.VIEW - - if (!binding.target_property_name) throw new Error("Binding must have a target property name") - } - this.bindings.push(binding) - } + /** + * Changes variables values if conditions are met. + * @param variables + * @returns + */ + addVariables(variables: Variables) { + Object.entries(variables).forEach(([key, value]) => { + this.variables.push({ + requires: key, + ...value, + }) + }) return this } - addChild(child: UI, properties?: Properties, name?: string) { - if (this === child) { - throw new Error("Cannot add a child to itself") - } + /** + * Add button mappings for this element + * @param mappings + * @returns + */ + addButtonMappings(...mappings: ButtonMapping[]) { + this.buttonMappings.push(...mappings) + return this + } + /** + * Children of the UI element. + * @param child + * @param properties + * @param name + * @returns + */ + addChild(child: UI, properties?: Properties, name?: string) { + if (this === child) throw new Error("Cannot add a child to itself") this.controls.set(name || RandomString(16), [child, properties || {}]) return this } + /** + * Return a extend of this element + * @param properties + * @param name + * @param namespace + * @returns + */ clone(properties?: Properties, name?: string, namespace?: string) { return ExtendsOf(this, properties, name, namespace) } @@ -117,40 +130,264 @@ export class UI extends Class return `@${this.namespace}.${this.name}` } - protected toJSON() { - return this.UI_JSON() - } - - protected [util.inspect.custom]($: any, opts: any) { + protected toJsonUI() { const obj: any = { ...FormatProperties(this.properties), } - if (this.bindings.length) { - obj.bindings = this.bindings - } + if (this.type) obj.type = this.type + + if (this.bindings.length) obj.bindings = this.bindings + if (this.variables.length) obj.variables = this.variables + if (this.buttonMappings.length) obj.button_mappings = this.buttonMappings if (this.controls.size) { obj.controls = [] 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${ - elementType - }\x1b[0m> \x1b[92m"${this}\x1b[92m"\x1b[0m ${util.inspect(obj, opts)}\n` - } -} - -export class ModifyUI extends UI { - constructor(namespace: string, name: string, path: string) { - if (!path) throw new Error("ModifyUI cannot have a path") - super(undefined, name, namespace, path) + return obj } protected toJSON() { - const obj = this.UI_JSON() - return obj + return this.toJsonUI() + } + + protected [util.inspect.custom]($: any, opts: any) { + return `\x1b[33mUI\x1b[0m<\x1b[92m${ + this.type || (this.extend ? `${this.extendType || "unknown"}:${this.extend}` : "unknown") + }\x1b[0m> \x1b[92m"${this}\x1b[92m"\x1b[0m ${util.inspect(this.toJsonUI(), opts)}\n` + } +} + +export class ModifyUI extends UI { + private isClearBinding: boolean = false + private isClearVariables: boolean = false + private isClearButtonMappings: boolean = false + + protected modifications: ModificationItem[] = [] + + constructor(namespace: string, name: string, path: string) { + super(undefined, name, namespace, path) + } + + /** + * Remove all bindings of this modify element + * @returns + */ + clearBinding() { + this.isClearBinding = true + return this + } + + /** + * Remove all variables of this modfy element + * @returns + */ + clearVariables() { + this.isClearVariables = true + return this + } + + /** + * Remove all button mappings of this element + * @returns + */ + clearButtonMappings() { + this.isClearButtonMappings = true + return this + } + + /** + * Allows to modify the UI elements from resource packs below this one + * @returns + */ + addModifications(...modifications: ModificationItem[]) { + this.modifications.push(...modifications) + return this + } + + insertBackChild( + child: UI, + properties?: Properties, + name?: string, + ) { + if (this === child) throw new Error("Cannot add a child to itself") + if (!name) name = RandomString(16) + + return this.addModifications({ + array_name: ArrayName.CONTROLS, + operation: Operation.INSERT_BACK, + value: { + [`${name}${child}`]: properties || {}, + }, + }) + } + + insertFrontChild( + child: UI, + properties?: Properties, + name?: string, + ) { + if (this === child) throw new Error("Cannot add a child to itself") + if (!name) name = RandomString(16) + + return this.addModifications({ + array_name: ArrayName.CONTROLS, + operation: Operation.INSERT_FRONT, + value: { + [`${name}${child}`]: properties || {}, + }, + }) + } + + insertAfterChild( + where: S, + child: UI, + properties?: Properties, + name?: string, + ) { + if (this === child) throw new Error("Cannot add a child to itself") + if (!name) name = RandomString(16) + + return this.addModifications({ + array_name: ArrayName.CONTROLS, + operation: Operation.INSERT_AFTER, + control_name: where!, + value: { + [`${name}${child}`]: properties || {}, + }, + }) + } + + insertBeforeChild( + where: S, + child: UI, + properties?: Properties, + name?: string, + ) { + if (this === child) throw new Error("Cannot add a child to itself") + if (!name) name = RandomString(16) + + return this.addModifications({ + array_name: ArrayName.CONTROLS, + operation: Operation.INSERT_BEFORE, + control_name: where!, + value: { + [`${name}${child}`]: properties || {}, + }, + }) + } + + insertChild(child: UI, properties?: Properties) { + return this.insertBackChild(child, properties) + } + + replaceChild(where: S, child: UI, properties?: Properties) { + return this.addModifications({ + array_name: ArrayName.CONTROLS, + operation: Operation.REPLACE, + control_name: where!, + value: properties || {}, + }) + } + + /** + * Remove a child of this element + * @param name + * @returns + */ + removeChild(name: S) { + return this.addModifications({ + array_name: ArrayName.CONTROLS, + operation: Operation.REMOVE, + control_name: name, + }) + } + + insertBackBindings(...bindings: BindingItem[]) { + return this.addModifications({ + array_name: ArrayName.BINDINGS, + operation: Operation.INSERT_BACK, + value: ResolveBinding(...bindings), + }) + } + + insertFrontBindings(...bindings: BindingItem[]) { + return this.addModifications({ + array_name: ArrayName.BINDINGS, + operation: Operation.INSERT_FRONT, + value: ResolveBinding(...bindings), + }) + } + + insertBindings(...bindings: BindingItem[]) { + return this.insertBackBindings(...bindings) + } + + /** + * Remove a binding of this element + * @param binding + */ + removeBinding(binding: BindingItem) { + return this.addModifications({ + array_name: ArrayName.BINDINGS, + operation: Operation.REMOVE, + where: binding, + }) + } + + insertBackButtonMappings(...buttonMappings: ButtonMapping[]) { + return this.addModifications({ + array_name: ArrayName.BUTTON_MAPPINGS, + operation: Operation.INSERT_BACK, + value: buttonMappings, + }) + } + + insertFrontButtonMappings(...buttonMappings: ButtonMapping[]) { + return this.addModifications({ + array_name: ArrayName.BUTTON_MAPPINGS, + operation: Operation.INSERT_FRONT, + value: buttonMappings, + }) + } + + insertButtonMappings(...buttonMappings: ButtonMapping[]) { + return this.insertBackButtonMappings(...buttonMappings) + } + + /** + * Remove a button mapping of this element + * @param buttonMapping + * @returns + */ + removeButtonMapping(buttonMapping: ButtonMapping) { + return this.addModifications({ + array_name: ArrayName.BUTTON_MAPPINGS, + operation: Operation.REMOVE, + where: buttonMapping, + }) + } + + protected toJsonUIModify() { + const obj = this.toJsonUI() + + if (this.isClearBinding) obj.bindings = [] + if (this.isClearVariables) obj.variables = [] + if (this.isClearButtonMappings) obj.button_mappings = [] + + if (this.modifications.length) obj.modifications = this.modifications + + return obj + } + + protected toJSON() { + const obj = this.toJsonUIModify() + return obj + } + + protected [util.inspect.custom]($: any, opts: any) { + return `\x1b[33mUI\x1b[0m<\x1b[92mmodify\x1b[0m> \x1b[92m"${this}\x1b[92m"\x1b[0m ${util.inspect(this.toJsonUIModify(), opts)}\n` } } diff --git a/src/components/Utils.ts b/src/components/Utils.ts index 2e31995..d18a570 100644 --- a/src/components/Utils.ts +++ b/src/components/Utils.ts @@ -1,5 +1,5 @@ import { Type } from "../types/enums/Type.js" -import { Array3, Binding } from "../types/properties/value.js" +import { Array3, Binding, BindingItem } from "../types/properties/value.js" import { ModifyUI, UI } from "./UI.js" import { Renderer } from "../types/enums/Renderer.js" @@ -27,8 +27,14 @@ import { SliderBox, } from "../types/properties/components.js" import { ItemAuxID } from "../types/enums/Items.js" -import { Element, Namespace, VanillaType } from "../types/vanilla/intellisense.js" +import { Element, Namespace, VanillaElementChilds, VanillaType } from "../types/vanilla/intellisense.js" import { paths } from "../types/vanilla/paths.js" +import { isCompileBinding } from "../compilers/bindings/Checker.js" +import { Parser } from "../compilers/bindings/Parser.js" +import { BindingType } from "../types/enums/BindingType.js" +import { AnimType } from "../types/enums/AnimType.js" +import { AnimationKeyframe } from "./AnimationKeyframe.js" +import { KeyframeAnimationProperties } from "../types/properties/element/Animation.js" const CHARS = "0123456789abcdefghijklmnopqrstuvwxyz" type CompileBinding = `[${string}]` @@ -60,6 +66,27 @@ export function Color(hex: string | number): Array3 { } } +export function ResolveBinding(...bindings: BindingItem[]) { + const result: BindingItem[] = [] + + for (const binding of bindings) { + if (binding.source_property_name) { + if (isCompileBinding(binding.source_property_name)) { + const { gen, out } = new Parser(binding.source_property_name.slice(1, -1)).out() + if (gen) result.push(...gen) + binding.source_property_name = out + } + + binding.binding_type = BindingType.VIEW + + if (!binding.target_property_name) throw new Error("Binding must have a target property name") + } + result.push(binding) + } + + return result +} + export function RandomString(length: number, base: number = 32) { const chars = CHARS.slice(0, base) const out = new Array(length) @@ -112,7 +139,7 @@ export function b(input: string): CompileBinding { // 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]) + return new ModifyUI, VanillaElementChilds>(namespace, name, paths[namespace][name]) } export function Panel(properties?: Panel, namespace?: string, name?: string) { @@ -219,3 +246,72 @@ export function ExtendsOf( ui.extendType = element.type || element.extendType return ui as typeof element } + +// Quick Keyframe +export function KeyframeOffset( + properties?: KeyframeAnimationProperties, + namespace?: string, + name?: string, +) { + return new AnimationKeyframe(AnimType.OFFSET, properties || {}, name, namespace) +} + +export function KeyframeSize( + properties?: KeyframeAnimationProperties, + namespace?: string, + name?: string, +) { + return new AnimationKeyframe(AnimType.SIZE, properties || {}, name, namespace) +} + +export function KeyframeUV(properties?: KeyframeAnimationProperties, namespace?: string, name?: string) { + return new AnimationKeyframe(AnimType.UV, properties || {}, name, namespace) +} + +export function KeyframeClip( + properties?: KeyframeAnimationProperties, + namespace?: string, + name?: string, +) { + return new AnimationKeyframe(AnimType.CLIP, properties || {}, name, namespace) +} + +export function KeyframeColor( + properties?: KeyframeAnimationProperties, + namespace?: string, + name?: string, +) { + return new AnimationKeyframe(AnimType.COLOR, properties || {}, name, namespace) +} + +export function KeyframeAlpha( + properties?: KeyframeAnimationProperties, + namespace?: string, + name?: string, +) { + return new AnimationKeyframe(AnimType.ALPHA, properties || {}, name, namespace) +} + +export function KeyframeWait( + properties?: KeyframeAnimationProperties, + namespace?: string, + name?: string, +) { + return new AnimationKeyframe(AnimType.WAIT, properties || {}, name, namespace) +} + +export function KeyframeFlipBook( + properties?: KeyframeAnimationProperties, + namespace?: string, + name?: string, +) { + return new AnimationKeyframe(AnimType.FLIP_BOOK, properties || {}, name, namespace) +} + +export function KeyframeAsepriteFlipBook( + properties?: KeyframeAnimationProperties, + namespace?: string, + name?: string, +) { + return new AnimationKeyframe(AnimType.ASEPRITE_FLIP_BOOK, properties || {}, name, namespace) +} diff --git a/src/index.ts b/src/index.ts index 6fbd040..62ecc25 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,8 +1,9 @@ import "./compilers/PreCompile.js" import "./compilers/RunEnd.js" -export * from "./components/Animation.js" -export * from "./components/UI.js" +export { Animation } from "./components/Animation.js" +export { AnimationKeyframe } from "./components/AnimationKeyframe.js" +export { ModifyUI, UI } from "./components/UI.js" export * from "./components/Utils.js" export * from "./types/enums/index.js" diff --git a/src/types/enums/ArrayName.ts b/src/types/enums/ArrayName.ts new file mode 100644 index 0000000..961040e --- /dev/null +++ b/src/types/enums/ArrayName.ts @@ -0,0 +1,5 @@ +export enum ArrayName { + CONTROLS = "controls", + BINDINGS = "bindings", + BUTTON_MAPPINGS = "button_mappings", +} diff --git a/src/types/enums/Operation.ts b/src/types/enums/Operation.ts new file mode 100644 index 0000000..970ce47 --- /dev/null +++ b/src/types/enums/Operation.ts @@ -0,0 +1,13 @@ +export enum Operation { + INSERT_BACK = "insert_back", + INSERT_FRONT = "insert_front", + INSERT_AFTER = "insert_after", + INSERT_BEFORE = "insert_before", + MOVE_BACK = "move_back", + MOVE_FRONT = "move_front", + MOVE_AFTER = "move_after", + MOVE_BEFORE = "move_before", + SWAP = "swap", + REMOVE = "remove", + REPLACE = "replace", +} diff --git a/src/types/properties/element/Animation.ts b/src/types/properties/element/Animation.ts index ebd0cf5..68cb5ba 100644 --- a/src/types/properties/element/Animation.ts +++ b/src/types/properties/element/Animation.ts @@ -3,22 +3,59 @@ import { AnimType } from "../../enums/AnimType.js" import { Easing } from "../../enums/Easing.js" import { Array2, Array3, Value } from "../value.js" -export interface Animation { - anim_type?: Value +export interface DurationAnimation { duration?: Value - next?: Value +} + +export interface EasingAnimation extends DurationAnimation { + easing?: Value +} + +export interface NumberAnimation extends DurationAnimation, EasingAnimation { + from: Value + to: Value +} + +export interface Array2Animation extends DurationAnimation, EasingAnimation { + from: Array2 + to: Array2 +} + +export interface Array3Animation extends DurationAnimation, EasingAnimation { + from: Array3 + to: Array3 +} + +export interface AsepriteFlipBookAnimation { + initial_uv?: Value> +} + +export interface FlipbookAnimation extends AsepriteFlipBookAnimation { + frame_count?: Value + frame_step?: Value + fps?: Value + easing?: Value +} + +export interface AnimationValueType { + [AnimType.OFFSET]: Array2Animation + [AnimType.SIZE]: Array2Animation + [AnimType.UV]: Array2Animation + [AnimType.CLIP]: Array2Animation + [AnimType.COLOR]: Array3Animation + [AnimType.ALPHA]: NumberAnimation + [AnimType.WAIT]: DurationAnimation + [AnimType.FLIP_BOOK]: FlipbookAnimation + [AnimType.ASEPRITE_FLIP_BOOK]: AsepriteFlipBookAnimation +} + +export interface AnimationPropertiesItem { destroy_at_end?: Value play_event?: Value end_event?: Value start_event?: Value reset_event?: Value - easing?: Value - from?: Value | Array2> - to?: Value | Array2> - initial_uv?: Value> - fps?: Value - frame_count?: Value - frame_step?: Value + reversible?: Value resettable?: Value scale_from_starting_alpha?: Value @@ -26,3 +63,13 @@ export interface Animation { looping?: Value wait_until_rendered_to_play?: Value } + +export interface KeyframeAnimationPropertiesItem extends AnimationPropertiesItem { + next?: Value> +} + +export type KeyframeAnimationProperties = Partial & + KeyframeAnimationPropertiesItem + +export type AnimationProperties = Partial & + AnimationPropertiesItem diff --git a/src/types/properties/index.ts b/src/types/properties/index.ts index b5b3bc0..6c10ba5 100644 --- a/src/types/properties/index.ts +++ b/src/types/properties/index.ts @@ -1,3 +1,6 @@ export * as ElementProperties from "./element/index.js" export * as ComponentProperties from "./components.js" export * as Value from "./value.js" + +export { ArrayName } from "../enums/ArrayName.js" +export { Operation } from "../enums/Operation.js" diff --git a/src/types/properties/value.ts b/src/types/properties/value.ts index 6b9d85f..73f2d01 100644 --- a/src/types/properties/value.ts +++ b/src/types/properties/value.ts @@ -7,6 +7,8 @@ import { ButtonId } from "../enums/ButtonId.js" import { MappingType } from "../enums/MappingType.js" import { InputModeCondition } from "../enums/InputModeCondition.js" import { Scope } from "../enums/Scope.js" +import { ArrayName } from "../enums/ArrayName.js" +import { Operation } from "../enums/Operation.js" export type Variable = `$${string}` export type Binding = `#${string}` @@ -34,6 +36,15 @@ export type BindingItem = { resolve_ancestor_scope?: Value } +export type VariableItem = { + requires: string + [key: Variable]: Value +} + +export type Variables = { + [key: Variable | `(${string})`]: Record +} + export type FocusContainerCustom = Array<{ other_focus_container_name?: Value focus_id_inside?: Value @@ -56,3 +67,13 @@ export type ButtonMapping = { export type PropertyBags = { [key: Binding]: Value } + +export type ModificationItem = { + array_name?: ArrayName + control_name?: string + where?: BindingItem | object + target?: object + target_control?: string + value?: object | (object | BindingItem)[] + operation?: Operation +} diff --git a/src/types/vanilla/intellisense.ts b/src/types/vanilla/intellisense.ts index e6b7e09..01282ed 100644 --- a/src/types/vanilla/intellisense.ts +++ b/src/types/vanilla/intellisense.ts @@ -1,8 +1,13 @@ import { Type as T } from "../enums/Type.js" -export type Namespace = keyof IntelliSense +export type Namespace = keyof IntelliSense; export type Element = Extract -export type VanillaType> = IntelliSense[T][K] +export type VanillaElementInfo> = IntelliSense[T][K] +// @ts-ignore +export type VanillaType> = VanillaElementInfo["type"] +// @ts-ignore +export type VanillaElementChilds> = VanillaElementInfo["children"] + export type IntelliSense = { "achievement": AchievementType, @@ -216,19642 +221,19642 @@ export type IntelliSense = { } export type AchievementType = { - "empty_progress_bar_icon": T.IMAGE, - "full_progress_bar_icon_base": T.IMAGE, + "empty_progress_bar_icon": { type: T.IMAGE, children: string }, + "full_progress_bar_icon_base": { type: T.IMAGE, children: string }, } 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": { type: T.BUTTON, children: string }, + "play_disabled_button": { type: T.BUTTON, children: string }, + "remove_button": { type: T.BUTTON, children: string }, + "save_button": { type: T.BUTTON, children: string }, + "save_disabled_button": { type: T.BUTTON, children: string }, + "text_edit_group": { type: T.STACK_PANEL, children: 'name_label' | 'edit_box' }, + "text_edit_group/name_label": { type: T.LABEL, children: string }, + "text_edit_group/edit_box": { type: T.EDIT_BOX, children: string }, + "title_text": { type: T.LABEL, children: string }, + "content_panel": { type: T.STACK_PANEL, children: 'name_edit' | 'ip_edit' | 'port_edit' }, + "content_panel/name_edit": { type: T.STACK_PANEL, children: string }, + "content_panel/ip_edit": { type: T.STACK_PANEL, children: string }, + "content_panel/port_edit": { type: T.STACK_PANEL, children: string }, + "main_panel": { type: T.INPUT_PANEL, children: 'common_panel' | 'title' | 'main_content' | 'play' | 'play_disabled' | 'remove' | 'save' | 'save_disabled' }, + "main_panel/common_panel": { type: T.PANEL, children: string }, + "main_panel/title": { type: T.LABEL, children: string }, + "main_panel/main_content": { type: T.STACK_PANEL, children: string }, + "main_panel/play": { type: T.BUTTON, children: string }, + "main_panel/play_disabled": { type: T.BUTTON, children: string }, + "main_panel/remove": { type: T.BUTTON, children: string }, + "main_panel/save": { type: T.BUTTON, children: string }, + "main_panel/save_disabled": { type: T.BUTTON, children: string }, + "gamepad_helpers": { type: T.PANEL, children: 'gamepad_helper_a' }, + "gamepad_helpers/gamepad_helper_a": { type: T.STACK_PANEL, children: string }, + "add_external_server_screen_new": { type: T.SCREEN, children: string }, + "add_external_server_screen_edit": { type: T.SCREEN, children: string }, + "add_external_server_screen": { type: T.SCREEN, children: string }, + "add_external_server_screen_content": { type: T.PANEL, children: 'root_panel' }, + "add_external_server_screen_content/root_panel": { type: T.PANEL, children: 'gamepad_helpers' | 'main_panel' }, + "add_external_server_screen_content/root_panel/gamepad_helpers": { type: T.PANEL, children: string }, + "add_external_server_screen_content/root_panel/main_panel": { type: T.INPUT_PANEL, children: string }, } 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": { type: T.LABEL, children: string }, + "main_panel": { type: T.PANEL, children: 'common_panel' | 'title' | 'main_content' | 'progress_loading_bars' }, + "main_panel/common_panel": { type: T.PANEL, children: string }, + "main_panel/title": { type: T.LABEL, children: string }, + "main_panel/main_content": { type: T.LABEL, children: string }, + "main_panel/progress_loading_bars": { type: T.IMAGE, children: string }, + "adhoc_inprogress_screen": { type: T.SCREEN, children: string }, + "adhoc_inprogress_screen_content": { type: T.PANEL, children: 'root_panel' }, + "adhoc_inprogress_screen_content/root_panel": { type: T.PANEL, children: 'main_panel' }, + "adhoc_inprogress_screen_content/root_panel/main_panel": { type: T.PANEL, children: string }, } 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": { type: T.BUTTON, children: string }, + "local_button": { type: T.BUTTON, children: string }, + "title_text": { type: T.LABEL, children: string }, + "content_panel": { type: T.STACK_PANEL, children: 'title_text' }, + "content_panel/title_text": { type: T.LABEL, children: string }, + "main_panel": { type: T.INPUT_PANEL, children: 'common_panel' | 'title' | 'main_content' | 'online' | 'local' }, + "main_panel/common_panel": { type: T.PANEL, children: string }, + "main_panel/title": { type: T.LABEL, children: string }, + "main_panel/main_content": { type: T.LABEL, children: string }, + "main_panel/online": { type: T.BUTTON, children: string }, + "main_panel/local": { type: T.BUTTON, children: string }, + "gamepad_helpers": { type: T.PANEL, children: 'gamepad_helper_a' }, + "gamepad_helpers/gamepad_helper_a": { type: T.STACK_PANEL, children: string }, + "adhoc_screen": { type: T.SCREEN, children: string }, + "adhoc_screen_content": { type: T.PANEL, children: 'root_panel' }, + "adhoc_screen_content/root_panel": { type: T.PANEL, children: 'gamepad_helpers' | 'main_panel' }, + "adhoc_screen_content/root_panel/gamepad_helpers": { type: T.PANEL, children: string }, + "adhoc_screen_content/root_panel/main_panel": { type: T.INPUT_PANEL, children: string }, } 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": { type: T.LABEL, children: string }, + "anvil_icon": { type: T.IMAGE, children: string }, + "title_label": { type: T.LABEL, children: string }, + "anvil_icon_panel": { type: T.PANEL, children: 'anvil_icon' }, + "anvil_icon_panel/anvil_icon": { type: T.IMAGE, children: string }, + "text_edit_control": { type: T.EDIT_BOX, children: string }, + "icon_and_text_panel": { type: T.PANEL, children: 'anvil_icon_panel' | 'anvil_title_and_text_panel' }, + "icon_and_text_panel/anvil_icon_panel": { type: T.PANEL, children: string }, + "icon_and_text_panel/anvil_title_and_text_panel": { type: T.PANEL, children: string }, + "title_panel": { type: T.PANEL, children: 'title_label' }, + "title_panel/title_label": { type: T.LABEL, children: string }, + "text_edit_panel": { type: T.PANEL, children: 'text_edit_control' }, + "text_edit_panel/text_edit_control": { type: T.EDIT_BOX, children: string }, + "anvil_title_and_text_panel": { type: T.PANEL, children: 'title_panel' | 'text_edit_panel' }, + "anvil_title_and_text_panel/title_panel": { type: T.PANEL, children: string }, + "anvil_title_and_text_panel/text_edit_panel": { type: T.PANEL, children: string }, + "plus_sign_icon": { type: T.IMAGE, children: string }, + "arrow_icon": { type: T.IMAGE, children: string }, + "cross_out_icon": { type: T.IMAGE, children: string }, + "anvil_output_slot_button": { type: T.BUTTON, children: string }, + "anvil_item_slot": { type: T.PANEL, children: 'container_item' }, + "anvil_item_slot/container_item": { type: T.INPUT_PANEL, children: string }, + "recipe_grid": { type: T.GRID, children: 'input_item_slot' | 'plus' | 'material_item_slot' | 'yields' | 'result_item_slot' }, + "recipe_grid/input_item_slot": { type: T.PANEL, children: string }, + "recipe_grid/plus": { type: T.PANEL, children: 'plus_sign_icon' }, + "recipe_grid/plus/plus_sign_icon": { type: T.IMAGE, children: string }, + "recipe_grid/material_item_slot": { type: T.PANEL, children: string }, + "recipe_grid/yields": { type: T.PANEL, children: 'arrow_icon' | 'cross_out_icon' }, + "recipe_grid/yields/arrow_icon": { type: T.IMAGE, children: string }, + "recipe_grid/yields/cross_out_icon": { type: T.IMAGE, children: string }, + "recipe_grid/result_item_slot": { type: T.PANEL, children: string }, + "cost_label": { type: T.LABEL, children: 'gray' }, + "cost_label/gray": { type: T.IMAGE, children: string }, + "recipe_panel": { type: T.PANEL, children: 'recipe_grid' | 'cost_label_0' | 'cost_label_1' }, + "recipe_panel/recipe_grid": { type: T.GRID, children: string }, + "recipe_panel/cost_label_0": { type: T.LABEL, children: string }, + "recipe_panel/cost_label_1": { type: T.LABEL, children: string }, + "top_half_panel": { type: T.PANEL, children: 'icon_and_text_panel' | 'recipe_panel' }, + "top_half_panel/icon_and_text_panel": { type: T.PANEL, children: string }, + "top_half_panel/recipe_panel": { type: T.PANEL, children: string }, + "anvil_panel": { type: T.PANEL, children: 'container_gamepad_helpers' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'root_panel' | 'flying_item_renderer' }, + "anvil_panel/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "anvil_panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "anvil_panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "anvil_panel/root_panel": { type: T.INPUT_PANEL, children: 'common_panel' | 'anvil_screen_inventory' | 'inventory_selected_icon_button' | 'gamepad_cursor' }, + "anvil_panel/root_panel/common_panel": { type: T.PANEL, children: string }, + "anvil_panel/root_panel/anvil_screen_inventory": { type: T.PANEL, children: 'top_half_panel' | 'inventory_panel_bottom_half_with_label' | 'hotbar_grid' | 'inventory_take_progress_icon_button' }, + "anvil_panel/root_panel/anvil_screen_inventory/top_half_panel": { type: T.PANEL, children: string }, + "anvil_panel/root_panel/anvil_screen_inventory/inventory_panel_bottom_half_with_label": { type: T.PANEL, children: string }, + "anvil_panel/root_panel/anvil_screen_inventory/hotbar_grid": { type: T.GRID, children: string }, + "anvil_panel/root_panel/anvil_screen_inventory/inventory_take_progress_icon_button": { type: T.BUTTON, children: string }, + "anvil_panel/root_panel/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "anvil_panel/root_panel/gamepad_cursor": { type: T.BUTTON, children: string }, + "anvil_panel/flying_item_renderer": { type: T.CUSTOM, children: string }, + "anvil_screen": { type: T.SCREEN, children: string }, } 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": { type: T.LABEL, children: string }, + "background_image": { type: T.IMAGE, children: string }, + "arrow_icon": { type: T.IMAGE, children: string }, + "cost_label": { type: T.LABEL, children: 'gray' }, + "cost_label/gray": { type: T.IMAGE, children: string }, + "title_label": { type: T.LABEL, children: string }, + "text_edit_control": { type: T.EDIT_BOX, children: string }, + "anvil_title_and_text_panel": { type: T.PANEL, children: 'title_label' | 'text_edit_control' }, + "anvil_title_and_text_panel/title_label": { type: T.LABEL, children: string }, + "anvil_title_and_text_panel/text_edit_control": { type: T.EDIT_BOX, children: string }, + "slots_panel": { type: T.PANEL, children: 'input_slot' | 'material_slot' | 'result_slot' | 'plus_sign' | 'arrow' }, + "slots_panel/input_slot": { type: T.INPUT_PANEL, children: string }, + "slots_panel/material_slot": { type: T.INPUT_PANEL, children: string }, + "slots_panel/result_slot": { type: T.INPUT_PANEL, children: string }, + "slots_panel/plus_sign": { type: T.LABEL, children: string }, + "slots_panel/arrow": { type: T.IMAGE, children: 'cross_out' }, + "slots_panel/arrow/cross_out": { type: T.IMAGE, children: string }, + "anvil_contents_panel": { type: T.PANEL, children: 'red_cost' | 'green_cost' | 'slots_panel' | 'anvil_title_and_text_panel' }, + "anvil_contents_panel/red_cost": { type: T.LABEL, children: string }, + "anvil_contents_panel/green_cost": { type: T.LABEL, children: string }, + "anvil_contents_panel/slots_panel": { type: T.PANEL, children: string }, + "anvil_contents_panel/anvil_title_and_text_panel": { type: T.PANEL, children: string }, + "inventory_grid": { type: T.GRID, children: string }, + "inventory_content": { type: T.PANEL, children: 'scrolling_panel' }, + "inventory_content/scrolling_panel": { type: T.PANEL, children: string }, + "inventory_and_anvil_panel": { type: T.PANEL, children: 'inventory_half_screen' | 'anvil_half_screen' }, + "inventory_and_anvil_panel/inventory_half_screen": { type: T.PANEL, children: 'inventory_content' }, + "inventory_and_anvil_panel/inventory_half_screen/inventory_content": { type: T.PANEL, children: string }, + "inventory_and_anvil_panel/anvil_half_screen": { type: T.PANEL, children: 'anvil_contents_panel' }, + "inventory_and_anvil_panel/anvil_half_screen/anvil_contents_panel": { type: T.PANEL, children: string }, + "header": { type: T.PANEL, children: 'header_background' | 'legacy_pocket_close_button' | 'panel' }, + "header/header_background": { type: T.IMAGE, children: string }, + "header/legacy_pocket_close_button": { type: T.BUTTON, children: string }, + "header/panel": { type: T.PANEL, children: 'title_label' }, + "header/panel/title_label": { type: T.LABEL, children: string }, + "header_and_content_stack_panel": { type: T.STACK_PANEL, children: 'header' | 'inventory_and_anvil_panel' }, + "header_and_content_stack_panel/header": { type: T.PANEL, children: string }, + "header_and_content_stack_panel/inventory_and_anvil_panel": { type: T.PANEL, children: string }, + "anvil_panel": { type: T.PANEL, children: 'bg' | 'root_panel' | 'header_and_content_stack_panel' | 'container_gamepad_helpers' | 'inventory_selected_icon_button' | 'hold_icon' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'flying_item_renderer' }, + "anvil_panel/bg": { type: T.IMAGE, children: string }, + "anvil_panel/root_panel": { type: T.INPUT_PANEL, children: string }, + "anvil_panel/header_and_content_stack_panel": { type: T.STACK_PANEL, children: string }, + "anvil_panel/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "anvil_panel/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "anvil_panel/hold_icon": { type: T.BUTTON, children: string }, + "anvil_panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "anvil_panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "anvil_panel/flying_item_renderer": { type: T.CUSTOM, children: string }, } 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": { type: T.LABEL, children: string }, + "modal_dialog_content": { type: T.STACK_PANEL, children: 'body_text' | 'button_wrapper' }, + "modal_dialog_content/body_text": { type: T.PANEL, children: string }, + "modal_dialog_content/button_wrapper": { type: T.PANEL, children: 'buttons' }, + "modal_dialog_content/button_wrapper/buttons": { type: T.STACK_PANEL, children: 'left' | 'padding' | 'right' }, + "modal_dialog_content/button_wrapper/buttons/left": { type: T.BUTTON, children: string }, + "modal_dialog_content/button_wrapper/buttons/padding": { type: T.PANEL, children: string }, + "modal_dialog_content/button_wrapper/buttons/right": { type: T.BUTTON, children: string }, + "modal_dialog_frame": { type: T.IMAGE, children: 'title' | 'close' | 'black_tint_image' }, + "modal_dialog_frame/title": { type: T.LABEL, children: string }, + "modal_dialog_frame/close": { type: T.BUTTON, children: string }, + "modal_dialog_frame/black_tint_image": { type: T.IMAGE, children: 'content' }, + "modal_dialog_frame/black_tint_image/content": { type: T.UNKNOWN, children: string }, + "ad_modal_dialog": { type: T.SCREEN, children: string }, } 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": { type: T.PANEL, children: string }, + "tts_control": { type: T.BUTTON, children: string }, + "split_button_panel": { type: T.PANEL, children: 'buttons' }, + "split_button_panel/buttons": { type: T.STACK_PANEL, children: 'a' | 'paddding' | 'b' }, + "split_button_panel/buttons/a": { type: T.UNKNOWN, children: string }, + "split_button_panel/buttons/paddding": { type: T.PANEL, children: string }, + "split_button_panel/buttons/b": { type: T.UNKNOWN, children: string }, + "vertical_split_button_panel": { type: T.PANEL, children: string }, + "fixed_width_wrapper": { type: T.PANEL, children: 'content' }, + "fixed_width_wrapper/content": { type: T.UNKNOWN, children: string }, + "sign_in_button": { type: T.BUTTON, children: string }, + "download_button": { type: T.BUTTON, children: string }, + "smooth_label": { type: T.LABEL, children: string }, + "smooth_bound_label": { type: T.LABEL, children: string }, + "title_label": { type: T.LABEL, children: string }, + "eula_hyperlink": { type: T.BUTTON, children: string }, + "accept_eula_button": { type: T.BUTTON, children: string }, + "eula_content": { type: T.STACK_PANEL, children: 'prompt_wrapper' | 'padding' | 'buttons' }, + "eula_content/prompt_wrapper": { type: T.PANEL, children: 'border' | 'prompt_text' }, + "eula_content/prompt_wrapper/border": { type: T.BUTTON, children: string }, + "eula_content/prompt_wrapper/prompt_text": { type: T.LABEL, children: string }, + "eula_content/padding": { type: T.PANEL, children: string }, + "eula_content/buttons": { type: T.PANEL, children: string }, + "eula": { type: T.IMAGE, children: string }, + "version": { type: T.PANEL, children: 'label' | 'label_background' }, + "version/label": { type: T.LABEL, children: string }, + "version/label_background": { type: T.IMAGE, children: string }, + "view_terms_button": { type: T.BUTTON, children: string }, + "privacy_policy_button": { type: T.BUTTON, children: string }, + "agree_panel": { type: T.PANEL, children: 'checkbox_control' | 'i_agree_label' }, + "agree_panel/checkbox_control": { type: T.TOGGLE, children: string }, + "agree_panel/i_agree_label": { type: T.LABEL, children: string }, + "term_item": { type: T.PANEL, children: 'item' }, + "term_item/item": { type: T.UNKNOWN, children: string }, + "terms_and_conditions_panel": { type: T.PANEL, children: 'terms_string_panel' }, + "terms_and_conditions_panel/terms_string_panel": { type: T.PANEL, children: 'buttons_stack_panel' }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": { type: T.STACK_PANEL, children: 'agree' | 'view_terms_button' | 'privacy_policy_button' }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree": { type: T.PANEL, children: string }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": { type: T.PANEL, children: string }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": { type: T.PANEL, children: string }, + "confirmation_panel": { type: T.PANEL, children: 'confirm_button' }, + "confirmation_panel/confirm_button": { type: T.BUTTON, children: string }, + "scroll_stack_panel": { type: T.PANEL, children: 'border' | 'terms' }, + "scroll_stack_panel/border": { type: T.BUTTON, children: string }, + "scroll_stack_panel/terms": { type: T.LABEL, children: string }, + "purchase_confirm_content": { type: T.STACK_PANEL, children: 'header_padding' | 'panel_wrap' | 'terms_and_conditions_panel' | 'button_padding' | 'confirmation_panel' | 'padding' }, + "purchase_confirm_content/header_padding": { type: T.PANEL, children: string }, + "purchase_confirm_content/panel_wrap": { type: T.PANEL, children: 'scrolling_panel' }, + "purchase_confirm_content/panel_wrap/scrolling_panel": { type: T.PANEL, children: string }, + "purchase_confirm_content/terms_and_conditions_panel": { type: T.PANEL, children: string }, + "purchase_confirm_content/button_padding": { type: T.PANEL, children: string }, + "purchase_confirm_content/confirmation_panel": { type: T.PANEL, children: string }, + "purchase_confirm_content/padding": { type: T.PANEL, children: string }, + "purchase_prompt_content": { type: T.STACK_PANEL, children: 'prompt_wrap' | 'purchase_wrap_centering_container' }, + "purchase_prompt_content/prompt_wrap": { type: T.PANEL, children: 'border' | 'prompt' }, + "purchase_prompt_content/prompt_wrap/border": { type: T.BUTTON, children: string }, + "purchase_prompt_content/prompt_wrap/prompt": { type: T.LABEL, children: string }, + "purchase_prompt_content/purchase_wrap_centering_container": { type: T.PANEL, children: 'purchase_wrap' }, + "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap": { type: T.STACK_PANEL, children: 'purchase' | 'padding_middle' | 'signout' }, + "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/purchase": { type: T.BUTTON, children: string }, + "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/padding_middle": { type: T.PANEL, children: string }, + "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/signout": { type: T.BUTTON, children: string }, + "purchase_prompt": { type: T.IMAGE, children: string }, + "purchase_confirm": { type: T.IMAGE, children: string }, + "purchase_panel": { type: T.PANEL, children: 'prompt' | 'confirm' }, + "purchase_panel/prompt": { type: T.IMAGE, children: string }, + "purchase_panel/confirm": { type: T.IMAGE, children: string }, + "title_panel": { type: T.PANEL, children: 'title_label_wrapper' }, + "title_panel/title_label_wrapper": { type: T.PANEL, children: string }, + "hyperlink_panel": { type: T.PANEL, children: 'link_stack' }, + "hyperlink_panel/link_stack": { type: T.STACK_PANEL, children: 'link1' | 'link2' | 'padding' }, + "hyperlink_panel/link_stack/link1": { type: T.BUTTON, children: string }, + "hyperlink_panel/link_stack/link2": { type: T.BUTTON, children: string }, + "hyperlink_panel/link_stack/padding": { type: T.PANEL, children: string }, + "auth_screen": { type: T.SCREEN, children: string }, + "sign_in_content": { type: T.STACK_PANEL, children: 'body_text' | 'body_hyperlink' | 'sign_in_wrapper' | 'download_wrapper' }, + "sign_in_content/body_text": { type: T.PANEL, children: string }, + "sign_in_content/body_hyperlink": { type: T.PANEL, children: string }, + "sign_in_content/sign_in_wrapper": { type: T.PANEL, children: 'button' }, + "sign_in_content/sign_in_wrapper/button": { type: T.BUTTON, children: string }, + "sign_in_content/download_wrapper": { type: T.PANEL, children: 'button' }, + "sign_in_content/download_wrapper/button": { type: T.BUTTON, children: string }, + "authentication_screen_content": { type: T.PANEL, children: 'debug' | 'client_version' | 'sign_in' | 'sign_in_ios' | 'pack_progress' | 'welcome' | 'demo' | 'eula' | 'purchase_panel' | 'popup_dialog_factory' }, + "authentication_screen_content/debug": { type: T.STACK_PANEL, children: string }, + "authentication_screen_content/client_version": { type: T.PANEL, children: 'version' }, + "authentication_screen_content/client_version/version": { type: T.PANEL, children: string }, + "authentication_screen_content/sign_in": { type: T.IMAGE, children: string }, + "authentication_screen_content/sign_in_ios": { type: T.IMAGE, children: string }, + "authentication_screen_content/pack_progress": { type: T.IMAGE, children: string }, + "authentication_screen_content/welcome": { type: T.UNKNOWN, children: string }, + "authentication_screen_content/demo": { type: T.UNKNOWN, children: string }, + "authentication_screen_content/eula": { type: T.IMAGE, children: string }, + "authentication_screen_content/purchase_panel": { type: T.PANEL, children: string }, + "authentication_screen_content/popup_dialog_factory": { type: T.FACTORY, children: string }, + "popup_content_base": { type: T.STACK_PANEL, children: 'message' | 'content' | 'footer_padding' }, + "popup_content_base/message": { type: T.PANEL, children: 'border' | 'text' }, + "popup_content_base/message/border": { type: T.BUTTON, children: string }, + "popup_content_base/message/text": { type: T.PANEL, children: string }, + "popup_content_base/content": { type: T.UNKNOWN, children: string }, + "popup_content_base/footer_padding": { type: T.PANEL, children: string }, + "popup_dialog": { type: T.INPUT_PANEL, children: 'dialog' }, + "popup_dialog/dialog": { type: T.IMAGE, children: string }, + "trial_info_ios_additional_content": { type: T.PANEL, children: 'dismiss' }, + "trial_info_ios_additional_content/dismiss": { type: T.BUTTON, children: string }, + "popup_dialog_trial_info_ios": { type: T.INPUT_PANEL, children: string }, + "student_message_panel": { type: T.PANEL, children: string }, + "trial_info_additional_content": { type: T.STACK_PANEL, children: 'buttons' }, + "trial_info_additional_content/buttons": { type: T.PANEL, children: string }, + "generic_welcome_additional_content": { type: T.STACK_PANEL, children: 'button_wrapper' }, + "generic_welcome_additional_content/button_wrapper": { type: T.PANEL, children: 'buttons' }, + "generic_welcome_additional_content/button_wrapper/buttons": { type: T.PANEL, children: string }, + "popup_dialog_trial_info": { type: T.INPUT_PANEL, children: string }, + "popup_dialog_generic_welcome": { type: T.INPUT_PANEL, children: string }, + "popup_message": { type: T.STACK_PANEL, children: 'main_message' | 'extra_message' | 'padding' }, + "popup_message/main_message": { type: T.LABEL, children: string }, + "popup_message/extra_message": { type: T.PANEL, children: string }, + "popup_message/padding": { type: T.PANEL, children: string }, + "popup_message_student": { type: T.LABEL, children: string }, + "popup_hyperlink": { type: T.BUTTON, children: string }, + "popup_purchase_link": { type: T.BUTTON, children: string }, + "popup_dismiss_button": { type: T.BUTTON, children: string }, + "pack_progress_content": { type: T.STACK_PANEL, children: 'top_padding' | 'loading_text_panel' | 'loading_bar_panel' | 'loading_padding' | 'skip_panel' | 'bottom_padding' }, + "pack_progress_content/top_padding": { type: T.PANEL, children: string }, + "pack_progress_content/loading_text_panel": { type: T.PANEL, children: 'loading_text' }, + "pack_progress_content/loading_text_panel/loading_text": { type: T.LABEL, children: string }, + "pack_progress_content/loading_bar_panel": { type: T.PANEL, children: 'loading_bar' }, + "pack_progress_content/loading_bar_panel/loading_bar": { type: T.PANEL, children: string }, + "pack_progress_content/loading_padding": { type: T.PANEL, children: string }, + "pack_progress_content/skip_panel": { type: T.PANEL, children: 'skip_button' }, + "pack_progress_content/skip_panel/skip_button": { type: T.BUTTON, children: string }, + "pack_progress_content/bottom_padding": { type: T.PANEL, children: string }, + "sign_in_ios_content": { type: T.STACK_PANEL, children: 'body_text' | 'body_hyperlink' | 'signin_ios_button_panel' | 'error_sign_in_panel' | 'error_download_panel' }, + "sign_in_ios_content/body_text": { type: T.PANEL, children: string }, + "sign_in_ios_content/body_hyperlink": { type: T.PANEL, children: string }, + "sign_in_ios_content/signin_ios_button_panel": { type: T.STACK_PANEL, children: 'app_store_prompt_wrap' | 'buttons' | 'pad_footer' }, + "sign_in_ios_content/signin_ios_button_panel/app_store_prompt_wrap": { type: T.PANEL, children: 'prompt' }, + "sign_in_ios_content/signin_ios_button_panel/app_store_prompt_wrap/prompt": { type: T.LABEL, children: string }, + "sign_in_ios_content/signin_ios_button_panel/buttons": { type: T.PANEL, children: string }, + "sign_in_ios_content/signin_ios_button_panel/pad_footer": { type: T.PANEL, children: string }, + "sign_in_ios_content/error_sign_in_panel": { type: T.PANEL, children: 'button' }, + "sign_in_ios_content/error_sign_in_panel/button": { type: T.BUTTON, children: string }, + "sign_in_ios_content/error_download_panel": { type: T.PANEL, children: 'button' }, + "sign_in_ios_content/error_download_panel/button": { type: T.BUTTON, children: string }, + "sign_in_ios_button": { type: T.BUTTON, children: string }, + "to_app_store": { type: T.BUTTON, children: string }, + "debug_panel": { type: T.STACK_PANEL, children: 'state_label' | 'state_text_box' | 'open_popup' | 'refresh_popup' | 'reset' | 'toggle_ios' }, + "debug_panel/state_label": { type: T.LABEL, children: string }, + "debug_panel/state_text_box": { type: T.EDIT_BOX, children: string }, + "debug_panel/open_popup": { type: T.BUTTON, children: string }, + "debug_panel/refresh_popup": { type: T.BUTTON, children: string }, + "debug_panel/reset": { type: T.BUTTON, children: string }, + "debug_panel/toggle_ios": { type: T.BUTTON, children: string }, + "authentication_popup_link_button": { type: T.STACK_PANEL, children: 'top_padding' | 'link_button' }, + "authentication_popup_link_button/top_padding": { type: T.PANEL, children: string }, + "authentication_popup_link_button/link_button": { type: T.BUTTON, children: string }, + "authentication_popup_contents": { type: T.STACK_PANEL, children: 'initial_padding' | 'body' | 'learn_more_link' | 'link2' | 'end_padding' }, + "authentication_popup_contents/initial_padding": { type: T.PANEL, children: string }, + "authentication_popup_contents/body": { type: T.LABEL, children: string }, + "authentication_popup_contents/learn_more_link": { type: T.STACK_PANEL, children: string }, + "authentication_popup_contents/link2": { type: T.STACK_PANEL, children: string }, + "authentication_popup_contents/end_padding": { type: T.PANEL, children: string }, + "resizeable_scrolling_panel": { type: T.PANEL, children: string }, + "authentication_popup_content_panel": { type: T.PANEL, children: string }, + "authentication_popup_button": { type: T.BUTTON, children: string }, + "authentication_popup_one_button": { type: T.PANEL, children: 'button' }, + "authentication_popup_one_button/button": { type: T.BUTTON, children: string }, + "authentication_popup_two_buttons": { type: T.STACK_PANEL, children: 'first_button' | 'button_padding' | 'second_button' }, + "authentication_popup_two_buttons/first_button": { type: T.BUTTON, children: string }, + "authentication_popup_two_buttons/button_padding": { type: T.PANEL, children: string }, + "authentication_popup_two_buttons/second_button": { type: T.BUTTON, children: string }, + "authentication_popup_lower_button_panel": { type: T.PANEL, children: 'one_button' | 'two_buttons' }, + "authentication_popup_lower_button_panel/one_button": { type: T.PANEL, children: string }, + "authentication_popup_lower_button_panel/two_buttons": { type: T.STACK_PANEL, children: string }, + "authentication_popup": { type: T.INPUT_PANEL, children: string }, } 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": { type: T.IMAGE, children: string }, + "accept_label": { type: T.PANEL, children: 'button_label' }, + "accept_label/button_label": { type: T.LABEL, children: string }, + "accept_button": { type: T.BUTTON, children: string }, + "main_panel": { type: T.INPUT_PANEL, children: 'common_panel' | 'title_label' | 'message_label' | 'save_icon' | 'a' | 'gamepad_helpers' }, + "main_panel/common_panel": { type: T.PANEL, children: string }, + "main_panel/title_label": { type: T.LABEL, children: string }, + "main_panel/message_label": { type: T.LABEL, children: string }, + "main_panel/save_icon": { type: T.IMAGE, children: string }, + "main_panel/a": { type: T.BUTTON, children: string }, + "main_panel/gamepad_helpers": { type: T.PANEL, children: string }, + "gamepad_helpers": { type: T.PANEL, children: 'gamepad_helper_a' }, + "gamepad_helpers/gamepad_helper_a": { type: T.STACK_PANEL, children: string }, + "auto_save_info_screen": { type: T.SCREEN, children: string }, + "auto_save_info_screen_content": { type: T.PANEL, children: 'root_panel' }, + "auto_save_info_screen_content/root_panel": { type: T.PANEL, children: 'main_panel' }, + "auto_save_info_screen_content/root_panel/main_panel": { type: T.INPUT_PANEL, children: string }, } 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": { type: T.PANEL, children: string }, + "beacon_panel": { type: T.PANEL, children: 'container_gamepad_helpers' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'root_panel' | 'flying_item_renderer' }, + "beacon_panel/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "beacon_panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "beacon_panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "beacon_panel/root_panel": { type: T.INPUT_PANEL, children: 'common_panel' | 'beacon_inventory' }, + "beacon_panel/root_panel/common_panel": { type: T.PANEL, children: string }, + "beacon_panel/root_panel/beacon_inventory": { type: T.PANEL, children: 'beacon_inner_panel' | 'payment_panel' | 'inventory_panel_bottom_half' | 'hotbar_grid_template' | 'inventory_selected_icon_button' | 'gamepad_cursor' }, + "beacon_panel/root_panel/beacon_inventory/beacon_inner_panel": { type: T.IMAGE, children: string }, + "beacon_panel/root_panel/beacon_inventory/payment_panel": { type: T.PANEL, children: string }, + "beacon_panel/root_panel/beacon_inventory/inventory_panel_bottom_half": { type: T.PANEL, children: string }, + "beacon_panel/root_panel/beacon_inventory/hotbar_grid_template": { type: T.GRID, children: string }, + "beacon_panel/root_panel/beacon_inventory/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "beacon_panel/root_panel/beacon_inventory/gamepad_cursor": { type: T.BUTTON, children: string }, + "beacon_panel/flying_item_renderer": { type: T.CUSTOM, children: string }, + "inventory_slot_button": { type: T.BUTTON, children: string }, + "hotbar_slot_button": { type: T.BUTTON, children: string }, + "image_atlas": { type: T.IMAGE, children: string }, + "pyramid_image": { type: T.IMAGE, children: string }, + "pyramid_panel": { type: T.PANEL, children: 'level1' | 'level2' | 'level3' | 'level4' }, + "pyramid_panel/level1": { type: T.IMAGE, children: string }, + "pyramid_panel/level2": { type: T.IMAGE, children: string }, + "pyramid_panel/level3": { type: T.IMAGE, children: string }, + "pyramid_panel/level4": { type: T.IMAGE, children: string }, + "item_seperator": { type: T.IMAGE, children: string }, + "item_renderer": { type: T.CUSTOM, children: string }, + "usable_items_panel": { type: T.PANEL, children: 'netherite' | 'item_seperator_0' | 'emerald' | 'item_seperator_1' | 'diamond' | 'item_seperator_2' | 'gold' | 'item_seperator_3' | 'iron' }, + "usable_items_panel/netherite": { type: T.CUSTOM, children: string }, + "usable_items_panel/item_seperator_0": { type: T.IMAGE, children: string }, + "usable_items_panel/emerald": { type: T.CUSTOM, children: string }, + "usable_items_panel/item_seperator_1": { type: T.IMAGE, children: string }, + "usable_items_panel/diamond": { type: T.CUSTOM, children: string }, + "usable_items_panel/item_seperator_2": { type: T.IMAGE, children: string }, + "usable_items_panel/gold": { type: T.CUSTOM, children: string }, + "usable_items_panel/item_seperator_3": { type: T.IMAGE, children: string }, + "usable_items_panel/iron": { type: T.CUSTOM, children: string }, + "base_image": { type: T.IMAGE, children: string }, + "hover_text": { type: T.CUSTOM, children: string }, + "hover_state": { type: T.IMAGE, children: 'hover_text' }, + "hover_state/hover_text": { type: T.CUSTOM, children: string }, + "button_unchecked_default": { type: T.IMAGE, children: string }, + "button_unchecked_hover": { type: T.IMAGE, children: 'hover_text' }, + "button_unchecked_hover/hover_text": { type: T.CUSTOM, children: string }, + "button_checked_hover": { type: T.IMAGE, children: 'hover_text' }, + "button_checked_hover/hover_text": { type: T.CUSTOM, children: string }, + "button_locked": { type: T.IMAGE, children: string }, + "button_locked_hover": { type: T.IMAGE, children: 'hover_text' }, + "button_locked_hover/hover_text": { type: T.CUSTOM, children: string }, + "button_checked": { type: T.IMAGE, children: string }, + "toggle_button": { type: T.TOGGLE, children: string }, + "base_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "base_button/default": { type: T.IMAGE, children: string }, + "base_button/hover": { type: T.IMAGE, children: string }, + "base_button/pressed": { type: T.IMAGE, children: string }, + "active_button": { type: T.BUTTON, children: string }, + "inactive_button": { type: T.BUTTON, children: 'default' | 'hover' }, + "inactive_button/default": { type: T.IMAGE, children: string }, + "inactive_button/hover": { type: T.IMAGE, children: string }, + "selected_button": { type: T.BUTTON, children: 'default' | 'hover' }, + "selected_button/default": { type: T.IMAGE, children: string }, + "selected_button/hover": { type: T.IMAGE, children: string }, + "secondary_effect_base": { type: T.IMAGE, children: string }, + "speed_secondary": { type: T.IMAGE, children: string }, + "haste_secondary": { type: T.IMAGE, children: string }, + "resist_secondary": { type: T.IMAGE, children: string }, + "jump_secondary": { type: T.IMAGE, children: string }, + "strength_secondary": { type: T.IMAGE, children: string }, + "image_template": { type: T.PANEL, children: 'base_image' }, + "image_template/base_image": { type: T.IMAGE, children: string }, + "secondary_effect_images": { type: T.PANEL, children: 'speed_secondary' | 'haste_secondary' | 'resist_secondary' | 'jump_secondary' | 'strength_secondary' }, + "secondary_effect_images/speed_secondary": { type: T.IMAGE, children: string }, + "secondary_effect_images/haste_secondary": { type: T.IMAGE, children: string }, + "secondary_effect_images/resist_secondary": { type: T.IMAGE, children: string }, + "secondary_effect_images/jump_secondary": { type: T.IMAGE, children: string }, + "secondary_effect_images/strength_secondary": { type: T.IMAGE, children: string }, + "toggle_template": { type: T.PANEL, children: 'toggle_button' }, + "toggle_template/toggle_button": { type: T.TOGGLE, children: string }, + "button_template": { type: T.PANEL, children: 'active_button' | 'inactive_button' | 'image_template' }, + "button_template/active_button": { type: T.BUTTON, children: string }, + "button_template/inactive_button": { type: T.BUTTON, children: string }, + "button_template/image_template": { type: T.PANEL, children: string }, + "panel_template": { type: T.PANEL, children: string }, + "button_panel": { type: T.PANEL, children: 'speed_panel' | 'haste_panel' | 'resist_panel' | 'jump_panel' | 'strength_panel' | 'regen_panel' | 'extra_panel' }, + "button_panel/speed_panel": { type: T.PANEL, children: 'toggle_template' }, + "button_panel/speed_panel/toggle_template": { type: T.PANEL, children: string }, + "button_panel/haste_panel": { type: T.PANEL, children: string }, + "button_panel/resist_panel": { type: T.PANEL, children: string }, + "button_panel/jump_panel": { type: T.PANEL, children: string }, + "button_panel/strength_panel": { type: T.PANEL, children: string }, + "button_panel/regen_panel": { type: T.PANEL, children: string }, + "button_panel/extra_panel": { type: T.PANEL, children: string }, + "payment_panel": { type: T.PANEL, children: 'confirm_panel' | 'cancel_panel' | 'ingredient_item' | 'usable_items_panel' }, + "payment_panel/confirm_panel": { type: T.PANEL, children: string }, + "payment_panel/cancel_panel": { type: T.PANEL, children: string }, + "payment_panel/ingredient_item": { type: T.INPUT_PANEL, children: string }, + "payment_panel/usable_items_panel": { type: T.PANEL, children: string }, + "beacon_label": { type: T.LABEL, children: string }, + "beacon_inner_panel": { type: T.IMAGE, children: 'button_panel' | 'pyramid_panel' | 'middle_strip' | 'primary_power_label' | 'secondary_power_label' }, + "beacon_inner_panel/button_panel": { type: T.PANEL, children: string }, + "beacon_inner_panel/pyramid_panel": { type: T.PANEL, children: string }, + "beacon_inner_panel/middle_strip": { type: T.IMAGE, children: string }, + "beacon_inner_panel/primary_power_label": { type: T.LABEL, children: string }, + "beacon_inner_panel/secondary_power_label": { type: T.LABEL, children: string }, + "beacon_screen": { type: T.SCREEN, children: string }, } 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": { type: T.LABEL, children: string }, + "panel_outline": { type: T.IMAGE, children: string }, + "dark_bg": { type: T.IMAGE, children: string }, + "background_image": { type: T.IMAGE, children: string }, + "item_seperator": { type: T.IMAGE, children: string }, + "item_renderer": { type: T.CUSTOM, children: string }, + "usable_items_panel": { type: T.PANEL, children: 'netherite' | 'item_seperator_0' | 'emerald' | 'item_seperator_1' | 'diamond' | 'item_seperator_2' | 'gold' | 'item_seperator_3' | 'iron' }, + "usable_items_panel/netherite": { type: T.CUSTOM, children: string }, + "usable_items_panel/item_seperator_0": { type: T.IMAGE, children: string }, + "usable_items_panel/emerald": { type: T.CUSTOM, children: string }, + "usable_items_panel/item_seperator_1": { type: T.IMAGE, children: string }, + "usable_items_panel/diamond": { type: T.CUSTOM, children: string }, + "usable_items_panel/item_seperator_2": { type: T.IMAGE, children: string }, + "usable_items_panel/gold": { type: T.CUSTOM, children: string }, + "usable_items_panel/item_seperator_3": { type: T.IMAGE, children: string }, + "usable_items_panel/iron": { type: T.CUSTOM, children: string }, + "pyramid_image": { type: T.IMAGE, children: string }, + "pyramid_panel": { type: T.PANEL, children: 'pyramid_image' }, + "pyramid_panel/pyramid_image": { type: T.IMAGE, children: string }, + "background_panel": { type: T.IMAGE, children: string }, + "beacon_background": { type: T.IMAGE, children: 'middle_strip' }, + "beacon_background/middle_strip": { type: T.IMAGE, children: string }, + "inventory_grid": { type: T.GRID, children: string }, + "inventory_content": { type: T.PANEL, children: 'scrolling_panel' }, + "inventory_content/scrolling_panel": { type: T.PANEL, children: string }, + "highlight_hover_square": { type: T.PANEL, children: 'highlight_square' }, + "highlight_hover_square/highlight_square": { type: T.IMAGE, children: string }, + "button_unchecked_default": { type: T.IMAGE, children: string }, + "button_unchecked_hover": { type: T.IMAGE, children: 'highlight_hover_square' }, + "button_unchecked_hover/highlight_hover_square": { type: T.PANEL, children: string }, + "button_checked": { type: T.IMAGE, children: string }, + "button_checked_hover": { type: T.IMAGE, children: 'highlight_hover_square' }, + "button_checked_hover/highlight_hover_square": { type: T.PANEL, children: string }, + "button_locked": { type: T.IMAGE, children: string }, + "button_locked_hover": { type: T.IMAGE, children: 'highlight_hover_square' }, + "button_locked_hover/highlight_hover_square": { type: T.PANEL, children: string }, + "toggle_button": { type: T.TOGGLE, children: string }, + "base_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "base_button/default": { type: T.IMAGE, children: string }, + "base_button/hover": { type: T.IMAGE, children: 'highlight_hover_square' }, + "base_button/hover/highlight_hover_square": { type: T.PANEL, children: string }, + "base_button/pressed": { type: T.IMAGE, children: string }, + "active_button": { type: T.BUTTON, children: string }, + "inactive_button_image": { type: T.IMAGE, children: string }, + "inactive_button": { type: T.BUTTON, children: 'default' | 'hover' }, + "inactive_button/default": { type: T.IMAGE, children: string }, + "inactive_button/hover": { type: T.IMAGE, children: 'highlight_hover_square' }, + "inactive_button/hover/highlight_hover_square": { type: T.PANEL, children: string }, + "selected_button_image": { type: T.IMAGE, children: string }, + "selected_button": { type: T.BUTTON, children: 'default' | 'hover' }, + "selected_button/default": { type: T.IMAGE, children: string }, + "selected_button/hover": { type: T.IMAGE, children: 'highlight_hover_square' }, + "selected_button/hover/highlight_hover_square": { type: T.PANEL, children: string }, + "secondary_effect_base": { type: T.PANEL, children: string }, + "speed_secondary": { type: T.PANEL, children: string }, + "haste_secondary": { type: T.PANEL, children: string }, + "resist_secondary": { type: T.PANEL, children: string }, + "jump_secondary": { type: T.PANEL, children: string }, + "strength_secondary": { type: T.PANEL, children: string }, + "secondary_effect_images": { type: T.PANEL, children: 'speed_secondary' | 'haste_secondary' | 'resist_secondary' | 'jump_secondary' | 'strength_secondary' }, + "secondary_effect_images/speed_secondary": { type: T.PANEL, children: string }, + "secondary_effect_images/haste_secondary": { type: T.PANEL, children: string }, + "secondary_effect_images/resist_secondary": { type: T.PANEL, children: string }, + "secondary_effect_images/jump_secondary": { type: T.PANEL, children: string }, + "secondary_effect_images/strength_secondary": { type: T.PANEL, children: string }, + "base_image": { type: T.IMAGE, children: string }, + "image_template": { type: T.PANEL, children: 'base_image' }, + "image_template/base_image": { type: T.IMAGE, children: string }, + "toggle_template": { type: T.PANEL, children: 'toggle_button' }, + "toggle_template/toggle_button": { type: T.TOGGLE, children: string }, + "button_template": { type: T.PANEL, children: 'active_button' | 'inactive_button' | 'image_template' }, + "button_template/active_button": { type: T.BUTTON, children: string }, + "button_template/inactive_button": { type: T.BUTTON, children: string }, + "button_template/image_template": { type: T.PANEL, children: string }, + "panel_template": { type: T.PANEL, children: string }, + "beacon_power_label": { type: T.PANEL, children: 'label' }, + "beacon_power_label/label": { type: T.LABEL, children: string }, + "beacon_sub_panel": { type: T.PANEL, children: string }, + "beacon_button_left_panel": { type: T.PANEL, children: 'primary_power_label' | 'panel' }, + "beacon_button_left_panel/primary_power_label": { type: T.PANEL, children: string }, + "beacon_button_left_panel/panel": { type: T.PANEL, children: 'pyramids_and_buttons' }, + "beacon_button_left_panel/panel/pyramids_and_buttons": { type: T.PANEL, children: 'level1' | 'speed_panel' | 'haste_panel' | 'level2' | 'resist_panel' | 'jump_panel' | 'level3' | 'strength_panel' }, + "beacon_button_left_panel/panel/pyramids_and_buttons/level1": { type: T.PANEL, children: string }, + "beacon_button_left_panel/panel/pyramids_and_buttons/speed_panel": { type: T.PANEL, children: string }, + "beacon_button_left_panel/panel/pyramids_and_buttons/haste_panel": { type: T.PANEL, children: string }, + "beacon_button_left_panel/panel/pyramids_and_buttons/level2": { type: T.PANEL, children: string }, + "beacon_button_left_panel/panel/pyramids_and_buttons/resist_panel": { type: T.PANEL, children: string }, + "beacon_button_left_panel/panel/pyramids_and_buttons/jump_panel": { type: T.PANEL, children: string }, + "beacon_button_left_panel/panel/pyramids_and_buttons/level3": { type: T.PANEL, children: string }, + "beacon_button_left_panel/panel/pyramids_and_buttons/strength_panel": { type: T.PANEL, children: string }, + "beacon_button_right_panel": { type: T.PANEL, children: 'secondary_power_label' | 'panel' }, + "beacon_button_right_panel/secondary_power_label": { type: T.PANEL, children: string }, + "beacon_button_right_panel/panel": { type: T.PANEL, children: 'buttons_and_pyramid' }, + "beacon_button_right_panel/panel/buttons_and_pyramid": { type: T.PANEL, children: 'level4' | 'regen_panel' | 'extra_panel' }, + "beacon_button_right_panel/panel/buttons_and_pyramid/level4": { type: T.PANEL, children: string }, + "beacon_button_right_panel/panel/buttons_and_pyramid/regen_panel": { type: T.PANEL, children: string }, + "beacon_button_right_panel/panel/buttons_and_pyramid/extra_panel": { type: T.PANEL, children: string }, + "beacon_buttons_panel": { type: T.PANEL, children: 'beacon_background' | 'left_panel' | 'right_panel' }, + "beacon_buttons_panel/beacon_background": { type: T.IMAGE, children: string }, + "beacon_buttons_panel/left_panel": { type: T.PANEL, children: string }, + "beacon_buttons_panel/right_panel": { type: T.PANEL, children: string }, + "confirm_panel": { type: T.PANEL, children: 'ingredient_item' | 'confirm_panel' | 'cancel_panel' }, + "confirm_panel/ingredient_item": { type: T.INPUT_PANEL, children: string }, + "confirm_panel/confirm_panel": { type: T.PANEL, children: string }, + "confirm_panel/cancel_panel": { type: T.PANEL, children: string }, + "beacon_payment_panel": { type: T.STACK_PANEL, children: 'usable_items_panel' | 'pad' | 'confirm_panel' }, + "beacon_payment_panel/usable_items_panel": { type: T.PANEL, children: string }, + "beacon_payment_panel/pad": { type: T.PANEL, children: string }, + "beacon_payment_panel/confirm_panel": { type: T.PANEL, children: string }, + "beacon_contents_panel": { type: T.STACK_PANEL, children: 'fill1' | 'beacon_buttons_panel' | 'pad1' | 'beacon_payment_panel' | 'fill2' }, + "beacon_contents_panel/fill1": { type: T.PANEL, children: string }, + "beacon_contents_panel/beacon_buttons_panel": { type: T.PANEL, children: string }, + "beacon_contents_panel/pad1": { type: T.PANEL, children: string }, + "beacon_contents_panel/beacon_payment_panel": { type: T.STACK_PANEL, children: string }, + "beacon_contents_panel/fill2": { type: T.PANEL, children: string }, + "header": { type: T.PANEL, children: 'header_background' | 'legacy_pocket_close_button' | 'panel' }, + "header/header_background": { type: T.IMAGE, children: string }, + "header/legacy_pocket_close_button": { type: T.BUTTON, children: string }, + "header/panel": { type: T.PANEL, children: 'title_label' }, + "header/panel/title_label": { type: T.LABEL, children: string }, + "inventory_and_beacon_panel": { type: T.PANEL, children: 'inventory_half_screen' | 'beacon_half_screen' }, + "inventory_and_beacon_panel/inventory_half_screen": { type: T.PANEL, children: 'inventory_content' }, + "inventory_and_beacon_panel/inventory_half_screen/inventory_content": { type: T.PANEL, children: string }, + "inventory_and_beacon_panel/beacon_half_screen": { type: T.PANEL, children: 'beacon_content' }, + "inventory_and_beacon_panel/beacon_half_screen/beacon_content": { type: T.STACK_PANEL, children: string }, + "header_and_content_stack_panel": { type: T.STACK_PANEL, children: 'header' | 'inventory_and_beacon_panel' }, + "header_and_content_stack_panel/header": { type: T.PANEL, children: string }, + "header_and_content_stack_panel/inventory_and_beacon_panel": { type: T.PANEL, children: string }, + "beacon_panel": { type: T.PANEL, children: 'bg' | 'root_panel' | 'header_and_content_stack_panel' | 'container_gamepad_helpers' | 'inventory_selected_icon_button' | 'hold_icon' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'flying_item_renderer' }, + "beacon_panel/bg": { type: T.IMAGE, children: string }, + "beacon_panel/root_panel": { type: T.INPUT_PANEL, children: string }, + "beacon_panel/header_and_content_stack_panel": { type: T.STACK_PANEL, children: string }, + "beacon_panel/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "beacon_panel/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "beacon_panel/hold_icon": { type: T.BUTTON, children: string }, + "beacon_panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "beacon_panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "beacon_panel/flying_item_renderer": { type: T.CUSTOM, children: string }, } export type BlastFurnaceType = { - "blast_furnace_screen": T.SCREEN, + "blast_furnace_screen": { type: T.SCREEN, children: string }, } 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": { type: T.IMAGE, children: string }, + "screenshot_frame": { type: T.IMAGE, children: 'caption_edit' }, + "screenshot_frame/caption_edit": { type: T.EDIT_BOX, children: string }, + "photo_corner": { type: T.IMAGE, children: string }, + "photo_corner_bl": { type: T.IMAGE, children: string }, + "photo_corner_br": { type: T.IMAGE, children: string }, + "photo_corner_tr": { type: T.IMAGE, children: string }, + "photo_corner_tl": { type: T.IMAGE, children: string }, + "page_caption": { type: T.EDIT_BOX, children: string }, + "page_photo": { type: T.PANEL, children: 'screenshot' | 'screenshot_frame' | 'photo_corner_bl' | 'photo_corner_br' | 'photo_corner_tl' | 'photo_corner_tr' }, + "page_photo/screenshot": { type: T.IMAGE, children: string }, + "page_photo/screenshot_frame": { type: T.IMAGE, children: string }, + "page_photo/photo_corner_bl": { type: T.IMAGE, children: string }, + "page_photo/photo_corner_br": { type: T.IMAGE, children: string }, + "page_photo/photo_corner_tl": { type: T.IMAGE, children: string }, + "page_photo/photo_corner_tr": { type: T.IMAGE, children: string }, + "pick_item": { type: T.PANEL, children: 'photo' | 'button' }, + "pick_item/photo": { type: T.PANEL, children: string }, + "pick_item/button": { type: T.BUTTON, children: string }, + "pick_item_inventory": { type: T.PANEL, children: 'photo' | 'button' }, + "pick_item_inventory/photo": { type: T.PANEL, children: string }, + "pick_item_inventory/button": { type: T.BUTTON, children: string }, + "header": { type: T.LABEL, children: string }, + "text_centering_panel_inventory": { type: T.PANEL, children: 'inventory_header' }, + "text_centering_panel_inventory/inventory_header": { type: T.LABEL, children: string }, + "text_centering_panel_portfolio": { type: T.PANEL, children: 'portfolio_header' }, + "text_centering_panel_portfolio/portfolio_header": { type: T.LABEL, children: string }, + "pick_scrolling_content": { type: T.STACK_PANEL, children: 'inventory_header' | 'inventory_grid' | 'portfolio_header' | 'portfolio_grid' }, + "pick_scrolling_content/inventory_header": { type: T.PANEL, children: string }, + "pick_scrolling_content/inventory_grid": { type: T.STACK_PANEL, children: string }, + "pick_scrolling_content/portfolio_header": { type: T.PANEL, children: string }, + "pick_scrolling_content/portfolio_grid": { type: T.STACK_PANEL, children: string }, + "pick_panel": { type: T.IMAGE, children: 'scroll' | 'close_button' }, + "pick_panel/scroll": { type: T.PANEL, children: string }, + "pick_panel/close_button": { type: T.BUTTON, children: string }, + "blank": { type: T.IMAGE, children: string }, + "book_background": { type: T.IMAGE, children: string }, + "book_spine_image": { type: T.IMAGE, children: string }, + "page_crease_left_image": { type: T.IMAGE, children: string }, + "page_crease_right_image": { type: T.IMAGE, children: string }, + "page_edge_left_image": { type: T.IMAGE, children: string }, + "page_edge_right_image": { type: T.IMAGE, children: string }, + "text_edit_hover_image": { type: T.IMAGE, children: string }, + "base_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "base_button/default": { type: T.IMAGE, children: string }, + "base_button/hover": { type: T.IMAGE, children: string }, + "base_button/pressed": { type: T.IMAGE, children: string }, + "book_buttons_panel": { type: T.PANEL, children: 'sign_export_buttons' | 'im_content_button' }, + "book_buttons_panel/sign_export_buttons": { type: T.STACK_PANEL, children: 'left_spacer' | 'sign_button' | 'export_button' | 'right_spacer' }, + "book_buttons_panel/sign_export_buttons/left_spacer": { type: T.PANEL, children: string }, + "book_buttons_panel/sign_export_buttons/sign_button": { type: T.BUTTON, children: string }, + "book_buttons_panel/sign_export_buttons/export_button": { type: T.BUTTON, children: string }, + "book_buttons_panel/sign_export_buttons/right_spacer": { type: T.PANEL, children: string }, + "book_buttons_panel/im_content_button": { type: T.BUTTON, children: string }, + "cover_buttons_stack_panel_holder": { type: T.PANEL, children: 'cover_buttons_stack_panel' }, + "cover_buttons_stack_panel_holder/cover_buttons_stack_panel": { type: T.STACK_PANEL, children: 'finalize_button' | 'padding_1' | 'cancel_sign_button' }, + "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/finalize_button": { type: T.BUTTON, children: string }, + "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/padding_1": { type: T.PANEL, children: string }, + "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/cancel_sign_button": { type: T.BUTTON, children: string }, + "close_button_default": { type: T.IMAGE, children: string }, + "close_button_hover": { type: T.IMAGE, children: string }, + "close_button_pressed": { type: T.IMAGE, children: string }, + "close_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "close_button/default": { type: T.IMAGE, children: string }, + "close_button/hover": { type: T.IMAGE, children: string }, + "close_button/pressed": { type: T.IMAGE, children: string }, + "page_text_edit": { type: T.EDIT_BOX, children: string }, + "page_text": { type: T.EDIT_BOX, children: string }, + "page_number_label": { type: T.LABEL, children: string }, + "padded_button": { type: T.PANEL, children: 'button' }, + "padded_button/button": { type: T.BUTTON, children: string }, + "page_buttons_panel": { type: T.STACK_PANEL, children: 'swap_page_left' | 'insert_text_page' | 'insert_photo_page' | 'delete_page' | 'swap_page_right' }, + "page_buttons_panel/swap_page_left": { type: T.PANEL, children: string }, + "page_buttons_panel/insert_text_page": { type: T.PANEL, children: string }, + "page_buttons_panel/insert_photo_page": { type: T.PANEL, children: string }, + "page_buttons_panel/delete_page": { type: T.PANEL, children: string }, + "page_buttons_panel/swap_page_right": { type: T.PANEL, children: string }, + "page_content_panel": { type: T.PANEL, children: 'page_text' | 'page_photo' | 'page_number_label' | 'page_buttons_panel' | 'edit_page' }, + "page_content_panel/page_text": { type: T.EDIT_BOX, children: string }, + "page_content_panel/page_photo": { type: T.PANEL, children: string }, + "page_content_panel/page_number_label": { type: T.LABEL, children: string }, + "page_content_panel/page_buttons_panel": { type: T.STACK_PANEL, children: string }, + "page_content_panel/edit_page": { type: T.BUTTON, children: string }, + "title_label": { type: T.LABEL, children: string }, + "title_text_box": { type: T.EDIT_BOX, children: string }, + "author_label": { type: T.LABEL, children: string }, + "author_text_box": { type: T.EDIT_BOX, children: string }, + "author_stack_panel": { type: T.STACK_PANEL, children: 'author_label_panel' | 'author_text_panel' }, + "author_stack_panel/author_label_panel": { type: T.PANEL, children: 'author_label' }, + "author_stack_panel/author_label_panel/author_label": { type: T.LABEL, children: string }, + "author_stack_panel/author_text_panel": { type: T.PANEL, children: 'author_text_box' }, + "author_stack_panel/author_text_panel/author_text_box": { type: T.EDIT_BOX, children: string }, + "warning_label": { type: T.LABEL, children: string }, + "cover_content_panel": { type: T.PANEL, children: 'title_label' | 'title_text_box' | 'author_stack_panel' | 'warning_label' }, + "cover_content_panel/title_label": { type: T.LABEL, children: string }, + "cover_content_panel/title_text_box": { type: T.EDIT_BOX, children: string }, + "cover_content_panel/author_stack_panel": { type: T.STACK_PANEL, children: string }, + "cover_content_panel/warning_label": { type: T.LABEL, children: string }, + "cover_and_buttons_panel": { type: T.PANEL, children: 'cover_panel' | 'cover_buttons_stack_panel_holder' }, + "cover_and_buttons_panel/cover_panel": { type: T.PANEL, children: 'cover_content_panel' | 'book_background' | 'close_button' }, + "cover_and_buttons_panel/cover_panel/cover_content_panel": { type: T.PANEL, children: string }, + "cover_and_buttons_panel/cover_panel/book_background": { type: T.IMAGE, children: string }, + "cover_and_buttons_panel/cover_panel/close_button": { type: T.BUTTON, children: string }, + "cover_and_buttons_panel/cover_buttons_stack_panel_holder": { type: T.PANEL, children: string }, + "page_panel": { type: T.PANEL, children: 'page_content_panel' }, + "page_panel/page_content_panel": { type: T.PANEL, children: string }, + "book_grid": { type: T.GRID, children: 'page_panel_left' | 'page_panel_right' }, + "book_grid/page_panel_left": { type: T.PANEL, children: string }, + "book_grid/page_panel_right": { type: T.PANEL, children: string }, + "book_and_buttons_panel": { type: T.PANEL, children: 'book_panel' | 'book_buttons_panel' }, + "book_and_buttons_panel/book_panel": { type: T.PANEL, children: 'book_grid' | 'book_background' | 'book_spine_image' | 'close_button' | 'prev_button' | 'next_button' }, + "book_and_buttons_panel/book_panel/book_grid": { type: T.GRID, children: string }, + "book_and_buttons_panel/book_panel/book_background": { type: T.IMAGE, children: string }, + "book_and_buttons_panel/book_panel/book_spine_image": { type: T.IMAGE, children: string }, + "book_and_buttons_panel/book_panel/close_button": { type: T.BUTTON, children: string }, + "book_and_buttons_panel/book_panel/prev_button": { type: T.BUTTON, children: string }, + "book_and_buttons_panel/book_panel/next_button": { type: T.BUTTON, children: string }, + "book_and_buttons_panel/book_buttons_panel": { type: T.PANEL, children: string }, + "root_panel": { type: T.PANEL, children: string }, + "book_screen": { type: T.SCREEN, children: string }, + "book_screen_content": { type: T.PANEL, children: 'root_panel' }, + "book_screen_content/root_panel": { type: T.PANEL, children: 'book_and_buttons_panel' | 'cover_and_buttons_panel' | 'pick_panel' | 'export_progress' | 'gamepad_helper_a' | 'gamepad_helper_b' }, + "book_screen_content/root_panel/book_and_buttons_panel": { type: T.PANEL, children: string }, + "book_screen_content/root_panel/cover_and_buttons_panel": { type: T.PANEL, children: string }, + "book_screen_content/root_panel/pick_panel": { type: T.IMAGE, children: string }, + "book_screen_content/root_panel/export_progress": { type: T.PANEL, children: string }, + "book_screen_content/root_panel/gamepad_helper_a": { type: T.STACK_PANEL, children: string }, + "book_screen_content/root_panel/gamepad_helper_b": { type: T.STACK_PANEL, children: string }, } 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": { type: T.IMAGE, children: string }, + "brewing_fuel_pipes": { type: T.IMAGE, children: string }, + "bottle_empty_image": { type: T.IMAGE, children: string }, + "fuel_empty_image": { type: T.IMAGE, children: string }, + "bubbles_empty_image": { type: T.IMAGE, children: string }, + "bubbles_full_image": { type: T.IMAGE, children: string }, + "brewing_arrow_empty_image": { type: T.IMAGE, children: string }, + "brewing_arrow_full_image": { type: T.IMAGE, children: string }, + "brewing_fuel_bar_empty_image": { type: T.IMAGE, children: string }, + "brewing_fuel_bar_full_image": { type: T.IMAGE, children: string }, + "brewing_label": { type: T.LABEL, children: string }, + "brewingstand_output_item": { type: T.INPUT_PANEL, children: string }, + "brewing_output_slots": { type: T.GRID, children: 'left_offset' | 'output_grid_item2' | 'right_offset' }, + "brewing_output_slots/left_offset": { type: T.PANEL, children: 'output_grid_item1' }, + "brewing_output_slots/left_offset/output_grid_item1": { type: T.INPUT_PANEL, children: string }, + "brewing_output_slots/output_grid_item2": { type: T.INPUT_PANEL, children: string }, + "brewing_output_slots/right_offset": { type: T.PANEL, children: 'output_grid_item3' }, + "brewing_output_slots/right_offset/output_grid_item3": { type: T.INPUT_PANEL, children: string }, + "brewing_input_slot": { type: T.PANEL, children: 'input_grid_item' }, + "brewing_input_slot/input_grid_item": { type: T.INPUT_PANEL, children: string }, + "brewing_fuel_slot": { type: T.PANEL, children: 'fuel_grid_item' }, + "brewing_fuel_slot/fuel_grid_item": { type: T.INPUT_PANEL, children: string }, + "brewing_panel_top_half": { type: T.PANEL, children: 'brewing_label' | 'brewing_stand_pictogram' }, + "brewing_panel_top_half/brewing_label": { type: T.LABEL, children: string }, + "brewing_panel_top_half/brewing_stand_pictogram": { type: T.PANEL, children: string }, + "brewing_stand_pictogram": { type: T.PANEL, children: 'brewing_input_slot' | 'brewing_output_slots' | 'brewing_fuel_slot' | 'brewing_arrow_empty_image' | 'brewing_arrow_full_image' | 'brewing_fuel_bar_empty_image' | 'brewing_fuel_bar_full_image' | 'bubbles_empty_image' | 'bubbles_full_image' | 'brewing_fuel_pipes' | 'brewing_pipes' }, + "brewing_stand_pictogram/brewing_input_slot": { type: T.PANEL, children: string }, + "brewing_stand_pictogram/brewing_output_slots": { type: T.GRID, children: string }, + "brewing_stand_pictogram/brewing_fuel_slot": { type: T.PANEL, children: string }, + "brewing_stand_pictogram/brewing_arrow_empty_image": { type: T.IMAGE, children: string }, + "brewing_stand_pictogram/brewing_arrow_full_image": { type: T.IMAGE, children: string }, + "brewing_stand_pictogram/brewing_fuel_bar_empty_image": { type: T.IMAGE, children: string }, + "brewing_stand_pictogram/brewing_fuel_bar_full_image": { type: T.IMAGE, children: string }, + "brewing_stand_pictogram/bubbles_empty_image": { type: T.IMAGE, children: string }, + "brewing_stand_pictogram/bubbles_full_image": { type: T.IMAGE, children: string }, + "brewing_stand_pictogram/brewing_fuel_pipes": { type: T.IMAGE, children: string }, + "brewing_stand_pictogram/brewing_pipes": { type: T.IMAGE, children: string }, + "brewing_stand_panel": { type: T.PANEL, children: 'container_gamepad_helpers' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'root_panel' | 'flying_item_renderer' }, + "brewing_stand_panel/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "brewing_stand_panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "brewing_stand_panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "brewing_stand_panel/root_panel": { type: T.INPUT_PANEL, children: 'common_panel' | 'furnace_screen_inventory' | 'inventory_selected_icon_button' | 'gamepad_cursor' }, + "brewing_stand_panel/root_panel/common_panel": { type: T.PANEL, children: string }, + "brewing_stand_panel/root_panel/furnace_screen_inventory": { type: T.PANEL, children: 'brewing_panel_top_half' | 'inventory_panel_bottom_half_with_label' | 'hotbar_grid' | 'inventory_take_progress_icon_button' }, + "brewing_stand_panel/root_panel/furnace_screen_inventory/brewing_panel_top_half": { type: T.PANEL, children: string }, + "brewing_stand_panel/root_panel/furnace_screen_inventory/inventory_panel_bottom_half_with_label": { type: T.PANEL, children: string }, + "brewing_stand_panel/root_panel/furnace_screen_inventory/hotbar_grid": { type: T.GRID, children: string }, + "brewing_stand_panel/root_panel/furnace_screen_inventory/inventory_take_progress_icon_button": { type: T.BUTTON, children: string }, + "brewing_stand_panel/root_panel/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "brewing_stand_panel/root_panel/gamepad_cursor": { type: T.BUTTON, children: string }, + "brewing_stand_panel/flying_item_renderer": { type: T.CUSTOM, children: string }, + "brewing_stand_screen": { type: T.SCREEN, children: string }, } 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": { type: T.LABEL, children: string }, + "brewing_fuel_pipes": { type: T.IMAGE, children: string }, + "bubbles_empty_image": { type: T.IMAGE, children: string }, + "bubbles_full_image": { type: T.IMAGE, children: string }, + "bottle_empty_image": { type: T.IMAGE, children: string }, + "background_image": { type: T.IMAGE, children: string }, + "output_slot": { type: T.INPUT_PANEL, children: string }, + "brewing_input_slot": { type: T.PANEL, children: 'input_slot' }, + "brewing_input_slot/input_slot": { type: T.INPUT_PANEL, children: string }, + "brewing_fuel_slot": { type: T.PANEL, children: 'fuel_slot' }, + "brewing_fuel_slot/fuel_slot": { type: T.INPUT_PANEL, children: string }, + "brewing_out_slots": { type: T.GRID, children: 'left_offset' | 'middle' | 'right_offset' }, + "brewing_out_slots/left_offset": { type: T.PANEL, children: 'output_slot1' }, + "brewing_out_slots/left_offset/output_slot1": { type: T.INPUT_PANEL, children: string }, + "brewing_out_slots/middle": { type: T.PANEL, children: 'output_slot2' }, + "brewing_out_slots/middle/output_slot2": { type: T.INPUT_PANEL, children: string }, + "brewing_out_slots/right_offset": { type: T.PANEL, children: 'output_slot3' }, + "brewing_out_slots/right_offset/output_slot3": { type: T.INPUT_PANEL, children: string }, + "slots_panel": { type: T.PANEL, children: 'brewing_input_slot' | 'brewing_fuel_slot' | 'brewing_out_slots' | 'brewing_arrow_panel' | 'brewing_bubbles_panel' | 'brewing_fuel_bar_panel' | 'brewing_fuel_pipes' | 'brewing_pipes' }, + "slots_panel/brewing_input_slot": { type: T.PANEL, children: string }, + "slots_panel/brewing_fuel_slot": { type: T.PANEL, children: string }, + "slots_panel/brewing_out_slots": { type: T.GRID, children: string }, + "slots_panel/brewing_arrow_panel": { type: T.PANEL, children: 'brewing_arrow_empty_image' | 'brewing_arrow_full_image' }, + "slots_panel/brewing_arrow_panel/brewing_arrow_empty_image": { type: T.IMAGE, children: string }, + "slots_panel/brewing_arrow_panel/brewing_arrow_full_image": { type: T.IMAGE, children: string }, + "slots_panel/brewing_bubbles_panel": { type: T.PANEL, children: 'bubbles_empty_image' | 'bubbles_full_image' }, + "slots_panel/brewing_bubbles_panel/bubbles_empty_image": { type: T.IMAGE, children: string }, + "slots_panel/brewing_bubbles_panel/bubbles_full_image": { type: T.IMAGE, children: string }, + "slots_panel/brewing_fuel_bar_panel": { type: T.PANEL, children: 'brewing_fuel_bar_empty_image' | 'brewing_fuel_bar_full_image' }, + "slots_panel/brewing_fuel_bar_panel/brewing_fuel_bar_empty_image": { type: T.IMAGE, children: string }, + "slots_panel/brewing_fuel_bar_panel/brewing_fuel_bar_full_image": { type: T.IMAGE, children: string }, + "slots_panel/brewing_fuel_pipes": { type: T.IMAGE, children: string }, + "slots_panel/brewing_pipes": { type: T.IMAGE, children: string }, + "inventory_grid": { type: T.GRID, children: string }, + "inventory_content": { type: T.PANEL, children: 'scrolling_panel' }, + "inventory_content/scrolling_panel": { type: T.PANEL, children: string }, + "brewing_stand_contents_panel": { type: T.PANEL, children: 'slots_panel' }, + "brewing_stand_contents_panel/slots_panel": { type: T.PANEL, children: string }, + "header": { type: T.PANEL, children: 'header_background' | 'legacy_pocket_close_button' | 'panel' }, + "header/header_background": { type: T.IMAGE, children: string }, + "header/legacy_pocket_close_button": { type: T.BUTTON, children: string }, + "header/panel": { type: T.PANEL, children: 'title_label' }, + "header/panel/title_label": { type: T.LABEL, children: string }, + "inventory_and_brewing_panel": { type: T.PANEL, children: 'inventory_half_screen' | 'brewing_half_screen' }, + "inventory_and_brewing_panel/inventory_half_screen": { type: T.PANEL, children: 'inventory_content' }, + "inventory_and_brewing_panel/inventory_half_screen/inventory_content": { type: T.PANEL, children: string }, + "inventory_and_brewing_panel/brewing_half_screen": { type: T.PANEL, children: 'brewing_stand_contents_panel' }, + "inventory_and_brewing_panel/brewing_half_screen/brewing_stand_contents_panel": { type: T.PANEL, children: string }, + "header_and_content_stack_panel": { type: T.STACK_PANEL, children: 'header' | 'inventory_and_brewing_panel' }, + "header_and_content_stack_panel/header": { type: T.PANEL, children: string }, + "header_and_content_stack_panel/inventory_and_brewing_panel": { type: T.PANEL, children: string }, + "brewing_stand_panel": { type: T.PANEL, children: 'bg' | 'root_panel' | 'header_and_content_stack_panel' | 'container_gamepad_helpers' | 'inventory_selected_icon_button' | 'hold_icon' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'flying_item_renderer' }, + "brewing_stand_panel/bg": { type: T.IMAGE, children: string }, + "brewing_stand_panel/root_panel": { type: T.INPUT_PANEL, children: string }, + "brewing_stand_panel/header_and_content_stack_panel": { type: T.STACK_PANEL, children: string }, + "brewing_stand_panel/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "brewing_stand_panel/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "brewing_stand_panel/hold_icon": { type: T.BUTTON, children: string }, + "brewing_stand_panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "brewing_stand_panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "brewing_stand_panel/flying_item_renderer": { type: T.CUSTOM, children: string }, } 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": { type: T.PANEL, children: string }, + "y_padding": { type: T.PANEL, children: string }, + "bundle_grid_item": { type: T.PANEL, children: 'banner_image' | 'content' | 'game_pad_focus_border' }, + "bundle_grid_item/banner_image": { type: T.IMAGE, children: string }, + "bundle_grid_item/content": { type: T.STACK_PANEL, children: string }, + "bundle_grid_item/game_pad_focus_border": { type: T.BUTTON, children: string }, + "is_focused": { type: T.PANEL, children: 'image_border' | 'banner_border' }, + "is_focused/image_border": { type: T.IMAGE, children: string }, + "is_focused/banner_border": { type: T.IMAGE, children: string }, + "focus_border": { type: T.IMAGE, children: string }, + "focus_border_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "focus_border_button/default": { type: T.PANEL, children: string }, + "focus_border_button/hover": { type: T.PANEL, children: string }, + "focus_border_button/pressed": { type: T.PANEL, children: string }, + "grid_item_content": { type: T.STACK_PANEL, children: 'image_border' | 'padding_0' | 'bundle_title_panel' }, + "grid_item_content/image_border": { type: T.IMAGE, children: 'bundle_thumbnail' }, + "grid_item_content/image_border/bundle_thumbnail": { type: T.IMAGE, children: string }, + "grid_item_content/padding_0": { type: T.PANEL, children: string }, + "grid_item_content/bundle_title_panel": { type: T.PANEL, children: 'bundle_title' }, + "grid_item_content/bundle_title_panel/bundle_title": { type: T.LABEL, children: string }, + "bundle_grid": { type: T.GRID, children: string }, + "side_contents": { type: T.STACK_PANEL, children: 'title_alignment_hack' | 'padding_y_0' | 'grid_input_panel' }, + "side_contents/title_alignment_hack": { type: T.PANEL, children: 'side_section_title' }, + "side_contents/title_alignment_hack/side_section_title": { type: T.LABEL, children: string }, + "side_contents/padding_y_0": { type: T.PANEL, children: string }, + "side_contents/grid_input_panel": { type: T.INPUT_PANEL, children: 'grid_scroll' }, + "side_contents/grid_input_panel/grid_scroll": { type: T.PANEL, children: string }, + "dialog_content": { type: T.STACK_PANEL, children: 'grid_stack' }, + "dialog_content/grid_stack": { type: T.STACK_PANEL, children: 'left_grid_scroll' | 'padding_x_divider' | 'right_grid_scroll' }, + "dialog_content/grid_stack/left_grid_scroll": { type: T.STACK_PANEL, children: string }, + "dialog_content/grid_stack/padding_x_divider": { type: T.PANEL, children: string }, + "dialog_content/grid_stack/right_grid_scroll": { type: T.STACK_PANEL, children: string }, + "purchase_button_panel": { type: T.BUTTON, children: string }, + "screen_dialog": { type: T.PANEL, children: string }, + "bundle_purchase_warning_screen_content": { type: T.PANEL, children: 'dialog' }, + "bundle_purchase_warning_screen_content/dialog": { type: T.PANEL, children: string }, + "background": { type: T.IMAGE, children: string }, + "bundle_purchase_warning_screen": { type: T.SCREEN, children: string }, } 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": { type: T.LABEL, children: string }, + "arrow_icon": { type: T.IMAGE, children: string }, + "plus_sign_icon": { type: T.IMAGE, children: string }, + "text_edit_control": { type: T.EDIT_BOX, children: string }, + "cartography_output_slot_button": { type: T.BUTTON, children: string }, + "cartography_item_slot": { type: T.PANEL, children: 'container_item' }, + "cartography_item_slot/container_item": { type: T.INPUT_PANEL, children: string }, + "map_image": { type: T.IMAGE, children: string }, + "map_image_panel": { type: T.PANEL, children: 'none_map' | 'copy_map' | 'rename_map' | 'map' | 'locator_map' | 'zoom_map' | 'lock_map' }, + "map_image_panel/none_map": { type: T.IMAGE, children: string }, + "map_image_panel/copy_map": { type: T.IMAGE, children: string }, + "map_image_panel/rename_map": { type: T.IMAGE, children: string }, + "map_image_panel/map": { type: T.IMAGE, children: string }, + "map_image_panel/locator_map": { type: T.IMAGE, children: string }, + "map_image_panel/zoom_map": { type: T.IMAGE, children: string }, + "map_image_panel/lock_map": { type: T.IMAGE, children: string }, + "text_box_panel": { type: T.STACK_PANEL, children: 'map_name_label' | 'text_edit_control' }, + "text_box_panel/map_name_label": { type: T.LABEL, children: string }, + "text_box_panel/text_edit_control": { type: T.EDIT_BOX, children: string }, + "input_slots": { type: T.STACK_PANEL, children: 'input_item_slot' | 'plus_centerer' | 'additional_item_slot' }, + "input_slots/input_item_slot": { type: T.PANEL, children: string }, + "input_slots/plus_centerer": { type: T.PANEL, children: 'plus_sign_icon' }, + "input_slots/plus_centerer/plus_sign_icon": { type: T.IMAGE, children: string }, + "input_slots/additional_item_slot": { type: T.PANEL, children: string }, + "output_description_label": { type: T.LABEL, children: string }, + "main_panel": { type: T.PANEL, children: 'input_slots' | 'arrow_icon' | 'map_image_panel' | 'arrow_icon2' | 'result_item_slot' }, + "main_panel/input_slots": { type: T.STACK_PANEL, children: string }, + "main_panel/arrow_icon": { type: T.IMAGE, children: string }, + "main_panel/map_image_panel": { type: T.PANEL, children: string }, + "main_panel/arrow_icon2": { type: T.IMAGE, children: string }, + "main_panel/result_item_slot": { type: T.PANEL, children: string }, + "top_half_panel": { type: T.STACK_PANEL, children: 'padding1' | 'title_panel' | 'padding2' | 'text_box_panel' | 'padding3' | 'padding4' | 'main_panel_wrap' | 'output_description_label' | 'padding5' }, + "top_half_panel/padding1": { type: T.PANEL, children: string }, + "top_half_panel/title_panel": { type: T.PANEL, children: 'title_label' }, + "top_half_panel/title_panel/title_label": { type: T.LABEL, children: string }, + "top_half_panel/padding2": { type: T.PANEL, children: string }, + "top_half_panel/text_box_panel": { type: T.STACK_PANEL, children: string }, + "top_half_panel/padding3": { type: T.PANEL, children: string }, + "top_half_panel/padding4": { type: T.PANEL, children: string }, + "top_half_panel/main_panel_wrap": { type: T.PANEL, children: 'main_panel' }, + "top_half_panel/main_panel_wrap/main_panel": { type: T.PANEL, children: string }, + "top_half_panel/output_description_label": { type: T.LABEL, children: string }, + "top_half_panel/padding5": { type: T.PANEL, children: string }, + "cartography_panel": { type: T.PANEL, children: 'container_gamepad_helpers' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'root_panel' | 'flying_item_renderer' }, + "cartography_panel/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "cartography_panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "cartography_panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "cartography_panel/root_panel": { type: T.INPUT_PANEL, children: 'common_panel' | 'cartography_screen_inventory' | 'inventory_selected_icon_button' | 'gamepad_cursor' | 'tab_close_and_help_button' }, + "cartography_panel/root_panel/common_panel": { type: T.PANEL, children: string }, + "cartography_panel/root_panel/cartography_screen_inventory": { type: T.PANEL, children: 'top_half_panel' | 'inventory_panel_bottom_half_with_label' | 'hotbar_grid' | 'inventory_take_progress_icon_button' }, + "cartography_panel/root_panel/cartography_screen_inventory/top_half_panel": { type: T.STACK_PANEL, children: string }, + "cartography_panel/root_panel/cartography_screen_inventory/inventory_panel_bottom_half_with_label": { type: T.PANEL, children: string }, + "cartography_panel/root_panel/cartography_screen_inventory/hotbar_grid": { type: T.GRID, children: string }, + "cartography_panel/root_panel/cartography_screen_inventory/inventory_take_progress_icon_button": { type: T.BUTTON, children: string }, + "cartography_panel/root_panel/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "cartography_panel/root_panel/gamepad_cursor": { type: T.BUTTON, children: string }, + "cartography_panel/root_panel/tab_close_and_help_button": { type: T.IMAGE, children: string }, + "cartography_panel/flying_item_renderer": { type: T.CUSTOM, children: string }, + "cartography_screen": { type: T.SCREEN, children: string }, } 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": { type: T.IMAGE, children: string }, + "chest_item_renderer": { type: T.CUSTOM, children: string }, + "cartography_item_renderer": { type: T.CUSTOM, children: string }, + "input_item_slot": { type: T.INPUT_PANEL, children: string }, + "additional_item_slot": { type: T.INPUT_PANEL, children: string }, + "result_item_slot": { type: T.INPUT_PANEL, children: string }, + "right_panel": { type: T.STACK_PANEL, children: 'content' | 'navigation_tabs_holder' }, + "right_panel/content": { type: T.INPUT_PANEL, children: 'bg' | 'cartography_content_stack_panel' }, + "right_panel/content/bg": { type: T.PANEL, children: string }, + "right_panel/content/cartography_content_stack_panel": { type: T.STACK_PANEL, children: string }, + "right_panel/navigation_tabs_holder": { type: T.PANEL, children: 'right_navigation_tabs' }, + "right_panel/navigation_tabs_holder/right_navigation_tabs": { type: T.STACK_PANEL, children: string }, + "right_tab_cartography": { type: T.PANEL, children: string }, + "right_navigation_tabs": { type: T.STACK_PANEL, children: 'pocket_tab_close_and_help_button' | 'fill' | 'right_tab_cartography' }, + "right_navigation_tabs/pocket_tab_close_and_help_button": { type: T.IMAGE, children: string }, + "right_navigation_tabs/fill": { type: T.PANEL, children: string }, + "right_navigation_tabs/right_tab_cartography": { type: T.PANEL, children: string }, + "input_slots_stack_panel": { type: T.STACK_PANEL, children: 'input_item_slot' }, + "input_slots_stack_panel/input_item_slot": { type: T.INPUT_PANEL, children: string }, + "input_slots": { type: T.STACK_PANEL, children: 'input_item_slot' | 'plus_centerer' | 'additional_item_slot' }, + "input_slots/input_item_slot": { type: T.INPUT_PANEL, children: string }, + "input_slots/plus_centerer": { type: T.PANEL, children: 'plus_sign_icon' }, + "input_slots/plus_centerer/plus_sign_icon": { type: T.IMAGE, children: string }, + "input_slots/additional_item_slot": { type: T.INPUT_PANEL, children: string }, + "cartography_content_stack_panel": { type: T.STACK_PANEL, children: 'label_holder' | 'padding_1' | 'panel' | 'padding_2' | 'map_centerer' | 'description_centerer' | 'padding_3' | 'arrow_centerer' | 'padding_4' | 'result_centerer' | 'filling_panel' | 'text_box_panel' }, + "cartography_content_stack_panel/label_holder": { type: T.PANEL, children: 'cartography_label' }, + "cartography_content_stack_panel/label_holder/cartography_label": { type: T.LABEL, children: string }, + "cartography_content_stack_panel/padding_1": { type: T.PANEL, children: string }, + "cartography_content_stack_panel/panel": { type: T.PANEL, children: 'input_slots' }, + "cartography_content_stack_panel/panel/input_slots": { type: T.STACK_PANEL, children: string }, + "cartography_content_stack_panel/padding_2": { type: T.PANEL, children: string }, + "cartography_content_stack_panel/map_centerer": { type: T.PANEL, children: 'map_image_panel' }, + "cartography_content_stack_panel/map_centerer/map_image_panel": { type: T.PANEL, children: string }, + "cartography_content_stack_panel/description_centerer": { type: T.PANEL, children: 'output_description_label' }, + "cartography_content_stack_panel/description_centerer/output_description_label": { type: T.LABEL, children: string }, + "cartography_content_stack_panel/padding_3": { type: T.PANEL, children: string }, + "cartography_content_stack_panel/arrow_centerer": { type: T.PANEL, children: 'vertical_arrow_icon' }, + "cartography_content_stack_panel/arrow_centerer/vertical_arrow_icon": { type: T.IMAGE, children: string }, + "cartography_content_stack_panel/padding_4": { type: T.PANEL, children: string }, + "cartography_content_stack_panel/result_centerer": { type: T.PANEL, children: 'result_item_slot' }, + "cartography_content_stack_panel/result_centerer/result_item_slot": { type: T.INPUT_PANEL, children: string }, + "cartography_content_stack_panel/filling_panel": { type: T.PANEL, children: string }, + "cartography_content_stack_panel/text_box_panel": { type: T.STACK_PANEL, children: string }, + "inventory_panel": { type: T.STACK_PANEL, children: 'inventory_title_label_centerer' | 'inventory_scroll_panel' }, + "inventory_panel/inventory_title_label_centerer": { type: T.PANEL, children: 'inventory_title_label' }, + "inventory_panel/inventory_title_label_centerer/inventory_title_label": { type: T.LABEL, children: string }, + "inventory_panel/inventory_scroll_panel": { type: T.PANEL, children: string }, + "inventory_scroll_panel": { type: T.PANEL, children: string }, + "pattern_button": { type: T.UNKNOWN, children: string }, + "pattern_scroll_panel": { type: T.UNKNOWN, children: string }, + "left_panel": { type: T.STACK_PANEL, children: 'gamepad_helpers_and_tabs_holder' | 'content' }, + "left_panel/gamepad_helpers_and_tabs_holder": { type: T.PANEL, children: 'tabs_left_gamepad_helpers' | 'navigation_tabs_holder' }, + "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": { type: T.PANEL, children: string }, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": { type: T.PANEL, children: 'left_navigation_tabs' }, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": { type: T.STACK_PANEL, children: string }, + "left_panel/content": { type: T.INPUT_PANEL, children: 'bg' | 'inventory_panel' }, + "left_panel/content/bg": { type: T.PANEL, children: string }, + "left_panel/content/inventory_panel": { type: T.STACK_PANEL, children: string }, + "left_tab_inventory": { type: T.PANEL, children: string }, + "left_navigation_tabs": { type: T.STACK_PANEL, children: 'padding' | 'left_tab_inventory' }, + "left_navigation_tabs/padding": { type: T.PANEL, children: string }, + "left_navigation_tabs/left_tab_inventory": { type: T.PANEL, children: string }, + "pocket_hotbar_and_content_panels": { type: T.STACK_PANEL, children: string }, + "cartography_panel": { type: T.PANEL, children: 'pocket_hotbar_and_content_panels' | 'container_gamepad_helpers' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'inventory_selected_icon_button' | 'inventory_take_progress_icon_button' | 'flying_item_renderer' }, + "cartography_panel/pocket_hotbar_and_content_panels": { type: T.STACK_PANEL, children: string }, + "cartography_panel/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "cartography_panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "cartography_panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "cartography_panel/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "cartography_panel/inventory_take_progress_icon_button": { type: T.BUTTON, children: string }, + "cartography_panel/flying_item_renderer": { type: T.CUSTOM, children: string }, } 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": { type: T.EDIT_BOX, children: string }, + "locked_toggle": { type: T.TOGGLE, children: string }, + "locked_label": { type: T.LABEL, children: string }, + "lock_control": { type: T.STACK_PANEL, children: 'toggle' | 'pad_wrap' }, + "lock_control/toggle": { type: T.TOGGLE, children: string }, + "lock_control/pad_wrap": { type: T.PANEL, children: 'label' }, + "lock_control/pad_wrap/label": { type: T.LABEL, children: string }, + "gamepad_helpers": { type: T.PANEL, children: 'gamepad_helper_a' }, + "gamepad_helpers/gamepad_helper_a": { type: T.STACK_PANEL, children: string }, + "chalkboard_screen": { type: T.SCREEN, children: string }, + "chalkboard_root": { type: T.PANEL, children: string }, + "chalkboard_content": { type: T.PANEL, children: 'gamepad_helpers' | 'edit_box' | 'locked_toggle' }, + "chalkboard_content/gamepad_helpers": { type: T.PANEL, children: string }, + "chalkboard_content/edit_box": { type: T.EDIT_BOX, children: string }, + "chalkboard_content/locked_toggle": { type: T.STACK_PANEL, children: string }, } 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": { type: T.IMAGE, children: string }, + "keyboard_image": { type: T.IMAGE, children: string }, + "copy_image": { type: T.IMAGE, children: string }, + "paste_image": { type: T.IMAGE, children: string }, + "gear_image": { type: T.IMAGE, children: string }, + "send_image": { type: T.IMAGE, children: string }, + "send_panel": { type: T.STACK_PANEL, children: 'send_image_panel' | 'gamepad_x_button' }, + "send_panel/send_image_panel": { type: T.PANEL, children: 'send_image' }, + "send_panel/send_image_panel/send_image": { type: T.IMAGE, children: string }, + "send_panel/gamepad_x_button": { type: T.STACK_PANEL, children: 'side_padding' | 'gamepad_x_button_image' }, + "send_panel/gamepad_x_button/side_padding": { type: T.PANEL, children: string }, + "send_panel/gamepad_x_button/gamepad_x_button_image": { type: T.PANEL, children: 'icon' }, + "send_panel/gamepad_x_button/gamepad_x_button_image/icon": { type: T.STACK_PANEL, children: string }, + "keyboard_image_panel": { type: T.PANEL, children: 'keyboard_image' | 'down_arrow_image' }, + "keyboard_image_panel/keyboard_image": { type: T.IMAGE, children: string }, + "keyboard_image_panel/down_arrow_image": { type: T.IMAGE, children: string }, + "small_button": { type: T.BUTTON, children: string }, + "keyboard_button": { type: T.BUTTON, children: string }, + "chat_settings_button": { type: T.BUTTON, children: string }, + "send_button": { type: T.BUTTON, children: string }, + "messages_text": { type: T.PANEL, children: 'text' }, + "messages_text/text": { type: T.LABEL, children: string }, + "message_tts_wrapper": { type: T.PANEL, children: string }, + "messages_stack_panel": { type: T.STACK_PANEL, children: string }, + "messages_scrolling_panel": { type: T.PANEL, children: string }, + "text_edit_box": { type: T.EDIT_BOX, children: string }, + "commands_background": { type: T.IMAGE, children: string }, + "click_autocomplete_is_focused": { type: T.IMAGE, children: string }, + "auto_complete_panel_contents_with_item": { type: T.PANEL, children: 'auto_complete_item_renderer' | 'text' | 'autocomplete_button' }, + "auto_complete_panel_contents_with_item/auto_complete_item_renderer": { type: T.CUSTOM, children: string }, + "auto_complete_panel_contents_with_item/text": { type: T.LABEL, children: string }, + "auto_complete_panel_contents_with_item/autocomplete_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "auto_complete_panel_contents_with_item/autocomplete_button/default": { type: T.PANEL, children: string }, + "auto_complete_panel_contents_with_item/autocomplete_button/hover": { type: T.IMAGE, children: string }, + "auto_complete_panel_contents_with_item/autocomplete_button/pressed": { type: T.IMAGE, children: string }, + "auto_complete_panel": { type: T.PANEL, children: 'panel' }, + "auto_complete_panel/panel": { type: T.PANEL, children: 'auto_complete_grid' }, + "auto_complete_panel/panel/auto_complete_grid": { type: T.GRID, children: string }, + "commands_panel": { type: T.PANEL, children: 'auto_complete_panel' }, + "commands_panel/auto_complete_panel": { type: T.PANEL, children: string }, + "chat_bottom_panel": { type: T.STACK_PANEL, children: 'keyboard_button' | 'host_main_button' | 'chat_settings' | 'text_box' | 'send_button' }, + "chat_bottom_panel/keyboard_button": { type: T.BUTTON, children: string }, + "chat_bottom_panel/host_main_button": { type: T.BUTTON, children: string }, + "chat_bottom_panel/chat_settings": { type: T.BUTTON, children: string }, + "chat_bottom_panel/text_box": { type: T.EDIT_BOX, children: string }, + "chat_bottom_panel/send_button": { type: T.BUTTON, children: string }, + "title_text": { type: T.PANEL, children: 'title_panel' }, + "title_text/title_panel": { type: T.LABEL, children: string }, + "back_content_panel": { type: T.PANEL, children: 'back_button' | 'gamepad_back_helper' }, + "back_content_panel/back_button": { type: T.BUTTON, children: string }, + "back_content_panel/gamepad_back_helper": { type: T.INPUT_PANEL, children: 'gamepad_helper_button' }, + "back_content_panel/gamepad_back_helper/gamepad_helper_button": { type: T.STACK_PANEL, children: string }, + "coordinate_dropdown_content": { type: T.STACK_PANEL, children: 'top_padding' | 'my_position' | 'block_position' | 'bottom_padding' }, + "coordinate_dropdown_content/top_padding": { type: T.PANEL, children: string }, + "coordinate_dropdown_content/my_position": { type: T.PANEL, children: string }, + "coordinate_dropdown_content/block_position": { type: T.PANEL, children: string }, + "coordinate_dropdown_content/bottom_padding": { type: T.PANEL, children: string }, + "coordinate_dropdown": { type: T.PANEL, children: string }, + "popup_toast": { type: T.INPUT_PANEL, children: string }, + "copy_coordinate_button": { type: T.BUTTON, children: string }, + "paste_button": { type: T.BUTTON, children: string }, + "chat_header": { type: T.IMAGE, children: 'title_panel' }, + "chat_header/title_panel": { type: T.PANEL, children: 'back_button_content_panel' | 'title' | 'popup_dialog_factory' | 'chat_header_content_area' }, + "chat_header/title_panel/back_button_content_panel": { type: T.PANEL, children: string }, + "chat_header/title_panel/title": { type: T.PANEL, children: string }, + "chat_header/title_panel/popup_dialog_factory": { type: T.FACTORY, children: string }, + "chat_header/title_panel/chat_header_content_area": { type: T.STACK_PANEL, children: 'coordinate_dropdown' | 'coordinates_panel' | 'copy_coordinate_button' | 'icon' | 'paste_button' }, + "chat_header/title_panel/chat_header_content_area/coordinate_dropdown": { type: T.PANEL, children: string }, + "chat_header/title_panel/chat_header_content_area/coordinates_panel": { type: T.PANEL, children: 'coordinates_background_image' }, + "chat_header/title_panel/chat_header_content_area/coordinates_panel/coordinates_background_image": { type: T.IMAGE, children: 'coordinates_text' }, + "chat_header/title_panel/chat_header_content_area/coordinates_panel/coordinates_background_image/coordinates_text": { type: T.LABEL, children: string }, + "chat_header/title_panel/chat_header_content_area/copy_coordinate_button": { type: T.BUTTON, children: string }, + "chat_header/title_panel/chat_header_content_area/icon": { type: T.STACK_PANEL, children: string }, + "chat_header/title_panel/chat_header_content_area/paste_button": { type: T.BUTTON, children: string }, + "chat_screen": { type: T.SCREEN, children: string }, + "chat_screen_content": { type: T.PANEL, children: 'messages_panel' | 'chat_bottom_panel' | 'chat_top_panel' | 'autocomplete_commands_panel' | 'host_main_panel' | 'popup_factory' }, + "chat_screen_content/messages_panel": { type: T.PANEL, children: string }, + "chat_screen_content/chat_bottom_panel": { type: T.STACK_PANEL, children: string }, + "chat_screen_content/chat_top_panel": { type: T.IMAGE, children: string }, + "chat_screen_content/autocomplete_commands_panel": { type: T.PANEL, children: string }, + "chat_screen_content/host_main_panel": { type: T.PANEL, children: string }, + "chat_screen_content/popup_factory": { type: T.FACTORY, children: string }, + "chat_background": { type: T.IMAGE, children: string }, } 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": { type: T.PANEL, children: string }, + "mute_emote_chat_toggle": { type: T.PANEL, children: string }, + "chat_tts_toggle": { type: T.PANEL, children: string }, + "reset_button": { type: T.BUTTON, children: string }, + "typeface_dropdown_content": { type: T.STACK_PANEL, children: 'top_padding' | 'mojangles' | 'noto_sans' | 'bottom_padding' }, + "typeface_dropdown_content/top_padding": { type: T.PANEL, children: string }, + "typeface_dropdown_content/mojangles": { type: T.PANEL, children: string }, + "typeface_dropdown_content/noto_sans": { type: T.PANEL, children: string }, + "typeface_dropdown_content/bottom_padding": { type: T.PANEL, children: string }, + "typeface_dropdown": { type: T.PANEL, children: string }, + "chat_color_dropdown_content": { type: T.STACK_PANEL, children: 'top_padding' | '0' | '1' | '2' | '3' | '4' | '5' | '6' | 'bottom_padding' }, + "chat_color_dropdown_content/top_padding": { type: T.PANEL, children: string }, + "chat_color_dropdown_content/0": { type: T.PANEL, children: string }, + "chat_color_dropdown_content/1": { type: T.PANEL, children: string }, + "chat_color_dropdown_content/2": { type: T.PANEL, children: string }, + "chat_color_dropdown_content/3": { type: T.PANEL, children: string }, + "chat_color_dropdown_content/4": { type: T.PANEL, children: string }, + "chat_color_dropdown_content/5": { type: T.PANEL, children: string }, + "chat_color_dropdown_content/6": { type: T.PANEL, children: string }, + "chat_color_dropdown_content/bottom_padding": { type: T.PANEL, children: string }, + "colors_dropdown_base": { type: T.PANEL, children: string }, + "chat_color_dropdown": { type: T.PANEL, children: string }, + "mentions_color_dropdown": { type: T.PANEL, children: string }, + "font_size_slider": { type: T.PANEL, children: string }, + "line_spacing_slider": { type: T.PANEL, children: string }, + "colored_icon_panel": { type: T.PANEL, children: 'icon' | 'icon_overlay' }, + "colored_icon_panel/icon": { type: T.IMAGE, children: string }, + "colored_icon_panel/icon_overlay": { type: T.IMAGE, children: string }, + "paintbrush": { type: T.PANEL, children: string }, + "line_break": { type: T.PANEL, children: 'line_break_image' }, + "line_break/line_break_image": { type: T.IMAGE, children: string }, + "chat_settings_scrolling_content": { type: T.PANEL, children: 'chat_settings_content_area' }, + "chat_settings_scrolling_content/chat_settings_content_area": { type: T.STACK_PANEL, children: 'mute_all_toggle' | 'mute_emote_chat_toggle' | 'chat_tts_toggle' | 'toggles_to_font_shape' | 'typeface_dropdown' | 'font_size' | 'line_spacing' | 'font_shape_to_font_colors' | 'chat_color' | 'mentions_color' | 'reset_button' }, + "chat_settings_scrolling_content/chat_settings_content_area/mute_all_toggle": { type: T.PANEL, children: string }, + "chat_settings_scrolling_content/chat_settings_content_area/mute_emote_chat_toggle": { type: T.PANEL, children: string }, + "chat_settings_scrolling_content/chat_settings_content_area/chat_tts_toggle": { type: T.PANEL, children: string }, + "chat_settings_scrolling_content/chat_settings_content_area/toggles_to_font_shape": { type: T.PANEL, children: string }, + "chat_settings_scrolling_content/chat_settings_content_area/typeface_dropdown": { type: T.PANEL, children: string }, + "chat_settings_scrolling_content/chat_settings_content_area/font_size": { type: T.PANEL, children: string }, + "chat_settings_scrolling_content/chat_settings_content_area/line_spacing": { type: T.PANEL, children: string }, + "chat_settings_scrolling_content/chat_settings_content_area/font_shape_to_font_colors": { type: T.PANEL, children: string }, + "chat_settings_scrolling_content/chat_settings_content_area/chat_color": { type: T.PANEL, children: string }, + "chat_settings_scrolling_content/chat_settings_content_area/mentions_color": { type: T.PANEL, children: string }, + "chat_settings_scrolling_content/chat_settings_content_area/reset_button": { type: T.BUTTON, children: string }, + "chat_setting_scrolling_panel": { type: T.PANEL, children: string }, + "chat_settings_popup": { type: T.INPUT_PANEL, children: string }, + "popup_factory": { type: T.FACTORY, children: string }, } 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": { type: T.LABEL, children: string }, + "chest_grid_item": { type: T.INPUT_PANEL, children: string }, + "small_chest_grid": { type: T.GRID, children: string }, + "large_chest_grid": { type: T.GRID, children: string }, + "small_chest_panel_top_half": { type: T.PANEL, children: 'chest_label' | 'small_chest_grid' }, + "small_chest_panel_top_half/chest_label": { type: T.LABEL, children: string }, + "small_chest_panel_top_half/small_chest_grid": { type: T.GRID, children: string }, + "large_chest_panel_top_half": { type: T.PANEL, children: 'chest_label' | 'large_chest_grid' }, + "large_chest_panel_top_half/chest_label": { type: T.LABEL, children: string }, + "large_chest_panel_top_half/large_chest_grid": { type: T.GRID, children: string }, + "small_chest_panel": { type: T.PANEL, children: 'container_gamepad_helpers' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'root_panel' }, + "small_chest_panel/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "small_chest_panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "small_chest_panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "small_chest_panel/root_panel": { type: T.INPUT_PANEL, children: 'common_panel' | 'chest_panel' | 'inventory_selected_icon_button' | 'gamepad_cursor' }, + "small_chest_panel/root_panel/common_panel": { type: T.PANEL, children: string }, + "small_chest_panel/root_panel/chest_panel": { type: T.PANEL, children: 'small_chest_panel_top_half' | 'inventory_panel_bottom_half_with_label' | 'hotbar_grid' | 'inventory_take_progress_icon_button' | 'flying_item_renderer' }, + "small_chest_panel/root_panel/chest_panel/small_chest_panel_top_half": { type: T.PANEL, children: string }, + "small_chest_panel/root_panel/chest_panel/inventory_panel_bottom_half_with_label": { type: T.PANEL, children: string }, + "small_chest_panel/root_panel/chest_panel/hotbar_grid": { type: T.GRID, children: string }, + "small_chest_panel/root_panel/chest_panel/inventory_take_progress_icon_button": { type: T.BUTTON, children: string }, + "small_chest_panel/root_panel/chest_panel/flying_item_renderer": { type: T.CUSTOM, children: string }, + "small_chest_panel/root_panel/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "small_chest_panel/root_panel/gamepad_cursor": { type: T.BUTTON, children: string }, + "selected_item_details": { type: T.PANEL, children: string }, + "large_chest_panel": { type: T.PANEL, children: 'container_gamepad_helpers' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'root_panel' }, + "large_chest_panel/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "large_chest_panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "large_chest_panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "large_chest_panel/root_panel": { type: T.INPUT_PANEL, children: 'common_panel' | 'chest_panel' | 'inventory_selected_icon_button' | 'gamepad_cursor' }, + "large_chest_panel/root_panel/common_panel": { type: T.PANEL, children: string }, + "large_chest_panel/root_panel/chest_panel": { type: T.PANEL, children: 'large_chest_panel_top_half' | 'inventory_panel_bottom_half_with_label' | 'hotbar_grid' | 'inventory_take_progress_icon_button' | 'flying_item_renderer' }, + "large_chest_panel/root_panel/chest_panel/large_chest_panel_top_half": { type: T.PANEL, children: string }, + "large_chest_panel/root_panel/chest_panel/inventory_panel_bottom_half_with_label": { type: T.PANEL, children: string }, + "large_chest_panel/root_panel/chest_panel/hotbar_grid": { type: T.GRID, children: string }, + "large_chest_panel/root_panel/chest_panel/inventory_take_progress_icon_button": { type: T.BUTTON, children: string }, + "large_chest_panel/root_panel/chest_panel/flying_item_renderer": { type: T.CUSTOM, children: string }, + "large_chest_panel/root_panel/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "large_chest_panel/root_panel/gamepad_cursor": { type: T.BUTTON, children: string }, + "ender_chest_panel": { type: T.PANEL, children: string }, + "shulker_box_panel": { type: T.PANEL, children: string }, + "barrel_panel": { type: T.PANEL, children: string }, + "small_chest_screen": { type: T.SCREEN, children: string }, + "large_chest_screen": { type: T.SCREEN, children: string }, + "ender_chest_screen": { type: T.SCREEN, children: string }, + "shulker_box_screen": { type: T.SCREEN, children: string }, + "barrel_screen": { type: T.SCREEN, children: string }, } 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": { type: T.IMAGE, children: 'picture' }, + "realm_screenshot/picture": { type: T.IMAGE, children: string }, + "realms_scroll_content": { type: T.INPUT_PANEL, children: 'scrolling_panel' }, + "realms_scroll_content/scrolling_panel": { type: T.PANEL, children: string }, + "realms_scroll_panel": { type: T.PANEL, children: 'realms_stack_panel' }, + "realms_scroll_panel/realms_stack_panel": { type: T.STACK_PANEL, children: 'realms_world_item_grid' | 'padding_0' | 'add_realm_button' | 'ten_player_button' | 'padding_1' | 'two_player_button' }, + "realms_scroll_panel/realms_stack_panel/realms_world_item_grid": { type: T.GRID, children: string }, + "realms_scroll_panel/realms_stack_panel/padding_0": { type: T.PANEL, children: string }, + "realms_scroll_panel/realms_stack_panel/add_realm_button": { type: T.BUTTON, children: string }, + "realms_scroll_panel/realms_stack_panel/ten_player_button": { type: T.BUTTON, children: string }, + "realms_scroll_panel/realms_stack_panel/padding_1": { type: T.PANEL, children: string }, + "realms_scroll_panel/realms_stack_panel/two_player_button": { type: T.BUTTON, children: string }, + "realms_world_item_grid": { type: T.GRID, children: string }, + "realms_world_item": { type: T.STACK_PANEL, children: 'realms_world_item_button' }, + "realms_world_item/realms_world_item_button": { type: T.BUTTON, children: string }, + "realms_world_item_button": { type: T.BUTTON, children: string }, + "add_realm_button": { type: T.BUTTON, children: string }, + "ten_player_button": { type: T.BUTTON, children: string }, + "two_player_button": { type: T.BUTTON, children: string }, + "realms_world_content_panel": { type: T.STACK_PANEL, children: 'realm_screenshot' | 'padding' | 'realms_world_content_text_area_panel' | 'realms_world_content_status_area_panel' }, + "realms_world_content_panel/realm_screenshot": { type: T.IMAGE, children: string }, + "realms_world_content_panel/padding": { type: T.PANEL, children: string }, + "realms_world_content_panel/realms_world_content_text_area_panel": { type: T.PANEL, children: 'realms_world_text_panel' }, + "realms_world_content_panel/realms_world_content_text_area_panel/realms_world_text_panel": { type: T.PANEL, children: 'realms_world_header' }, + "realms_world_content_panel/realms_world_content_text_area_panel/realms_world_text_panel/realms_world_header": { type: T.LABEL, children: string }, + "realms_world_content_panel/realms_world_content_status_area_panel": { type: T.STACK_PANEL, children: 'world_player_count_text_panel' | 'realms_world_game_status_icon' }, + "realms_world_content_panel/realms_world_content_status_area_panel/world_player_count_text_panel": { type: T.PANEL, children: 'realms_world_player_count' }, + "realms_world_content_panel/realms_world_content_status_area_panel/world_player_count_text_panel/realms_world_player_count": { type: T.LABEL, children: string }, + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon": { type: T.PANEL, children: 'game_online_icon' | 'game_unavailable_icon' | 'game_offline_icon' }, + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_online_icon": { type: T.IMAGE, children: string }, + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_unavailable_icon": { type: T.IMAGE, children: string }, + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_offline_icon": { type: T.IMAGE, children: string }, + "main_panel": { type: T.PANEL, children: 'progress_loading_bars' | 'realms_scroll_content' }, + "main_panel/progress_loading_bars": { type: T.IMAGE, children: string }, + "main_panel/realms_scroll_content": { type: T.INPUT_PANEL, children: string }, + "slots_scroll_panel": { type: T.PANEL, children: 'slots_stack_panel' }, + "slots_scroll_panel/slots_stack_panel": { type: T.STACK_PANEL, children: 'padding_0' | 'choose_slot_text' | 'padding_1' | 'slots_grid' }, + "slots_scroll_panel/slots_stack_panel/padding_0": { type: T.PANEL, children: string }, + "slots_scroll_panel/slots_stack_panel/choose_slot_text": { type: T.LABEL, children: string }, + "slots_scroll_panel/slots_stack_panel/padding_1": { type: T.PANEL, children: string }, + "slots_scroll_panel/slots_stack_panel/slots_grid": { type: T.STACK_PANEL, children: string }, + "slots_grid": { type: T.STACK_PANEL, children: 'slot_1' | 'padding_0' | 'slot_2' | 'padding_1' | 'slot_3' }, + "slots_grid/slot_1": { type: T.BUTTON, children: string }, + "slots_grid/padding_0": { type: T.PANEL, children: string }, + "slots_grid/slot_2": { type: T.BUTTON, children: string }, + "slots_grid/padding_1": { type: T.PANEL, children: string }, + "slots_grid/slot_3": { type: T.BUTTON, children: string }, + "slot_content_panel": { type: T.STACK_PANEL, children: 'world_slot_top' | 'world_slot_bottom' }, + "slot_content_panel/world_slot_top": { type: T.PANEL, children: 'plus_image' | 'world_thumbnail' }, + "slot_content_panel/world_slot_top/plus_image": { type: T.IMAGE, children: string }, + "slot_content_panel/world_slot_top/world_thumbnail": { type: T.IMAGE, children: string }, + "slot_content_panel/world_slot_bottom": { type: T.PANEL, children: 'white_line_hover' | 'world_text_panel' }, + "slot_content_panel/world_slot_bottom/white_line_hover": { type: T.IMAGE, children: string }, + "slot_content_panel/world_slot_bottom/world_text_panel": { type: T.PANEL, children: 'background_grey' | 'background_green' | 'world_text' }, + "slot_content_panel/world_slot_bottom/world_text_panel/background_grey": { type: T.IMAGE, children: string }, + "slot_content_panel/world_slot_bottom/world_text_panel/background_green": { type: T.IMAGE, children: string }, + "slot_content_panel/world_slot_bottom/world_text_panel/world_text": { type: T.LABEL, children: string }, + "slot_panel": { type: T.PANEL, children: 'slots_scroll_content' }, + "slot_panel/slots_scroll_content": { type: T.INPUT_PANEL, children: 'scrolling_panel' }, + "slot_panel/slots_scroll_content/scrolling_panel": { type: T.PANEL, children: string }, + "choose_realm_screen": { type: T.SCREEN, children: string }, + "choose_realm_screen_content": { type: T.PANEL, children: 'realm_dialog' | 'slot_dialog' }, + "choose_realm_screen_content/realm_dialog": { type: T.PANEL, children: string }, + "choose_realm_screen_content/slot_dialog": { type: T.PANEL, children: string }, + "background": { type: T.IMAGE, children: string }, } 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": { type: T.IMAGE, children: string }, + "banner_fill": { type: T.IMAGE, children: string }, + "coins_stack_panel": { type: T.STACK_PANEL, children: 'coin' | 'coin_padding' | 'text_padding' }, + "coins_stack_panel/coin": { type: T.IMAGE, children: string }, + "coins_stack_panel/coin_padding": { type: T.PANEL, children: string }, + "coins_stack_panel/text_padding": { type: T.PANEL, children: 'coins_without_bonus' }, + "coins_stack_panel/text_padding/coins_without_bonus": { type: T.LABEL, children: string }, + "call_out_coins_stack_panel": { type: T.STACK_PANEL, children: 'coin' | 'coin_padding' | 'text_padding' }, + "call_out_coins_stack_panel/coin": { type: T.IMAGE, children: string }, + "call_out_coins_stack_panel/coin_padding": { type: T.PANEL, children: string }, + "call_out_coins_stack_panel/text_padding": { type: T.PANEL, children: 'coins_without_bonus' }, + "call_out_coins_stack_panel/text_padding/coins_without_bonus": { type: T.LABEL, children: string }, + "button_content": { type: T.PANEL, children: 'bonus_coins_stack' | 'call_out_background' }, + "button_content/bonus_coins_stack": { type: T.STACK_PANEL, children: string }, + "button_content/call_out_background": { type: T.IMAGE, children: 'bevel' }, + "button_content/call_out_background/bevel": { type: T.IMAGE, children: string }, + "call_out_button_content": { type: T.PANEL, children: 'call_out_header' | 'call_out_bonus_coins_stack' | 'call_out_background' }, + "call_out_button_content/call_out_header": { type: T.PANEL, children: string }, + "call_out_button_content/call_out_bonus_coins_stack": { type: T.STACK_PANEL, children: string }, + "call_out_button_content/call_out_background": { type: T.IMAGE, children: 'call_out_border' }, + "call_out_button_content/call_out_background/call_out_border": { type: T.IMAGE, children: string }, + "call_out_header": { type: T.PANEL, children: 'call_out_banner' | 'call_out_label' }, + "call_out_header/call_out_banner": { type: T.IMAGE, children: string }, + "call_out_header/call_out_label": { type: T.LABEL, children: string }, + "bonus_coins_stack": { type: T.STACK_PANEL, children: 'image_padding' | 'image_panel' | 'non_bonus_padding_0' | 'price_panel' | 'plus_label' | 'non_bonus_padding_1' | 'bonus_label_panel' | 'padding_0' | 'bonus_price_panel' | 'padding_1' | 'currency_panel' | 'padding_2' }, + "bonus_coins_stack/image_padding": { type: T.PANEL, children: string }, + "bonus_coins_stack/image_panel": { type: T.PANEL, children: 'image' }, + "bonus_coins_stack/image_panel/image": { type: T.IMAGE, children: string }, + "bonus_coins_stack/non_bonus_padding_0": { type: T.PANEL, children: string }, + "bonus_coins_stack/price_panel": { type: T.PANEL, children: 'coins_stack_panel' }, + "bonus_coins_stack/price_panel/coins_stack_panel": { type: T.STACK_PANEL, children: string }, + "bonus_coins_stack/plus_label": { type: T.PANEL, children: 'plus_label' }, + "bonus_coins_stack/plus_label/plus_label": { type: T.LABEL, children: string }, + "bonus_coins_stack/non_bonus_padding_1": { type: T.PANEL, children: string }, + "bonus_coins_stack/bonus_label_panel": { type: T.PANEL, children: 'bonus_label' }, + "bonus_coins_stack/bonus_label_panel/bonus_label": { type: T.LABEL, children: string }, + "bonus_coins_stack/padding_0": { type: T.PANEL, children: string }, + "bonus_coins_stack/bonus_price_panel": { type: T.PANEL, children: 'coins_stack_panel' }, + "bonus_coins_stack/bonus_price_panel/coins_stack_panel": { type: T.STACK_PANEL, children: string }, + "bonus_coins_stack/padding_1": { type: T.PANEL, children: string }, + "bonus_coins_stack/currency_panel": { type: T.PANEL, children: 'currency_price_panel' }, + "bonus_coins_stack/currency_panel/currency_price_panel": { type: T.IMAGE, children: 'price' | 'debug_price' }, + "bonus_coins_stack/currency_panel/currency_price_panel/price": { type: T.LABEL, children: string }, + "bonus_coins_stack/currency_panel/currency_price_panel/debug_price": { type: T.LABEL, children: string }, + "bonus_coins_stack/padding_2": { type: T.PANEL, children: string }, + "call_out_bonus_coins_stack": { type: T.STACK_PANEL, children: 'image_padding' | 'image_panel' | 'non_bonus_padding_0' | 'price_panel' | 'plus_label' | 'non_bonus_padding' | 'bonus_label_panel' | 'padding_0' | 'bonus_coin_panel' | 'padding_1' | 'currency_panel' | 'padding_2' }, + "call_out_bonus_coins_stack/image_padding": { type: T.PANEL, children: string }, + "call_out_bonus_coins_stack/image_panel": { type: T.PANEL, children: 'image' }, + "call_out_bonus_coins_stack/image_panel/image": { type: T.IMAGE, children: string }, + "call_out_bonus_coins_stack/non_bonus_padding_0": { type: T.PANEL, children: string }, + "call_out_bonus_coins_stack/price_panel": { type: T.PANEL, children: 'call_out_coins_stack_panel' }, + "call_out_bonus_coins_stack/price_panel/call_out_coins_stack_panel": { type: T.STACK_PANEL, children: string }, + "call_out_bonus_coins_stack/plus_label": { type: T.PANEL, children: 'plus_label' }, + "call_out_bonus_coins_stack/plus_label/plus_label": { type: T.LABEL, children: string }, + "call_out_bonus_coins_stack/non_bonus_padding": { type: T.PANEL, children: string }, + "call_out_bonus_coins_stack/bonus_label_panel": { type: T.PANEL, children: 'bonus_label' }, + "call_out_bonus_coins_stack/bonus_label_panel/bonus_label": { type: T.LABEL, children: string }, + "call_out_bonus_coins_stack/padding_0": { type: T.PANEL, children: string }, + "call_out_bonus_coins_stack/bonus_coin_panel": { type: T.STACK_PANEL, children: 'fill_panel_0' | 'coin_panel' | 'coin_padding' | 'bonus_coin_label_panel' | 'fill_panel_1' }, + "call_out_bonus_coins_stack/bonus_coin_panel/fill_panel_0": { type: T.PANEL, children: string }, + "call_out_bonus_coins_stack/bonus_coin_panel/coin_panel": { type: T.PANEL, children: 'coin' }, + "call_out_bonus_coins_stack/bonus_coin_panel/coin_panel/coin": { type: T.IMAGE, children: string }, + "call_out_bonus_coins_stack/bonus_coin_panel/coin_padding": { type: T.PANEL, children: string }, + "call_out_bonus_coins_stack/bonus_coin_panel/bonus_coin_label_panel": { type: T.PANEL, children: 'bonus_coins' }, + "call_out_bonus_coins_stack/bonus_coin_panel/bonus_coin_label_panel/bonus_coins": { type: T.LABEL, children: string }, + "call_out_bonus_coins_stack/bonus_coin_panel/fill_panel_1": { type: T.PANEL, children: string }, + "call_out_bonus_coins_stack/padding_1": { type: T.PANEL, children: string }, + "call_out_bonus_coins_stack/currency_panel": { type: T.PANEL, children: 'currency_price_panel' }, + "call_out_bonus_coins_stack/currency_panel/currency_price_panel": { type: T.IMAGE, children: 'price' | 'debug_price' }, + "call_out_bonus_coins_stack/currency_panel/currency_price_panel/price": { type: T.LABEL, children: string }, + "call_out_bonus_coins_stack/currency_panel/currency_price_panel/debug_price": { type: T.LABEL, children: string }, + "call_out_bonus_coins_stack/padding_2": { type: T.PANEL, children: string }, + "price": { type: T.LABEL, children: string }, + "offer_panel": { type: T.BUTTON, children: string }, + "call_out_offer_panel": { type: T.BUTTON, children: string }, + "offer_item": { type: T.PANEL, children: 'offer_panel' | 'call_out_offer_panel' }, + "offer_item/offer_panel": { type: T.BUTTON, children: string }, + "offer_item/call_out_offer_panel": { type: T.BUTTON, children: string }, + "offer_grid_item": { type: T.PANEL, children: 'offer_item' }, + "offer_grid_item/offer_item": { type: T.PANEL, children: string }, + "not_enough_coins": { type: T.LABEL, children: string }, + "faq_button": { type: T.BUTTON, children: string }, + "divider_panel": { type: T.PANEL, children: 'divider' }, + "divider_panel/divider": { type: T.IMAGE, children: string }, + "coin_purchase_panel": { type: T.STACK_PANEL, children: 'padding_0' | 'not_enough_coins_panel' | 'padding_1' | 'coin_purchase_grid' | 'divider_panel' | 'faq_button' }, + "coin_purchase_panel/padding_0": { type: T.PANEL, children: string }, + "coin_purchase_panel/not_enough_coins_panel": { type: T.PANEL, children: 'not_enough_coins' }, + "coin_purchase_panel/not_enough_coins_panel/not_enough_coins": { type: T.LABEL, children: string }, + "coin_purchase_panel/padding_1": { type: T.PANEL, children: string }, + "coin_purchase_panel/coin_purchase_grid": { type: T.GRID, children: string }, + "coin_purchase_panel/divider_panel": { type: T.PANEL, children: string }, + "coin_purchase_panel/faq_button": { type: T.BUTTON, children: string }, + "main_panel": { type: T.PANEL, children: 'coin_purchase_panel' | 'loading_background' | 'progress_loading_spinner' | 'no_offers_panel' }, + "main_panel/coin_purchase_panel": { type: T.STACK_PANEL, children: string }, + "main_panel/loading_background": { type: T.IMAGE, children: string }, + "main_panel/progress_loading_spinner": { type: T.IMAGE, children: string }, + "main_panel/no_offers_panel": { type: T.LABEL, children: string }, + "background": { type: T.IMAGE, children: string }, + "bundle_description": { type: T.PANEL, children: string }, + "bundle_description_left": { type: T.PANEL, children: string }, + "bundle_description_center": { type: T.PANEL, children: string }, + "bundle_description_right": { type: T.PANEL, children: string }, + "bundle_coins_stack": { type: T.STACK_PANEL, children: 'content_panel' | 'padding_0' | 'currency_panel' | 'padding_2' }, + "bundle_coins_stack/content_panel": { type: T.STACK_PANEL, children: 'text_stack' | 'thumbnail_panel' | 'padding_0' }, + "bundle_coins_stack/content_panel/text_stack": { type: T.STACK_PANEL, children: 'title_label' | 'padding_1' | 'description_section_factory' }, + "bundle_coins_stack/content_panel/text_stack/title_label": { type: T.LABEL, children: string }, + "bundle_coins_stack/content_panel/text_stack/padding_1": { type: T.PANEL, children: string }, + "bundle_coins_stack/content_panel/text_stack/description_section_factory": { type: T.STACK_PANEL, children: string }, + "bundle_coins_stack/content_panel/thumbnail_panel": { type: T.PANEL, children: 'thumbnail' }, + "bundle_coins_stack/content_panel/thumbnail_panel/thumbnail": { type: T.IMAGE, children: 'coin_image' }, + "bundle_coins_stack/content_panel/thumbnail_panel/thumbnail/coin_image": { type: T.IMAGE, children: string }, + "bundle_coins_stack/content_panel/padding_0": { type: T.PANEL, children: string }, + "bundle_coins_stack/padding_0": { type: T.PANEL, children: string }, + "bundle_coins_stack/currency_panel": { type: T.PANEL, children: 'currency_price_panel' }, + "bundle_coins_stack/currency_panel/currency_price_panel": { type: T.IMAGE, children: 'price' | 'debug_price' }, + "bundle_coins_stack/currency_panel/currency_price_panel/price": { type: T.LABEL, children: string }, + "bundle_coins_stack/currency_panel/currency_price_panel/debug_price": { type: T.LABEL, children: string }, + "bundle_coins_stack/padding_2": { type: T.PANEL, children: string }, + "bundle_button_content": { type: T.PANEL, children: 'bundle_coins_stack' | 'call_out_background' }, + "bundle_button_content/bundle_coins_stack": { type: T.STACK_PANEL, children: string }, + "bundle_button_content/call_out_background": { type: T.IMAGE, children: 'bevel' }, + "bundle_button_content/call_out_background/bevel": { type: T.IMAGE, children: string }, + "bundle_offer_panel": { type: T.BUTTON, children: string }, + "bundle_offer_item": { type: T.PANEL, children: 'offer_panel' }, + "bundle_offer_item/offer_panel": { type: T.BUTTON, children: string }, + "bundle_offer_grid_item": { type: T.PANEL, children: 'offer_item' }, + "bundle_offer_grid_item/offer_item": { type: T.PANEL, children: string }, + "bundle_stack_factory": { type: T.STACK_PANEL, children: string }, + "bundle_factory_panel": { type: T.PANEL, children: 'bundle_stack_factory' }, + "bundle_factory_panel/bundle_stack_factory": { type: T.STACK_PANEL, children: string }, + "bundle_panel": { type: T.PANEL, children: 'progress_loading_spinner' | 'loading_background' | 'bundle_stack_factory' }, + "bundle_panel/progress_loading_spinner": { type: T.IMAGE, children: string }, + "bundle_panel/loading_background": { type: T.IMAGE, children: string }, + "bundle_panel/bundle_stack_factory": { type: T.PANEL, children: string }, } 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": { type: T.IMAGE, children: string }, + "paste_icon": { type: T.IMAGE, children: string }, + "plus_button": { type: T.BUTTON, children: string }, + "paste_button": { type: T.BUTTON, children: string }, + "icon_dropdown_toggle_button_state_content": { type: T.STACK_PANEL, children: 'icon_panel' | 'spacer' | 'label_panel' | 'arrow_panel' }, + "icon_dropdown_toggle_button_state_content/icon_panel": { type: T.PANEL, children: 'dropdown_contents_icon' }, + "icon_dropdown_toggle_button_state_content/icon_panel/dropdown_contents_icon": { type: T.IMAGE, children: string }, + "icon_dropdown_toggle_button_state_content/spacer": { type: T.PANEL, children: string }, + "icon_dropdown_toggle_button_state_content/label_panel": { type: T.PANEL, children: 'label' }, + "icon_dropdown_toggle_button_state_content/label_panel/label": { type: T.LABEL, children: string }, + "icon_dropdown_toggle_button_state_content/arrow_panel": { type: T.PANEL, children: 'arrow' }, + "icon_dropdown_toggle_button_state_content/arrow_panel/arrow": { type: T.IMAGE, children: string }, + "command_block_multiline_text_edit_box": { type: T.EDIT_BOX, children: string }, + "command_block_text_edit_box": { type: T.EDIT_BOX, children: string }, + "command_block_helper_stack": { type: T.STACK_PANEL, children: 'offset' | 'text_' }, + "command_block_helper_stack/offset": { type: T.PANEL, children: string }, + "command_block_helper_stack/text_": { type: T.LABEL, children: string }, + "previous_command_block_info_stack": { type: T.STACK_PANEL, children: 'offset' | 'start_label' | 'offset1' | 'start_label_dynamic_text' }, + "previous_command_block_info_stack/offset": { type: T.PANEL, children: string }, + "previous_command_block_info_stack/start_label": { type: T.LABEL, children: string }, + "previous_command_block_info_stack/offset1": { type: T.PANEL, children: string }, + "previous_command_block_info_stack/start_label_dynamic_text": { type: T.LABEL, children: string }, + "cancel_button": { type: T.BUTTON, children: string }, + "blocktype_dropdown_content": { type: T.PANEL, children: string }, + "block_type_panel": { type: T.PANEL, children: string }, + "condition_dropdown_content": { type: T.PANEL, children: string }, + "condition_mode_panel": { type: T.PANEL, children: string }, + "redstone_dropdown_content": { type: T.PANEL, children: string }, + "redstone_mode_panel": { type: T.PANEL, children: string }, + "left_scrolling_panel": { type: T.PANEL, children: string }, + "left_scroll_panel_content": { type: T.PANEL, children: 'content_stack_panel' }, + "left_scroll_panel_content/content_stack_panel": { type: T.STACK_PANEL, children: 'offset1' | 'offset2' | 'offset3' | 'block_type_mode_panel' | 'offset4' | 'condition_mode_panel' | 'offset5' | 'redstone_mode_panel' | 'offset_execute_on_first_tick' | 'option_label_execute_on_first_tick' | 'execute_on_first_tick_toggle' | 'offset_tick_delay' | 'option_label_tick_delay' | 'tick_delay_text' | 'offset7' | 'cancel' | 'offset8' }, + "left_scroll_panel_content/content_stack_panel/offset1": { type: T.PANEL, children: string }, + "left_scroll_panel_content/content_stack_panel/offset2": { type: T.PANEL, children: 'hover_note_text' }, + "left_scroll_panel_content/content_stack_panel/offset2/hover_note_text": { type: T.EDIT_BOX, children: string }, + "left_scroll_panel_content/content_stack_panel/offset3": { type: T.PANEL, children: string }, + "left_scroll_panel_content/content_stack_panel/block_type_mode_panel": { type: T.PANEL, children: string }, + "left_scroll_panel_content/content_stack_panel/offset4": { type: T.PANEL, children: string }, + "left_scroll_panel_content/content_stack_panel/condition_mode_panel": { type: T.PANEL, children: string }, + "left_scroll_panel_content/content_stack_panel/offset5": { type: T.PANEL, children: string }, + "left_scroll_panel_content/content_stack_panel/redstone_mode_panel": { type: T.PANEL, children: string }, + "left_scroll_panel_content/content_stack_panel/offset_execute_on_first_tick": { type: T.PANEL, children: string }, + "left_scroll_panel_content/content_stack_panel/option_label_execute_on_first_tick": { type: T.LABEL, children: string }, + "left_scroll_panel_content/content_stack_panel/execute_on_first_tick_toggle": { type: T.PANEL, children: string }, + "left_scroll_panel_content/content_stack_panel/offset_tick_delay": { type: T.PANEL, children: string }, + "left_scroll_panel_content/content_stack_panel/option_label_tick_delay": { type: T.LABEL, children: string }, + "left_scroll_panel_content/content_stack_panel/tick_delay_text": { type: T.EDIT_BOX, children: string }, + "left_scroll_panel_content/content_stack_panel/offset7": { type: T.PANEL, children: string }, + "left_scroll_panel_content/content_stack_panel/cancel": { type: T.BUTTON, children: string }, + "left_scroll_panel_content/content_stack_panel/offset8": { type: T.PANEL, children: string }, + "left_divider_content": { type: T.PANEL, children: 'left_scrolling_panel' }, + "left_divider_content/left_scrolling_panel": { type: T.PANEL, children: string }, + "right_scrolling_panel": { type: T.PANEL, children: string }, + "right_scroll_panel_content": { type: T.STACK_PANEL, children: 'command_block_commands_panel' | 'switch_warning_panel' | 'self_label' | 'self_label_offset' | 'nearest_player_label' | 'nearest_player_label_offset' | 'random_player_label' | 'random_player_label_offset' | 'all_players_label' | 'all_players_label_offset' | 'all_entities_label' | 'all_entities_label_offset' | 'nearest_label' | 'nearest_label_offset' | 'command_block_previous_output_panel' | 'previous_block_type_text' | 'offset4' | 'previous_conditional_mode_text' | 'offset5' | 'previous_redstone_mode_text' }, + "right_scroll_panel_content/command_block_commands_panel": { type: T.STACK_PANEL, children: 'spacer1' | 'centering_panel' | 'spacer2' | 'centering_panel1' }, + "right_scroll_panel_content/command_block_commands_panel/spacer1": { type: T.PANEL, children: string }, + "right_scroll_panel_content/command_block_commands_panel/centering_panel": { type: T.PANEL, children: 'option_label' }, + "right_scroll_panel_content/command_block_commands_panel/centering_panel/option_label": { type: T.LABEL, children: string }, + "right_scroll_panel_content/command_block_commands_panel/spacer2": { type: T.PANEL, children: string }, + "right_scroll_panel_content/command_block_commands_panel/centering_panel1": { type: T.PANEL, children: 'command_block_commands_panel' }, + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel": { type: T.STACK_PANEL, children: 'offset' | 'paste_button' | 'plus_button' }, + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/offset": { type: T.PANEL, children: 'command_block_commands_text' }, + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/offset/command_block_commands_text": { type: T.EDIT_BOX, children: string }, + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/paste_button": { type: T.BUTTON, children: string }, + "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/plus_button": { type: T.BUTTON, children: string }, + "right_scroll_panel_content/switch_warning_panel": { type: T.PANEL, children: 'switch_warning_label' }, + "right_scroll_panel_content/switch_warning_panel/switch_warning_label": { type: T.LABEL, children: string }, + "right_scroll_panel_content/self_label": { type: T.STACK_PANEL, children: string }, + "right_scroll_panel_content/self_label_offset": { type: T.PANEL, children: string }, + "right_scroll_panel_content/nearest_player_label": { type: T.STACK_PANEL, children: string }, + "right_scroll_panel_content/nearest_player_label_offset": { type: T.PANEL, children: string }, + "right_scroll_panel_content/random_player_label": { type: T.STACK_PANEL, children: string }, + "right_scroll_panel_content/random_player_label_offset": { type: T.PANEL, children: string }, + "right_scroll_panel_content/all_players_label": { type: T.STACK_PANEL, children: string }, + "right_scroll_panel_content/all_players_label_offset": { type: T.PANEL, children: string }, + "right_scroll_panel_content/all_entities_label": { type: T.STACK_PANEL, children: string }, + "right_scroll_panel_content/all_entities_label_offset": { type: T.PANEL, children: string }, + "right_scroll_panel_content/nearest_label": { type: T.STACK_PANEL, children: string }, + "right_scroll_panel_content/nearest_label_offset": { type: T.PANEL, children: string }, + "right_scroll_panel_content/command_block_previous_output_panel": { type: T.STACK_PANEL, children: 'previous_output_label_stack_centering_panel' | 'spacer' | 'command_output_text_centering_panel' }, + "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel": { type: T.PANEL, children: 'previous_output_label_stack' }, + "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack": { type: T.STACK_PANEL, children: 'show_output_toggle' | 'option_label' }, + "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack/show_output_toggle": { type: T.PANEL, children: string }, + "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack/option_label": { type: T.LABEL, children: string }, + "right_scroll_panel_content/command_block_previous_output_panel/spacer": { type: T.PANEL, children: string }, + "right_scroll_panel_content/command_block_previous_output_panel/command_output_text_centering_panel": { type: T.PANEL, children: 'command_output_text' }, + "right_scroll_panel_content/command_block_previous_output_panel/command_output_text_centering_panel/command_output_text": { type: T.EDIT_BOX, children: string }, + "right_scroll_panel_content/previous_block_type_text": { type: T.STACK_PANEL, children: string }, + "right_scroll_panel_content/offset4": { type: T.PANEL, children: string }, + "right_scroll_panel_content/previous_conditional_mode_text": { type: T.STACK_PANEL, children: string }, + "right_scroll_panel_content/offset5": { type: T.PANEL, children: string }, + "right_scroll_panel_content/previous_redstone_mode_text": { type: T.STACK_PANEL, children: string }, + "divider_content": { type: T.PANEL, children: 'left_side' | 'right_side' }, + "divider_content/left_side": { type: T.PANEL, children: string }, + "divider_content/right_side": { type: T.PANEL, children: string }, + "command_block_screen_content": { type: T.PANEL, children: 'background_divider' | 'title' | 'content' | 'maximized_command_block_text' }, + "command_block_screen_content/background_divider": { type: T.PANEL, children: 'bg_image' | 'dialog_divider' | 'header_buttons_stack_panel' }, + "command_block_screen_content/background_divider/bg_image": { type: T.UNKNOWN, children: string }, + "command_block_screen_content/background_divider/dialog_divider": { type: T.IMAGE, children: string }, + "command_block_screen_content/background_divider/header_buttons_stack_panel": { type: T.STACK_PANEL, children: 'paste_button' | 'close_button_holder' }, + "command_block_screen_content/background_divider/header_buttons_stack_panel/paste_button": { type: T.BUTTON, children: string }, + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder": { type: T.PANEL, children: 'close' | 'minimize' }, + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/close": { type: T.BUTTON, children: string }, + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/default": { type: T.UNKNOWN, children: string }, + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/hover": { type: T.UNKNOWN, children: string }, + "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/pressed": { type: T.UNKNOWN, children: string }, + "command_block_screen_content/title": { type: T.LABEL, children: string }, + "command_block_screen_content/content": { type: T.PANEL, children: string }, + "command_block_screen_content/maximized_command_block_text": { type: T.EDIT_BOX, children: string }, + "right_divider_content": { type: T.PANEL, children: 'right_scrolling_panel' }, + "right_divider_content/right_scrolling_panel": { type: T.PANEL, children: string }, + "command_block_screen": { type: T.SCREEN, children: string }, } 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": { type: T.STACK_PANEL, children: string }, + "image_panel": { type: T.PANEL, children: 'image' }, + "image_panel/image": { type: T.IMAGE, children: string }, + "header_panel": { type: T.STACK_PANEL, children: 'image_panel' | 'padding' | 'text_panel' }, + "header_panel/image_panel": { type: T.PANEL, children: string }, + "header_panel/padding": { type: T.PANEL, children: string }, + "header_panel/text_panel": { type: T.STACK_PANEL, children: 'header_text' | 'padding_2' | 'header_text_2' }, + "header_panel/text_panel/header_text": { type: T.LABEL, children: string }, + "header_panel/text_panel/padding_2": { type: T.PANEL, children: string }, + "header_panel/text_panel/header_text_2": { type: T.LABEL, children: string }, + "dialog_content": { type: T.STACK_PANEL, children: 'body_content' | 'padding' | 'button_panel' }, + "dialog_content/body_content": { type: T.PANEL, children: string }, + "dialog_content/padding": { type: T.PANEL, children: string }, + "dialog_content/button_panel": { type: T.STACK_PANEL, children: 'confirm_delete_account_button' | 'padding' | 'cancel_delete_account_button' }, + "dialog_content/button_panel/confirm_delete_account_button": { type: T.BUTTON, children: string }, + "dialog_content/button_panel/padding": { type: T.PANEL, children: string }, + "dialog_content/button_panel/cancel_delete_account_button": { type: T.BUTTON, children: string }, + "confirm_checkbox": { type: T.STACK_PANEL, children: 'check_box_wrapper' | 'padding' | 'label_wrapper' }, + "confirm_checkbox/check_box_wrapper": { type: T.PANEL, children: 'check_box' }, + "confirm_checkbox/check_box_wrapper/check_box": { type: T.TOGGLE, children: string }, + "confirm_checkbox/padding": { type: T.PANEL, children: string }, + "confirm_checkbox/label_wrapper": { type: T.PANEL, children: 'label' }, + "confirm_checkbox/label_wrapper/label": { type: T.LABEL, children: string }, + "scrolling_panel": { type: T.PANEL, children: string }, + "description_label_panel": { type: T.STACK_PANEL, children: 'header_label_wrapper' | 'padding' | 'divider_0' | 'confirm_0' | 'divider_1' | 'confirm_1' | 'divider_2' | 'confirm_2' | 'divider_3' | 'confirm_3' }, + "description_label_panel/header_label_wrapper": { type: T.PANEL, children: string }, + "description_label_panel/padding": { type: T.PANEL, children: string }, + "description_label_panel/divider_0": { type: T.STACK_PANEL, children: string }, + "description_label_panel/confirm_0": { type: T.STACK_PANEL, children: string }, + "description_label_panel/divider_1": { type: T.STACK_PANEL, children: string }, + "description_label_panel/confirm_1": { type: T.STACK_PANEL, children: string }, + "description_label_panel/divider_2": { type: T.STACK_PANEL, children: string }, + "description_label_panel/confirm_2": { type: T.STACK_PANEL, children: string }, + "description_label_panel/divider_3": { type: T.STACK_PANEL, children: string }, + "description_label_panel/confirm_3": { type: T.STACK_PANEL, children: string }, + "confirm_delete_account_screen": { type: T.SCREEN, children: string }, + "confirm_delete_account_screen_content": { type: T.PANEL, children: 'root_panel' }, + "confirm_delete_account_screen_content/root_panel": { type: T.PANEL, children: 'dialog' }, + "confirm_delete_account_screen_content/root_panel/dialog": { type: T.PANEL, children: string }, + "screen_dialog": { type: T.PANEL, children: string }, + "background": { type: T.IMAGE, children: string }, } 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": { type: T.LABEL, children: string }, + "content_log_grid_item": { type: T.PANEL, children: 'content_log_background' }, + "content_log_grid_item/content_log_background": { type: T.IMAGE, children: 'content_log_text' }, + "content_log_grid_item/content_log_background/content_log_text": { type: T.LABEL, children: string }, + "content_log_panel": { type: T.PANEL, children: 'stack_panel' }, + "content_log_panel/stack_panel": { type: T.STACK_PANEL, children: string }, } 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": { type: T.IMAGE, children: string }, + "clipboard_icon_wrapper": { type: T.PANEL, children: 'stack_panel' }, + "clipboard_icon_wrapper/stack_panel": { type: T.STACK_PANEL, children: 'icon_panel' | 'offset' | 'label_panel' }, + "clipboard_icon_wrapper/stack_panel/icon_panel": { type: T.PANEL, children: 'icon' }, + "clipboard_icon_wrapper/stack_panel/icon_panel/icon": { type: T.IMAGE, children: string }, + "clipboard_icon_wrapper/stack_panel/offset": { type: T.PANEL, children: string }, + "clipboard_icon_wrapper/stack_panel/label_panel": { type: T.PANEL, children: 'label' }, + "clipboard_icon_wrapper/stack_panel/label_panel/label": { type: T.LABEL, children: string }, + "clipboard_button": { type: T.BUTTON, children: string }, + "clear_icon": { type: T.IMAGE, children: string }, + "clear_icon_wrapper": { type: T.PANEL, children: 'stack_panel' }, + "clear_icon_wrapper/stack_panel": { type: T.STACK_PANEL, children: 'icon_panel' | 'offset' | 'label_panel' }, + "clear_icon_wrapper/stack_panel/icon_panel": { type: T.PANEL, children: 'icon' }, + "clear_icon_wrapper/stack_panel/icon_panel/icon": { type: T.IMAGE, children: string }, + "clear_icon_wrapper/stack_panel/offset": { type: T.PANEL, children: string }, + "clear_icon_wrapper/stack_panel/label_panel": { type: T.PANEL, children: 'label' }, + "clear_icon_wrapper/stack_panel/label_panel/label": { type: T.LABEL, children: string }, + "clear_button": { type: T.BUTTON, children: string }, + "horizontal_button_stack_panel": { type: T.STACK_PANEL, children: 'clipboard_button' | 'clear_button' }, + "horizontal_button_stack_panel/clipboard_button": { type: T.BUTTON, children: string }, + "horizontal_button_stack_panel/clear_button": { type: T.BUTTON, children: string }, + "content_log_message": { type: T.LABEL, children: string }, + "content_log_message_panel": { type: T.PANEL, children: 'content_log_message' }, + "content_log_message_panel/content_log_message": { type: T.LABEL, children: string }, + "content_log_message_panel_panel": { type: T.PANEL, children: 'content_log_message_panel' }, + "content_log_message_panel_panel/content_log_message_panel": { type: T.PANEL, children: string }, + "messages_stack_panel": { type: T.STACK_PANEL, children: string }, + "messages_scrolling_panel": { type: T.PANEL, children: string }, + "main_stack_panel": { type: T.STACK_PANEL, children: 'messages_scrolling_panel' }, + "main_stack_panel/messages_scrolling_panel": { type: T.PANEL, children: string }, + "content_log_history_panel": { type: T.PANEL, children: 'content_log_history_dialog' }, + "content_log_history_panel/content_log_history_dialog": { type: T.UNKNOWN, children: string }, + "content_log_history_screen": { type: T.SCREEN, children: string }, } 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": { type: T.LABEL, children: string }, + "header_panel": { type: T.PANEL, children: 'header_background' | 'title_label' }, + "header_panel/header_background": { type: T.IMAGE, children: string }, + "header_panel/title_label": { type: T.LABEL, children: string }, + "header_area": { type: T.PANEL, children: 'x' | 'inventory_header' | 'container_header' }, + "header_area/x": { type: T.BUTTON, children: string }, + "header_area/inventory_header": { type: T.PANEL, children: string }, + "header_area/container_header": { type: T.PANEL, children: string }, + "dark_bg": { type: T.IMAGE, children: string }, + "panel_outline": { type: T.IMAGE, children: string }, + "background_panel": { type: T.IMAGE, children: string }, + "inventory_panel": { type: T.PANEL, children: 'scrolling_panel' }, + "inventory_panel/scrolling_panel": { type: T.PANEL, children: string }, + "left_screen": { type: T.PANEL, children: 'inventory_panel' }, + "left_screen/inventory_panel": { type: T.PANEL, children: string }, + "crafter_input_grid": { type: T.GRID, children: string }, + "crafter_disabled_slot": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "crafter_disabled_slot/default": { type: T.IMAGE, children: string }, + "crafter_disabled_slot/hover": { type: T.IMAGE, children: string }, + "crafter_disabled_slot/pressed": { type: T.IMAGE, children: string }, + "cell_image": { type: T.IMAGE, children: string }, + "crafter_highlight_slot": { type: T.IMAGE, children: string }, + "crafter_container_slot_button_prototype": { type: T.BUTTON, children: string }, + "crafter_highlight_slot_panel": { type: T.PANEL, children: 'highlight' | 'white_border' }, + "crafter_highlight_slot_panel/highlight": { type: T.IMAGE, children: 'hover_text' }, + "crafter_highlight_slot_panel/highlight/hover_text": { type: T.CUSTOM, children: string }, + "crafter_highlight_slot_panel/white_border": { type: T.IMAGE, children: string }, + "crafter_enabled_slot_template": { type: T.INPUT_PANEL, children: string }, + "output_slot_hover_info": { type: T.BUTTON, children: 'hover' | 'output_slot' | 'output_slot_border' | 'output_count' }, + "output_slot_hover_info/hover": { type: T.CUSTOM, children: string }, + "output_slot_hover_info/output_slot": { type: T.CUSTOM, children: string }, + "output_slot_hover_info/output_slot_border": { type: T.IMAGE, children: string }, + "output_slot_hover_info/output_count": { type: T.LABEL, children: string }, + "panel_crafter": { type: T.PANEL, children: 'item_lock_notification_factory' | 'root_panel' }, + "panel_crafter/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "panel_crafter/root_panel": { type: T.INPUT_PANEL, children: 'disabled_slot_0_button' | 'disabled_slot_1_button' | 'disabled_slot_2_button' | 'disabled_slot_3_button' | 'disabled_slot_4_button' | 'disabled_slot_5_button' | 'disabled_slot_6_button' | 'disabled_slot_7_button' | 'disabled_slot_8_button' | 'redstone_screen_inventory' | 'red_icon' }, + "panel_crafter/root_panel/disabled_slot_0_button": { type: T.BUTTON, children: string }, + "panel_crafter/root_panel/disabled_slot_1_button": { type: T.BUTTON, children: string }, + "panel_crafter/root_panel/disabled_slot_2_button": { type: T.BUTTON, children: string }, + "panel_crafter/root_panel/disabled_slot_3_button": { type: T.BUTTON, children: string }, + "panel_crafter/root_panel/disabled_slot_4_button": { type: T.BUTTON, children: string }, + "panel_crafter/root_panel/disabled_slot_5_button": { type: T.BUTTON, children: string }, + "panel_crafter/root_panel/disabled_slot_6_button": { type: T.BUTTON, children: string }, + "panel_crafter/root_panel/disabled_slot_7_button": { type: T.BUTTON, children: string }, + "panel_crafter/root_panel/disabled_slot_8_button": { type: T.BUTTON, children: string }, + "panel_crafter/root_panel/redstone_screen_inventory": { type: T.PANEL, children: 'crafting_grid' | 'red_hold_icon' | 'redstone_wire_line' | 'crafter_output' }, + "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid": { type: T.PANEL, children: 'crafter_input_grid' }, + "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid/crafter_input_grid": { type: T.GRID, children: string }, + "panel_crafter/root_panel/redstone_screen_inventory/red_hold_icon": { type: T.BUTTON, children: string }, + "panel_crafter/root_panel/redstone_screen_inventory/redstone_wire_line": { type: T.IMAGE, children: string }, + "panel_crafter/root_panel/redstone_screen_inventory/crafter_output": { type: T.BUTTON, children: string }, + "panel_crafter/root_panel/red_icon": { type: T.BUTTON, children: string }, + "right_screen_background": { type: T.IMAGE, children: string }, + "right_screen": { type: T.PANEL, children: 'right_screen_bg' }, + "right_screen/right_screen_bg": { type: T.IMAGE, children: 'inventory_panel' }, + "right_screen/right_screen_bg/inventory_panel": { type: T.PANEL, children: string }, + "panel": { type: T.PANEL, children: 'container_gamepad_helpers' | 'header' | 'bg' | 'inventory' | 'container' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'gamepad_cursor' | 'flying_item_renderer' }, + "panel/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "panel/header": { type: T.PANEL, children: string }, + "panel/bg": { type: T.IMAGE, children: string }, + "panel/inventory": { type: T.PANEL, children: string }, + "panel/container": { type: T.PANEL, children: string }, + "panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "panel/gamepad_cursor": { type: T.BUTTON, children: string }, + "panel/flying_item_renderer": { type: T.CUSTOM, children: string }, + "crafter": { type: T.PANEL, children: string }, } 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": { type: T.IMAGE, children: string }, + "realms_icon": { type: T.IMAGE, children: string }, + "dark_banner": { type: T.IMAGE, children: string }, + "grey_banner": { type: T.IMAGE, children: string }, + "checkmark": { type: T.IMAGE, children: string }, + "largex": { type: T.IMAGE, children: string }, + "realms_art_icon": { type: T.IMAGE, children: string }, + "new_world_button": { type: T.BUTTON, children: string }, + "new_realm_button": { type: T.BUTTON, children: string }, + "remove_trial_button": { type: T.BUTTON, children: string }, + "button_content": { type: T.STACK_PANEL, children: 'padding_0' | 'icon_panel' | 'padding_1' | 'label_panel' }, + "button_content/padding_0": { type: T.PANEL, children: string }, + "button_content/icon_panel": { type: T.PANEL, children: string }, + "button_content/padding_1": { type: T.PANEL, children: string }, + "button_content/label_panel": { type: T.PANEL, children: string }, + "realm_button_content": { type: T.STACK_PANEL, children: string }, + "world_button_content": { type: T.STACK_PANEL, children: string }, + "realms_button_text_panel": { type: T.STACK_PANEL, children: 'new_realm_label' | 'new_realm_trial_label' }, + "realms_button_text_panel/new_realm_label": { type: T.LABEL, children: string }, + "realms_button_text_panel/new_realm_trial_label": { type: T.LABEL, children: string }, + "price_label": { type: T.LABEL, children: string }, + "new_realm_label": { type: T.LABEL, children: string }, + "new_realm_trial_label": { type: T.LABEL, children: string }, + "new_world_label": { type: T.LABEL, children: string }, + "button_and_price_panel": { type: T.STACK_PANEL, children: 'padding' | 'price_label_panel' }, + "button_and_price_panel/padding": { type: T.PANEL, children: string }, + "button_and_price_panel/price_label_panel": { type: T.PANEL, children: 'price' }, + "button_and_price_panel/price_label_panel/price": { type: T.LABEL, children: string }, + "border_shell": { type: T.IMAGE, children: string }, + "head_banner_panel": { type: T.IMAGE, children: string }, + "create_new_realm_content": { type: T.STACK_PANEL, children: 'head_banner_panel' | 'realm_grid' }, + "create_new_realm_content/head_banner_panel": { type: T.IMAGE, children: 'realm_button_price' }, + "create_new_realm_content/head_banner_panel/realm_button_price": { type: T.STACK_PANEL, children: string }, + "create_new_realm_content/realm_grid": { type: T.GRID, children: string }, + "create_world_upsell_grid_item": { type: T.PANEL, children: 'db' | 'gb' | 'gp' }, + "create_world_upsell_grid_item/db": { type: T.IMAGE, children: string }, + "create_world_upsell_grid_item/gb": { type: T.IMAGE, children: string }, + "create_world_upsell_grid_item/gp": { type: T.STACK_PANEL, children: string }, + "grid_panel": { type: T.STACK_PANEL, children: 'padding' | 'upsell_text_panel' }, + "grid_panel/padding": { type: T.PANEL, children: string }, + "grid_panel/upsell_text_panel": { type: T.PANEL, children: 'upsell_label' }, + "grid_panel/upsell_text_panel/upsell_label": { type: T.LABEL, children: string }, + "create_new_world_content": { type: T.STACK_PANEL, children: 'head_banner_panel' | 'world_grid' }, + "create_new_world_content/head_banner_panel": { type: T.IMAGE, children: 'world_button_price' }, + "create_new_world_content/head_banner_panel/world_button_price": { type: T.STACK_PANEL, children: string }, + "create_new_world_content/world_grid": { type: T.GRID, children: string }, + "new_world_or_realm_scroll": { type: T.PANEL, children: string }, + "create_new_world_or_realm_content": { type: T.STACK_PANEL, children: 'world' | 'padding' | 'realm_content' }, + "create_new_world_or_realm_content/world": { type: T.IMAGE, children: string }, + "create_new_world_or_realm_content/padding": { type: T.PANEL, children: string }, + "create_new_world_or_realm_content/realm_content": { type: T.IMAGE, children: string }, + "new_realm_scroll": { type: T.PANEL, children: string }, + "new_realm_content_panel": { type: T.STACK_PANEL, children: 'key_art_panel' | 'padding_hack' | 'padding_0' | 'new_realm_scroll' | 'padding_1' }, + "new_realm_content_panel/key_art_panel": { type: T.PANEL, children: 'realms_art_icon' }, + "new_realm_content_panel/key_art_panel/realms_art_icon": { type: T.IMAGE, children: string }, + "new_realm_content_panel/padding_hack": { type: T.PANEL, children: string }, + "new_realm_content_panel/padding_0": { type: T.PANEL, children: string }, + "new_realm_content_panel/new_realm_scroll": { type: T.PANEL, children: string }, + "new_realm_content_panel/padding_1": { type: T.PANEL, children: string }, + "create_realm_upsell_content": { type: T.STACK_PANEL, children: 'realm_content' | 'padding_0' | 'remove_trial_button' | 'padding_1' }, + "create_realm_upsell_content/realm_content": { type: T.IMAGE, children: string }, + "create_realm_upsell_content/padding_0": { type: T.PANEL, children: string }, + "create_realm_upsell_content/remove_trial_button": { type: T.BUTTON, children: string }, + "create_realm_upsell_content/padding_1": { type: T.PANEL, children: string }, + "realm_content": { type: T.IMAGE, children: string }, + "create_world_upsell": { type: T.SCREEN, children: string }, + "create_world_upsell_realms": { type: T.SCREEN, children: string }, + "main_panel": { type: T.PANEL, children: string }, + "variable_screen_size_panel": { type: T.PANEL, children: 'dialog_0' | 'dialog_1' }, + "variable_screen_size_panel/dialog_0": { type: T.PANEL, children: string }, + "variable_screen_size_panel/dialog_1": { type: T.PANEL, children: string }, + "main_panel_realms_only": { type: T.PANEL, children: string }, } 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": { type: T.IMAGE, children: string }, + "fade_out_image": { type: T.IMAGE, children: string }, + "skip_panel": { type: T.PANEL, children: 'skip_button' | 'exit_credits_input_panel' }, + "skip_panel/skip_button": { type: T.BUTTON, children: string }, + "skip_panel/exit_credits_input_panel": { type: T.INPUT_PANEL, children: string }, + "credits_renderer": { type: T.CUSTOM, children: string }, + "credits_screen_content": { type: T.PANEL, children: 'credits_renderer' | 'vignette_renderer' | 'fade_in_image' | 'credits_factory' | 'whole_screen_input_panel' }, + "credits_screen_content/credits_renderer": { type: T.CUSTOM, children: string }, + "credits_screen_content/vignette_renderer": { type: T.CUSTOM, children: string }, + "credits_screen_content/fade_in_image": { type: T.IMAGE, children: string }, + "credits_screen_content/credits_factory": { type: T.FACTORY, children: string }, + "credits_screen_content/whole_screen_input_panel": { type: T.INPUT_PANEL, children: string }, + "background": { type: T.IMAGE, children: string }, + "credits_screen": { type: T.SCREEN, children: string }, } 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": { type: T.SCREEN, children: string }, + "purchase_error_screen_content": { type: T.PANEL, children: 'main_panel' }, + "purchase_error_screen_content/main_panel": { type: T.PANEL, children: string }, + "purchase_error_modal_main_panel": { type: T.STACK_PANEL, children: 'text_panel' | 'padding_1' | 'art_panel' | 'padding_2' | 'error_panel' }, + "purchase_error_modal_main_panel/text_panel": { type: T.PANEL, children: 'text' }, + "purchase_error_modal_main_panel/text_panel/text": { type: T.LABEL, children: string }, + "purchase_error_modal_main_panel/padding_1": { type: T.PANEL, children: string }, + "purchase_error_modal_main_panel/art_panel": { type: T.PANEL, children: 'art' }, + "purchase_error_modal_main_panel/art_panel/art": { type: T.IMAGE, children: string }, + "purchase_error_modal_main_panel/padding_2": { type: T.PANEL, children: string }, + "purchase_error_modal_main_panel/error_panel": { type: T.STACK_PANEL, children: 'error_code' | 'correlation_id' }, + "purchase_error_modal_main_panel/error_panel/error_code": { type: T.LABEL, children: string }, + "purchase_error_modal_main_panel/error_panel/correlation_id": { type: T.LABEL, children: string }, + "purchase_error_modal_back_button": { type: T.BUTTON, children: string }, } 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": { type: T.SCREEN, children: string }, + "csb_upgrade_notice_screen": { type: T.SCREEN, children: string }, + "csb_background": { type: T.IMAGE, children: string }, + "gradient_image_stack": { type: T.STACK_PANEL, children: 'gradient' }, + "gradient_image_stack/gradient": { type: T.IMAGE, children: string }, + "gradient_content_panel": { type: T.PANEL, children: 'gradient' | 'particles' | 'content_panel' }, + "gradient_content_panel/gradient": { type: T.STACK_PANEL, children: string }, + "gradient_content_panel/particles": { type: T.IMAGE, children: string }, + "gradient_content_panel/content_panel": { type: T.UNKNOWN, children: string }, + "csb_screen_main_panel": { type: T.INPUT_PANEL, children: string }, + "csb_main_panel": { type: T.PANEL, children: 'root_panel' }, + "csb_main_panel/root_panel": { type: T.PANEL, children: 'main_panel' }, + "csb_main_panel/root_panel/main_panel": { type: T.STACK_PANEL, children: string }, + "dialog_content": { type: T.STACK_PANEL, children: 'selector_area' | 'padding_1' | 'allow_divider_offset_panel' | 'padding_2' | 'content_area' | 'padding_3' }, + "dialog_content/selector_area": { type: T.PANEL, children: string }, + "dialog_content/padding_1": { type: T.PANEL, children: string }, + "dialog_content/allow_divider_offset_panel": { type: T.PANEL, children: 'left_right_pane_divider' }, + "dialog_content/allow_divider_offset_panel/left_right_pane_divider": { type: T.IMAGE, children: string }, + "dialog_content/padding_2": { type: T.PANEL, children: string }, + "dialog_content/content_area": { type: T.PANEL, children: string }, + "dialog_content/padding_3": { type: T.PANEL, children: string }, + "selector_area": { type: T.PANEL, children: 'scrolling_panel' }, + "selector_area/scrolling_panel": { type: T.PANEL, children: string }, + "scrollable_selector_area_content": { type: T.STACK_PANEL, children: 'focus_reset_input_panel' | 'csb_toggle' | 'content_toggle' | 'faq_toggle' | 'toggle_section_divider' | 'buy_now_toggle' | 'xbl_btn_panel' }, + "scrollable_selector_area_content/focus_reset_input_panel": { type: T.INPUT_PANEL, children: string }, + "scrollable_selector_area_content/csb_toggle": { type: T.STACK_PANEL, children: string }, + "scrollable_selector_area_content/content_toggle": { type: T.STACK_PANEL, children: string }, + "scrollable_selector_area_content/faq_toggle": { type: T.STACK_PANEL, children: string }, + "scrollable_selector_area_content/toggle_section_divider": { type: T.STACK_PANEL, children: string }, + "scrollable_selector_area_content/buy_now_toggle": { type: T.STACK_PANEL, children: string }, + "scrollable_selector_area_content/xbl_btn_panel": { type: T.PANEL, children: 'xbl_btn' }, + "scrollable_selector_area_content/xbl_btn_panel/xbl_btn": { type: T.BUTTON, children: string }, + "section_toggle_base": { type: T.PANEL, children: string }, + "tab_button_text": { type: T.LABEL, children: string }, + "toggle_base": { type: T.STACK_PANEL, children: 'toggle' | 'padding' }, + "toggle_base/toggle": { type: T.PANEL, children: string }, + "toggle_base/padding": { type: T.PANEL, children: string }, + "csb_toggle": { type: T.STACK_PANEL, children: string }, + "content_toggle": { type: T.STACK_PANEL, children: string }, + "faq_toggle": { type: T.STACK_PANEL, children: string }, + "buy_now_toggle": { type: T.STACK_PANEL, children: string }, + "left_right_pane_divider": { type: T.IMAGE, children: string }, + "content_area": { type: T.PANEL, children: 'control' }, + "content_area/control": { type: T.STACK_PANEL, children: 'scrolling_panel_csb' }, + "content_area/control/scrolling_panel_csb": { type: T.PANEL, children: string }, + "section_content_panels": { type: T.STACK_PANEL, children: string }, + "vertical_padding_4px": { type: T.PANEL, children: string }, + "section_base": { type: T.STACK_PANEL, children: string }, + "buy_now_content_section": { type: T.STACK_PANEL, children: 'vertical_padding' | 'content' }, + "buy_now_content_section/vertical_padding": { type: T.PANEL, children: string }, + "buy_now_content_section/content": { type: T.STACK_PANEL, children: string }, + "markdown_background_animated": { type: T.PANEL, children: 'csb_chevron' }, + "markdown_background_animated/csb_chevron": { type: T.IMAGE, children: string }, + "markdown_background": { type: T.STACK_PANEL, children: 'banner_panel' | 'triangle_panel' }, + "markdown_background/banner_panel": { type: T.PANEL, children: 'banner' }, + "markdown_background/banner_panel/banner": { type: T.IMAGE, children: 'banner_stack_panel' }, + "markdown_background/banner_panel/banner/banner_stack_panel": { type: T.STACK_PANEL, children: '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' }, + "markdown_background/banner_panel/banner/banner_stack_panel/0": { type: T.UNKNOWN, children: string }, + "markdown_background/triangle_panel": { type: T.PANEL, children: 'triangle' }, + "markdown_background/triangle_panel/triangle": { type: T.IMAGE, children: string }, + "empty_label": { type: T.PANEL, children: string }, + "full_width_section_divider": { type: T.STACK_PANEL, children: string }, } 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": { type: T.STACK_PANEL, children: 'content_section_vertical_padding_1' | 'popular_packs_label_panel' | 'content_section_vertical_padding_2' | 'content_pack_types' | 'content_packs_included' | 'content_section_vertical_padding_3' }, + "csb_content_section/content_section_vertical_padding_1": { type: T.PANEL, children: string }, + "csb_content_section/popular_packs_label_panel": { type: T.PANEL, children: 'label_with_gradient' | 'tts_border' }, + "csb_content_section/popular_packs_label_panel/label_with_gradient": { type: T.PANEL, children: string }, + "csb_content_section/popular_packs_label_panel/tts_border": { type: T.BUTTON, children: string }, + "csb_content_section/content_section_vertical_padding_2": { type: T.PANEL, children: string }, + "csb_content_section/content_pack_types": { type: T.STACK_PANEL, children: string }, + "csb_content_section/content_packs_included": { type: T.STACK_PANEL, children: string }, + "csb_content_section/content_section_vertical_padding_3": { type: T.PANEL, children: string }, + "content_pack_types_section": { type: T.STACK_PANEL, children: 'pack_types' | 'padding' }, + "content_pack_types_section/pack_types": { type: T.STACK_PANEL, children: string }, + "content_pack_types_section/padding": { type: T.PANEL, children: string }, + "content_packs_included_section": { type: T.STACK_PANEL, children: 'popular_packs' | 'section_divider' }, + "content_packs_included_section/popular_packs": { type: T.STACK_PANEL, children: string }, + "content_packs_included_section/section_divider": { type: T.STACK_PANEL, children: string }, + "pack_types": { type: T.STACK_PANEL, children: 'padding_01' | 'pack_types_1' | 'padding_02' | 'pack_types_2' | 'padding_03' }, + "pack_types/padding_01": { type: T.PANEL, children: string }, + "pack_types/pack_types_1": { type: T.STACK_PANEL, children: string }, + "pack_types/padding_02": { type: T.PANEL, children: string }, + "pack_types/pack_types_2": { type: T.STACK_PANEL, children: string }, + "pack_types/padding_03": { type: T.PANEL, children: string }, + "pack_types_1": { type: T.STACK_PANEL, children: 'worlds' | 'padding_01' | 'textures' | 'padding_02' | 'persona' }, + "pack_types_1/worlds": { type: T.STACK_PANEL, children: string }, + "pack_types_1/padding_01": { type: T.PANEL, children: string }, + "pack_types_1/textures": { type: T.STACK_PANEL, children: string }, + "pack_types_1/padding_02": { type: T.PANEL, children: string }, + "pack_types_1/persona": { type: T.STACK_PANEL, children: string }, + "pack_types_2": { type: T.STACK_PANEL, children: 'padding_1' | 'skins' | 'padding_2' | 'mashups' | 'padding_3' }, + "pack_types_2/padding_1": { type: T.PANEL, children: string }, + "pack_types_2/skins": { type: T.STACK_PANEL, children: string }, + "pack_types_2/padding_2": { type: T.PANEL, children: string }, + "pack_types_2/mashups": { type: T.STACK_PANEL, children: string }, + "pack_types_2/padding_3": { type: T.PANEL, children: string }, + "pack_type_description": { type: T.STACK_PANEL, children: 'image_nesting_panel' | 'padding_0' | 'description_nesting_panel' | 'padding_1' }, + "pack_type_description/image_nesting_panel": { type: T.PANEL, children: 'texture' }, + "pack_type_description/image_nesting_panel/texture": { type: T.UNKNOWN, children: string }, + "pack_type_description/padding_0": { type: T.PANEL, children: string }, + "pack_type_description/description_nesting_panel": { type: T.PANEL, children: 'description_label' | 'tts_border' }, + "pack_type_description/description_nesting_panel/description_label": { type: T.LABEL, children: string }, + "pack_type_description/description_nesting_panel/tts_border": { type: T.BUTTON, children: string }, + "pack_type_description/padding_1": { type: T.PANEL, children: string }, + "popular_packs": { type: T.STACK_PANEL, children: 'padding_0' | 'pack_grid' | 'view_all_packs_panel' | 'padding_1' }, + "popular_packs/padding_0": { type: T.PANEL, children: string }, + "popular_packs/pack_grid": { type: T.STACK_PANEL, children: string }, + "popular_packs/view_all_packs_panel": { type: T.STACK_PANEL, children: 'view_all_packs_button' | 'padding' | 'view_character_creator_items' }, + "popular_packs/view_all_packs_panel/view_all_packs_button": { type: T.BUTTON, children: string }, + "popular_packs/view_all_packs_panel/padding": { type: T.PANEL, children: string }, + "popular_packs/view_all_packs_panel/view_character_creator_items": { type: T.BUTTON, children: string }, + "popular_packs/padding_1": { type: T.PANEL, children: string }, + "popular_packs_label": { type: T.LABEL, children: string }, + "packs_collection": { type: T.STACK_PANEL, children: 'row_1' | 'padding_1' | 'row_2' | 'padding_2' }, + "packs_collection/row_1": { type: T.STACK_PANEL, children: 'pack_image_grid_item_0' | 'padding' | 'pack_image_grid_item_1' }, + "packs_collection/row_1/pack_image_grid_item_0": { type: T.PANEL, children: string }, + "packs_collection/row_1/padding": { type: T.PANEL, children: string }, + "packs_collection/row_1/pack_image_grid_item_1": { type: T.PANEL, children: string }, + "packs_collection/padding_1": { type: T.PANEL, children: string }, + "packs_collection/row_2": { type: T.STACK_PANEL, children: 'pack_image_grid_item_0' | 'padding' | 'pack_image_grid_item_1' }, + "packs_collection/row_2/pack_image_grid_item_0": { type: T.PANEL, children: string }, + "packs_collection/row_2/padding": { type: T.PANEL, children: string }, + "packs_collection/row_2/pack_image_grid_item_1": { type: T.PANEL, children: string }, + "packs_collection/padding_2": { type: T.PANEL, children: string }, + "pack_image_grid_item": { type: T.PANEL, children: 'bg' | 'offer_button' }, + "pack_image_grid_item/bg": { type: T.IMAGE, children: 'featured_key_art' | 'progress_loading' }, + "pack_image_grid_item/bg/featured_key_art": { type: T.IMAGE, children: string }, + "pack_image_grid_item/bg/progress_loading": { type: T.PANEL, children: string }, + "pack_image_grid_item/offer_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "pack_image_grid_item/offer_button/default": { type: T.IMAGE, children: string }, + "pack_image_grid_item/offer_button/hover": { type: T.IMAGE, children: string }, + "pack_image_grid_item/offer_button/pressed": { type: T.IMAGE, children: string }, } 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": { type: T.PANEL, children: 'static_button' | 'animated_button' }, + "csb_banner/static_button": { type: T.BUTTON, children: string }, + "csb_banner/animated_button": { type: T.BUTTON, children: string }, + "csb_banner_slim": { type: T.PANEL, children: 'banner_button' }, + "csb_banner_slim/banner_button": { type: T.BUTTON, children: string }, + "csb_banner_portal": { type: T.PANEL, children: 'banner_button' }, + "csb_banner_portal/banner_button": { type: T.BUTTON, children: string }, + "promo_banner_csb_button": { type: T.BUTTON, children: 'default' | 'hover' }, + "promo_banner_csb_button/default": { type: T.UNKNOWN, children: string }, + "promo_banner_csb_button/hover": { type: T.UNKNOWN, children: string }, + "csb_banner_slim_content": { type: T.PANEL, children: 'banner_content' }, + "csb_banner_slim_content/banner_content": { type: T.PANEL, children: string }, + "csb_banner_portal_content": { type: T.PANEL, children: 'banner_content' }, + "csb_banner_portal_content/banner_content": { type: T.PANEL, children: string }, + "slim_logo_panel": { type: T.PANEL, children: 'mpp_logo' }, + "slim_logo_panel/mpp_logo": { type: T.IMAGE, children: string }, + "portal_logo_panel": { type: T.PANEL, children: 'mpp_logo' }, + "portal_logo_panel/mpp_logo": { type: T.IMAGE, children: string }, + "csb_banner_new_content": { type: T.PANEL, children: 'text' }, + "csb_banner_new_content/text": { type: T.STACK_PANEL, children: 'logo_panel' | 'offer_panel' | 'pixel_art' }, + "csb_banner_new_content/text/logo_panel": { type: T.UNKNOWN, children: string }, + "csb_banner_new_content/text/offer_panel": { type: T.PANEL, children: 'upsell_text' }, + "csb_banner_new_content/text/offer_panel/upsell_text": { type: T.STACK_PANEL, children: string }, + "csb_banner_new_content/text/pixel_art": { type: T.STACK_PANEL, children: string }, + "sdl_upsell_text_component_factory": { type: T.STACK_PANEL, children: string }, + "csb_banner_content": { type: T.PANEL, children: 'banner' | 'text' }, + "csb_banner_content/banner": { type: T.IMAGE, children: string }, + "csb_banner_content/text": { type: T.STACK_PANEL, children: 'logo_panel' | 'offer_panel' | 'learn_more_panel' }, + "csb_banner_content/text/logo_panel": { type: T.PANEL, children: 'logo' }, + "csb_banner_content/text/logo_panel/logo": { type: T.STACK_PANEL, children: string }, + "csb_banner_content/text/offer_panel": { type: T.PANEL, children: 'offer' }, + "csb_banner_content/text/offer_panel/offer": { type: T.LABEL, children: string }, + "csb_banner_content/text/learn_more_panel": { type: T.PANEL, children: 'learn_more' }, + "csb_banner_content/text/learn_more_panel/learn_more": { type: T.STACK_PANEL, children: 'more' | 'more_chevron' }, + "csb_banner_content/text/learn_more_panel/learn_more/more": { type: T.LABEL, children: string }, + "csb_banner_content/text/learn_more_panel/learn_more/more_chevron": { type: T.LABEL, children: string }, + "animated_promo_banner_csb_button": { type: T.BUTTON, children: 'default' | 'hover' }, + "animated_promo_banner_csb_button/default": { type: T.PANEL, children: string }, + "animated_promo_banner_csb_button/hover": { type: T.PANEL, children: string }, + "animated_csb_banner_content": { type: T.PANEL, children: 'banner' | 'text' }, + "animated_csb_banner_content/banner": { type: T.IMAGE, children: string }, + "animated_csb_banner_content/text": { type: T.STACK_PANEL, children: 'logo_panel' | 'offer_panel' | 'learn_more_panel' }, + "animated_csb_banner_content/text/logo_panel": { type: T.PANEL, children: 'logo' }, + "animated_csb_banner_content/text/logo_panel/logo": { type: T.STACK_PANEL, children: string }, + "animated_csb_banner_content/text/offer_panel": { type: T.PANEL, children: 'offer' }, + "animated_csb_banner_content/text/offer_panel/offer": { type: T.LABEL, children: string }, + "animated_csb_banner_content/text/learn_more_panel": { type: T.PANEL, children: 'learn_more' }, + "animated_csb_banner_content/text/learn_more_panel/learn_more": { type: T.STACK_PANEL, children: 'more' | 'more_chevron' }, + "animated_csb_banner_content/text/learn_more_panel/learn_more/more": { type: T.LABEL, children: string }, + "animated_csb_banner_content/text/learn_more_panel/learn_more/more_chevron": { type: T.LABEL, children: string }, + "still_pixel_art_panel": { type: T.PANEL, children: 'banner' }, + "still_pixel_art_panel/banner": { type: T.IMAGE, children: string }, + "animated_pixel_art_panel": { type: T.PANEL, children: 'mygif' }, + "animated_pixel_art_panel/mygif": { type: T.CUSTOM, children: string }, + "image_component_factory": { type: T.STACK_PANEL, children: string }, + "image_asset_factory": { type: T.STACK_PANEL, children: string }, } 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": { type: T.STACK_PANEL, children: 'description_stack' | 'terms_and_conditions' | 'padding_2' | 'button_panel' | 'padding_3' | 'terms' }, + "buy_now_content/description_stack": { type: T.STACK_PANEL, children: string }, + "buy_now_content/terms_and_conditions": { type: T.PANEL, children: string }, + "buy_now_content/padding_2": { type: T.PANEL, children: string }, + "buy_now_content/button_panel": { type: T.PANEL, children: 'buy_button' | 'icon_panel' }, + "buy_now_content/button_panel/buy_button": { type: T.PANEL, children: string }, + "buy_now_content/button_panel/icon_panel": { type: T.PANEL, children: string }, + "buy_now_content/padding_3": { type: T.PANEL, children: string }, + "buy_now_content/terms": { type: T.STACK_PANEL, children: string }, + "content_text_section": { type: T.STACK_PANEL, children: 'text_description' | 'padding' }, + "content_text_section/text_description": { type: T.PANEL, children: string }, + "content_text_section/padding": { type: T.PANEL, children: string }, + "content_description": { type: T.PANEL, children: 'content_description_label' | 'tts_hover' }, + "content_description/content_description_label": { type: T.LABEL, children: string }, + "content_description/tts_hover": { type: T.BUTTON, children: string }, + "trial_image_and_description": { type: T.STACK_PANEL, children: 'image_border' | 'padding' | 'description_text' }, + "trial_image_and_description/image_border": { type: T.IMAGE, children: string }, + "trial_image_and_description/padding": { type: T.PANEL, children: string }, + "trial_image_and_description/description_text": { type: T.PANEL, children: 'descriptions_label' | 'tts_hover' }, + "trial_image_and_description/description_text/descriptions_label": { type: T.LABEL, children: string }, + "trial_image_and_description/description_text/tts_hover": { type: T.BUTTON, children: string }, + "title_text": { type: T.PANEL, children: 'inner_text' | 'tts_hover' }, + "title_text/inner_text": { type: T.LABEL, children: string }, + "title_text/tts_hover": { type: T.BUTTON, children: string }, + "description_stack": { type: T.STACK_PANEL, children: 'title_with_gradient' | 'padding' | 'image_and_description' }, + "description_stack/title_with_gradient": { type: T.PANEL, children: string }, + "description_stack/padding": { type: T.PANEL, children: string }, + "description_stack/image_and_description": { type: T.STACK_PANEL, children: string }, + "terms_and_conditions": { type: T.PANEL, children: 'terms_panel' }, + "terms_and_conditions/terms_panel": { type: T.PANEL, children: string }, + "terms_and_conditions_panel": { type: T.PANEL, children: 'name_label' | 'terms_string_panel' }, + "terms_and_conditions_panel/name_label": { type: T.LABEL, children: string }, + "terms_and_conditions_panel/terms_string_panel": { type: T.PANEL, children: 'banner_fill' | 'buttons_stack_panel' }, + "terms_and_conditions_panel/terms_string_panel/banner_fill": { type: T.IMAGE, children: string }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": { type: T.STACK_PANEL, children: 'agree_panel' | 'view_terms_button' | 'privacy_policy_button' }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": { type: T.PANEL, children: 'checkbox_control' }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": { type: T.TOGGLE, children: string }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": { type: T.BUTTON, children: string }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": { type: T.BUTTON, children: string }, + "button_text": { type: T.LABEL, children: string }, + "mcten_text_centering_panel": { type: T.PANEL, children: 'button_text' }, + "mcten_text_centering_panel/button_text": { type: T.LABEL, children: string }, + "view_terms_button": { type: T.BUTTON, children: string }, + "privacy_policy_button": { type: T.BUTTON, children: string }, + "buy_button_panel": { type: T.PANEL, children: 'buy_button' }, + "buy_button_panel/buy_button": { type: T.BUTTON, children: string }, + "tool_tip_icon_panel": { type: T.PANEL, children: 'issue_icon' }, + "tool_tip_icon_panel/issue_icon": { type: T.BUTTON, children: 'info_icon' | 'default' | 'hover' | 'pressed' }, + "tool_tip_icon_panel/issue_icon/info_icon": { type: T.IMAGE, children: string }, + "tool_tip_icon_panel/issue_icon/default": { type: T.PANEL, children: string }, + "tool_tip_icon_panel/issue_icon/hover": { type: T.IMAGE, children: string }, + "tool_tip_icon_panel/issue_icon/pressed": { type: T.IMAGE, children: string }, + "buy_button_content": { type: T.STACK_PANEL, children: 'button_chevron_panel' | 'button_text_centering_panel' }, + "buy_button_content/button_chevron_panel": { type: T.PANEL, children: 'buy_button_chevron' }, + "buy_button_content/button_chevron_panel/buy_button_chevron": { type: T.PANEL, children: string }, + "buy_button_content/button_text_centering_panel": { type: T.PANEL, children: string }, + "info_icon": { type: T.PANEL, children: 'panel_icon' }, + "info_icon/panel_icon": { type: T.IMAGE, children: string }, } 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": { type: T.PANEL, children: 'background' | 'icon' | 'text' }, + "csb_expiration_banner/background": { type: T.IMAGE, children: string }, + "csb_expiration_banner/icon": { type: T.IMAGE, children: string }, + "csb_expiration_banner/text": { type: T.LABEL, children: string }, + "csb_icon_large": { type: T.IMAGE, children: string }, + "csb_header": { type: T.STACK_PANEL, children: 'label_a_text_csb' | 'label_space_text_csb' | 'label_b_text_pass' }, + "csb_header/label_a_text_csb": { type: T.LABEL, children: string }, + "csb_header/label_space_text_csb": { type: T.LABEL, children: string }, + "csb_header/label_b_text_pass": { type: T.LABEL, children: string }, + "csb_header_two_lines": { type: T.STACK_PANEL, children: 'top_header' | 'panel_centre_second_line' }, + "csb_header_two_lines/top_header": { type: T.LABEL, children: string }, + "csb_header_two_lines/panel_centre_second_line": { type: T.PANEL, children: 'sub_header' }, + "csb_header_two_lines/panel_centre_second_line/sub_header": { type: T.LABEL, children: string }, + "csb_gold_button": { type: T.BUTTON, children: string }, + "csb_gold_text_button": { type: T.BUTTON, children: string }, } 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": { type: T.SCREEN, children: string }, + "screen_content": { type: T.PANEL, children: 'main_panel' }, + "screen_content/main_panel": { type: T.PANEL, children: string }, + "main_panel": { type: T.STACK_PANEL, children: 'text_panel_1' | 'art_panel' | 'padding' | 'text_panel_2' }, + "main_panel/text_panel_1": { type: T.PANEL, children: 'text' }, + "main_panel/text_panel_1/text": { type: T.LABEL, children: string }, + "main_panel/art_panel": { type: T.PANEL, children: 'art' }, + "main_panel/art_panel/art": { type: T.IMAGE, children: string }, + "main_panel/padding": { type: T.PANEL, children: string }, + "main_panel/text_panel_2": { type: T.PANEL, children: 'text' }, + "main_panel/text_panel_2/text": { type: T.LABEL, children: string }, + "back_button": { type: T.BUTTON, children: string }, } 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": { type: T.SCREEN, children: string }, + "purchase_warning_screen_content": { type: T.PANEL, children: 'main_panel' }, + "purchase_warning_screen_content/main_panel": { type: T.PANEL, children: string }, + "warning_modal_main_panel": { type: T.STACK_PANEL, children: 'text_panel_1' | 'padding_1' | 'art_panel' | 'padding_2' | 'text_panel_2' }, + "warning_modal_main_panel/text_panel_1": { type: T.PANEL, children: 'text' }, + "warning_modal_main_panel/text_panel_1/text": { type: T.LABEL, children: string }, + "warning_modal_main_panel/padding_1": { type: T.PANEL, children: string }, + "warning_modal_main_panel/art_panel": { type: T.PANEL, children: 'art' }, + "warning_modal_main_panel/art_panel/art": { type: T.IMAGE, children: string }, + "warning_modal_main_panel/padding_2": { type: T.PANEL, children: string }, + "warning_modal_main_panel/text_panel_2": { type: T.PANEL, children: 'text' }, + "warning_modal_main_panel/text_panel_2/text": { type: T.LABEL, children: string }, + "warning_modal_back_button": { type: T.BUTTON, children: string }, } 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": { type: T.PANEL, children: 'fill' | 'border' | 'panel_contents' }, + "csb_container/fill": { type: T.IMAGE, children: string }, + "csb_container/border": { type: T.IMAGE, children: string }, + "csb_container/panel_contents": { type: T.STACK_PANEL, children: 'content_container' | 'button_panel_spacer' | 'csb_buttons' }, + "csb_container/panel_contents/content_container": { type: T.STACK_PANEL, children: 'side_image_stack_left' | 'padding_02' | 'side_stack_right' }, + "csb_container/panel_contents/content_container/side_image_stack_left": { type: T.PANEL, children: 'csb_image' }, + "csb_container/panel_contents/content_container/side_image_stack_left/csb_image": { type: T.IMAGE, children: string }, + "csb_container/panel_contents/content_container/padding_02": { type: T.PANEL, children: string }, + "csb_container/panel_contents/content_container/side_stack_right": { type: T.STACK_PANEL, children: 'interior_content_stack' }, + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack": { type: T.STACK_PANEL, children: 'panel_label' | 'interior_top_padding_01' | 'ln_01_container' | 'ln_02_container' | 'ln_03_container' | 'interior_top_padding02' }, + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/panel_label": { type: T.LABEL, children: string }, + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/interior_top_padding_01": { type: T.PANEL, children: string }, + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_01_container": { type: T.STACK_PANEL, children: string }, + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_02_container": { type: T.STACK_PANEL, children: string }, + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_03_container": { type: T.STACK_PANEL, children: string }, + "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/interior_top_padding02": { type: T.PANEL, children: string }, + "csb_container/panel_contents/button_panel_spacer": { type: T.PANEL, children: string }, + "csb_container/panel_contents/csb_buttons": { type: T.STACK_PANEL, children: 'button_panel_padding' | 'padding_01' | 'csb_info_button' }, + "csb_container/panel_contents/csb_buttons/button_panel_padding": { type: T.PANEL, children: string }, + "csb_container/panel_contents/csb_buttons/padding_01": { type: T.PANEL, children: string }, + "csb_container/panel_contents/csb_buttons/csb_info_button": { type: T.BUTTON, children: string }, + "csb_marketplace_benefit": { type: T.STACK_PANEL, children: 'bullet_holder_01' | 'panel_details_ln1' }, + "csb_marketplace_benefit/bullet_holder_01": { type: T.STACK_PANEL, children: 'bullet_spacer' | 'bullet_01' }, + "csb_marketplace_benefit/bullet_holder_01/bullet_spacer": { type: T.PANEL, children: string }, + "csb_marketplace_benefit/bullet_holder_01/bullet_01": { type: T.LABEL, children: string }, + "csb_marketplace_benefit/panel_details_ln1": { type: T.LABEL, children: string }, + "csb_buy_container": { type: T.PANEL, children: 'csb_buy_button' }, + "csb_buy_container/csb_buy_button": { type: T.BUTTON, children: string }, + "csb_buy_button_text": { type: T.LABEL, children: string }, + "csb_cancel_button": { type: T.BUTTON, children: string }, } 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": { type: T.SCREEN, children: string }, + "csb_upsell_compare_dialog": { type: T.PANEL, children: 'csb_upsell_compare_main_screen' }, + "csb_upsell_compare_dialog/csb_upsell_compare_main_screen": { type: T.PANEL, children: string }, + "csb_upsell_popup_content": { type: T.PANEL, children: 'two_side_panels' }, + "csb_upsell_popup_content/two_side_panels": { type: T.STACK_PANEL, children: 'border_panel_left' | 'middle_spacer' | 'border_panel_right' }, + "csb_upsell_popup_content/two_side_panels/border_panel_left": { type: T.PANEL, children: 'border' | 'background_panel' | 'left_side_panel' | 'button_centering' }, + "csb_upsell_popup_content/two_side_panels/border_panel_left/border": { type: T.IMAGE, children: string }, + "csb_upsell_popup_content/two_side_panels/border_panel_left/background_panel": { type: T.IMAGE, children: string }, + "csb_upsell_popup_content/two_side_panels/border_panel_left/left_side_panel": { type: T.STACK_PANEL, children: string }, + "csb_upsell_popup_content/two_side_panels/border_panel_left/button_centering": { type: T.PANEL, children: 'learn_more_left' }, + "csb_upsell_popup_content/two_side_panels/border_panel_left/button_centering/learn_more_left": { type: T.BUTTON, children: string }, + "csb_upsell_popup_content/two_side_panels/middle_spacer": { type: T.PANEL, children: string }, + "csb_upsell_popup_content/two_side_panels/border_panel_right": { type: T.PANEL, children: 'border' | 'background_panel' | 'right_side_panel' | 'button_centering' }, + "csb_upsell_popup_content/two_side_panels/border_panel_right/border": { type: T.IMAGE, children: string }, + "csb_upsell_popup_content/two_side_panels/border_panel_right/background_panel": { type: T.IMAGE, children: string }, + "csb_upsell_popup_content/two_side_panels/border_panel_right/right_side_panel": { type: T.STACK_PANEL, children: string }, + "csb_upsell_popup_content/two_side_panels/border_panel_right/button_centering": { type: T.PANEL, children: 'learn_more_right' }, + "csb_upsell_popup_content/two_side_panels/border_panel_right/button_centering/learn_more_right": { type: T.BUTTON, children: string }, + "csb_upsell_left_side_panel": { type: T.STACK_PANEL, children: 'upper_half' | 'middle_spacer' | 'bottom_half' }, + "csb_upsell_left_side_panel/upper_half": { type: T.STACK_PANEL, children: 'header_panel' }, + "csb_upsell_left_side_panel/upper_half/header_panel": { type: T.STACK_PANEL, children: 'blank_space' | 'top_header' | 'price_amount' }, + "csb_upsell_left_side_panel/upper_half/header_panel/blank_space": { type: T.PANEL, children: string }, + "csb_upsell_left_side_panel/upper_half/header_panel/top_header": { type: T.STACK_PANEL, children: string }, + "csb_upsell_left_side_panel/upper_half/header_panel/price_amount": { type: T.PANEL, children: string }, + "csb_upsell_left_side_panel/middle_spacer": { type: T.PANEL, children: string }, + "csb_upsell_left_side_panel/bottom_half": { type: T.STACK_PANEL, children: 'padding_b' | 'bullet_one' | 'padding_0' | 'bullet_two' | 'padding_1' | 'bullet_three' }, + "csb_upsell_left_side_panel/bottom_half/padding_b": { type: T.PANEL, children: string }, + "csb_upsell_left_side_panel/bottom_half/bullet_one": { type: T.STACK_PANEL, children: string }, + "csb_upsell_left_side_panel/bottom_half/padding_0": { type: T.PANEL, children: string }, + "csb_upsell_left_side_panel/bottom_half/bullet_two": { type: T.STACK_PANEL, children: string }, + "csb_upsell_left_side_panel/bottom_half/padding_1": { type: T.PANEL, children: string }, + "csb_upsell_left_side_panel/bottom_half/bullet_three": { type: T.STACK_PANEL, children: string }, + "csb_upsell_right_side_panel": { type: T.STACK_PANEL, children: 'upper_half' | 'middle_spacer' | 'bottom_half' }, + "csb_upsell_right_side_panel/upper_half": { type: T.STACK_PANEL, children: 'marketing_banner' | 'header_panel' }, + "csb_upsell_right_side_panel/upper_half/marketing_banner": { type: T.PANEL, children: 'background_color' | 'marketing_banner_label' }, + "csb_upsell_right_side_panel/upper_half/marketing_banner/background_color": { type: T.IMAGE, children: string }, + "csb_upsell_right_side_panel/upper_half/marketing_banner/marketing_banner_label": { type: T.LABEL, children: string }, + "csb_upsell_right_side_panel/upper_half/header_panel": { type: T.STACK_PANEL, children: 'top_header' | 'price_amount' }, + "csb_upsell_right_side_panel/upper_half/header_panel/top_header": { type: T.LABEL, children: string }, + "csb_upsell_right_side_panel/upper_half/header_panel/price_amount": { type: T.PANEL, children: string }, + "csb_upsell_right_side_panel/middle_spacer": { type: T.PANEL, children: string }, + "csb_upsell_right_side_panel/bottom_half": { type: T.STACK_PANEL, children: 'padding_b' | 'bullet_one' | 'padding_1' | 'bullet_two' | 'padding_0' | 'bullet_three' }, + "csb_upsell_right_side_panel/bottom_half/padding_b": { type: T.PANEL, children: string }, + "csb_upsell_right_side_panel/bottom_half/bullet_one": { type: T.STACK_PANEL, children: string }, + "csb_upsell_right_side_panel/bottom_half/padding_1": { type: T.PANEL, children: string }, + "csb_upsell_right_side_panel/bottom_half/bullet_two": { type: T.STACK_PANEL, children: string }, + "csb_upsell_right_side_panel/bottom_half/padding_0": { type: T.PANEL, children: string }, + "csb_upsell_right_side_panel/bottom_half/bullet_three": { type: T.STACK_PANEL, children: string }, + "csb_big_padding": { type: T.PANEL, children: string }, + "csb_bullet_padding": { type: T.PANEL, children: 'desktop' | 'pocket' }, + "csb_bullet_padding/desktop": { type: T.PANEL, children: string }, + "csb_bullet_padding/pocket": { type: T.PANEL, children: string }, + "csb_bullet_desktop_padding": { type: T.PANEL, children: string }, + "csb_bullet_pocket_padding": { type: T.PANEL, children: string }, + "csb_bullet": { type: T.STACK_PANEL, children: 'padding_icon_left' | 'padding_icon_vertical' | 'padding_icon_right' }, + "csb_bullet/padding_icon_left": { type: T.PANEL, children: string }, + "csb_bullet/padding_icon_vertical": { type: T.STACK_PANEL, children: 'padding_vertical' | 'label_icon' }, + "csb_bullet/padding_icon_vertical/padding_vertical": { type: T.PANEL, children: string }, + "csb_bullet/padding_icon_vertical/label_icon": { type: T.IMAGE, children: string }, + "csb_bullet/padding_icon_right": { type: T.PANEL, children: string }, + "csb_bullet_point": { type: T.STACK_PANEL, children: 'bullet_icon' | 'label_text' }, + "csb_bullet_point/bullet_icon": { type: T.STACK_PANEL, children: string }, + "csb_bullet_point/label_text": { type: T.LABEL, children: string }, + "csb_bullet_split_point": { type: T.STACK_PANEL, children: 'bullet_icon' | 'label_text' | 'space' | 'csb_name' }, + "csb_bullet_split_point/bullet_icon": { type: T.STACK_PANEL, children: string }, + "csb_bullet_split_point/label_text": { type: T.LABEL, children: string }, + "csb_bullet_split_point/space": { type: T.PANEL, children: 'label_text_csb' }, + "csb_bullet_split_point/space/label_text_csb": { type: T.LABEL, children: string }, + "csb_bullet_split_point/csb_name": { type: T.PANEL, children: 'csb_name_string' }, + "csb_bullet_split_point/csb_name/csb_name_string": { type: T.STACK_PANEL, children: string }, + "csb_price": { type: T.PANEL, children: 'price_details' }, + "csb_price/price_details": { type: T.STACK_PANEL, children: string }, + "csb_price_details": { type: T.STACK_PANEL, children: 'price_panel_1' | 'price_panel_first_period' }, + "csb_price_details/price_panel_1": { type: T.PANEL, children: 'amount' }, + "csb_price_details/price_panel_1/amount": { type: T.LABEL, children: string }, + "csb_price_details/price_panel_first_period": { type: T.PANEL, children: 'second_line' }, + "csb_price_details/price_panel_first_period/second_line": { type: T.LABEL, children: string }, + "csb_learn_more": { type: T.PANEL, children: 'learn_more' }, + "csb_learn_more/learn_more": { type: T.LABEL, children: string }, } 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": { type: T.SCREEN, children: string }, + "view_packs_screen_content": { type: T.PANEL, children: 'main_panel' }, + "view_packs_screen_content/main_panel": { type: T.STACK_PANEL, children: string }, + "csb_view_packs_screen_main_panel": { type: T.INPUT_PANEL, children: string }, + "main_panel": { type: T.INPUT_PANEL, children: 'offers' | 'progress_loading' }, + "main_panel/offers": { type: T.PANEL, children: string }, + "main_panel/progress_loading": { type: T.PANEL, children: string }, + "scrolling_content_stack": { type: T.STACK_PANEL, children: 'padding_0' | 'store_factory' }, + "scrolling_content_stack/padding_0": { type: T.PANEL, children: string }, + "scrolling_content_stack/store_factory": { type: T.STACK_PANEL, children: string }, } 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": { type: T.SCREEN, children: string }, + "welcome_screen_content": { type: T.PANEL, children: 'main_panel' }, + "welcome_screen_content/main_panel": { type: T.PANEL, children: string }, + "welcome_modal_main_panel": { type: T.STACK_PANEL, children: 'art_panel' | 'padding' | 'text_panel' }, + "welcome_modal_main_panel/art_panel": { type: T.PANEL, children: 'art' }, + "welcome_modal_main_panel/art_panel/art": { type: T.IMAGE, children: string }, + "welcome_modal_main_panel/padding": { type: T.PANEL, children: string }, + "welcome_modal_main_panel/text_panel": { type: T.PANEL, children: 'text' }, + "welcome_modal_main_panel/text_panel/text": { type: T.LABEL, children: string }, + "welcome_modal_continue_button": { type: T.BUTTON, children: string }, } 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": { type: T.BUTTON, children: string }, + "faq_image_section": { type: T.PANEL, children: 'faq_image' }, + "faq_image_section/faq_image": { type: T.IMAGE, children: string }, + "faq_text_section_body": { type: T.STACK_PANEL, children: string }, + "faq_text_question": { type: T.LABEL, children: string }, + "faq_text_section": { type: T.STACK_PANEL, children: 'faq_text_question' | 'faq_text_answer' }, + "faq_text_section/faq_text_question": { type: T.LABEL, children: string }, + "faq_text_section/faq_text_answer": { type: T.LABEL, children: string }, + "faq_price_bound_text_section": { type: T.STACK_PANEL, children: 'faq_text_question' | 'faq_text_answer' }, + "faq_price_bound_text_section/faq_text_question": { type: T.LABEL, children: string }, + "faq_price_bound_text_section/faq_text_answer": { type: T.LABEL, children: string }, + "faq_question_body": { type: T.STACK_PANEL, children: '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' }, + "faq_question_body/0": { type: T.UNKNOWN, children: string }, + "faq_question_body_stack": { type: T.STACK_PANEL, children: string }, + "faq_question_body_horz_padding": { type: T.PANEL, children: string }, + "image_left_faq_question_body": { type: T.BUTTON, children: string }, + "image_right_faq_question_body": { type: T.BUTTON, children: string }, + "image_left_faq_price_bound": { type: T.BUTTON, children: string }, + "image_right_faq_price_bound": { type: T.BUTTON, children: string }, + "faq_section_header_space": { type: T.PANEL, children: string }, + "faq_section_divider": { type: T.STACK_PANEL, children: string }, + "faq_content_section": { type: T.STACK_PANEL, children: 'faq_section_vertical_padding_1' | 'faq_header' | 'faq_section_vertical_padding_2' | 'faq_question_1' | 'faq_question_1_divider' | 'faq_question_2' | 'faq_question_2_divider' | 'faq_question_3' | 'faq_question_3_divider' | 'faq_question_4' | 'faq_question_4_divider' | 'faq_question_5' | 'faq_question_5_divider' | 'faq_question_6' | 'faq_question_6_divider' | 'faq_question_7' | 'faq_question_7_divider' | 'faq_question_8' | 'faq_question_8_divider' | 'faq_question_9' | 'faq_question_9_divider' | 'faq_question_10' | 'faq_question_10_divider' | 'faq_button' | 'faq_bottom_padding' }, + "faq_content_section/faq_section_vertical_padding_1": { type: T.PANEL, children: string }, + "faq_content_section/faq_header": { type: T.LABEL, children: string }, + "faq_content_section/faq_section_vertical_padding_2": { type: T.PANEL, children: string }, + "faq_content_section/faq_question_1": { type: T.BUTTON, children: string }, + "faq_content_section/faq_question_1_divider": { type: T.STACK_PANEL, children: string }, + "faq_content_section/faq_question_2": { type: T.BUTTON, children: string }, + "faq_content_section/faq_question_2_divider": { type: T.STACK_PANEL, children: string }, + "faq_content_section/faq_question_3": { type: T.BUTTON, children: string }, + "faq_content_section/faq_question_3_divider": { type: T.STACK_PANEL, children: string }, + "faq_content_section/faq_question_4": { type: T.BUTTON, children: string }, + "faq_content_section/faq_question_4_divider": { type: T.STACK_PANEL, children: string }, + "faq_content_section/faq_question_5": { type: T.BUTTON, children: string }, + "faq_content_section/faq_question_5_divider": { type: T.STACK_PANEL, children: string }, + "faq_content_section/faq_question_6": { type: T.BUTTON, children: string }, + "faq_content_section/faq_question_6_divider": { type: T.STACK_PANEL, children: string }, + "faq_content_section/faq_question_7": { type: T.BUTTON, children: string }, + "faq_content_section/faq_question_7_divider": { type: T.STACK_PANEL, children: string }, + "faq_content_section/faq_question_8": { type: T.BUTTON, children: string }, + "faq_content_section/faq_question_8_divider": { type: T.STACK_PANEL, children: string }, + "faq_content_section/faq_question_9": { type: T.BUTTON, children: string }, + "faq_content_section/faq_question_9_divider": { type: T.STACK_PANEL, children: string }, + "faq_content_section/faq_question_10": { type: T.BUTTON, children: string }, + "faq_content_section/faq_question_10_divider": { type: T.STACK_PANEL, children: string }, + "faq_content_section/faq_button": { type: T.BUTTON, children: string }, + "faq_content_section/faq_bottom_padding": { type: T.PANEL, children: 'bottom_left_particles' }, + "faq_content_section/faq_bottom_padding/bottom_left_particles": { type: T.IMAGE, children: string }, } 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": { type: T.STACK_PANEL, children: 'landing_section_vertical_padding' | 'landing_content' }, + "landing_content_section/landing_section_vertical_padding": { type: T.PANEL, children: string }, + "landing_content_section/landing_content": { type: T.STACK_PANEL, children: 'title_stack' | 'vertical_small_spacer_0' | 'vertical_small_spacer_1' | 'info_stack' | 'vertical_small_spacer_2' }, + "landing_content_section/landing_content/title_stack": { type: T.STACK_PANEL, children: string }, + "landing_content_section/landing_content/vertical_small_spacer_0": { type: T.PANEL, children: string }, + "landing_content_section/landing_content/vertical_small_spacer_1": { type: T.PANEL, children: string }, + "landing_content_section/landing_content/info_stack": { type: T.STACK_PANEL, children: string }, + "landing_content_section/landing_content/vertical_small_spacer_2": { type: T.PANEL, children: string }, + "horizontal_small_spacer": { type: T.PANEL, children: string }, + "vertical_small_spacer": { type: T.PANEL, children: string }, + "vertical_large_spacer": { type: T.PANEL, children: string }, + "title_stack": { type: T.STACK_PANEL, children: 'title_image_panel' | 'title_space' | 'action_button' | 'sign_in_button' | 'vertical_space2' | 'gradient_panel' | 'gradient_panel2' }, + "title_stack/title_image_panel": { type: T.STACK_PANEL, children: string }, + "title_stack/title_space": { type: T.PANEL, children: string }, + "title_stack/action_button": { type: T.PANEL, children: string }, + "title_stack/sign_in_button": { type: T.PANEL, children: string }, + "title_stack/vertical_space2": { type: T.PANEL, children: string }, + "title_stack/gradient_panel": { type: T.PANEL, children: 'label_with_gradient' | 'tts_hover' }, + "title_stack/gradient_panel/label_with_gradient": { type: T.PANEL, children: string }, + "title_stack/gradient_panel/tts_hover": { type: T.BUTTON, children: string }, + "title_stack/gradient_panel2": { type: T.PANEL, children: 'label_with_gradient2' | 'tts_hover' }, + "title_stack/gradient_panel2/label_with_gradient2": { type: T.PANEL, children: string }, + "title_stack/gradient_panel2/tts_hover": { type: T.BUTTON, children: string }, + "subscription_includes_text": { type: T.LABEL, children: string }, + "free_trial_text": { type: T.LABEL, children: string }, + "title_space": { type: T.PANEL, children: string }, + "title_image_panel": { type: T.STACK_PANEL, children: 'vertical_small_spacer_1' | 'title_image_container' | 'vertical_small_spacer_2' }, + "title_image_panel/vertical_small_spacer_1": { type: T.PANEL, children: string }, + "title_image_panel/title_image_container": { type: T.PANEL, children: 'title_image' }, + "title_image_panel/title_image_container/title_image": { type: T.IMAGE, children: string }, + "title_image_panel/vertical_small_spacer_2": { type: T.PANEL, children: string }, + "info_stack": { type: T.STACK_PANEL, children: 'info_section_image' | 'info_description_stack_retail' }, + "info_stack/info_section_image": { type: T.IMAGE, children: string }, + "info_stack/info_description_stack_retail": { type: T.STACK_PANEL, children: string }, + "info_description_stack_retail": { type: T.STACK_PANEL, children: 'info_section_stack_1' }, + "info_description_stack_retail/info_section_stack_1": { type: T.STACK_PANEL, children: 'horizontal_small_spacer' | 'info_section_text_1' }, + "info_description_stack_retail/info_section_stack_1/horizontal_small_spacer": { type: T.PANEL, children: string }, + "info_description_stack_retail/info_section_stack_1/info_section_text_1": { type: T.STACK_PANEL, children: string }, + "info_section_stack": { type: T.STACK_PANEL, children: string }, + "info_section_image_with_border": { type: T.IMAGE, children: string }, + "info_section_text_1": { type: T.STACK_PANEL, children: 'info_section_text' | 'vertical_small_spacer_0' | 'info_text_bullet_1' | 'vertical_small_spacer_1' | 'info_text_bullet_2' | 'vertical_small_spacer_2' | 'info_text_bullet_3' | 'vertical_small_spacer_3' | 'info_text_bullet_4' | 'vertical_small_spacer_4' | 'info_text_bullet_5' | 'vertical_small_spacer_5' | 'info_text_bullet_6' | 'vertical_large_spacer_6' }, + "info_section_text_1/info_section_text": { type: T.PANEL, children: string }, + "info_section_text_1/vertical_small_spacer_0": { type: T.PANEL, children: string }, + "info_section_text_1/info_text_bullet_1": { type: T.STACK_PANEL, children: string }, + "info_section_text_1/vertical_small_spacer_1": { type: T.PANEL, children: string }, + "info_section_text_1/info_text_bullet_2": { type: T.STACK_PANEL, children: string }, + "info_section_text_1/vertical_small_spacer_2": { type: T.PANEL, children: string }, + "info_section_text_1/info_text_bullet_3": { type: T.STACK_PANEL, children: string }, + "info_section_text_1/vertical_small_spacer_3": { type: T.PANEL, children: string }, + "info_section_text_1/info_text_bullet_4": { type: T.STACK_PANEL, children: string }, + "info_section_text_1/vertical_small_spacer_4": { type: T.PANEL, children: string }, + "info_section_text_1/info_text_bullet_5": { type: T.STACK_PANEL, children: string }, + "info_section_text_1/vertical_small_spacer_5": { type: T.PANEL, children: string }, + "info_section_text_1/info_text_bullet_6": { type: T.STACK_PANEL, children: string }, + "info_section_text_1/vertical_large_spacer_6": { type: T.PANEL, children: string }, + "info_section_text_2": { type: T.STACK_PANEL, children: 'info_text_bullet_1' | 'vertical_small_spacer_0' | 'info_text_bullet_2' | 'vertical_small_spacer_1' | 'info_text_bullet_4' | 'vertical_small_spacer_3' | 'info_text_bullet_5' }, + "info_section_text_2/info_text_bullet_1": { type: T.STACK_PANEL, children: string }, + "info_section_text_2/vertical_small_spacer_0": { type: T.PANEL, children: string }, + "info_section_text_2/info_text_bullet_2": { type: T.STACK_PANEL, children: string }, + "info_section_text_2/vertical_small_spacer_1": { type: T.PANEL, children: string }, + "info_section_text_2/info_text_bullet_4": { type: T.STACK_PANEL, children: string }, + "info_section_text_2/vertical_small_spacer_3": { type: T.PANEL, children: string }, + "info_section_text_2/info_text_bullet_5": { type: T.STACK_PANEL, children: string }, + "info_section_text": { type: T.STACK_PANEL, children: string }, + "info_text_bullet": { type: T.STACK_PANEL, children: 'info_text_bullet_bullet' | 'bullet_spacer' | 'info_text_bullet_body' | 'bullet_spacer_end' }, + "info_text_bullet/info_text_bullet_bullet": { type: T.LABEL, children: string }, + "info_text_bullet/bullet_spacer": { type: T.PANEL, children: string }, + "info_text_bullet/info_text_bullet_body": { type: T.PANEL, children: string }, + "info_text_bullet/bullet_spacer_end": { type: T.PANEL, children: string }, + "info_text_unbulletted": { type: T.PANEL, children: 'info_text_bullet_body' }, + "info_text_unbulletted/info_text_bullet_body": { type: T.PANEL, children: string }, + "info_text_body": { type: T.PANEL, children: 'text_body' | 'tts_border' }, + "info_text_body/text_body": { type: T.LABEL, children: string }, + "info_text_body/tts_border": { type: T.BUTTON, children: string }, } 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": { type: T.IMAGE, children: string }, + "templates_scroll_content": { type: T.INPUT_PANEL, children: 'scrolling_panel' }, + "templates_scroll_content/scrolling_panel": { type: T.PANEL, children: string }, + "templates_scroll_panel": { type: T.PANEL, children: 'templates_stack_panel' }, + "templates_scroll_panel/templates_stack_panel": { type: T.STACK_PANEL, children: 'templates_item_grid' }, + "templates_scroll_panel/templates_stack_panel/templates_item_grid": { type: T.GRID, children: string }, + "templates_item_grid": { type: T.GRID, children: string }, + "templates_item": { type: T.STACK_PANEL, children: 'template_item_button' }, + "templates_item/template_item_button": { type: T.BUTTON, children: string }, + "template_item_button": { type: T.BUTTON, children: string }, + "template_content_panel": { type: T.STACK_PANEL, children: 'template_screenshot' | 'template_text_panel' | 'lock_panel' }, + "template_content_panel/template_screenshot": { type: T.IMAGE, children: string }, + "template_content_panel/template_text_panel": { type: T.PANEL, children: string }, + "template_content_panel/lock_panel": { type: T.PANEL, children: 'lock_icon' }, + "template_content_panel/lock_panel/lock_icon": { type: T.IMAGE, children: string }, + "template_screenshot": { type: T.IMAGE, children: 'picture' }, + "template_screenshot/picture": { type: T.IMAGE, children: string }, + "template_text_panel": { type: T.PANEL, children: 'text_indent' }, + "template_text_panel/text_indent": { type: T.PANEL, children: 'top_side' | 'bottom_side' }, + "template_text_panel/text_indent/top_side": { type: T.STACK_PANEL, children: 'template_name' | 'download_text_label' }, + "template_text_panel/text_indent/top_side/template_name": { type: T.LABEL, children: string }, + "template_text_panel/text_indent/top_side/download_text_label": { type: T.LABEL, children: string }, + "template_text_panel/text_indent/bottom_side": { type: T.STACK_PANEL, children: 'template_description' | 'template_version' }, + "template_text_panel/text_indent/bottom_side/template_description": { type: T.LABEL, children: string }, + "template_text_panel/text_indent/bottom_side/template_version": { type: T.LABEL, children: string }, + "template_name": { type: T.LABEL, children: string }, + "template_download_text": { type: T.LABEL, children: string }, + "template_list_text": { type: T.LABEL, children: string }, + "template_description": { type: T.LABEL, children: string }, + "template_version": { type: T.LABEL, children: string }, + "main_panel": { type: T.PANEL, children: 'templates_scroll_content' }, + "main_panel/templates_scroll_content": { type: T.INPUT_PANEL, children: string }, + "custom_templates_screen": { type: T.SCREEN, children: string }, + "custom_templates_screen_content": { type: T.PANEL, children: 'dialog' }, + "custom_templates_screen_content/dialog": { type: T.PANEL, children: string }, + "background": { type: T.IMAGE, children: string }, } 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": { type: T.IMAGE, children: string }, + "prompt_text": { type: T.PANEL, children: 'message' }, + "prompt_text/message": { type: T.LABEL, children: string }, + "converted_world_preview_name": { type: T.LABEL, children: string }, + "converted_world_preview_date": { type: T.LABEL, children: string }, + "converted_world_preview_game_mode": { type: T.LABEL, children: string }, + "converted_world_preview_filesize": { type: T.LABEL, children: string }, + "converted_world_preview_text_panel": { type: T.PANEL, children: 'text_indent' }, + "converted_world_preview_text_panel/text_indent": { type: T.PANEL, children: 'top_side' | 'bottom_side' }, + "converted_world_preview_text_panel/text_indent/top_side": { type: T.STACK_PANEL, children: 'converted_world_name' | 'converted_world_date' }, + "converted_world_preview_text_panel/text_indent/top_side/converted_world_name": { type: T.LABEL, children: string }, + "converted_world_preview_text_panel/text_indent/top_side/converted_world_date": { type: T.LABEL, children: string }, + "converted_world_preview_text_panel/text_indent/bottom_side": { type: T.STACK_PANEL, children: 'converted_world_game_mode' | 'converted_world_filesize' }, + "converted_world_preview_text_panel/text_indent/bottom_side/converted_world_game_mode": { type: T.LABEL, children: string }, + "converted_world_preview_text_panel/text_indent/bottom_side/converted_world_filesize": { type: T.LABEL, children: string }, + "converted_world_preview_panel": { type: T.IMAGE, children: 'world_preview_content' }, + "converted_world_preview_panel/world_preview_content": { type: T.STACK_PANEL, children: 'converted_world_screenshot' | 'converted_world_text_panel' }, + "converted_world_preview_panel/world_preview_content/converted_world_screenshot": { type: T.IMAGE, children: 'image_content' }, + "converted_world_preview_panel/world_preview_content/converted_world_screenshot/image_content": { type: T.PANEL, children: 'picture' }, + "converted_world_preview_panel/world_preview_content/converted_world_screenshot/image_content/picture": { type: T.IMAGE, children: string }, + "converted_world_preview_panel/world_preview_content/converted_world_text_panel": { type: T.PANEL, children: string }, + "main_panel": { type: T.STACK_PANEL, children: 'padding_0' | 'prompt_1' | 'world_entry_container' | 'buttons_panel_sizer' }, + "main_panel/padding_0": { type: T.PANEL, children: string }, + "main_panel/prompt_1": { type: T.PANEL, children: string }, + "main_panel/world_entry_container": { type: T.PANEL, children: 'world_entry_sizer' }, + "main_panel/world_entry_container/world_entry_sizer": { type: T.PANEL, children: 'world_entry' }, + "main_panel/world_entry_container/world_entry_sizer/world_entry": { type: T.IMAGE, children: string }, + "main_panel/buttons_panel_sizer": { type: T.PANEL, children: 'buttons_panel' }, + "main_panel/buttons_panel_sizer/buttons_panel": { type: T.STACK_PANEL, children: 'load_game_button' | 'padding' | 'return_button' }, + "main_panel/buttons_panel_sizer/buttons_panel/load_game_button": { type: T.BUTTON, children: string }, + "main_panel/buttons_panel_sizer/buttons_panel/padding": { type: T.PANEL, children: string }, + "main_panel/buttons_panel_sizer/buttons_panel/return_button": { type: T.BUTTON, children: string }, + "world_conversion_complete_screen_content": { type: T.PANEL, children: 'dialog' }, + "world_conversion_complete_screen_content/dialog": { type: T.PANEL, children: string }, + "world_conversion_complete_screen": { type: T.SCREEN, children: string }, } 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": { type: T.PANEL, children: string }, + "padding_vertical": { type: T.PANEL, children: string }, + "label_panel": { type: T.PANEL, children: 'label_text' }, + "label_panel/label_text": { type: T.LABEL, children: string }, + "text_panel": { type: T.STACK_PANEL, children: 'padding_00' | 'tab_content_description_panel' | 'padding_01' }, + "text_panel/padding_00": { type: T.PANEL, children: string }, + "text_panel/tab_content_description_panel": { type: T.PANEL, children: string }, + "text_panel/padding_01": { type: T.PANEL, children: string }, + "dialog_image": { type: T.IMAGE, children: string }, + "image_panel": { type: T.PANEL, children: 'dialog_image_with_border' | 'focus_image' }, + "image_panel/dialog_image_with_border": { type: T.IMAGE, children: string }, + "image_panel/focus_image": { type: T.UNKNOWN, children: string }, + "top_tab": { type: T.PANEL, children: string }, + "common_tab_navigation_panel_layout": { type: T.STACK_PANEL, children: string }, + "tabbed_tab_navigation_panel_layout": { type: T.STACK_PANEL, children: 'nav_padding_01' | 'gamepad_helper_with_offset_left_bumper' | 'nav_padding_02' | 'welcome_navigation_tab' | 'nav_padding_03' | 'marketplace_navigation_tab' | 'nav_padding_04' | 'cross_platform_navigation_tab' | 'nav_padding_05' | 'realms_navigation_tab' | 'nav_padding_06' | 'villagers_navigation_tab' | 'nav_padding_07' | 'gamepad_helper_with_offset_right_bumper' | 'nav_padding_08' }, + "tabbed_tab_navigation_panel_layout/nav_padding_01": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_left_bumper": { type: T.PANEL, children: 'gamepad_helper_left_bumper' }, + "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_left_bumper/gamepad_helper_left_bumper": { type: T.STACK_PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/nav_padding_02": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/welcome_navigation_tab": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/nav_padding_03": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/marketplace_navigation_tab": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/nav_padding_04": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/cross_platform_navigation_tab": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/nav_padding_05": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/realms_navigation_tab": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/nav_padding_06": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/villagers_navigation_tab": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/nav_padding_07": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_right_bumper": { type: T.PANEL, children: 'gamepad_helper_right_bumper' }, + "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_right_bumper/gamepad_helper_right_bumper": { type: T.STACK_PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/nav_padding_08": { type: T.PANEL, children: string }, + "tab_header_image_panel": { type: T.PANEL, children: 'welcome_tab_content' | 'marketplace_tab_content' | 'cross_platform_tab_content' | 'realms_tab_content' | 'villager_tab_content' }, + "tab_header_image_panel/welcome_tab_content": { type: T.PANEL, children: string }, + "tab_header_image_panel/marketplace_tab_content": { type: T.PANEL, children: string }, + "tab_header_image_panel/cross_platform_tab_content": { type: T.PANEL, children: string }, + "tab_header_image_panel/realms_tab_content": { type: T.PANEL, children: string }, + "tab_header_image_panel/villager_tab_content": { type: T.PANEL, children: string }, + "tabbed_tab_content_panel_layout": { type: T.PANEL, children: 'welcome_tab_content' | 'marketplace_tab_content' | 'cross_platform_tab_content' | 'realms_tab_content' | 'villager_tab_content' }, + "tabbed_tab_content_panel_layout/welcome_tab_content": { type: T.PANEL, children: string }, + "tabbed_tab_content_panel_layout/marketplace_tab_content": { type: T.PANEL, children: string }, + "tabbed_tab_content_panel_layout/cross_platform_tab_content": { type: T.PANEL, children: string }, + "tabbed_tab_content_panel_layout/realms_tab_content": { type: T.PANEL, children: string }, + "tabbed_tab_content_panel_layout/villager_tab_content": { type: T.PANEL, children: string }, + "common_tab_header_image_panel": { type: T.PANEL, children: 'header_image' }, + "common_tab_header_image_panel/header_image": { type: T.IMAGE, children: string }, + "common_tab_content_panel": { type: T.PANEL, children: 'content' }, + "common_tab_content_panel/content": { type: T.UNKNOWN, children: string }, + "welcome_tab_header_image_panel": { type: T.PANEL, children: string }, + "welcome_tab_content_panel": { type: T.PANEL, children: string }, + "marketplace_tab_header_image_panel": { type: T.PANEL, children: string }, + "marketplace_tab_content_panel": { type: T.PANEL, children: string }, + "cross_platform_tab_header_image_panel": { type: T.PANEL, children: string }, + "cross_platform_tab_content_panel": { type: T.PANEL, children: string }, + "realms_tab_header_image_panel": { type: T.PANEL, children: string }, + "realms_tab_content_panel": { type: T.PANEL, children: string }, + "villager_tab_header_image_panel": { type: T.PANEL, children: string }, + "villager_tab_content_panel": { type: T.PANEL, children: string }, + "tab_panel": { type: T.STACK_PANEL, children: 'tab_header_image' | 'padding_00' | 'tab_navigation_panel' | 'tab_content_panel' | 'padding_4' | 'continue_button_panel' }, + "tab_panel/tab_header_image": { type: T.PANEL, children: string }, + "tab_panel/padding_00": { type: T.PANEL, children: string }, + "tab_panel/tab_navigation_panel": { type: T.STACK_PANEL, children: string }, + "tab_panel/tab_content_panel": { type: T.PANEL, children: string }, + "tab_panel/padding_4": { type: T.PANEL, children: string }, + "tab_panel/continue_button_panel": { type: T.PANEL, children: 'continue_button' }, + "tab_panel/continue_button_panel/continue_button": { type: T.BUTTON, children: string }, + "day_one_experience_intro_screen": { type: T.SCREEN, children: string }, + "day_one_experience_intro_screen_content": { type: T.PANEL, children: 'welcome_dialog' }, + "day_one_experience_intro_screen_content/welcome_dialog": { type: T.PANEL, children: string }, } 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": { type: T.IMAGE, children: string }, + "tip_text": { type: T.LABEL, children: string }, + "tip_arrow_base": { type: T.IMAGE, children: string }, + "tip_arrow_left": { type: T.IMAGE, children: string }, + "tip_arrow_right": { type: T.IMAGE, children: string }, + "import_time": { type: T.CUSTOM, children: string }, + "skins_tip_image": { type: T.IMAGE, children: 'arrows' }, + "skins_tip_image/arrows": { type: T.STACK_PANEL, children: 'right_arrow' | 'padding' | 'left_arrow' }, + "skins_tip_image/arrows/right_arrow": { type: T.IMAGE, children: string }, + "skins_tip_image/arrows/padding": { type: T.PANEL, children: string }, + "skins_tip_image/arrows/left_arrow": { type: T.IMAGE, children: string }, + "skins_tip_top_text": { type: T.LABEL, children: string }, + "skins_tip_panel": { type: T.STACK_PANEL, children: 'top_text_sizer' | 'image_sizer' | 'bottom_text_sizer' }, + "skins_tip_panel/top_text_sizer": { type: T.PANEL, children: 'settings_and_skin_text' | 'settings_text' }, + "skins_tip_panel/top_text_sizer/settings_and_skin_text": { type: T.LABEL, children: string }, + "skins_tip_panel/top_text_sizer/settings_text": { type: T.LABEL, children: string }, + "skins_tip_panel/image_sizer": { type: T.PANEL, children: 'image_section' }, + "skins_tip_panel/image_sizer/image_section": { type: T.PANEL, children: string }, + "skins_tip_panel/bottom_text_sizer": { type: T.PANEL, children: 'bottom_text' }, + "skins_tip_panel/bottom_text_sizer/bottom_text": { type: T.LABEL, children: string }, + "skin_viewer_panel_text": { type: T.LABEL, children: string }, + "skin_viewer_panel": { type: T.PANEL, children: 'paper_doll_container' | 'legacy_skin_loading_panel' | 'bottom_skin_text' }, + "skin_viewer_panel/paper_doll_container": { type: T.PANEL, children: 'paper_doll' }, + "skin_viewer_panel/paper_doll_container/paper_doll": { type: T.CUSTOM, children: string }, + "skin_viewer_panel/legacy_skin_loading_panel": { type: T.PANEL, children: string }, + "skin_viewer_panel/bottom_skin_text": { type: T.PANEL, children: 'current_skin_text' | 'default_skin_text' }, + "skin_viewer_panel/bottom_skin_text/current_skin_text": { type: T.LABEL, children: string }, + "skin_viewer_panel/bottom_skin_text/default_skin_text": { type: T.LABEL, children: string }, + "skin_tip_screen": { type: T.PANEL, children: 'primary_content' | 'no_network_message' }, + "skin_tip_screen/primary_content": { type: T.STACK_PANEL, children: 'skin_viewer_panel' | 'padding' | 'skins_tip_panel_container' }, + "skin_tip_screen/primary_content/skin_viewer_panel": { type: T.PANEL, children: 'skin_viewer' }, + "skin_tip_screen/primary_content/skin_viewer_panel/skin_viewer": { type: T.PANEL, children: string }, + "skin_tip_screen/primary_content/padding": { type: T.PANEL, children: string }, + "skin_tip_screen/primary_content/skins_tip_panel_container": { type: T.PANEL, children: 'background' | 'skins_tip_panel' }, + "skin_tip_screen/primary_content/skins_tip_panel_container/background": { type: T.PANEL, children: string }, + "skin_tip_screen/primary_content/skins_tip_panel_container/skins_tip_panel": { type: T.STACK_PANEL, children: string }, + "skin_tip_screen/no_network_message": { type: T.CUSTOM, children: string }, + "legacy_world_item": { type: T.STACK_PANEL, children: 'header_button_panel' }, + "legacy_world_item/header_button_panel": { type: T.PANEL, children: string }, + "legacy_world_item_grid": { type: T.GRID, children: string }, + "world_picker_scrolling_content": { type: T.STACK_PANEL, children: 'padding_0' | 'skip_button' | 'padding_1' | 'loading_legacy_worlds_panel' | 'padding_2' | 'world_item_grid' }, + "world_picker_scrolling_content/padding_0": { type: T.PANEL, children: string }, + "world_picker_scrolling_content/skip_button": { type: T.BUTTON, children: string }, + "world_picker_scrolling_content/padding_1": { type: T.PANEL, children: string }, + "world_picker_scrolling_content/loading_legacy_worlds_panel": { type: T.IMAGE, children: 'loading_legacy_worlds_label' | 'padding' | 'progress_loading_bars' }, + "world_picker_scrolling_content/loading_legacy_worlds_panel/loading_legacy_worlds_label": { type: T.LABEL, children: string }, + "world_picker_scrolling_content/loading_legacy_worlds_panel/padding": { type: T.PANEL, children: string }, + "world_picker_scrolling_content/loading_legacy_worlds_panel/progress_loading_bars": { type: T.IMAGE, children: string }, + "world_picker_scrolling_content/padding_2": { type: T.PANEL, children: string }, + "world_picker_scrolling_content/world_item_grid": { type: T.GRID, children: string }, + "world_picker_content": { type: T.PANEL, children: 'scrolling_panel' }, + "world_picker_content/scrolling_panel": { type: T.PANEL, children: string }, + "advanced_worlds_screen": { type: T.STACK_PANEL, children: 'world_picker' | 'padding_1' | 'import_time_container' }, + "advanced_worlds_screen/world_picker": { type: T.PANEL, children: string }, + "advanced_worlds_screen/padding_1": { type: T.PANEL, children: string }, + "advanced_worlds_screen/import_time_container": { type: T.PANEL, children: 'import_time_label' }, + "advanced_worlds_screen/import_time_container/import_time_label": { type: T.CUSTOM, children: string }, + "next_screen_button_content": { type: T.PANEL, children: 'arrow_panel' | 'loading_panel' }, + "next_screen_button_content/arrow_panel": { type: T.PANEL, children: 'label_panel' | 'image' }, + "next_screen_button_content/arrow_panel/label_panel": { type: T.PANEL, children: 'label' }, + "next_screen_button_content/arrow_panel/label_panel/label": { type: T.LABEL, children: string }, + "next_screen_button_content/arrow_panel/image": { type: T.IMAGE, children: string }, + "next_screen_button_content/loading_panel": { type: T.PANEL, children: string }, + "next_screen_button": { type: T.BUTTON, children: string }, + "next_panel": { type: T.PANEL, children: 'next_button' }, + "next_panel/next_button": { type: T.BUTTON, children: string }, + "common_scrolling_panel": { type: T.PANEL, children: string }, + "skin_tip_scroll_panel": { type: T.PANEL, children: 'skin_tip_screen' }, + "skin_tip_scroll_panel/skin_tip_screen": { type: T.PANEL, children: string }, + "worlds_import_scroll_panel": { type: T.PANEL, children: 'advanced_screen' }, + "worlds_import_scroll_panel/advanced_screen": { type: T.STACK_PANEL, children: string }, + "common_content": { type: T.PANEL, children: string }, + "skin_tip_scroll_content": { type: T.PANEL, children: 'scrolling_panel' }, + "skin_tip_scroll_content/scrolling_panel": { type: T.PANEL, children: string }, + "world_import_scroll_content": { type: T.PANEL, children: 'scrolling_panel' }, + "world_import_scroll_content/scrolling_panel": { type: T.PANEL, children: string }, + "default_tab_content_panel_layout": { type: T.PANEL, children: 'skin_tip_tab_content' | 'world_import_tab_content' }, + "default_tab_content_panel_layout/skin_tip_tab_content": { type: T.PANEL, children: string }, + "default_tab_content_panel_layout/world_import_tab_content": { type: T.PANEL, children: string }, + "default_wizard_screen": { type: T.PANEL, children: 'tab_content_panel' }, + "default_wizard_screen/tab_content_panel": { type: T.PANEL, children: string }, + "wizard_screen": { type: T.SCREEN, children: string }, + "wizard_screen_content": { type: T.PANEL, children: 'main_control' | 'next_button' }, + "wizard_screen_content/main_control": { type: T.PANEL, children: string }, + "wizard_screen_content/next_button": { type: T.PANEL, children: string }, } 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": { type: T.PANEL, children: 'gamepad_helper_a' }, + "a_button_panel/gamepad_helper_a": { type: T.STACK_PANEL, children: string }, + "you_died_panel": { type: T.PANEL, children: 'you_died_label' }, + "you_died_panel/you_died_label": { type: T.LABEL, children: string }, + "death_reason_panel": { type: T.PANEL, children: 'death_reason_label' }, + "death_reason_panel/death_reason_label": { type: T.LABEL, children: string }, + "labels_panel": { type: T.STACK_PANEL, children: 'fill_1' | 'you_died' | 'padd_1' | 'death_reason' | 'padd_2' }, + "labels_panel/fill_1": { type: T.PANEL, children: string }, + "labels_panel/you_died": { type: T.PANEL, children: string }, + "labels_panel/padd_1": { type: T.PANEL, children: string }, + "labels_panel/death_reason": { type: T.PANEL, children: string }, + "labels_panel/padd_2": { type: T.PANEL, children: string }, + "buttons_panel": { type: T.STACK_PANEL, children: 'padd_0' | 'respawn_button' | 'padd_1' | 'main_menu_button' | 'fill_2' | 'select_button' }, + "buttons_panel/padd_0": { type: T.PANEL, children: string }, + "buttons_panel/respawn_button": { type: T.BUTTON, children: string }, + "buttons_panel/padd_1": { type: T.PANEL, children: string }, + "buttons_panel/main_menu_button": { type: T.BUTTON, children: string }, + "buttons_panel/fill_2": { type: T.PANEL, children: string }, + "buttons_panel/select_button": { type: T.PANEL, children: string }, + "death_screen_content": { type: T.PANEL, children: 'death_screen_buttons_and_stuff' | 'loading_label' }, + "death_screen_content/death_screen_buttons_and_stuff": { type: T.PANEL, children: 'labels_panel' | 'buttons_panel' }, + "death_screen_content/death_screen_buttons_and_stuff/labels_panel": { type: T.STACK_PANEL, children: string }, + "death_screen_content/death_screen_buttons_and_stuff/buttons_panel": { type: T.STACK_PANEL, children: string }, + "death_screen_content/loading_label": { type: T.LABEL, children: string }, + "background_gradient": { type: T.CUSTOM, children: string }, + "death_screen": { type: T.SCREEN, children: string }, } 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": { type: T.BUTTON, children: string }, + "special_render": { type: T.CUSTOM, children: string }, + "content_panel": { type: T.PANEL, children: 'access_button' | 'special_render' }, + "content_panel/access_button": { type: T.BUTTON, children: string }, + "content_panel/special_render": { type: T.CUSTOM, children: string }, + "debug_screen": { type: T.SCREEN, children: string }, } 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": { type: T.PANEL, children: 'keyboard_image' }, + "keyboard_button_content/keyboard_image": { type: T.IMAGE, children: string }, + "keyboard_button": { type: T.BUTTON, children: string }, + "button_content": { type: T.PANEL, children: 'image' }, + "button_content/image": { type: T.UNKNOWN, children: string }, + "up_arrow": { type: T.IMAGE, children: string }, + "down_arrow": { type: T.IMAGE, children: string }, + "send_button": { type: T.BUTTON, children: string }, + "sent_message_up_button": { type: T.BUTTON, children: string }, + "sent_message_down_button": { type: T.BUTTON, children: string }, + "chat_stack_panel": { type: T.STACK_PANEL, children: 'text_box' | 'send_button' | 'sent_message_up_button' | 'sent_message_down_button' }, + "chat_stack_panel/text_box": { type: T.EDIT_BOX, children: string }, + "chat_stack_panel/send_button": { type: T.BUTTON, children: string }, + "chat_stack_panel/sent_message_up_button": { type: T.BUTTON, children: string }, + "chat_stack_panel/sent_message_down_button": { type: T.BUTTON, children: string }, + "main_stack_panel": { type: T.STACK_PANEL, children: 'messages_scrolling_panel' | 'chat_stack_panel' }, + "main_stack_panel/messages_scrolling_panel": { type: T.PANEL, children: string }, + "main_stack_panel/chat_stack_panel": { type: T.STACK_PANEL, children: string }, + "main_with_intellisense": { type: T.PANEL, children: 'main_stack' | 'commands_panel' }, + "main_with_intellisense/main_stack": { type: T.STACK_PANEL, children: string }, + "main_with_intellisense/commands_panel": { type: T.PANEL, children: string }, + "dev_console_dialog": { type: T.PANEL, children: string }, + "dev_console_screen": { type: T.SCREEN, children: string }, } 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": { type: T.LABEL, children: string }, + "disconnect_text": { type: T.LABEL, children: string }, + "disconnect_title_text": { type: T.LABEL, children: string }, + "title_panel": { type: T.PANEL, children: 'disconnect_title_text' | 'disconnect_text' }, + "title_panel/disconnect_title_text": { type: T.LABEL, children: string }, + "title_panel/disconnect_text": { type: T.LABEL, children: string }, + "menu_button_template": { type: T.BUTTON, children: string }, + "continue_button": { type: T.BUTTON, children: string }, + "check_store_button": { type: T.BUTTON, children: string }, + "exit_button": { type: T.BUTTON, children: string }, + "ok_button": { type: T.BUTTON, children: string }, + "open_uri_button": { type: T.BUTTON, children: string }, + "cancel_button": { type: T.BUTTON, children: string }, + "button_panel": { type: T.STACK_PANEL, children: 'open_uri_button_panel' | 'open_button_panel' }, + "button_panel/open_uri_button_panel": { type: T.PANEL, children: 'open_uri_button' }, + "button_panel/open_uri_button_panel/open_uri_button": { type: T.BUTTON, children: string }, + "button_panel/open_button_panel": { type: T.PANEL, children: 'ok_button' }, + "button_panel/open_button_panel/ok_button": { type: T.BUTTON, children: string }, + "gamepad_helpers": { type: T.PANEL, children: 'gamepad_helper_a' }, + "gamepad_helpers/gamepad_helper_a": { type: T.STACK_PANEL, children: string }, + "disconnect_screen": { type: T.SCREEN, children: string }, + "disconnect_screen_content": { type: T.PANEL, children: 'title_panel' | 'gamepad_helpers' }, + "disconnect_screen_content/title_panel": { type: T.PANEL, children: string }, + "disconnect_screen_content/gamepad_helpers": { type: T.PANEL, children: string }, + "spacing_gap": { type: T.PANEL, children: string }, + "realms_disconnect_screen": { type: T.SCREEN, children: string }, + "realms_disconnect_button_panel": { type: T.STACK_PANEL, children: 'open_uri_button_panel' | 'realm_buttons_panel' }, + "realms_disconnect_button_panel/open_uri_button_panel": { type: T.PANEL, children: 'open_uri_button' }, + "realms_disconnect_button_panel/open_uri_button_panel/open_uri_button": { type: T.BUTTON, children: string }, + "realms_disconnect_button_panel/realm_buttons_panel": { type: T.PANEL, children: 'realm_buttons' }, + "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons": { type: T.STACK_PANEL, children: 'check_store_button' | 'spacing_gap' | 'exit_button' }, + "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/check_store_button": { type: T.BUTTON, children: string }, + "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/spacing_gap": { type: T.PANEL, children: string }, + "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/exit_button": { type: T.BUTTON, children: string }, + "realms_warning_screen": { type: T.SCREEN, children: string }, + "realms_warning_button_panel": { type: T.STACK_PANEL, children: 'continue_button_panel' | 'realms_warning_button_gap' | 'cancel_button_panel' }, + "realms_warning_button_panel/continue_button_panel": { type: T.PANEL, children: 'continue_button_stack_panel' }, + "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel": { type: T.STACK_PANEL, children: 'check_store_button' | 'spacing_gap' | 'continue_button' }, + "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/check_store_button": { type: T.BUTTON, children: string }, + "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/spacing_gap": { type: T.PANEL, children: string }, + "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/continue_button": { type: T.BUTTON, children: string }, + "realms_warning_button_panel/realms_warning_button_gap": { type: T.PANEL, children: string }, + "realms_warning_button_panel/cancel_button_panel": { type: T.PANEL, children: 'cancel_button' }, + "realms_warning_button_panel/cancel_button_panel/cancel_button": { type: T.BUTTON, children: string }, + "open_account_setting_button": { type: T.BUTTON, children: string }, } 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": { type: T.SCREEN, children: string }, + "factory_panel": { type: T.PANEL, children: 'error_dialog_factory' }, + "factory_panel/error_dialog_factory": { type: T.FACTORY, children: string }, + "display_logged_error_modal": { type: T.PANEL, children: string }, + "error_message_stack": { type: T.STACK_PANEL, children: 'error_message' | 'error_count' }, + "error_message_stack/error_message": { type: T.LABEL, children: string }, + "error_message_stack/error_count": { type: T.LABEL, children: string }, + "input_blocking_button_base": { type: T.BUTTON, children: string }, + "details_button": { type: T.BUTTON, children: string }, + "dismiss_button": { type: T.BUTTON, children: string }, + "error_details_modal": { type: T.PANEL, children: string }, + "copy_path_button": { type: T.BUTTON, children: string }, + "hide_error_details_button": { type: T.BUTTON, children: string }, + "error_stack_scrolling_panel": { type: T.PANEL, children: string }, + "error_stack": { type: T.STACK_PANEL, children: string }, + "error_controller_panel": { type: T.PANEL, children: 'error_message' | 'controller_button' }, + "error_controller_panel/error_message": { type: T.STACK_PANEL, children: string }, + "error_controller_panel/controller_button": { type: T.BUTTON, children: 'hover' | 'pressed' }, + "error_controller_panel/controller_button/hover": { type: T.IMAGE, children: string }, + "error_controller_panel/controller_button/pressed": { type: T.IMAGE, children: string }, + "error_base": { type: T.STACK_PANEL, children: 'error_message' | 'expand_button' }, + "error_base/error_message": { type: T.LABEL, children: string }, + "error_base/expand_button": { type: T.BUTTON, children: string }, + "error_short": { type: T.PANEL, children: string }, + "error_expanded": { type: T.PANEL, children: string }, } 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": { type: T.LABEL, children: string }, + "service_button": { type: T.BUTTON, children: string }, + "service_buttons": { type: T.STACK_PANEL, children: string }, + "content": { type: T.STACK_PANEL, children: 'body_text' | 'text_to_button_padding' | 'buttons' }, + "content/body_text": { type: T.PANEL, children: string }, + "content/text_to_button_padding": { type: T.PANEL, children: string }, + "content/buttons": { type: T.STACK_PANEL, children: string }, + "service_dialog": { type: T.INPUT_PANEL, children: string }, + "discovery_dialog_factory": { type: T.FACTORY, children: string }, } export type EduFeaturedType = { - "featured_button_content": T.PANEL, - "featured_button_content/button_label": T.LABEL, - "featured_button": T.BUTTON, + "featured_button_content": { type: T.PANEL, children: 'button_label' }, + "featured_button_content/button_label": { type: T.LABEL, children: string }, + "featured_button": { type: T.BUTTON, children: string }, } export type EduQuitButtonType = { - "quit_button": T.BUTTON, + "quit_button": { type: T.BUTTON, children: string }, } 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": { type: T.SCREEN, children: string }, + "emote_wheel_touch_zone": { type: T.BUTTON, children: string }, + "emote_wheel_screen_content": { type: T.STACK_PANEL, children: 'top_padding' | 'root_panel' | 'instruction_padding' | 'instruction_panel' | 'dressing_room_button_panel' | 'bottom_padding' }, + "emote_wheel_screen_content/top_padding": { type: T.PANEL, children: string }, + "emote_wheel_screen_content/root_panel": { type: T.PANEL, children: 'emotes_panel' }, + "emote_wheel_screen_content/root_panel/emotes_panel": { type: T.PANEL, children: string }, + "emote_wheel_screen_content/instruction_padding": { type: T.PANEL, children: string }, + "emote_wheel_screen_content/instruction_panel": { type: T.PANEL, children: 'instruction_background' }, + "emote_wheel_screen_content/instruction_panel/instruction_background": { type: T.IMAGE, children: 'gamepad_instruction_stack' | 'instruction_label_keyboard' | 'instruction_label_touch' }, + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack": { type: T.STACK_PANEL, children: 'instruction_label_gamepad' | 'gamepad_helpers' }, + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/instruction_label_gamepad": { type: T.LABEL, children: string }, + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers": { type: T.PANEL, children: 'gamepad_helper_stack' }, + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack": { type: T.STACK_PANEL, children: 'gamepad_start' | 'gamepad_exit_panel' }, + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_start": { type: T.STACK_PANEL, children: string }, + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_exit_panel": { type: T.PANEL, children: 'gamepad_exit' }, + "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_exit_panel/gamepad_exit": { type: T.LABEL, children: string }, + "emote_wheel_screen_content/instruction_panel/instruction_background/instruction_label_keyboard": { type: T.LABEL, children: string }, + "emote_wheel_screen_content/instruction_panel/instruction_background/instruction_label_touch": { type: T.LABEL, children: string }, + "emote_wheel_screen_content/dressing_room_button_panel": { type: T.PANEL, children: 'dressing_room_button' }, + "emote_wheel_screen_content/dressing_room_button_panel/dressing_room_button": { type: T.BUTTON, children: string }, + "emote_wheel_screen_content/bottom_padding": { type: T.PANEL, children: string }, + "swap_emote_button": { type: T.BUTTON, children: string }, } 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": { type: T.IMAGE, children: string }, + "lapis_image": { type: T.IMAGE, children: string }, + "dust_image": { type: T.IMAGE, children: string }, + "dust_image_selectable": { type: T.IMAGE, children: string }, + "dust_image_unselectable": { type: T.IMAGE, children: string }, + "dust_template": { type: T.PANEL, children: 'dust_image_selectable' | 'dust_image_unselectable' }, + "dust_template/dust_image_selectable": { type: T.IMAGE, children: string }, + "dust_template/dust_image_unselectable": { type: T.IMAGE, children: string }, + "dust_panel": { type: T.GRID, children: 'a' | 'b' | 'c' }, + "dust_panel/a": { type: T.PANEL, children: string }, + "dust_panel/b": { type: T.PANEL, children: string }, + "dust_panel/c": { type: T.PANEL, children: string }, + "background_with_hover_text": { type: T.IMAGE, children: 'hover_text' }, + "background_with_hover_text/hover_text": { type: T.CUSTOM, children: string }, + "dark_background": { type: T.IMAGE, children: string }, + "dark_background_with_hover_text": { type: T.IMAGE, children: string }, + "active_background": { type: T.IMAGE, children: string }, + "active_background_with_hover_text": { type: T.IMAGE, children: string }, + "enchant_runes": { type: T.LABEL, children: string }, + "enchant_cost": { type: T.LABEL, children: string }, + "success_runes": { type: T.LABEL, children: string }, + "fail_runes": { type: T.LABEL, children: string }, + "success_cost": { type: T.LABEL, children: string }, + "fail_cost": { type: T.LABEL, children: string }, + "enchanting_label": { type: T.LABEL, children: string }, + "base_button": { type: T.BUTTON, children: string }, + "unselectable_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' | 'rune_text' | 'enchant_cost' }, + "unselectable_button/default": { type: T.IMAGE, children: string }, + "unselectable_button/hover": { type: T.IMAGE, children: string }, + "unselectable_button/pressed": { type: T.IMAGE, children: string }, + "unselectable_button/rune_text": { type: T.LABEL, children: string }, + "unselectable_button/enchant_cost": { type: T.LABEL, children: string }, + "selectable_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' | 'rune_text' | 'enchant_cost' }, + "selectable_button/default": { type: T.IMAGE, children: string }, + "selectable_button/hover": { type: T.IMAGE, children: string }, + "selectable_button/pressed": { type: T.IMAGE, children: string }, + "selectable_button/rune_text": { type: T.LABEL, children: string }, + "selectable_button/enchant_cost": { type: T.LABEL, children: string }, + "enchant_button_panel": { type: T.PANEL, children: 'dark_background' | 'unselectable_button' | 'selectable_button' }, + "enchant_button_panel/dark_background": { type: T.IMAGE, children: string }, + "enchant_button_panel/unselectable_button": { type: T.BUTTON, children: string }, + "enchant_button_panel/selectable_button": { type: T.BUTTON, children: string }, + "enchanting_panel_top_half": { type: T.PANEL, children: 'enchanting_label' | 'enchanting_book_panel' | 'item_grid' | 'lapis_grid' | 'grid_panel' }, + "enchanting_panel_top_half/enchanting_label": { type: T.LABEL, children: string }, + "enchanting_panel_top_half/enchanting_book_panel": { type: T.PANEL, children: 'enchanting_book' }, + "enchanting_panel_top_half/enchanting_book_panel/enchanting_book": { type: T.CUSTOM, children: string }, + "enchanting_panel_top_half/item_grid": { type: T.GRID, children: 'item_slot' }, + "enchanting_panel_top_half/item_grid/item_slot": { type: T.INPUT_PANEL, children: string }, + "enchanting_panel_top_half/lapis_grid": { type: T.GRID, children: 'lapis' }, + "enchanting_panel_top_half/lapis_grid/lapis": { type: T.INPUT_PANEL, children: string }, + "enchanting_panel_top_half/grid_panel": { type: T.PANEL, children: 'indent' | 'dust_panel' | 'enchantments_grid' }, + "enchanting_panel_top_half/grid_panel/indent": { type: T.IMAGE, children: string }, + "enchanting_panel_top_half/grid_panel/dust_panel": { type: T.GRID, children: string }, + "enchanting_panel_top_half/grid_panel/enchantments_grid": { type: T.GRID, children: string }, + "enchanting_panel": { type: T.PANEL, children: 'container_gamepad_helpers' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'root_panel' | 'flying_item_renderer' }, + "enchanting_panel/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "enchanting_panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "enchanting_panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "enchanting_panel/root_panel": { type: T.INPUT_PANEL, children: 'common_panel' | 'enchanting_screen_inventory' | 'inventory_selected_icon_button' | 'gamepad_cursor' }, + "enchanting_panel/root_panel/common_panel": { type: T.PANEL, children: string }, + "enchanting_panel/root_panel/enchanting_screen_inventory": { type: T.PANEL, children: 'enchanting_panel_top_half' | 'inventory_panel_bottom_half_with_label' | 'hotbar_grid' | 'inventory_take_progress_icon_button' }, + "enchanting_panel/root_panel/enchanting_screen_inventory/enchanting_panel_top_half": { type: T.PANEL, children: string }, + "enchanting_panel/root_panel/enchanting_screen_inventory/inventory_panel_bottom_half_with_label": { type: T.PANEL, children: string }, + "enchanting_panel/root_panel/enchanting_screen_inventory/hotbar_grid": { type: T.GRID, children: string }, + "enchanting_panel/root_panel/enchanting_screen_inventory/inventory_take_progress_icon_button": { type: T.BUTTON, children: string }, + "enchanting_panel/root_panel/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "enchanting_panel/root_panel/gamepad_cursor": { type: T.BUTTON, children: string }, + "enchanting_panel/flying_item_renderer": { type: T.CUSTOM, children: string }, + "enchanting_screen": { type: T.SCREEN, children: string }, } 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": { type: T.LABEL, children: string }, + "background_image": { type: T.IMAGE, children: string }, + "inventory_grid": { type: T.GRID, children: string }, + "inventory_content": { type: T.PANEL, children: 'scrolling_panel' }, + "inventory_content/scrolling_panel": { type: T.PANEL, children: string }, + "lapis_image": { type: T.IMAGE, children: string }, + "enchanting_slots_panel": { type: T.PANEL, children: 'input_slot' | 'lapis_slot' }, + "enchanting_slots_panel/input_slot": { type: T.INPUT_PANEL, children: string }, + "enchanting_slots_panel/lapis_slot": { type: T.INPUT_PANEL, children: string }, + "enchant_text_runes": { type: T.LABEL, children: string }, + "show_highlighted_slot_control": { type: T.IMAGE, children: string }, + "show_highlighted_hover_slot_control": { type: T.IMAGE, children: string }, + "inactive_background": { type: T.IMAGE, children: string }, + "unselectable_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' | 'enchant_cost' }, + "unselectable_button/default": { type: T.IMAGE, children: string }, + "unselectable_button/hover": { type: T.IMAGE, children: string }, + "unselectable_button/pressed": { type: T.IMAGE, children: string }, + "unselectable_button/enchant_cost": { type: T.LABEL, children: string }, + "selectable_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' | 'enchant_cost' }, + "selectable_button/default": { type: T.IMAGE, children: string }, + "selectable_button/hover": { type: T.IMAGE, children: string }, + "selectable_button/pressed": { type: T.IMAGE, children: string }, + "selectable_button/enchant_cost": { type: T.LABEL, children: string }, + "enchant_button_panel": { type: T.PANEL, children: 'inactive_background' | 'unselectable_button' | 'selectable_button' | 'dust' | 'rune_text' | 'highlight' }, + "enchant_button_panel/inactive_background": { type: T.IMAGE, children: string }, + "enchant_button_panel/unselectable_button": { type: T.BUTTON, children: string }, + "enchant_button_panel/selectable_button": { type: T.BUTTON, children: string }, + "enchant_button_panel/dust": { type: T.PANEL, children: string }, + "enchant_button_panel/rune_text": { type: T.LABEL, children: string }, + "enchant_button_panel/highlight": { type: T.IMAGE, children: string }, + "enchant_selection_panel": { type: T.PANEL, children: 'grid' }, + "enchant_selection_panel/grid": { type: T.GRID, children: 'button1' | 'button2' | 'button3' }, + "enchant_selection_panel/grid/button1": { type: T.PANEL, children: string }, + "enchant_selection_panel/grid/button2": { type: T.PANEL, children: string }, + "enchant_selection_panel/grid/button3": { type: T.PANEL, children: string }, + "item_renderer": { type: T.CUSTOM, children: string }, + "confirm_default_control": { type: T.IMAGE, children: string }, + "enchanting_confirm_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' | 'arrow_active' | 'arrow_inactive' | 'input_item_renderer' | 'output_item_renderer' }, + "enchanting_confirm_button/default": { type: T.IMAGE, children: string }, + "enchanting_confirm_button/hover": { type: T.IMAGE, children: string }, + "enchanting_confirm_button/pressed": { type: T.IMAGE, children: string }, + "enchanting_confirm_button/arrow_active": { type: T.IMAGE, children: string }, + "enchanting_confirm_button/arrow_inactive": { type: T.IMAGE, children: string }, + "enchanting_confirm_button/input_item_renderer": { type: T.CUSTOM, children: string }, + "enchanting_confirm_button/output_item_renderer": { type: T.CUSTOM, children: string }, + "enchanting_confirm_panel": { type: T.PANEL, children: 'confirm' | 'enchantment_hint_text' }, + "enchanting_confirm_panel/confirm": { type: T.BUTTON, children: string }, + "enchanting_confirm_panel/enchantment_hint_text": { type: T.LABEL, children: string }, + "enchanting_book_contents_panel": { type: T.PANEL, children: 'enchanting_book' | 'player_level_label' | 'level_label' }, + "enchanting_book_contents_panel/enchanting_book": { type: T.CUSTOM, children: string }, + "enchanting_book_contents_panel/player_level_label": { type: T.LABEL, children: string }, + "enchanting_book_contents_panel/level_label": { type: T.LABEL, children: string }, + "enchanting_book_panel": { type: T.PANEL, children: 'enchanting_slots_panel' }, + "enchanting_book_panel/enchanting_slots_panel": { type: T.PANEL, children: string }, + "enchanting_slots_and_selection": { type: T.STACK_PANEL, children: 'enchanting_slots_panel' | 'pad1' | 'enchant_selection_panel' }, + "enchanting_slots_and_selection/enchanting_slots_panel": { type: T.PANEL, children: string }, + "enchanting_slots_and_selection/pad1": { type: T.PANEL, children: string }, + "enchanting_slots_and_selection/enchant_selection_panel": { type: T.PANEL, children: string }, + "enchanting_contents_panel": { type: T.STACK_PANEL, children: 'fill1' | 'enchanting_book_panel' | 'pad1' | 'enchanting_slots_and_selection' | 'pad2' | 'enchanting_confirm_panel' | 'fill2' }, + "enchanting_contents_panel/fill1": { type: T.PANEL, children: string }, + "enchanting_contents_panel/enchanting_book_panel": { type: T.PANEL, children: string }, + "enchanting_contents_panel/pad1": { type: T.PANEL, children: string }, + "enchanting_contents_panel/enchanting_slots_and_selection": { type: T.STACK_PANEL, children: string }, + "enchanting_contents_panel/pad2": { type: T.PANEL, children: string }, + "enchanting_contents_panel/enchanting_confirm_panel": { type: T.PANEL, children: string }, + "enchanting_contents_panel/fill2": { type: T.PANEL, children: string }, + "header": { type: T.PANEL, children: 'header_background' | 'legacy_pocket_close_button' | 'panel' }, + "header/header_background": { type: T.IMAGE, children: string }, + "header/legacy_pocket_close_button": { type: T.BUTTON, children: string }, + "header/panel": { type: T.PANEL, children: 'title_label' }, + "header/panel/title_label": { type: T.LABEL, children: string }, + "inventory_and_enchanting_panel": { type: T.PANEL, children: 'inventory_half_screen' | 'enchanting_half_screen' }, + "inventory_and_enchanting_panel/inventory_half_screen": { type: T.PANEL, children: 'inventory_content' }, + "inventory_and_enchanting_panel/inventory_half_screen/inventory_content": { type: T.PANEL, children: string }, + "inventory_and_enchanting_panel/enchanting_half_screen": { type: T.PANEL, children: 'enchanting_content' }, + "inventory_and_enchanting_panel/enchanting_half_screen/enchanting_content": { type: T.STACK_PANEL, children: string }, + "header_and_content_stack_panel": { type: T.STACK_PANEL, children: 'header' | 'inventory_and_enchanting_panel' }, + "header_and_content_stack_panel/header": { type: T.PANEL, children: string }, + "header_and_content_stack_panel/inventory_and_enchanting_panel": { type: T.PANEL, children: string }, + "error_text_panel": { type: T.PANEL, children: 'item_text_label' }, + "error_text_panel/item_text_label": { type: T.LABEL, children: string }, + "enchanting_panel": { type: T.PANEL, children: 'bg' | 'root_panel' | 'header_and_content_stack_panel' | 'container_gamepad_helpers' | 'inventory_selected_icon_button' | 'hold_icon' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'flying_item_renderer' }, + "enchanting_panel/bg": { type: T.IMAGE, children: string }, + "enchanting_panel/root_panel": { type: T.INPUT_PANEL, children: string }, + "enchanting_panel/header_and_content_stack_panel": { type: T.STACK_PANEL, children: string }, + "enchanting_panel/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "enchanting_panel/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "enchanting_panel/hold_icon": { type: T.BUTTON, children: string }, + "enchanting_panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "enchanting_panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "enchanting_panel/flying_item_renderer": { type: T.CUSTOM, children: string }, } 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": { type: T.SCREEN, children: string }, + "encyclopedia_selector_stack_panel": { type: T.STACK_PANEL, children: 'how_to_play_selector_pane' }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane": { type: T.STACK_PANEL, children: 'overworld_category' | 'armor_button' | 'armor_stand_button' | 'banners_button' | 'beacons_button' | 'beds_button' | 'blocks_button' | 'book_and_quill_button' | 'chests_button' | 'conduits_button' | 'dyes_button' | 'farming_button' | 'fireworks_button' | 'fishing_button' | 'jigsaw_blocks_button' | 'mounts_button' | 'navigation_button' | 'nether_portals_button' | 'pets_button' | 'raids_button' | 'ranching_button' | 'scaffolding_button' | 'structure_blocks_button' | 'tools_button' | 'transportation_button' | 'trading_button' | 'weapons_button' | 'stands_and_tables_category' | 'anvil_button' | 'brewing_stand_button' | 'cauldron_button' | 'crafting_table_button' | 'enchanting_table_button' | 'furnace_button' | 'loom_button' | 'smithing_table_button' | 'redstone_engineering_category' | 'droppers_button' | 'dispensers_button' | 'hoppers_button' | 'jukebox_button' | 'redstone_button' | 'the_end_dimension_category' | 'the_end_button' | 'eye_of_ender_button' | 'end_cities_button' | 'elytra_button' | 'shulker_boxes_button' | 'options_and_cheats_category' | 'game_settings_button' | 'difficulty_button' | 'adventure_mode_button' | 'creative_mode_button' | 'commands_button' | 'host_and_player_options_button' | 'command_blocks_button' | 'realms_category' | 'realms_stories_button' | 'marketplace_category' | 'minecoins_button' | 'addons_button' | 'worlds_button' | 'textures_button' | 'skins_button' | 'mashups_button' }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/overworld_category": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/armor_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/armor_stand_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/banners_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/beacons_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/beds_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/blocks_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/book_and_quill_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/chests_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/conduits_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/dyes_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/farming_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/fireworks_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/fishing_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/jigsaw_blocks_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/mounts_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/navigation_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/nether_portals_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/pets_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/raids_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/ranching_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/scaffolding_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/structure_blocks_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/tools_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/transportation_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/trading_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/weapons_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/stands_and_tables_category": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/anvil_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/brewing_stand_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/cauldron_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/crafting_table_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/enchanting_table_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/furnace_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/loom_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/smithing_table_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/redstone_engineering_category": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/droppers_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/dispensers_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/hoppers_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/jukebox_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/redstone_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/the_end_dimension_category": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/the_end_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/eye_of_ender_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/end_cities_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/elytra_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/shulker_boxes_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/options_and_cheats_category": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/game_settings_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/difficulty_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/adventure_mode_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/creative_mode_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/commands_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/host_and_player_options_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/command_blocks_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/realms_category": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/realms_stories_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/marketplace_category": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/minecoins_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/addons_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/worlds_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/textures_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/skins_button": { type: T.PANEL, children: string }, + "encyclopedia_selector_stack_panel/how_to_play_selector_pane/mashups_button": { type: T.PANEL, children: string }, + "encyclopedia_section_content_panels": { type: T.STACK_PANEL, children: 'general_tips_sections' }, + "encyclopedia_section_content_panels/general_tips_sections": { type: T.STACK_PANEL, children: 'section_contents_header' | 'armor_section' | 'armor_stand_section' | 'banners_section' | 'beacons_section' | 'beds_section' | 'blocks_section' | 'book_and_quill_section' | 'chests_section' | 'conduits_section' | 'dyes_section' | 'farming_section' | 'fireworks_section' | 'fishing_section' | 'jigsaw' | 'mounts_section' | 'navigation_section' | 'nether_portals_section' | 'pets_section' | 'raids_section' | 'ranching_section' | 'scaffolding_section' | 'structure_blocks_section' | 'tools_section' | 'transportation_section' | 'trading_section' | 'weapons_section' | 'anvil_section' | 'brewing_stand_section' | 'cauldron_section' | 'crafting_table_section' | 'enchanting_table_section' | 'furnace_section' | 'loom_section' | 'smithing_table_section' | 'droppers_section' | 'dispensers_section' | 'hoppers_section' | 'jukebox_section' | 'redstone_section' | 'the_end_section' | 'eye_of_ender_section' | 'end_cities_section' | 'elytra_section' | 'shulker_boxes_section' | 'game_settings_section' | 'difficulty_section' | 'adventure_mode_section' | 'creative_mode_section' | 'commands_section' | 'host_and_player_options_section' | 'command_blocks_section' | 'realms_stories_section' | 'minecoins_section' | 'addons_section' | 'worlds_section' | 'textures_section' | 'skins_section' | 'mashups_section' | 'section_contents_footer' }, + "encyclopedia_section_content_panels/general_tips_sections/section_contents_header": { type: T.INPUT_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/armor_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/armor_stand_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/banners_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/beacons_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/beds_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/blocks_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/book_and_quill_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/chests_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/conduits_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/dyes_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/farming_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/fireworks_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/fishing_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/jigsaw": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/mounts_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/navigation_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/nether_portals_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/pets_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/raids_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/ranching_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/scaffolding_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/structure_blocks_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/tools_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/transportation_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/trading_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/weapons_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/anvil_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/brewing_stand_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/cauldron_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/crafting_table_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/enchanting_table_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/furnace_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/loom_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/smithing_table_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/droppers_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/dispensers_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/hoppers_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/jukebox_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/redstone_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/the_end_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/eye_of_ender_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/end_cities_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/elytra_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/shulker_boxes_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/game_settings_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/difficulty_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/adventure_mode_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/creative_mode_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/commands_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/host_and_player_options_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/command_blocks_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/realms_stories_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/minecoins_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/addons_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/worlds_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/textures_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/skins_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/mashups_section": { type: T.STACK_PANEL, children: string }, + "encyclopedia_section_content_panels/general_tips_sections/section_contents_footer": { type: T.INPUT_PANEL, children: string }, + "adventure_mode_button": { type: T.PANEL, children: string }, + "adventure_mode_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2' }, + "adventure_mode_section/paragraph_1": { type: T.PANEL, children: string }, + "adventure_mode_section/padding_1": { type: T.PANEL, children: string }, + "adventure_mode_section/paragraph_2": { type: T.PANEL, children: string }, + "anvil_button": { type: T.PANEL, children: string }, + "anvil_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'header_1' | 'paragraph_2' | 'padding_2' | 'header_2' | 'paragraph_3' | 'padding_3' | 'paragraph_4' | 'padding_4' | 'paragraph_5' }, + "anvil_section/paragraph_1": { type: T.PANEL, children: string }, + "anvil_section/padding_1": { type: T.PANEL, children: string }, + "anvil_section/header_1": { type: T.PANEL, children: string }, + "anvil_section/paragraph_2": { type: T.PANEL, children: string }, + "anvil_section/padding_2": { type: T.PANEL, children: string }, + "anvil_section/header_2": { type: T.PANEL, children: string }, + "anvil_section/paragraph_3": { type: T.PANEL, children: string }, + "anvil_section/padding_3": { type: T.PANEL, children: string }, + "anvil_section/paragraph_4": { type: T.PANEL, children: string }, + "anvil_section/padding_4": { type: T.PANEL, children: string }, + "anvil_section/paragraph_5": { type: T.PANEL, children: string }, + "armor_button": { type: T.PANEL, children: string }, + "armor_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'header_1' | 'paragraph_2' | 'padding_2' | 'paragraph_3' | 'padding_3' | 'paragraph_4' | 'padding_4' | 'header_2' | 'paragraph_5_keyboard' | 'paragraph_5_gamepad' | 'paragraph_5a_touch' | 'padding_5a_touch' | 'paragraph_5b_touch' | 'padding_5b_touch' | 'paragraph_5c_touch' | 'padding_5' | 'paragraph_6' | 'padding_6' | 'header_3' | 'paragraph_7' }, + "armor_section/paragraph_1": { type: T.PANEL, children: string }, + "armor_section/padding_1": { type: T.PANEL, children: string }, + "armor_section/header_1": { type: T.PANEL, children: string }, + "armor_section/paragraph_2": { type: T.PANEL, children: string }, + "armor_section/padding_2": { type: T.PANEL, children: string }, + "armor_section/paragraph_3": { type: T.PANEL, children: string }, + "armor_section/padding_3": { type: T.PANEL, children: string }, + "armor_section/paragraph_4": { type: T.PANEL, children: string }, + "armor_section/padding_4": { type: T.PANEL, children: string }, + "armor_section/header_2": { type: T.PANEL, children: string }, + "armor_section/paragraph_5_keyboard": { type: T.PANEL, children: string }, + "armor_section/paragraph_5_gamepad": { type: T.PANEL, children: string }, + "armor_section/paragraph_5a_touch": { type: T.PANEL, children: string }, + "armor_section/padding_5a_touch": { type: T.PANEL, children: string }, + "armor_section/paragraph_5b_touch": { type: T.PANEL, children: string }, + "armor_section/padding_5b_touch": { type: T.PANEL, children: string }, + "armor_section/paragraph_5c_touch": { type: T.PANEL, children: string }, + "armor_section/padding_5": { type: T.PANEL, children: string }, + "armor_section/paragraph_6": { type: T.PANEL, children: string }, + "armor_section/padding_6": { type: T.PANEL, children: string }, + "armor_section/header_3": { type: T.PANEL, children: string }, + "armor_section/paragraph_7": { type: T.PANEL, children: string }, + "armor_stand_button": { type: T.PANEL, children: string }, + "armor_stand_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'header_1' | 'paragraph_2_keyboard' | 'paragraph_2_gamepad' | 'paragraph_2_touch' | 'padding_2' | 'paragraph_3_keyboard' | 'paragraph_3_gamepad' | 'paragraph_3_touch' | 'padding_3' | 'header_2' | 'paragraph_4_keyboard' | 'paragraph_4_gamepad' | 'paragraph_4_touch' | 'padding_4' | 'header_3' | 'paragraph_5' }, + "armor_stand_section/paragraph_1": { type: T.PANEL, children: string }, + "armor_stand_section/padding_1": { type: T.PANEL, children: string }, + "armor_stand_section/header_1": { type: T.PANEL, children: string }, + "armor_stand_section/paragraph_2_keyboard": { type: T.PANEL, children: string }, + "armor_stand_section/paragraph_2_gamepad": { type: T.PANEL, children: string }, + "armor_stand_section/paragraph_2_touch": { type: T.PANEL, children: string }, + "armor_stand_section/padding_2": { type: T.PANEL, children: string }, + "armor_stand_section/paragraph_3_keyboard": { type: T.PANEL, children: string }, + "armor_stand_section/paragraph_3_gamepad": { type: T.PANEL, children: string }, + "armor_stand_section/paragraph_3_touch": { type: T.PANEL, children: string }, + "armor_stand_section/padding_3": { type: T.PANEL, children: string }, + "armor_stand_section/header_2": { type: T.PANEL, children: string }, + "armor_stand_section/paragraph_4_keyboard": { type: T.PANEL, children: string }, + "armor_stand_section/paragraph_4_gamepad": { type: T.PANEL, children: string }, + "armor_stand_section/paragraph_4_touch": { type: T.PANEL, children: string }, + "armor_stand_section/padding_4": { type: T.PANEL, children: string }, + "armor_stand_section/header_3": { type: T.PANEL, children: string }, + "armor_stand_section/paragraph_5": { type: T.PANEL, children: string }, + "banners_button": { type: T.PANEL, children: string }, + "banners_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2' | 'padding_2' | 'header_1' | 'paragraph_3' | 'padding_3' | 'paragraph_4' | 'padding_4' | 'paragraph_5' | 'padding_5' | 'paragraph_6' | 'padding_6' | 'paragraph_7' | 'padding_7' | 'header_2' | 'paragraph_8' | 'padding_8' | 'header_3' | 'paragraph_9' }, + "banners_section/paragraph_1": { type: T.PANEL, children: string }, + "banners_section/padding_1": { type: T.PANEL, children: string }, + "banners_section/paragraph_2": { type: T.PANEL, children: string }, + "banners_section/padding_2": { type: T.PANEL, children: string }, + "banners_section/header_1": { type: T.PANEL, children: string }, + "banners_section/paragraph_3": { type: T.PANEL, children: string }, + "banners_section/padding_3": { type: T.PANEL, children: string }, + "banners_section/paragraph_4": { type: T.PANEL, children: string }, + "banners_section/padding_4": { type: T.PANEL, children: string }, + "banners_section/paragraph_5": { type: T.PANEL, children: string }, + "banners_section/padding_5": { type: T.PANEL, children: string }, + "banners_section/paragraph_6": { type: T.PANEL, children: string }, + "banners_section/padding_6": { type: T.PANEL, children: string }, + "banners_section/paragraph_7": { type: T.PANEL, children: string }, + "banners_section/padding_7": { type: T.PANEL, children: string }, + "banners_section/header_2": { type: T.PANEL, children: string }, + "banners_section/paragraph_8": { type: T.PANEL, children: string }, + "banners_section/padding_8": { type: T.PANEL, children: string }, + "banners_section/header_3": { type: T.PANEL, children: string }, + "banners_section/paragraph_9": { type: T.PANEL, children: string }, + "beacons_button": { type: T.PANEL, children: string }, + "beacons_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2' | 'padding_2' | 'header_1' | 'paragraph_3' | 'padding_3' | 'paragraph_4' | 'padding_4' | 'header_2' | 'paragraph_5' | 'padding_5' | 'paragraph_6' | 'padding_6' | 'paragraph_7' | 'padding_7' | 'paragraph_8' }, + "beacons_section/paragraph_1": { type: T.PANEL, children: string }, + "beacons_section/padding_1": { type: T.PANEL, children: string }, + "beacons_section/paragraph_2": { type: T.PANEL, children: string }, + "beacons_section/padding_2": { type: T.PANEL, children: string }, + "beacons_section/header_1": { type: T.PANEL, children: string }, + "beacons_section/paragraph_3": { type: T.PANEL, children: string }, + "beacons_section/padding_3": { type: T.PANEL, children: string }, + "beacons_section/paragraph_4": { type: T.PANEL, children: string }, + "beacons_section/padding_4": { type: T.PANEL, children: string }, + "beacons_section/header_2": { type: T.PANEL, children: string }, + "beacons_section/paragraph_5": { type: T.PANEL, children: string }, + "beacons_section/padding_5": { type: T.PANEL, children: string }, + "beacons_section/paragraph_6": { type: T.PANEL, children: string }, + "beacons_section/padding_6": { type: T.PANEL, children: string }, + "beacons_section/paragraph_7": { type: T.PANEL, children: string }, + "beacons_section/padding_7": { type: T.PANEL, children: string }, + "beacons_section/paragraph_8": { type: T.PANEL, children: string }, + "conduits_button": { type: T.PANEL, children: string }, + "conduits_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2' | 'padding_2' | 'header_1' | 'paragraph_3' | 'padding_3' | 'paragraph_4' }, + "conduits_section/paragraph_1": { type: T.PANEL, children: string }, + "conduits_section/padding_1": { type: T.PANEL, children: string }, + "conduits_section/paragraph_2": { type: T.PANEL, children: string }, + "conduits_section/padding_2": { type: T.PANEL, children: string }, + "conduits_section/header_1": { type: T.PANEL, children: string }, + "conduits_section/paragraph_3": { type: T.PANEL, children: string }, + "conduits_section/padding_3": { type: T.PANEL, children: string }, + "conduits_section/paragraph_4": { type: T.PANEL, children: string }, + "beds_button": { type: T.PANEL, children: string }, + "beds_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2_keyboard' | 'paragraph_2_gamepad' | 'paragraph_2_touch' | 'padding_2' | 'paragraph_3' | 'padding_3' | 'paragraph_4' | 'padding_4' | 'paragraph_5' }, + "beds_section/paragraph_1": { type: T.PANEL, children: string }, + "beds_section/padding_1": { type: T.PANEL, children: string }, + "beds_section/paragraph_2_keyboard": { type: T.PANEL, children: string }, + "beds_section/paragraph_2_gamepad": { type: T.PANEL, children: string }, + "beds_section/paragraph_2_touch": { type: T.PANEL, children: string }, + "beds_section/padding_2": { type: T.PANEL, children: string }, + "beds_section/paragraph_3": { type: T.PANEL, children: string }, + "beds_section/padding_3": { type: T.PANEL, children: string }, + "beds_section/paragraph_4": { type: T.PANEL, children: string }, + "beds_section/padding_4": { type: T.PANEL, children: string }, + "beds_section/paragraph_5": { type: T.PANEL, children: string }, + "blocks_button": { type: T.PANEL, children: string }, + "blocks_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2' | 'padding_2' | 'header_1' | 'paragraph_3' | 'padding_3' | 'header_2' | 'paragraph_4' | 'padding_4' | 'paragraph_5' | 'padding_5' | 'paragraph_6' | 'padding_6' | 'paragraph_7' | 'padding_7' | 'paragraph_8' | 'padding_8' | 'paragraph_9' }, + "blocks_section/paragraph_1": { type: T.PANEL, children: string }, + "blocks_section/padding_1": { type: T.PANEL, children: string }, + "blocks_section/paragraph_2": { type: T.PANEL, children: string }, + "blocks_section/padding_2": { type: T.PANEL, children: string }, + "blocks_section/header_1": { type: T.PANEL, children: string }, + "blocks_section/paragraph_3": { type: T.PANEL, children: string }, + "blocks_section/padding_3": { type: T.PANEL, children: string }, + "blocks_section/header_2": { type: T.PANEL, children: string }, + "blocks_section/paragraph_4": { type: T.PANEL, children: string }, + "blocks_section/padding_4": { type: T.PANEL, children: string }, + "blocks_section/paragraph_5": { type: T.PANEL, children: string }, + "blocks_section/padding_5": { type: T.PANEL, children: string }, + "blocks_section/paragraph_6": { type: T.PANEL, children: string }, + "blocks_section/padding_6": { type: T.PANEL, children: string }, + "blocks_section/paragraph_7": { type: T.PANEL, children: string }, + "blocks_section/padding_7": { type: T.PANEL, children: string }, + "blocks_section/paragraph_8": { type: T.PANEL, children: string }, + "blocks_section/padding_8": { type: T.PANEL, children: string }, + "blocks_section/paragraph_9": { type: T.PANEL, children: string }, + "book_and_quill_button": { type: T.PANEL, children: string }, + "book_and_quill_section": { type: T.STACK_PANEL, children: 'paragraph_1' }, + "book_and_quill_section/paragraph_1": { type: T.PANEL, children: string }, + "brewing_stand_button": { type: T.PANEL, children: string }, + "brewing_stand_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'header_1' | 'paragraph_2' | 'padding_2' | 'header_2' | 'paragraph_3' | 'padding_3' | 'paragraph_4' }, + "brewing_stand_section/paragraph_1": { type: T.PANEL, children: string }, + "brewing_stand_section/padding_1": { type: T.PANEL, children: string }, + "brewing_stand_section/header_1": { type: T.PANEL, children: string }, + "brewing_stand_section/paragraph_2": { type: T.PANEL, children: string }, + "brewing_stand_section/padding_2": { type: T.PANEL, children: string }, + "brewing_stand_section/header_2": { type: T.PANEL, children: string }, + "brewing_stand_section/paragraph_3": { type: T.PANEL, children: string }, + "brewing_stand_section/padding_3": { type: T.PANEL, children: string }, + "brewing_stand_section/paragraph_4": { type: T.PANEL, children: string }, + "cauldron_button": { type: T.PANEL, children: string }, + "cauldron_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'header_1' | 'paragraph_2_keyboard' | 'paragraph_2_gamepad' | 'paragraph_2_touch' | 'padding_2' | 'paragraph_3' | 'padding_3' | 'header_2' | 'paragraph_4_keyboard' | 'paragraph_4_gamepad' | 'paragraph_4_touch' | 'padding_4' | 'header_3' | 'paragraph_5_keyboard' | 'paragraph_5_gamepad' | 'paragraph_5_touch' | 'padding_5' | 'paragraph_6' }, + "cauldron_section/paragraph_1": { type: T.PANEL, children: string }, + "cauldron_section/padding_1": { type: T.PANEL, children: string }, + "cauldron_section/header_1": { type: T.PANEL, children: string }, + "cauldron_section/paragraph_2_keyboard": { type: T.PANEL, children: string }, + "cauldron_section/paragraph_2_gamepad": { type: T.PANEL, children: string }, + "cauldron_section/paragraph_2_touch": { type: T.PANEL, children: string }, + "cauldron_section/padding_2": { type: T.PANEL, children: string }, + "cauldron_section/paragraph_3": { type: T.PANEL, children: string }, + "cauldron_section/padding_3": { type: T.PANEL, children: string }, + "cauldron_section/header_2": { type: T.PANEL, children: string }, + "cauldron_section/paragraph_4_keyboard": { type: T.PANEL, children: string }, + "cauldron_section/paragraph_4_gamepad": { type: T.PANEL, children: string }, + "cauldron_section/paragraph_4_touch": { type: T.PANEL, children: string }, + "cauldron_section/padding_4": { type: T.PANEL, children: string }, + "cauldron_section/header_3": { type: T.PANEL, children: string }, + "cauldron_section/paragraph_5_keyboard": { type: T.PANEL, children: string }, + "cauldron_section/paragraph_5_gamepad": { type: T.PANEL, children: string }, + "cauldron_section/paragraph_5_touch": { type: T.PANEL, children: string }, + "cauldron_section/padding_5": { type: T.PANEL, children: string }, + "cauldron_section/paragraph_6": { type: T.PANEL, children: string }, + "chests_button": { type: T.PANEL, children: string }, + "chests_section": { type: T.STACK_PANEL, children: 'paragraph_1_keyboard' | 'paragraph_1_gamepad' | 'paragraph_1_touch' | 'padding_1' | 'paragraph_2' | 'padding_2' | 'paragraph_3' }, + "chests_section/paragraph_1_keyboard": { type: T.PANEL, children: string }, + "chests_section/paragraph_1_gamepad": { type: T.PANEL, children: string }, + "chests_section/paragraph_1_touch": { type: T.PANEL, children: string }, + "chests_section/padding_1": { type: T.PANEL, children: string }, + "chests_section/paragraph_2": { type: T.PANEL, children: string }, + "chests_section/padding_2": { type: T.PANEL, children: string }, + "chests_section/paragraph_3": { type: T.PANEL, children: string }, + "command_blocks_button": { type: T.PANEL, children: string }, + "command_blocks_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2' | 'padding_2' | 'paragraph_3' | 'padding_3' | 'paragraph_4' | 'padding_4' | 'paragraph_5' | 'paragraph_5_1' | 'paragraph_5_2' | 'paragraph_5_3' | 'padding_5' | 'paragraph_6' | 'paragraph_6_1' | 'paragraph_6_2' | 'padding_6' | 'paragraph_7' | 'paragraph_7_1' | 'paragraph_7_2' | 'padding_7' | 'paragraph_8' }, + "command_blocks_section/paragraph_1": { type: T.PANEL, children: string }, + "command_blocks_section/padding_1": { type: T.PANEL, children: string }, + "command_blocks_section/paragraph_2": { type: T.PANEL, children: string }, + "command_blocks_section/padding_2": { type: T.PANEL, children: string }, + "command_blocks_section/paragraph_3": { type: T.PANEL, children: string }, + "command_blocks_section/padding_3": { type: T.PANEL, children: string }, + "command_blocks_section/paragraph_4": { type: T.PANEL, children: string }, + "command_blocks_section/padding_4": { type: T.PANEL, children: string }, + "command_blocks_section/paragraph_5": { type: T.PANEL, children: string }, + "command_blocks_section/paragraph_5_1": { type: T.PANEL, children: string }, + "command_blocks_section/paragraph_5_2": { type: T.PANEL, children: string }, + "command_blocks_section/paragraph_5_3": { type: T.PANEL, children: string }, + "command_blocks_section/padding_5": { type: T.PANEL, children: string }, + "command_blocks_section/paragraph_6": { type: T.PANEL, children: string }, + "command_blocks_section/paragraph_6_1": { type: T.PANEL, children: string }, + "command_blocks_section/paragraph_6_2": { type: T.PANEL, children: string }, + "command_blocks_section/padding_6": { type: T.PANEL, children: string }, + "command_blocks_section/paragraph_7": { type: T.PANEL, children: string }, + "command_blocks_section/paragraph_7_1": { type: T.PANEL, children: string }, + "command_blocks_section/paragraph_7_2": { type: T.PANEL, children: string }, + "command_blocks_section/padding_7": { type: T.PANEL, children: string }, + "command_blocks_section/paragraph_8": { type: T.PANEL, children: string }, + "commands_button": { type: T.PANEL, children: string }, + "commands_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2' }, + "commands_section/paragraph_1": { type: T.PANEL, children: string }, + "commands_section/padding_1": { type: T.PANEL, children: string }, + "commands_section/paragraph_2": { type: T.PANEL, children: string }, + "crafting_table_button": { type: T.PANEL, children: string }, + "crafting_table_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2_keyboard' | 'paragraph_2_gamepad' | 'paragraph_2_touch' }, + "crafting_table_section/paragraph_1": { type: T.PANEL, children: string }, + "crafting_table_section/padding_1": { type: T.PANEL, children: string }, + "crafting_table_section/paragraph_2_keyboard": { type: T.PANEL, children: string }, + "crafting_table_section/paragraph_2_gamepad": { type: T.PANEL, children: string }, + "crafting_table_section/paragraph_2_touch": { type: T.PANEL, children: string }, + "creative_mode_button": { type: T.PANEL, children: string }, + "creative_mode_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'header_1' | 'paragraph_2' | 'padding_2' | 'paragraph_3' | 'padding_3' | 'header_2' | 'paragraph_4_keyboard' | 'paragraph_4_gamepad' | 'paragraph_4a_touch_joystick_tap' | 'paragraph_4a_touch_classic_dpad' | 'paragraph_4a_touch_joystick_crosshair' | 'padding_4a_touch' | 'paragraph_4b_touch_joystick_tap' | 'paragraph_4b_touch_classic_dpad' | 'paragraph_4b_touch_joystick_crosshair' }, + "creative_mode_section/paragraph_1": { type: T.PANEL, children: string }, + "creative_mode_section/padding_1": { type: T.PANEL, children: string }, + "creative_mode_section/header_1": { type: T.PANEL, children: string }, + "creative_mode_section/paragraph_2": { type: T.PANEL, children: string }, + "creative_mode_section/padding_2": { type: T.PANEL, children: string }, + "creative_mode_section/paragraph_3": { type: T.PANEL, children: string }, + "creative_mode_section/padding_3": { type: T.PANEL, children: string }, + "creative_mode_section/header_2": { type: T.PANEL, children: string }, + "creative_mode_section/paragraph_4_keyboard": { type: T.PANEL, children: string }, + "creative_mode_section/paragraph_4_gamepad": { type: T.PANEL, children: string }, + "creative_mode_section/paragraph_4a_touch_joystick_tap": { type: T.PANEL, children: string }, + "creative_mode_section/paragraph_4a_touch_classic_dpad": { type: T.PANEL, children: string }, + "creative_mode_section/paragraph_4a_touch_joystick_crosshair": { type: T.PANEL, children: string }, + "creative_mode_section/padding_4a_touch": { type: T.PANEL, children: string }, + "creative_mode_section/paragraph_4b_touch_joystick_tap": { type: T.PANEL, children: string }, + "creative_mode_section/paragraph_4b_touch_classic_dpad": { type: T.PANEL, children: string }, + "creative_mode_section/paragraph_4b_touch_joystick_crosshair": { type: T.PANEL, children: string }, + "difficulty_button": { type: T.PANEL, children: string }, + "difficulty_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'header_1' | 'paragraph_2' | 'padding_2' | 'header_2' | 'paragraph_3' | 'padding_3' | 'header_3' | 'paragraph_4' | 'padding_4' | 'header_4' | 'paragraph_5' }, + "difficulty_section/paragraph_1": { type: T.PANEL, children: string }, + "difficulty_section/padding_1": { type: T.PANEL, children: string }, + "difficulty_section/header_1": { type: T.PANEL, children: string }, + "difficulty_section/paragraph_2": { type: T.PANEL, children: string }, + "difficulty_section/padding_2": { type: T.PANEL, children: string }, + "difficulty_section/header_2": { type: T.PANEL, children: string }, + "difficulty_section/paragraph_3": { type: T.PANEL, children: string }, + "difficulty_section/padding_3": { type: T.PANEL, children: string }, + "difficulty_section/header_3": { type: T.PANEL, children: string }, + "difficulty_section/paragraph_4": { type: T.PANEL, children: string }, + "difficulty_section/padding_4": { type: T.PANEL, children: string }, + "difficulty_section/header_4": { type: T.PANEL, children: string }, + "difficulty_section/paragraph_5": { type: T.PANEL, children: string }, + "dispensers_button": { type: T.PANEL, children: string }, + "dispensers_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2_keyboard' | 'paragraph_2_gamepad' | 'paragraph_2_touch' | 'padding_2' | 'header_1' | 'paragraph_3' | 'padding_3' | 'paragraph_4' }, + "dispensers_section/paragraph_1": { type: T.PANEL, children: string }, + "dispensers_section/padding_1": { type: T.PANEL, children: string }, + "dispensers_section/paragraph_2_keyboard": { type: T.PANEL, children: string }, + "dispensers_section/paragraph_2_gamepad": { type: T.PANEL, children: string }, + "dispensers_section/paragraph_2_touch": { type: T.PANEL, children: string }, + "dispensers_section/padding_2": { type: T.PANEL, children: string }, + "dispensers_section/header_1": { type: T.PANEL, children: string }, + "dispensers_section/paragraph_3": { type: T.PANEL, children: string }, + "dispensers_section/padding_3": { type: T.PANEL, children: string }, + "dispensers_section/paragraph_4": { type: T.PANEL, children: string }, + "droppers_button": { type: T.PANEL, children: string }, + "droppers_section": { type: T.STACK_PANEL, children: 'paragraph_1_keyboard' | 'paragraph_1_gamepad' | 'paragraph_1_touch' | 'padding_1' | 'header_1' | 'paragraph_2' }, + "droppers_section/paragraph_1_keyboard": { type: T.PANEL, children: string }, + "droppers_section/paragraph_1_gamepad": { type: T.PANEL, children: string }, + "droppers_section/paragraph_1_touch": { type: T.PANEL, children: string }, + "droppers_section/padding_1": { type: T.PANEL, children: string }, + "droppers_section/header_1": { type: T.PANEL, children: string }, + "droppers_section/paragraph_2": { type: T.PANEL, children: string }, + "dyes_button": { type: T.PANEL, children: string }, + "dyes_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2' | 'padding_2' | 'paragraph_3' | 'padding_3' | 'paragraph_4' | 'padding_4' | 'paragraph_5' | 'padding_5' | 'paragraph_6' | 'padding_6' | 'paragraph_7' }, + "dyes_section/paragraph_1": { type: T.PANEL, children: string }, + "dyes_section/padding_1": { type: T.PANEL, children: string }, + "dyes_section/paragraph_2": { type: T.PANEL, children: string }, + "dyes_section/padding_2": { type: T.PANEL, children: string }, + "dyes_section/paragraph_3": { type: T.PANEL, children: string }, + "dyes_section/padding_3": { type: T.PANEL, children: string }, + "dyes_section/paragraph_4": { type: T.PANEL, children: string }, + "dyes_section/padding_4": { type: T.PANEL, children: string }, + "dyes_section/paragraph_5": { type: T.PANEL, children: string }, + "dyes_section/padding_5": { type: T.PANEL, children: string }, + "dyes_section/paragraph_6": { type: T.PANEL, children: string }, + "dyes_section/padding_6": { type: T.PANEL, children: string }, + "dyes_section/paragraph_7": { type: T.PANEL, children: string }, + "elytra_button": { type: T.PANEL, children: string }, + "elytra_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2' | 'padding_2' | 'header_1' | 'paragraph_3_keyboard' | 'paragraph_3_gamepad' | 'paragraph_3_touch' | 'padding_3' | 'paragraph_4' | 'paragraph_4_touch' | 'padding_4' | 'paragraph_5' | 'padding_5' | 'header_2' | 'paragraph_6' }, + "elytra_section/paragraph_1": { type: T.PANEL, children: string }, + "elytra_section/padding_1": { type: T.PANEL, children: string }, + "elytra_section/paragraph_2": { type: T.PANEL, children: string }, + "elytra_section/padding_2": { type: T.PANEL, children: string }, + "elytra_section/header_1": { type: T.PANEL, children: string }, + "elytra_section/paragraph_3_keyboard": { type: T.PANEL, children: string }, + "elytra_section/paragraph_3_gamepad": { type: T.PANEL, children: string }, + "elytra_section/paragraph_3_touch": { type: T.PANEL, children: string }, + "elytra_section/padding_3": { type: T.PANEL, children: string }, + "elytra_section/paragraph_4": { type: T.PANEL, children: string }, + "elytra_section/paragraph_4_touch": { type: T.PANEL, children: string }, + "elytra_section/padding_4": { type: T.PANEL, children: string }, + "elytra_section/paragraph_5": { type: T.PANEL, children: string }, + "elytra_section/padding_5": { type: T.PANEL, children: string }, + "elytra_section/header_2": { type: T.PANEL, children: string }, + "elytra_section/paragraph_6": { type: T.PANEL, children: string }, + "enchanting_table_button": { type: T.PANEL, children: string }, + "enchanting_table_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'header_1' | 'paragraph_2' | 'padding_2' | 'paragraph_3' | 'padding_3' | 'header_2' | 'paragraph_4' | 'padding_4' | 'header_3' | 'paragraph_5' }, + "enchanting_table_section/paragraph_1": { type: T.PANEL, children: string }, + "enchanting_table_section/padding_1": { type: T.PANEL, children: string }, + "enchanting_table_section/header_1": { type: T.PANEL, children: string }, + "enchanting_table_section/paragraph_2": { type: T.PANEL, children: string }, + "enchanting_table_section/padding_2": { type: T.PANEL, children: string }, + "enchanting_table_section/paragraph_3": { type: T.PANEL, children: string }, + "enchanting_table_section/padding_3": { type: T.PANEL, children: string }, + "enchanting_table_section/header_2": { type: T.PANEL, children: string }, + "enchanting_table_section/paragraph_4": { type: T.PANEL, children: string }, + "enchanting_table_section/padding_4": { type: T.PANEL, children: string }, + "enchanting_table_section/header_3": { type: T.PANEL, children: string }, + "enchanting_table_section/paragraph_5": { type: T.PANEL, children: string }, + "end_cities_button": { type: T.PANEL, children: string }, + "end_cities_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2' }, + "end_cities_section/paragraph_1": { type: T.PANEL, children: string }, + "end_cities_section/padding_1": { type: T.PANEL, children: string }, + "end_cities_section/paragraph_2": { type: T.PANEL, children: string }, + "eye_of_ender_button": { type: T.PANEL, children: string }, + "eye_of_ender_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2' }, + "eye_of_ender_section/paragraph_1": { type: T.PANEL, children: string }, + "eye_of_ender_section/padding_1": { type: T.PANEL, children: string }, + "eye_of_ender_section/paragraph_2": { type: T.PANEL, children: string }, + "farming_button": { type: T.PANEL, children: string }, + "farming_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'header_1' | 'paragraph_2' | 'padding_2' | 'paragraph_3' | 'padding_3' | 'header_2' | 'paragraph_4' | 'padding_4' | 'paragraph_5' | 'padding_5' | 'paragraph_6' | 'padding_6' | 'paragraph_7' }, + "farming_section/paragraph_1": { type: T.PANEL, children: string }, + "farming_section/padding_1": { type: T.PANEL, children: string }, + "farming_section/header_1": { type: T.PANEL, children: string }, + "farming_section/paragraph_2": { type: T.PANEL, children: string }, + "farming_section/padding_2": { type: T.PANEL, children: string }, + "farming_section/paragraph_3": { type: T.PANEL, children: string }, + "farming_section/padding_3": { type: T.PANEL, children: string }, + "farming_section/header_2": { type: T.PANEL, children: string }, + "farming_section/paragraph_4": { type: T.PANEL, children: string }, + "farming_section/padding_4": { type: T.PANEL, children: string }, + "farming_section/paragraph_5": { type: T.PANEL, children: string }, + "farming_section/padding_5": { type: T.PANEL, children: string }, + "farming_section/paragraph_6": { type: T.PANEL, children: string }, + "farming_section/padding_6": { type: T.PANEL, children: string }, + "farming_section/paragraph_7": { type: T.PANEL, children: string }, + "fireworks_button": { type: T.PANEL, children: string }, + "fireworks_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2' | 'padding_2' | 'header_1' | 'paragraph_3_keyboard' | 'paragraph_3_gamepad' | 'paragraph_3_touch' | 'padding_3' | 'paragraph_4' | 'padding_4' | 'header_2' | 'paragraph_5' | 'padding_5' | 'paragraph_6' | 'padding_5a' | 'paragraph_6_1' | 'padding_5b' | 'paragraph_6_2' | 'padding_5c' | 'paragraph_6_3' | 'padding_5d' | 'paragraph_6_4' | 'padding_5e' | 'paragraph_6_5' | 'padding_5f' | 'paragraph_6_6' | 'padding_6' | 'header_3' | 'paragraph_7' }, + "fireworks_section/paragraph_1": { type: T.PANEL, children: string }, + "fireworks_section/padding_1": { type: T.PANEL, children: string }, + "fireworks_section/paragraph_2": { type: T.PANEL, children: string }, + "fireworks_section/padding_2": { type: T.PANEL, children: string }, + "fireworks_section/header_1": { type: T.PANEL, children: string }, + "fireworks_section/paragraph_3_keyboard": { type: T.PANEL, children: string }, + "fireworks_section/paragraph_3_gamepad": { type: T.PANEL, children: string }, + "fireworks_section/paragraph_3_touch": { type: T.PANEL, children: string }, + "fireworks_section/padding_3": { type: T.PANEL, children: string }, + "fireworks_section/paragraph_4": { type: T.PANEL, children: string }, + "fireworks_section/padding_4": { type: T.PANEL, children: string }, + "fireworks_section/header_2": { type: T.PANEL, children: string }, + "fireworks_section/paragraph_5": { type: T.PANEL, children: string }, + "fireworks_section/padding_5": { type: T.PANEL, children: string }, + "fireworks_section/paragraph_6": { type: T.PANEL, children: string }, + "fireworks_section/padding_5a": { type: T.PANEL, children: string }, + "fireworks_section/paragraph_6_1": { type: T.PANEL, children: string }, + "fireworks_section/padding_5b": { type: T.PANEL, children: string }, + "fireworks_section/paragraph_6_2": { type: T.PANEL, children: string }, + "fireworks_section/padding_5c": { type: T.PANEL, children: string }, + "fireworks_section/paragraph_6_3": { type: T.PANEL, children: string }, + "fireworks_section/padding_5d": { type: T.PANEL, children: string }, + "fireworks_section/paragraph_6_4": { type: T.PANEL, children: string }, + "fireworks_section/padding_5e": { type: T.PANEL, children: string }, + "fireworks_section/paragraph_6_5": { type: T.PANEL, children: string }, + "fireworks_section/padding_5f": { type: T.PANEL, children: string }, + "fireworks_section/paragraph_6_6": { type: T.PANEL, children: string }, + "fireworks_section/padding_6": { type: T.PANEL, children: string }, + "fireworks_section/header_3": { type: T.PANEL, children: string }, + "fireworks_section/paragraph_7": { type: T.PANEL, children: string }, + "jigsaw_blocks_button": { type: T.PANEL, children: string }, + "jigsaw_blocks_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'header_1' | 'paragraph_2' | 'padding_2' | 'header_2' | 'paragraph_3' | 'padding_3' | 'paragraph_4' | 'padding_4' | 'paragraph_5' | 'padding_5' | 'paragraph_6' | 'padding_6' | 'paragraph_7' | 'padding_7' | 'paragraph_8' | 'padding_8' | 'paragraph_9' }, + "jigsaw_blocks_section/paragraph_1": { type: T.PANEL, children: string }, + "jigsaw_blocks_section/padding_1": { type: T.PANEL, children: string }, + "jigsaw_blocks_section/header_1": { type: T.PANEL, children: string }, + "jigsaw_blocks_section/paragraph_2": { type: T.PANEL, children: string }, + "jigsaw_blocks_section/padding_2": { type: T.PANEL, children: string }, + "jigsaw_blocks_section/header_2": { type: T.PANEL, children: string }, + "jigsaw_blocks_section/paragraph_3": { type: T.PANEL, children: string }, + "jigsaw_blocks_section/padding_3": { type: T.PANEL, children: string }, + "jigsaw_blocks_section/paragraph_4": { type: T.PANEL, children: string }, + "jigsaw_blocks_section/padding_4": { type: T.PANEL, children: string }, + "jigsaw_blocks_section/paragraph_5": { type: T.PANEL, children: string }, + "jigsaw_blocks_section/padding_5": { type: T.PANEL, children: string }, + "jigsaw_blocks_section/paragraph_6": { type: T.PANEL, children: string }, + "jigsaw_blocks_section/padding_6": { type: T.PANEL, children: string }, + "jigsaw_blocks_section/paragraph_7": { type: T.PANEL, children: string }, + "jigsaw_blocks_section/padding_7": { type: T.PANEL, children: string }, + "jigsaw_blocks_section/paragraph_8": { type: T.PANEL, children: string }, + "jigsaw_blocks_section/padding_8": { type: T.PANEL, children: string }, + "jigsaw_blocks_section/paragraph_9": { type: T.PANEL, children: string }, + "fishing_button": { type: T.PANEL, children: string }, + "fishing_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'header_1' | 'paragraph_2_keyboard' | 'paragraph_2_gamepad' | 'paragraph_2_touch' | 'padding_2' | 'header_2' | 'paragraph_3' | 'padding_3' | 'paragraph_4_keyboard' | 'paragraph_4_gamepad' | 'paragraph_4_touch' }, + "fishing_section/paragraph_1": { type: T.PANEL, children: string }, + "fishing_section/padding_1": { type: T.PANEL, children: string }, + "fishing_section/header_1": { type: T.PANEL, children: string }, + "fishing_section/paragraph_2_keyboard": { type: T.PANEL, children: string }, + "fishing_section/paragraph_2_gamepad": { type: T.PANEL, children: string }, + "fishing_section/paragraph_2_touch": { type: T.PANEL, children: string }, + "fishing_section/padding_2": { type: T.PANEL, children: string }, + "fishing_section/header_2": { type: T.PANEL, children: string }, + "fishing_section/paragraph_3": { type: T.PANEL, children: string }, + "fishing_section/padding_3": { type: T.PANEL, children: string }, + "fishing_section/paragraph_4_keyboard": { type: T.PANEL, children: string }, + "fishing_section/paragraph_4_gamepad": { type: T.PANEL, children: string }, + "fishing_section/paragraph_4_touch": { type: T.PANEL, children: string }, + "furnace_button": { type: T.PANEL, children: string }, + "furnace_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2_keyboard' | 'paragraph_2_gamepad' | 'paragraph_2_touch' | 'padding_2' | 'paragraph_3' }, + "furnace_section/paragraph_1": { type: T.PANEL, children: string }, + "furnace_section/padding_1": { type: T.PANEL, children: string }, + "furnace_section/paragraph_2_keyboard": { type: T.PANEL, children: string }, + "furnace_section/paragraph_2_gamepad": { type: T.PANEL, children: string }, + "furnace_section/paragraph_2_touch": { type: T.PANEL, children: string }, + "furnace_section/padding_2": { type: T.PANEL, children: string }, + "furnace_section/paragraph_3": { type: T.PANEL, children: string }, + "game_settings_button": { type: T.PANEL, children: string }, + "game_settings_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2' | 'padding_2' | 'paragraph_3' | 'padding_3' | 'paragraph_4' | 'padding_4' | 'header_1' | 'paragraph_5' | 'padding_5' | 'paragraph_6' | 'padding_6' | 'paragraph_7' | 'paragraph_7_1' | 'paragraph_7_2' | 'padding_7' | 'paragraph_8' | 'padding_8' | 'header_2' | 'paragraph_9' | 'padding_9' | 'paragraph_10' | 'padding_10' | 'paragraph_11' | 'padding_11' | 'paragraph_12' | 'padding_12' | 'paragraph_13' | 'padding_13' | 'paragraph_14' | 'padding_14' | 'paragraph_15' | 'padding_15' | 'paragraph_16' | 'padding_16' | 'paragraph_17' }, + "game_settings_section/paragraph_1": { type: T.PANEL, children: string }, + "game_settings_section/padding_1": { type: T.PANEL, children: string }, + "game_settings_section/paragraph_2": { type: T.PANEL, children: string }, + "game_settings_section/padding_2": { type: T.PANEL, children: string }, + "game_settings_section/paragraph_3": { type: T.PANEL, children: string }, + "game_settings_section/padding_3": { type: T.PANEL, children: string }, + "game_settings_section/paragraph_4": { type: T.PANEL, children: string }, + "game_settings_section/padding_4": { type: T.PANEL, children: string }, + "game_settings_section/header_1": { type: T.PANEL, children: string }, + "game_settings_section/paragraph_5": { type: T.PANEL, children: string }, + "game_settings_section/padding_5": { type: T.PANEL, children: string }, + "game_settings_section/paragraph_6": { type: T.PANEL, children: string }, + "game_settings_section/padding_6": { type: T.PANEL, children: string }, + "game_settings_section/paragraph_7": { type: T.PANEL, children: string }, + "game_settings_section/paragraph_7_1": { type: T.PANEL, children: string }, + "game_settings_section/paragraph_7_2": { type: T.PANEL, children: string }, + "game_settings_section/padding_7": { type: T.PANEL, children: string }, + "game_settings_section/paragraph_8": { type: T.PANEL, children: string }, + "game_settings_section/padding_8": { type: T.PANEL, children: string }, + "game_settings_section/header_2": { type: T.PANEL, children: string }, + "game_settings_section/paragraph_9": { type: T.PANEL, children: string }, + "game_settings_section/padding_9": { type: T.PANEL, children: string }, + "game_settings_section/paragraph_10": { type: T.PANEL, children: string }, + "game_settings_section/padding_10": { type: T.PANEL, children: string }, + "game_settings_section/paragraph_11": { type: T.PANEL, children: string }, + "game_settings_section/padding_11": { type: T.PANEL, children: string }, + "game_settings_section/paragraph_12": { type: T.PANEL, children: string }, + "game_settings_section/padding_12": { type: T.PANEL, children: string }, + "game_settings_section/paragraph_13": { type: T.PANEL, children: string }, + "game_settings_section/padding_13": { type: T.PANEL, children: string }, + "game_settings_section/paragraph_14": { type: T.PANEL, children: string }, + "game_settings_section/padding_14": { type: T.PANEL, children: string }, + "game_settings_section/paragraph_15": { type: T.PANEL, children: string }, + "game_settings_section/padding_15": { type: T.PANEL, children: string }, + "game_settings_section/paragraph_16": { type: T.PANEL, children: string }, + "game_settings_section/padding_16": { type: T.PANEL, children: string }, + "game_settings_section/paragraph_17": { type: T.PANEL, children: string }, + "hoppers_button": { type: T.PANEL, children: string }, + "hoppers_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2' | 'padding_2' | 'header_1' | 'paragraph_3' | 'padding_3' | 'paragraph_4' }, + "hoppers_section/paragraph_1": { type: T.PANEL, children: string }, + "hoppers_section/padding_1": { type: T.PANEL, children: string }, + "hoppers_section/paragraph_2": { type: T.PANEL, children: string }, + "hoppers_section/padding_2": { type: T.PANEL, children: string }, + "hoppers_section/header_1": { type: T.PANEL, children: string }, + "hoppers_section/paragraph_3": { type: T.PANEL, children: string }, + "hoppers_section/padding_3": { type: T.PANEL, children: string }, + "hoppers_section/paragraph_4": { type: T.PANEL, children: string }, + "host_and_player_options_button": { type: T.PANEL, children: string }, + "host_and_player_options_section": { type: T.STACK_PANEL, children: 'paragraph_1_not_touch' | 'paragraph_1_touch' }, + "host_and_player_options_section/paragraph_1_not_touch": { type: T.PANEL, children: string }, + "host_and_player_options_section/paragraph_1_touch": { type: T.PANEL, children: string }, + "jukebox_button": { type: T.PANEL, children: string }, + "jukebox_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'header_1' | 'paragraph_2_not_touch' | 'paragraph_2_touch' | 'padding_2' | 'header_2' | 'paragraph_3' | 'padding_3' | 'paragraph_4' | 'padding_4' | 'paragraph_5' | 'padding_5' | 'paragraph_6' | 'padding_6' | 'header_3' | 'paragraph_7' | 'padding_7' | 'paragraph_8' }, + "jukebox_section/paragraph_1": { type: T.PANEL, children: string }, + "jukebox_section/padding_1": { type: T.PANEL, children: string }, + "jukebox_section/header_1": { type: T.PANEL, children: string }, + "jukebox_section/paragraph_2_not_touch": { type: T.PANEL, children: string }, + "jukebox_section/paragraph_2_touch": { type: T.PANEL, children: string }, + "jukebox_section/padding_2": { type: T.PANEL, children: string }, + "jukebox_section/header_2": { type: T.PANEL, children: string }, + "jukebox_section/paragraph_3": { type: T.PANEL, children: string }, + "jukebox_section/padding_3": { type: T.PANEL, children: string }, + "jukebox_section/paragraph_4": { type: T.PANEL, children: string }, + "jukebox_section/padding_4": { type: T.PANEL, children: string }, + "jukebox_section/paragraph_5": { type: T.PANEL, children: string }, + "jukebox_section/padding_5": { type: T.PANEL, children: string }, + "jukebox_section/paragraph_6": { type: T.PANEL, children: string }, + "jukebox_section/padding_6": { type: T.PANEL, children: string }, + "jukebox_section/header_3": { type: T.PANEL, children: string }, + "jukebox_section/paragraph_7": { type: T.PANEL, children: string }, + "jukebox_section/padding_7": { type: T.PANEL, children: string }, + "jukebox_section/paragraph_8": { type: T.PANEL, children: string }, + "loom_button": { type: T.PANEL, children: string }, + "loom_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'header_1' | 'paragraph_2' | 'padding_2' | 'paragraph_3' | 'padding_3' | 'header_2' | 'paragraph_4' }, + "loom_section/paragraph_1": { type: T.PANEL, children: string }, + "loom_section/padding_1": { type: T.PANEL, children: string }, + "loom_section/header_1": { type: T.PANEL, children: string }, + "loom_section/paragraph_2": { type: T.PANEL, children: string }, + "loom_section/padding_2": { type: T.PANEL, children: string }, + "loom_section/paragraph_3": { type: T.PANEL, children: string }, + "loom_section/padding_3": { type: T.PANEL, children: string }, + "loom_section/header_2": { type: T.PANEL, children: string }, + "loom_section/paragraph_4": { type: T.PANEL, children: string }, + "realms_stories_button": { type: T.PANEL, children: string }, + "realms_stories_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'header_1' | 'paragraph_2' | 'padding_2' | 'header_2' | 'paragraph_3' | 'padding_3' | 'header_3' | 'paragraph_4' | 'padding_4' | 'header_4' | 'paragraph_5' | 'padding_5' | 'header_5' | 'paragraph_6' }, + "realms_stories_section/paragraph_1": { type: T.PANEL, children: string }, + "realms_stories_section/padding_1": { type: T.PANEL, children: string }, + "realms_stories_section/header_1": { type: T.PANEL, children: string }, + "realms_stories_section/paragraph_2": { type: T.PANEL, children: string }, + "realms_stories_section/padding_2": { type: T.PANEL, children: string }, + "realms_stories_section/header_2": { type: T.PANEL, children: string }, + "realms_stories_section/paragraph_3": { type: T.PANEL, children: string }, + "realms_stories_section/padding_3": { type: T.PANEL, children: string }, + "realms_stories_section/header_3": { type: T.PANEL, children: string }, + "realms_stories_section/paragraph_4": { type: T.PANEL, children: string }, + "realms_stories_section/padding_4": { type: T.PANEL, children: string }, + "realms_stories_section/header_4": { type: T.PANEL, children: string }, + "realms_stories_section/paragraph_5": { type: T.PANEL, children: string }, + "realms_stories_section/padding_5": { type: T.PANEL, children: string }, + "realms_stories_section/header_5": { type: T.PANEL, children: string }, + "realms_stories_section/paragraph_6": { type: T.PANEL, children: string }, + "smithing_table_button": { type: T.PANEL, children: string }, + "smithing_table_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2' | 'padding_2' | 'header_1' | 'paragraph_3' | 'padding_3' | 'paragraph_4' | 'padding_4' | 'paragraph_5' | 'padding_5' | 'paragraph_6' | 'padding_6' | 'header_2' | 'paragraph_7' | 'padding_7' | 'paragraph_8' | 'padding_8' | 'paragraph_9' }, + "smithing_table_section/paragraph_1": { type: T.PANEL, children: string }, + "smithing_table_section/padding_1": { type: T.PANEL, children: string }, + "smithing_table_section/paragraph_2": { type: T.PANEL, children: string }, + "smithing_table_section/padding_2": { type: T.PANEL, children: string }, + "smithing_table_section/header_1": { type: T.PANEL, children: string }, + "smithing_table_section/paragraph_3": { type: T.PANEL, children: string }, + "smithing_table_section/padding_3": { type: T.PANEL, children: string }, + "smithing_table_section/paragraph_4": { type: T.PANEL, children: string }, + "smithing_table_section/padding_4": { type: T.PANEL, children: string }, + "smithing_table_section/paragraph_5": { type: T.PANEL, children: string }, + "smithing_table_section/padding_5": { type: T.PANEL, children: string }, + "smithing_table_section/paragraph_6": { type: T.PANEL, children: string }, + "smithing_table_section/padding_6": { type: T.PANEL, children: string }, + "smithing_table_section/header_2": { type: T.PANEL, children: string }, + "smithing_table_section/paragraph_7": { type: T.PANEL, children: string }, + "smithing_table_section/padding_7": { type: T.PANEL, children: string }, + "smithing_table_section/paragraph_8": { type: T.PANEL, children: string }, + "smithing_table_section/padding_8": { type: T.PANEL, children: string }, + "smithing_table_section/paragraph_9": { type: T.PANEL, children: string }, + "mounts_button": { type: T.PANEL, children: string }, + "mounts_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2' | 'padding_2' | 'header_1' | 'paragraph_3_not_touch' | 'paragraph_3_touch' | 'padding_3' | 'paragraph_4' | 'padding_4' | 'header_2' | 'paragraph_5' | 'padding_5' | 'paragraph_6' | 'padding_6' | 'paragraph_6b' | 'padding_6b' | 'paragraph_7' | 'padding_7' | 'paragraph_8' | 'padding_8' | 'header_3' | 'paragraph_9' | 'padding_9' | 'paragraph_10' | 'padding_10' | 'paragraph_11' | 'padding_11' | 'paragraph_12' | 'padding_12' | 'header_4' | 'paragraph_13' | 'padding_13' | 'paragraph_14' | 'padding_14' | 'header_5' | 'paragraph_15_not_touch' | 'paragraph_15a_touch' | 'padding_15' | 'paragraph_15b_touch' }, + "mounts_section/paragraph_1": { type: T.PANEL, children: string }, + "mounts_section/padding_1": { type: T.PANEL, children: string }, + "mounts_section/paragraph_2": { type: T.PANEL, children: string }, + "mounts_section/padding_2": { type: T.PANEL, children: string }, + "mounts_section/header_1": { type: T.PANEL, children: string }, + "mounts_section/paragraph_3_not_touch": { type: T.PANEL, children: string }, + "mounts_section/paragraph_3_touch": { type: T.PANEL, children: string }, + "mounts_section/padding_3": { type: T.PANEL, children: string }, + "mounts_section/paragraph_4": { type: T.PANEL, children: string }, + "mounts_section/padding_4": { type: T.PANEL, children: string }, + "mounts_section/header_2": { type: T.PANEL, children: string }, + "mounts_section/paragraph_5": { type: T.PANEL, children: string }, + "mounts_section/padding_5": { type: T.PANEL, children: string }, + "mounts_section/paragraph_6": { type: T.PANEL, children: string }, + "mounts_section/padding_6": { type: T.PANEL, children: string }, + "mounts_section/paragraph_6b": { type: T.PANEL, children: string }, + "mounts_section/padding_6b": { type: T.PANEL, children: string }, + "mounts_section/paragraph_7": { type: T.PANEL, children: string }, + "mounts_section/padding_7": { type: T.PANEL, children: string }, + "mounts_section/paragraph_8": { type: T.PANEL, children: string }, + "mounts_section/padding_8": { type: T.PANEL, children: string }, + "mounts_section/header_3": { type: T.PANEL, children: string }, + "mounts_section/paragraph_9": { type: T.PANEL, children: string }, + "mounts_section/padding_9": { type: T.PANEL, children: string }, + "mounts_section/paragraph_10": { type: T.PANEL, children: string }, + "mounts_section/padding_10": { type: T.PANEL, children: string }, + "mounts_section/paragraph_11": { type: T.PANEL, children: string }, + "mounts_section/padding_11": { type: T.PANEL, children: string }, + "mounts_section/paragraph_12": { type: T.PANEL, children: string }, + "mounts_section/padding_12": { type: T.PANEL, children: string }, + "mounts_section/header_4": { type: T.PANEL, children: string }, + "mounts_section/paragraph_13": { type: T.PANEL, children: string }, + "mounts_section/padding_13": { type: T.PANEL, children: string }, + "mounts_section/paragraph_14": { type: T.PANEL, children: string }, + "mounts_section/padding_14": { type: T.PANEL, children: string }, + "mounts_section/header_5": { type: T.PANEL, children: string }, + "mounts_section/paragraph_15_not_touch": { type: T.PANEL, children: string }, + "mounts_section/paragraph_15a_touch": { type: T.PANEL, children: string }, + "mounts_section/padding_15": { type: T.PANEL, children: string }, + "mounts_section/paragraph_15b_touch": { type: T.PANEL, children: string }, + "navigation_button": { type: T.PANEL, children: string }, + "navigation_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2' | 'padding_2' | 'header_1' | 'paragraph_3' | 'padding_3' | 'paragraph_4' | 'padding_4' | 'paragraph_5' | 'padding_5' | 'paragraph_6' | 'padding_6' | 'paragraph_7' | 'padding_7' | 'header_2' | 'paragraph_8' | 'padding_8' | 'paragraph_9' | 'padding_9' | 'header_3' | 'paragraph_10' }, + "navigation_section/paragraph_1": { type: T.PANEL, children: string }, + "navigation_section/padding_1": { type: T.PANEL, children: string }, + "navigation_section/paragraph_2": { type: T.PANEL, children: string }, + "navigation_section/padding_2": { type: T.PANEL, children: string }, + "navigation_section/header_1": { type: T.PANEL, children: string }, + "navigation_section/paragraph_3": { type: T.PANEL, children: string }, + "navigation_section/padding_3": { type: T.PANEL, children: string }, + "navigation_section/paragraph_4": { type: T.PANEL, children: string }, + "navigation_section/padding_4": { type: T.PANEL, children: string }, + "navigation_section/paragraph_5": { type: T.PANEL, children: string }, + "navigation_section/padding_5": { type: T.PANEL, children: string }, + "navigation_section/paragraph_6": { type: T.PANEL, children: string }, + "navigation_section/padding_6": { type: T.PANEL, children: string }, + "navigation_section/paragraph_7": { type: T.PANEL, children: string }, + "navigation_section/padding_7": { type: T.PANEL, children: string }, + "navigation_section/header_2": { type: T.PANEL, children: string }, + "navigation_section/paragraph_8": { type: T.PANEL, children: string }, + "navigation_section/padding_8": { type: T.PANEL, children: string }, + "navigation_section/paragraph_9": { type: T.PANEL, children: string }, + "navigation_section/padding_9": { type: T.PANEL, children: string }, + "navigation_section/header_3": { type: T.PANEL, children: string }, + "navigation_section/paragraph_10": { type: T.PANEL, children: string }, + "nether_portals_button": { type: T.PANEL, children: string }, + "nether_portals_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2' | 'padding_2' | 'paragraph_3' | 'padding_3' | 'image_1' }, + "nether_portals_section/paragraph_1": { type: T.PANEL, children: string }, + "nether_portals_section/padding_1": { type: T.PANEL, children: string }, + "nether_portals_section/paragraph_2": { type: T.PANEL, children: string }, + "nether_portals_section/padding_2": { type: T.PANEL, children: string }, + "nether_portals_section/paragraph_3": { type: T.PANEL, children: string }, + "nether_portals_section/padding_3": { type: T.PANEL, children: string }, + "nether_portals_section/image_1": { type: T.IMAGE, children: string }, + "pets_button": { type: T.PANEL, children: string }, + "pets_section": { type: T.STACK_PANEL, children: 'header_1' | 'paragraph_1_not_touch' | 'paragraph_1_touch' | 'padding_1' | 'header_2' | 'paragraph_2' | 'padding_2' | 'header_3' | 'paragraph_3' | 'padding_3' | 'header_4' | 'paragraph_4' }, + "pets_section/header_1": { type: T.PANEL, children: string }, + "pets_section/paragraph_1_not_touch": { type: T.PANEL, children: string }, + "pets_section/paragraph_1_touch": { type: T.PANEL, children: string }, + "pets_section/padding_1": { type: T.PANEL, children: string }, + "pets_section/header_2": { type: T.PANEL, children: string }, + "pets_section/paragraph_2": { type: T.PANEL, children: string }, + "pets_section/padding_2": { type: T.PANEL, children: string }, + "pets_section/header_3": { type: T.PANEL, children: string }, + "pets_section/paragraph_3": { type: T.PANEL, children: string }, + "pets_section/padding_3": { type: T.PANEL, children: string }, + "pets_section/header_4": { type: T.PANEL, children: string }, + "pets_section/paragraph_4": { type: T.PANEL, children: string }, + "raids_button": { type: T.PANEL, children: string }, + "raids_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2' | 'padding_2' | 'header_1' | 'paragraph_3' }, + "raids_section/paragraph_1": { type: T.PANEL, children: string }, + "raids_section/padding_1": { type: T.PANEL, children: string }, + "raids_section/paragraph_2": { type: T.PANEL, children: string }, + "raids_section/padding_2": { type: T.PANEL, children: string }, + "raids_section/header_1": { type: T.PANEL, children: string }, + "raids_section/paragraph_3": { type: T.PANEL, children: string }, + "ranching_button": { type: T.PANEL, children: string }, + "ranching_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'header_1' | 'paragraph_2' | 'padding_2' | 'paragraph_3' | 'padding_3' | 'header_2' | 'paragraph_4' | 'padding_4' | 'paragraph_5' }, + "ranching_section/paragraph_1": { type: T.PANEL, children: string }, + "ranching_section/padding_1": { type: T.PANEL, children: string }, + "ranching_section/header_1": { type: T.PANEL, children: string }, + "ranching_section/paragraph_2": { type: T.PANEL, children: string }, + "ranching_section/padding_2": { type: T.PANEL, children: string }, + "ranching_section/paragraph_3": { type: T.PANEL, children: string }, + "ranching_section/padding_3": { type: T.PANEL, children: string }, + "ranching_section/header_2": { type: T.PANEL, children: string }, + "ranching_section/paragraph_4": { type: T.PANEL, children: string }, + "ranching_section/padding_4": { type: T.PANEL, children: string }, + "ranching_section/paragraph_5": { type: T.PANEL, children: string }, + "redstone_button": { type: T.PANEL, children: string }, + "redstone_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'header_1' | 'paragraph_2' | 'padding_2' | 'paragraph_3' | 'padding_3' | 'paragraph_4' | 'padding_4' | 'paragraph_5' }, + "redstone_section/paragraph_1": { type: T.PANEL, children: string }, + "redstone_section/padding_1": { type: T.PANEL, children: string }, + "redstone_section/header_1": { type: T.PANEL, children: string }, + "redstone_section/paragraph_2": { type: T.PANEL, children: string }, + "redstone_section/padding_2": { type: T.PANEL, children: string }, + "redstone_section/paragraph_3": { type: T.PANEL, children: string }, + "redstone_section/padding_3": { type: T.PANEL, children: string }, + "redstone_section/paragraph_4": { type: T.PANEL, children: string }, + "redstone_section/padding_4": { type: T.PANEL, children: string }, + "redstone_section/paragraph_5": { type: T.PANEL, children: string }, + "scaffolding_button": { type: T.PANEL, children: string }, + "scaffolding_section": { type: T.STACK_PANEL, children: 'header_1' | 'paragraph_1_keyboard' | 'paragraph_1_gamepad' | 'paragraph_1a_touch' | 'padding_1a_touch' | 'paragraph_1b_touch' | 'padding_1b_touch' | 'paragraph_1c_touch' | 'padding_1' | 'header_2' | 'paragraph_2' | 'image_1' | 'padding_2' | 'header_3' | 'paragraph_3' | 'padding_3' }, + "scaffolding_section/header_1": { type: T.PANEL, children: string }, + "scaffolding_section/paragraph_1_keyboard": { type: T.PANEL, children: string }, + "scaffolding_section/paragraph_1_gamepad": { type: T.PANEL, children: string }, + "scaffolding_section/paragraph_1a_touch": { type: T.PANEL, children: string }, + "scaffolding_section/padding_1a_touch": { type: T.PANEL, children: string }, + "scaffolding_section/paragraph_1b_touch": { type: T.PANEL, children: string }, + "scaffolding_section/padding_1b_touch": { type: T.PANEL, children: string }, + "scaffolding_section/paragraph_1c_touch": { type: T.PANEL, children: string }, + "scaffolding_section/padding_1": { type: T.PANEL, children: string }, + "scaffolding_section/header_2": { type: T.PANEL, children: string }, + "scaffolding_section/paragraph_2": { type: T.PANEL, children: string }, + "scaffolding_section/image_1": { type: T.IMAGE, children: string }, + "scaffolding_section/padding_2": { type: T.PANEL, children: string }, + "scaffolding_section/header_3": { type: T.PANEL, children: string }, + "scaffolding_section/paragraph_3": { type: T.PANEL, children: string }, + "scaffolding_section/padding_3": { type: T.PANEL, children: string }, + "structure_blocks_button": { type: T.PANEL, children: string }, + "structure_blocks_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'header_1' | 'paragraph_2' | 'padding_2' | 'header_2' | 'paragraph_3' | 'padding_3' | 'paragraph_4' | 'padding_4' | 'paragraph_5' | 'padding_5' | 'paragraph_6' | 'padding_6' | 'paragraph_7' | 'padding_7' | 'header_3' | 'paragraph_8' | 'padding_8' | 'paragraph_9_keyboard' | 'paragraph_9_gamepad' | 'paragraph_9_touch' | 'padding_9' | 'header_4' | 'paragraph_10' | 'padding_10' | 'header_5' | 'paragraph_11' | 'padding_11' | 'paragraph_12' | 'padding_12' | 'paragraph_13' | 'padding_13' | 'header_6' | 'paragraph_14' | 'padding_14' | 'paragraph_15' | 'padding_15' | 'header_7' | 'paragraph_16' | 'padding_16' | 'paragraph_17' }, + "structure_blocks_section/paragraph_1": { type: T.PANEL, children: string }, + "structure_blocks_section/padding_1": { type: T.PANEL, children: string }, + "structure_blocks_section/header_1": { type: T.PANEL, children: string }, + "structure_blocks_section/paragraph_2": { type: T.PANEL, children: string }, + "structure_blocks_section/padding_2": { type: T.PANEL, children: string }, + "structure_blocks_section/header_2": { type: T.PANEL, children: string }, + "structure_blocks_section/paragraph_3": { type: T.PANEL, children: string }, + "structure_blocks_section/padding_3": { type: T.PANEL, children: string }, + "structure_blocks_section/paragraph_4": { type: T.PANEL, children: string }, + "structure_blocks_section/padding_4": { type: T.PANEL, children: string }, + "structure_blocks_section/paragraph_5": { type: T.PANEL, children: string }, + "structure_blocks_section/padding_5": { type: T.PANEL, children: string }, + "structure_blocks_section/paragraph_6": { type: T.PANEL, children: string }, + "structure_blocks_section/padding_6": { type: T.PANEL, children: string }, + "structure_blocks_section/paragraph_7": { type: T.PANEL, children: string }, + "structure_blocks_section/padding_7": { type: T.PANEL, children: string }, + "structure_blocks_section/header_3": { type: T.PANEL, children: string }, + "structure_blocks_section/paragraph_8": { type: T.PANEL, children: string }, + "structure_blocks_section/padding_8": { type: T.PANEL, children: string }, + "structure_blocks_section/paragraph_9_keyboard": { type: T.PANEL, children: string }, + "structure_blocks_section/paragraph_9_gamepad": { type: T.PANEL, children: string }, + "structure_blocks_section/paragraph_9_touch": { type: T.PANEL, children: string }, + "structure_blocks_section/padding_9": { type: T.PANEL, children: string }, + "structure_blocks_section/header_4": { type: T.PANEL, children: string }, + "structure_blocks_section/paragraph_10": { type: T.PANEL, children: string }, + "structure_blocks_section/padding_10": { type: T.PANEL, children: string }, + "structure_blocks_section/header_5": { type: T.PANEL, children: string }, + "structure_blocks_section/paragraph_11": { type: T.PANEL, children: string }, + "structure_blocks_section/padding_11": { type: T.PANEL, children: string }, + "structure_blocks_section/paragraph_12": { type: T.PANEL, children: string }, + "structure_blocks_section/padding_12": { type: T.PANEL, children: string }, + "structure_blocks_section/paragraph_13": { type: T.PANEL, children: string }, + "structure_blocks_section/padding_13": { type: T.PANEL, children: string }, + "structure_blocks_section/header_6": { type: T.PANEL, children: string }, + "structure_blocks_section/paragraph_14": { type: T.PANEL, children: string }, + "structure_blocks_section/padding_14": { type: T.PANEL, children: string }, + "structure_blocks_section/paragraph_15": { type: T.PANEL, children: string }, + "structure_blocks_section/padding_15": { type: T.PANEL, children: string }, + "structure_blocks_section/header_7": { type: T.PANEL, children: string }, + "structure_blocks_section/paragraph_16": { type: T.PANEL, children: string }, + "structure_blocks_section/padding_16": { type: T.PANEL, children: string }, + "structure_blocks_section/paragraph_17": { type: T.PANEL, children: string }, + "shulker_boxes_button": { type: T.PANEL, children: string }, + "shulker_boxes_section": { type: T.STACK_PANEL, children: 'paragraph_1' }, + "shulker_boxes_section/paragraph_1": { type: T.PANEL, children: string }, + "the_end_button": { type: T.PANEL, children: string }, + "the_end_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2' | 'padding_2' | 'header_1' | 'paragraph_3' | 'padding_3' | 'paragraph_4' | 'padding_4' | 'paragraph_5' }, + "the_end_section/paragraph_1": { type: T.PANEL, children: string }, + "the_end_section/padding_1": { type: T.PANEL, children: string }, + "the_end_section/paragraph_2": { type: T.PANEL, children: string }, + "the_end_section/padding_2": { type: T.PANEL, children: string }, + "the_end_section/header_1": { type: T.PANEL, children: string }, + "the_end_section/paragraph_3": { type: T.PANEL, children: string }, + "the_end_section/padding_3": { type: T.PANEL, children: string }, + "the_end_section/paragraph_4": { type: T.PANEL, children: string }, + "the_end_section/padding_4": { type: T.PANEL, children: string }, + "the_end_section/paragraph_5": { type: T.PANEL, children: string }, + "tools_button": { type: T.PANEL, children: string }, + "tools_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2' | 'padding_2' | 'header_1' | 'paragraph_3' | 'padding_3' | 'paragraph_4' | 'padding_4' | 'paragraph_5_not_touch' | 'paragraph_5_touch' | 'padding_5' | 'paragraph_6_not_touch' | 'paragraph_6_touch' | 'padding_6' | 'paragraph_7' | 'padding_7' | 'header_2' | 'paragraph_8' | 'padding_8' | 'paragraph_9' | 'padding_9' | 'paragraph_10' | 'padding_10' | 'paragraph_11' | 'padding_11' | 'paragraph_12' }, + "tools_section/paragraph_1": { type: T.PANEL, children: string }, + "tools_section/padding_1": { type: T.PANEL, children: string }, + "tools_section/paragraph_2": { type: T.PANEL, children: string }, + "tools_section/padding_2": { type: T.PANEL, children: string }, + "tools_section/header_1": { type: T.PANEL, children: string }, + "tools_section/paragraph_3": { type: T.PANEL, children: string }, + "tools_section/padding_3": { type: T.PANEL, children: string }, + "tools_section/paragraph_4": { type: T.PANEL, children: string }, + "tools_section/padding_4": { type: T.PANEL, children: string }, + "tools_section/paragraph_5_not_touch": { type: T.PANEL, children: string }, + "tools_section/paragraph_5_touch": { type: T.PANEL, children: string }, + "tools_section/padding_5": { type: T.PANEL, children: string }, + "tools_section/paragraph_6_not_touch": { type: T.PANEL, children: string }, + "tools_section/paragraph_6_touch": { type: T.PANEL, children: string }, + "tools_section/padding_6": { type: T.PANEL, children: string }, + "tools_section/paragraph_7": { type: T.PANEL, children: string }, + "tools_section/padding_7": { type: T.PANEL, children: string }, + "tools_section/header_2": { type: T.PANEL, children: string }, + "tools_section/paragraph_8": { type: T.PANEL, children: string }, + "tools_section/padding_8": { type: T.PANEL, children: string }, + "tools_section/paragraph_9": { type: T.PANEL, children: string }, + "tools_section/padding_9": { type: T.PANEL, children: string }, + "tools_section/paragraph_10": { type: T.PANEL, children: string }, + "tools_section/padding_10": { type: T.PANEL, children: string }, + "tools_section/paragraph_11": { type: T.PANEL, children: string }, + "tools_section/padding_11": { type: T.PANEL, children: string }, + "tools_section/paragraph_12": { type: T.PANEL, children: string }, + "trading_button": { type: T.PANEL, children: string }, + "trading_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'header_1' | 'paragraph_2' | 'padding_2' | 'paragraph_3' | 'padding_3' | 'paragraph_4' }, + "trading_section/paragraph_1": { type: T.PANEL, children: string }, + "trading_section/padding_1": { type: T.PANEL, children: string }, + "trading_section/header_1": { type: T.PANEL, children: string }, + "trading_section/paragraph_2": { type: T.PANEL, children: string }, + "trading_section/padding_2": { type: T.PANEL, children: string }, + "trading_section/paragraph_3": { type: T.PANEL, children: string }, + "trading_section/padding_3": { type: T.PANEL, children: string }, + "trading_section/paragraph_4": { type: T.PANEL, children: string }, + "transportation_button": { type: T.PANEL, children: string }, + "transportation_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'header_1' | 'paragraph_2' | 'paragraph_2_touch' | 'padding_2' | 'paragraph_3_keyboard' | 'paragraph_3_gamepad' | 'paragraph_3a_touch' | 'padding_3a' | 'paragraph_3b_touch' | 'padding_3b' | 'paragraph_3c_touch' | 'padding_3' | 'header_2' | 'paragraph_4' | 'paragraph_4_touch' | 'padding_4' | 'paragraph_5_keyboard' | 'paragraph_5_gamepad' | 'paragraph_5a_touch' | 'padding_5a' | 'paragraph_5b_touch' | 'padding_5b' | 'paragraph_5c_touch' }, + "transportation_section/paragraph_1": { type: T.PANEL, children: string }, + "transportation_section/padding_1": { type: T.PANEL, children: string }, + "transportation_section/header_1": { type: T.PANEL, children: string }, + "transportation_section/paragraph_2": { type: T.PANEL, children: string }, + "transportation_section/paragraph_2_touch": { type: T.PANEL, children: string }, + "transportation_section/padding_2": { type: T.PANEL, children: string }, + "transportation_section/paragraph_3_keyboard": { type: T.PANEL, children: string }, + "transportation_section/paragraph_3_gamepad": { type: T.PANEL, children: string }, + "transportation_section/paragraph_3a_touch": { type: T.PANEL, children: string }, + "transportation_section/padding_3a": { type: T.PANEL, children: string }, + "transportation_section/paragraph_3b_touch": { type: T.PANEL, children: string }, + "transportation_section/padding_3b": { type: T.PANEL, children: string }, + "transportation_section/paragraph_3c_touch": { type: T.PANEL, children: string }, + "transportation_section/padding_3": { type: T.PANEL, children: string }, + "transportation_section/header_2": { type: T.PANEL, children: string }, + "transportation_section/paragraph_4": { type: T.PANEL, children: string }, + "transportation_section/paragraph_4_touch": { type: T.PANEL, children: string }, + "transportation_section/padding_4": { type: T.PANEL, children: string }, + "transportation_section/paragraph_5_keyboard": { type: T.PANEL, children: string }, + "transportation_section/paragraph_5_gamepad": { type: T.PANEL, children: string }, + "transportation_section/paragraph_5a_touch": { type: T.PANEL, children: string }, + "transportation_section/padding_5a": { type: T.PANEL, children: string }, + "transportation_section/paragraph_5b_touch": { type: T.PANEL, children: string }, + "transportation_section/padding_5b": { type: T.PANEL, children: string }, + "transportation_section/paragraph_5c_touch": { type: T.PANEL, children: string }, + "weapons_button": { type: T.PANEL, children: string }, + "weapons_section": { type: T.STACK_PANEL, children: 'header_1' | 'paragraph_1' | 'padding_1' | 'paragraph_2_not_touch' | 'paragraph_2_touch' | 'padding_2' | 'header_2' | 'paragraph_3_not_touch' | 'paragraph_3_touch' | 'padding_3' | 'paragraph_4' | 'padding_5' | 'header_3' | 'paragraph_5_not_touch' | 'paragraph_5a_touch' | 'padding_5a_touch' | 'paragraph_5b_touch' | 'padding_5b_touch' | 'paragraph_5c_touch' | 'padding_5c_touch' | 'paragraph_5d_touch' | 'padding_6' | 'header_4' | 'paragraph_6_not_touch' | 'paragraph_6_touch' | 'padding_7' | 'header_5' | 'paragraph_7' }, + "weapons_section/header_1": { type: T.PANEL, children: string }, + "weapons_section/paragraph_1": { type: T.PANEL, children: string }, + "weapons_section/padding_1": { type: T.PANEL, children: string }, + "weapons_section/paragraph_2_not_touch": { type: T.PANEL, children: string }, + "weapons_section/paragraph_2_touch": { type: T.PANEL, children: string }, + "weapons_section/padding_2": { type: T.PANEL, children: string }, + "weapons_section/header_2": { type: T.PANEL, children: string }, + "weapons_section/paragraph_3_not_touch": { type: T.PANEL, children: string }, + "weapons_section/paragraph_3_touch": { type: T.PANEL, children: string }, + "weapons_section/padding_3": { type: T.PANEL, children: string }, + "weapons_section/paragraph_4": { type: T.PANEL, children: string }, + "weapons_section/padding_5": { type: T.PANEL, children: string }, + "weapons_section/header_3": { type: T.PANEL, children: string }, + "weapons_section/paragraph_5_not_touch": { type: T.PANEL, children: string }, + "weapons_section/paragraph_5a_touch": { type: T.PANEL, children: string }, + "weapons_section/padding_5a_touch": { type: T.PANEL, children: string }, + "weapons_section/paragraph_5b_touch": { type: T.PANEL, children: string }, + "weapons_section/padding_5b_touch": { type: T.PANEL, children: string }, + "weapons_section/paragraph_5c_touch": { type: T.PANEL, children: string }, + "weapons_section/padding_5c_touch": { type: T.PANEL, children: string }, + "weapons_section/paragraph_5d_touch": { type: T.PANEL, children: string }, + "weapons_section/padding_6": { type: T.PANEL, children: string }, + "weapons_section/header_4": { type: T.PANEL, children: string }, + "weapons_section/paragraph_6_not_touch": { type: T.PANEL, children: string }, + "weapons_section/paragraph_6_touch": { type: T.PANEL, children: string }, + "weapons_section/padding_7": { type: T.PANEL, children: string }, + "weapons_section/header_5": { type: T.PANEL, children: string }, + "weapons_section/paragraph_7": { type: T.PANEL, children: string }, + "minecoins_button": { type: T.PANEL, children: string }, + "minecoins_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2' | 'padding_2' | 'get_minecoins_button' | 'padding_3' | 'header_1' | 'paragraph_3' }, + "minecoins_section/paragraph_1": { type: T.PANEL, children: string }, + "minecoins_section/padding_1": { type: T.PANEL, children: string }, + "minecoins_section/paragraph_2": { type: T.PANEL, children: string }, + "minecoins_section/padding_2": { type: T.PANEL, children: string }, + "minecoins_section/get_minecoins_button": { type: T.BUTTON, children: string }, + "minecoins_section/padding_3": { type: T.PANEL, children: string }, + "minecoins_section/header_1": { type: T.PANEL, children: string }, + "minecoins_section/paragraph_3": { type: T.PANEL, children: string }, + "addons_button": { type: T.PANEL, children: string }, + "addons_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2' | 'padding_2' | 'header_1' | 'paragraph_3' | 'padding_3' | 'paragraph_4' | 'padding_4' | 'paragraph_5' | 'addons_faq_button' }, + "addons_section/paragraph_1": { type: T.PANEL, children: string }, + "addons_section/padding_1": { type: T.PANEL, children: string }, + "addons_section/paragraph_2": { type: T.PANEL, children: string }, + "addons_section/padding_2": { type: T.PANEL, children: string }, + "addons_section/header_1": { type: T.PANEL, children: string }, + "addons_section/paragraph_3": { type: T.PANEL, children: string }, + "addons_section/padding_3": { type: T.PANEL, children: string }, + "addons_section/paragraph_4": { type: T.PANEL, children: string }, + "addons_section/padding_4": { type: T.PANEL, children: string }, + "addons_section/paragraph_5": { type: T.PANEL, children: string }, + "addons_section/addons_faq_button": { type: T.BUTTON, children: string }, + "worlds_button": { type: T.PANEL, children: string }, + "worlds_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2' | 'padding_2' | 'paragraph_3' | 'padding_3' | 'paragraph_4' | 'padding_4' | 'header_1' | 'paragraph_5' | 'padding_5' | 'paragraph_6' | 'padding_6' | 'header_2' | 'paragraph_7' | 'padding_7' | 'paragraph_8' | 'padding_8' | 'header_3' | 'paragraph_9' | 'padding_9' | 'paragraph_10' | 'padding_10' | 'header_4' | 'paragraph_11' | 'padding_11' | 'paragraph_12' | 'padding_12' }, + "worlds_section/paragraph_1": { type: T.PANEL, children: string }, + "worlds_section/padding_1": { type: T.PANEL, children: string }, + "worlds_section/paragraph_2": { type: T.PANEL, children: string }, + "worlds_section/padding_2": { type: T.PANEL, children: string }, + "worlds_section/paragraph_3": { type: T.PANEL, children: string }, + "worlds_section/padding_3": { type: T.PANEL, children: string }, + "worlds_section/paragraph_4": { type: T.PANEL, children: string }, + "worlds_section/padding_4": { type: T.PANEL, children: string }, + "worlds_section/header_1": { type: T.PANEL, children: string }, + "worlds_section/paragraph_5": { type: T.PANEL, children: string }, + "worlds_section/padding_5": { type: T.PANEL, children: string }, + "worlds_section/paragraph_6": { type: T.PANEL, children: string }, + "worlds_section/padding_6": { type: T.PANEL, children: string }, + "worlds_section/header_2": { type: T.PANEL, children: string }, + "worlds_section/paragraph_7": { type: T.PANEL, children: string }, + "worlds_section/padding_7": { type: T.PANEL, children: string }, + "worlds_section/paragraph_8": { type: T.PANEL, children: string }, + "worlds_section/padding_8": { type: T.PANEL, children: string }, + "worlds_section/header_3": { type: T.PANEL, children: string }, + "worlds_section/paragraph_9": { type: T.PANEL, children: string }, + "worlds_section/padding_9": { type: T.PANEL, children: string }, + "worlds_section/paragraph_10": { type: T.PANEL, children: string }, + "worlds_section/padding_10": { type: T.PANEL, children: string }, + "worlds_section/header_4": { type: T.PANEL, children: string }, + "worlds_section/paragraph_11": { type: T.PANEL, children: string }, + "worlds_section/padding_11": { type: T.PANEL, children: string }, + "worlds_section/paragraph_12": { type: T.PANEL, children: string }, + "worlds_section/padding_12": { type: T.PANEL, children: string }, + "textures_button": { type: T.PANEL, children: string }, + "textures_section": { type: T.STACK_PANEL, children: 'paragraph_1' }, + "textures_section/paragraph_1": { type: T.PANEL, children: string }, + "skins_button": { type: T.PANEL, children: string }, + "skins_section": { type: T.STACK_PANEL, children: 'paragraph_1' }, + "skins_section/paragraph_1": { type: T.PANEL, children: string }, + "mashups_button": { type: T.PANEL, children: string }, + "mashups_section": { type: T.STACK_PANEL, children: 'paragraph_1' }, + "mashups_section/paragraph_1": { type: T.PANEL, children: string }, } 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": { type: T.IMAGE, children: string }, + "title_label": { type: T.LABEL, children: string }, + "label": { type: T.LABEL, children: string }, + "undo_image": { type: T.IMAGE, children: string }, + "lock_icon": { type: T.IMAGE, children: string }, + "skin_button": { type: T.BUTTON, children: 'hover' | 'pressed' }, + "skin_button/hover": { type: T.IMAGE, children: string }, + "skin_button/pressed": { type: T.IMAGE, children: string }, + "skin_rotation_arrows": { type: T.IMAGE, children: string }, + "skin_viewer_panel": { type: T.INPUT_PANEL, children: 'skin_model_panel' | 'lock' }, + "skin_viewer_panel/skin_model_panel": { type: T.PANEL, children: 'skin_model' }, + "skin_viewer_panel/skin_model_panel/skin_model": { type: T.CUSTOM, children: string }, + "skin_viewer_panel/lock": { type: T.IMAGE, children: string }, + "undo_skin_button": { type: T.BUTTON, children: string }, + "confirm_skin_button": { type: T.BUTTON, children: string }, + "stack_item": { type: T.PANEL, children: string }, + "accept_skin_panel": { type: T.STACK_PANEL, children: 'stack_item_0' | 'stack_item_1' }, + "accept_skin_panel/stack_item_0": { type: T.PANEL, children: 'undo_btn' }, + "accept_skin_panel/stack_item_0/undo_btn": { type: T.BUTTON, children: string }, + "accept_skin_panel/stack_item_1": { type: T.PANEL, children: 'confirm_button' }, + "accept_skin_panel/stack_item_1/confirm_button": { type: T.BUTTON, children: string }, + "preview_skin_panel": { type: T.PANEL, children: 'preview' | 'button_frame' }, + "preview_skin_panel/preview": { type: T.INPUT_PANEL, children: string }, + "preview_skin_panel/button_frame": { type: T.STACK_PANEL, children: 'stack_item_0' | 'stack_item_1' }, + "preview_skin_panel/button_frame/stack_item_0": { type: T.PANEL, children: 'rotation' }, + "preview_skin_panel/button_frame/stack_item_0/rotation": { type: T.IMAGE, children: string }, + "preview_skin_panel/button_frame/stack_item_1": { type: T.PANEL, children: 'accept' }, + "preview_skin_panel/button_frame/stack_item_1/accept": { type: T.STACK_PANEL, children: string }, + "skin_model": { type: T.CUSTOM, children: string }, + "scrolling_content": { type: T.STACK_PANEL, children: 'padding_0' | 'pack_info_panel' | 'skin_grid_panel' }, + "scrolling_content/padding_0": { type: T.PANEL, children: string }, + "scrolling_content/pack_info_panel": { type: T.PANEL, children: 'pack_info_panel' }, + "scrolling_content/pack_info_panel/pack_info_panel": { type: T.STACK_PANEL, children: string }, + "scrolling_content/skin_grid_panel": { type: T.PANEL, children: 'skins_grid' }, + "scrolling_content/skin_grid_panel/skins_grid": { type: T.GRID, children: string }, + "pack_info_panel": { type: T.STACK_PANEL, children: 'lock_icon_panel' | 'pack_info_panel' }, + "pack_info_panel/lock_icon_panel": { type: T.PANEL, children: 'lock_icon' }, + "pack_info_panel/lock_icon_panel/lock_icon": { type: T.IMAGE, children: string }, + "pack_info_panel/pack_info_panel": { type: T.STACK_PANEL, children: 'pack_name' | 'creator_name' }, + "pack_info_panel/pack_info_panel/pack_name": { type: T.LABEL, children: string }, + "pack_info_panel/pack_info_panel/creator_name": { type: T.LABEL, children: string }, + "skins_grid_item": { type: T.PANEL, children: 'clip' | 'lock' | 'button' }, + "skins_grid_item/clip": { type: T.PANEL, children: 'model' }, + "skins_grid_item/clip/model": { type: T.CUSTOM, children: string }, + "skins_grid_item/lock": { type: T.IMAGE, children: string }, + "skins_grid_item/button": { type: T.BUTTON, children: string }, + "skins_grid": { type: T.GRID, children: string }, + "select_skin_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "select_skin_button/default": { type: T.PANEL, children: string }, + "select_skin_button/hover": { type: T.IMAGE, children: string }, + "select_skin_button/pressed": { type: T.IMAGE, children: string }, + "all_skins_content": { type: T.INPUT_PANEL, children: 'scrolling_frame' }, + "all_skins_content/scrolling_frame": { type: T.PANEL, children: 'change_skin_scroll' }, + "all_skins_content/scrolling_frame/change_skin_scroll": { type: T.PANEL, children: string }, + "all_skins_frame": { type: T.PANEL, children: 'all_skins_content' }, + "all_skins_frame/all_skins_content": { type: T.INPUT_PANEL, children: string }, + "title_bar": { type: T.STACK_PANEL, children: 'padding_0' | 'fill_panel' | 'padding_1' | 'skin_name_holder' | 'padding_2' }, + "title_bar/padding_0": { type: T.PANEL, children: string }, + "title_bar/fill_panel": { type: T.PANEL, children: 'title_holder' }, + "title_bar/fill_panel/title_holder": { type: T.PANEL, children: 'change_skin_title' }, + "title_bar/fill_panel/title_holder/change_skin_title": { type: T.LABEL, children: string }, + "title_bar/padding_1": { type: T.PANEL, children: string }, + "title_bar/skin_name_holder": { type: T.PANEL, children: 'preview_skin_name' }, + "title_bar/skin_name_holder/preview_skin_name": { type: T.LABEL, children: string }, + "title_bar/padding_2": { type: T.PANEL, children: string }, + "content": { type: T.PANEL, children: 'title' | 'selector_area' | 'content_area' | 'section_divider' }, + "content/title": { type: T.STACK_PANEL, children: string }, + "content/selector_area": { type: T.INPUT_PANEL, children: string }, + "content/content_area": { type: T.INPUT_PANEL, children: string }, + "content/section_divider": { type: T.IMAGE, children: string }, + "expanded_skin_pack_screen": { type: T.SCREEN, children: string }, + "skin_picker_screen_content": { type: T.PANEL, children: 'bg' | 'container' }, + "skin_picker_screen_content/bg": { type: T.STACK_PANEL, children: string }, + "skin_picker_screen_content/container": { type: T.PANEL, children: 'content' }, + "skin_picker_screen_content/container/content": { type: T.PANEL, children: string }, + "scrollable_selector_area_content": { type: T.PANEL, children: string }, + "selector_area": { type: T.INPUT_PANEL, children: 'all_skins' | 'inactive_modal_pane_fade' }, + "selector_area/all_skins": { type: T.PANEL, children: string }, + "selector_area/inactive_modal_pane_fade": { type: T.IMAGE, children: string }, + "content_area": { type: T.INPUT_PANEL, children: 'preview_skin' | 'inactive_modal_pane_fade' }, + "content_area/preview_skin": { type: T.PANEL, children: string }, + "content_area/inactive_modal_pane_fade": { type: T.IMAGE, children: string }, + "section_divider": { type: T.IMAGE, children: string }, } 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": { type: T.CUSTOM, children: string }, + "label": { type: T.LABEL, children: string }, + "smooth_label": { type: T.LABEL, children: string }, + "share_label": { type: T.LABEL, children: string }, + "title_label": { type: T.LABEL, children: string }, + "feed_label": { type: T.LABEL, children: string }, + "item_label": { type: T.LABEL, children: string }, + "return_label": { type: T.LABEL, children: string }, + "prev_label": { type: T.LABEL, children: string }, + "next_label": { type: T.LABEL, children: string }, + "delete_label": { type: T.LABEL, children: string }, + "report_to_club_label": { type: T.LABEL, children: string }, + "report_to_xbox_label": { type: T.LABEL, children: string }, + "new_post_header_text": { type: T.LABEL, children: string }, + "feed_button": { type: T.BUTTON, children: string }, + "return_button": { type: T.BUTTON, children: string }, + "prev_button": { type: T.BUTTON, children: string }, + "prev_panel": { type: T.STACK_PANEL, children: 'padding_1' | 'lab_panel' }, + "prev_panel/padding_1": { type: T.PANEL, children: string }, + "prev_panel/lab_panel": { type: T.STACK_PANEL, children: 'vert_pad' | 'prevlab' }, + "prev_panel/lab_panel/vert_pad": { type: T.PANEL, children: string }, + "prev_panel/lab_panel/prevlab": { type: T.LABEL, children: string }, + "next_button": { type: T.BUTTON, children: string }, + "next_panel": { type: T.STACK_PANEL, children: 'lab_panel2' | 'padding_2' }, + "next_panel/lab_panel2": { type: T.STACK_PANEL, children: 'vert_pad2' | 'nextlab' }, + "next_panel/lab_panel2/vert_pad2": { type: T.PANEL, children: string }, + "next_panel/lab_panel2/nextlab": { type: T.LABEL, children: string }, + "next_panel/padding_2": { type: T.PANEL, children: string }, + "like_button": { type: T.BUTTON, children: string }, + "delete_button": { type: T.BUTTON, children: string }, + "report_to_xbox_button": { type: T.BUTTON, children: string }, + "report_to_club_button": { type: T.BUTTON, children: string }, + "options_button": { type: T.BUTTON, children: string }, + "options_close_button_high_contrast": { type: T.BUTTON, children: 'background' | 'default' | 'hover' | 'pressed' }, + "options_close_button_high_contrast/background": { type: T.IMAGE, children: string }, + "options_close_button_high_contrast/default": { type: T.PANEL, children: string }, + "options_close_button_high_contrast/hover": { type: T.PANEL, children: string }, + "options_close_button_high_contrast/pressed": { type: T.PANEL, children: string }, + "share_button": { type: T.BUTTON, children: string }, + "spacing_gap": { type: T.PANEL, children: string }, + "platform_icon": { type: T.IMAGE, children: string }, + "platform_icon_panel": { type: T.PANEL, children: 'platform_icon' }, + "platform_icon_panel/platform_icon": { type: T.IMAGE, children: string }, + "account_link_image": { type: T.IMAGE, children: string }, + "account_link_icon": { type: T.STACK_PANEL, children: 'space_01' | 'account_link_image' | 'space_02' }, + "account_link_icon/space_01": { type: T.PANEL, children: string }, + "account_link_icon/account_link_image": { type: T.IMAGE, children: string }, + "account_link_icon/space_02": { type: T.PANEL, children: string }, + "player_pic_bevel": { type: T.IMAGE, children: string }, + "no_feed_item_content": { type: T.LABEL, children: string }, + "gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "share_text_box": { type: T.EDIT_BOX, children: string }, + "progress_loading_bars": { type: T.IMAGE, children: string }, + "popup_dialog_bg": { type: T.IMAGE, children: string }, + "pagination_panel": { type: T.PANEL, children: 'prev_button' | 'page_text' | 'next_button' }, + "pagination_panel/prev_button": { type: T.BUTTON, children: string }, + "pagination_panel/page_text": { type: T.LABEL, children: string }, + "pagination_panel/next_button": { type: T.BUTTON, children: string }, + "pagination_panel_gamepad": { type: T.PANEL, children: 'prev_panel' | 'page_text' | 'next_panel' }, + "pagination_panel_gamepad/prev_panel": { type: T.STACK_PANEL, children: string }, + "pagination_panel_gamepad/page_text": { type: T.LABEL, children: string }, + "pagination_panel_gamepad/next_panel": { type: T.STACK_PANEL, children: string }, + "like_image": { type: T.IMAGE, children: string }, + "like_image_default": { type: T.IMAGE, children: string }, + "like_image_panel": { type: T.PANEL, children: 'like_image_instance' | 'like_image_default' }, + "like_image_panel/like_image_instance": { type: T.IMAGE, children: string }, + "like_image_panel/like_image_default": { type: T.IMAGE, children: string }, + "feed_like_content_panel": { type: T.STACK_PANEL, children: 'like_image_panel' | 'like_label' }, + "feed_like_content_panel/like_image_panel": { type: T.PANEL, children: string }, + "feed_like_content_panel/like_label": { type: T.LABEL, children: string }, + "white_banner": { type: T.IMAGE, children: string }, + "page_text": { type: T.LABEL, children: string }, + "options_icon": { type: T.IMAGE, children: string }, + "transparent_background": { type: T.IMAGE, children: string }, + "black_arrow": { type: T.IMAGE, children: string }, + "faded_background_image": { type: T.IMAGE, children: string }, + "unviewed_post_badge": { type: T.IMAGE, children: 'unviewed_post_text' }, + "unviewed_post_badge/unviewed_post_text": { type: T.LABEL, children: string }, } 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": { type: T.IMAGE, children: string }, + "full_progress_bar_icon": { type: T.IMAGE, children: string }, + "progress_bar_nub": { type: T.IMAGE, children: string }, + "progress_bar_icon": { type: T.PANEL, children: 'empty_progress_bar_icon' | 'progress_percent_panel' }, + "progress_bar_icon/empty_progress_bar_icon": { type: T.IMAGE, children: string }, + "progress_bar_icon/progress_percent_panel": { type: T.PANEL, children: 'full_progress_bar_icon' | 'progress_bar_nub' }, + "progress_bar_icon/progress_percent_panel/full_progress_bar_icon": { type: T.IMAGE, children: string }, + "progress_bar_icon/progress_percent_panel/progress_bar_nub": { type: T.IMAGE, children: string }, + "common_label": { type: T.LABEL, children: string }, + "progress_text_panel": { type: T.PANEL, children: 'progress' | 'total' }, + "progress_text_panel/progress": { type: T.LABEL, children: string }, + "progress_text_panel/total": { type: T.LABEL, children: string }, + "message_text_panel": { type: T.PANEL, children: 'message_text' }, + "message_text_panel/message_text": { type: T.LABEL, children: string }, + "button_common": { type: T.BUTTON, children: string }, + "lets_go_button": { type: T.BUTTON, children: string }, + "cancel_button": { type: T.BUTTON, children: string }, + "continue_button": { type: T.BUTTON, children: string }, + "continue_or_cancel_button": { type: T.PANEL, children: 'continue' | 'cancel' }, + "continue_or_cancel_button/continue": { type: T.BUTTON, children: string }, + "continue_or_cancel_button/cancel": { type: T.BUTTON, children: string }, + "single_title_panel": { type: T.PANEL, children: 'center' }, + "single_title_panel/center": { type: T.LABEL, children: string }, + "dual_title_panel": { type: T.PANEL, children: 'left' | 'right' }, + "dual_title_panel/left": { type: T.LABEL, children: string }, + "dual_title_panel/right": { type: T.LABEL, children: string }, + "upload_title_panel": { type: T.PANEL, children: 'single_label' | 'dual_label' }, + "upload_title_panel/single_label": { type: T.PANEL, children: string }, + "upload_title_panel/dual_label": { type: T.PANEL, children: string }, + "content_panel": { type: T.PANEL, children: 'stack_panel_0' | 'stack_panel_1' }, + "content_panel/stack_panel_0": { type: T.STACK_PANEL, children: string }, + "content_panel/stack_panel_1": { type: T.PANEL, children: string }, + "content_stack_panel": { type: T.STACK_PANEL, children: 'message' | 'description' | 'progress' }, + "content_stack_panel/message": { type: T.PANEL, children: string }, + "content_stack_panel/description": { type: T.PANEL, children: string }, + "content_stack_panel/progress": { type: T.PANEL, children: string }, + "warning_content_panel": { type: T.PANEL, children: 'message' }, + "warning_content_panel/message": { type: T.LABEL, children: string }, + "button_panel": { type: T.PANEL, children: 'play' | 'cancel' | 'continue_cancel' }, + "button_panel/play": { type: T.BUTTON, children: string }, + "button_panel/cancel": { type: T.BUTTON, children: string }, + "button_panel/continue_cancel": { type: T.PANEL, children: string }, + "file_upload_content": { type: T.PANEL, children: 'title_panel_content' | 'content' }, + "file_upload_content/title_panel_content": { type: T.PANEL, children: string }, + "file_upload_content/content": { type: T.PANEL, children: 'background' | 'title' | 'content' | 'buttons' }, + "file_upload_content/content/background": { type: T.PANEL, children: string }, + "file_upload_content/content/title": { type: T.PANEL, children: string }, + "file_upload_content/content/content": { type: T.PANEL, children: string }, + "file_upload_content/content/buttons": { type: T.PANEL, children: string }, + "file_transmission_screen": { type: T.SCREEN, children: string }, } 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": { type: T.PANEL, children: 'flame_empty_image' | 'flame_full_image' }, + "flame_panel/flame_empty_image": { type: T.IMAGE, children: string }, + "flame_panel/flame_full_image": { type: T.IMAGE, children: string }, + "furnace_arrow_empty_image": { type: T.IMAGE, children: string }, + "furnace_arrow_full_image": { type: T.IMAGE, children: string }, + "flame_empty_image": { type: T.IMAGE, children: string }, + "flame_full_image": { type: T.IMAGE, children: string }, + "furnace_label": { type: T.LABEL, children: string }, + "furnace_input_panel": { type: T.PANEL, children: 'panel' }, + "furnace_input_panel/panel": { type: T.PANEL, children: 'furnace_ingredient_panel' | 'flame_panel' | 'furnace_fuel_panel' }, + "furnace_input_panel/panel/furnace_ingredient_panel": { type: T.PANEL, children: string }, + "furnace_input_panel/panel/flame_panel": { type: T.PANEL, children: string }, + "furnace_input_panel/panel/furnace_fuel_panel": { type: T.PANEL, children: string }, + "furnace_ingredient_panel": { type: T.PANEL, children: 'ingredient_item' }, + "furnace_ingredient_panel/ingredient_item": { type: T.INPUT_PANEL, children: string }, + "furnace_fuel_panel": { type: T.PANEL, children: 'fuel_item' }, + "furnace_fuel_panel/fuel_item": { type: T.INPUT_PANEL, children: string }, + "furnace_output_panel": { type: T.PANEL, children: 'output_item' }, + "furnace_output_panel/output_item": { type: T.INPUT_PANEL, children: string }, + "furnace_panel_top_half": { type: T.PANEL, children: 'furnace_label' | 'input' | 'furnace_arrow_empty_image' | 'furnace_arrow_full_image' | 'output' }, + "furnace_panel_top_half/furnace_label": { type: T.LABEL, children: string }, + "furnace_panel_top_half/input": { type: T.PANEL, children: string }, + "furnace_panel_top_half/furnace_arrow_empty_image": { type: T.IMAGE, children: string }, + "furnace_panel_top_half/furnace_arrow_full_image": { type: T.IMAGE, children: string }, + "furnace_panel_top_half/output": { type: T.PANEL, children: string }, + "furnace_panel": { type: T.PANEL, children: 'container_gamepad_helpers' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'root_panel' | 'flying_item_renderer' }, + "furnace_panel/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "furnace_panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "furnace_panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "furnace_panel/root_panel": { type: T.INPUT_PANEL, children: 'common_panel' | 'furnace_screen_inventory' | 'inventory_selected_icon_button' | 'gamepad_cursor' }, + "furnace_panel/root_panel/common_panel": { type: T.PANEL, children: string }, + "furnace_panel/root_panel/furnace_screen_inventory": { type: T.PANEL, children: 'furnace_panel_top_half' | 'inventory_panel_bottom_half_with_label' | 'hotbar_grid' | 'inventory_take_progress_icon_button' }, + "furnace_panel/root_panel/furnace_screen_inventory/furnace_panel_top_half": { type: T.PANEL, children: string }, + "furnace_panel/root_panel/furnace_screen_inventory/inventory_panel_bottom_half_with_label": { type: T.PANEL, children: string }, + "furnace_panel/root_panel/furnace_screen_inventory/hotbar_grid": { type: T.GRID, children: string }, + "furnace_panel/root_panel/furnace_screen_inventory/inventory_take_progress_icon_button": { type: T.BUTTON, children: string }, + "furnace_panel/root_panel/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "furnace_panel/root_panel/gamepad_cursor": { type: T.BUTTON, children: string }, + "furnace_panel/flying_item_renderer": { type: T.CUSTOM, children: string }, + "furnace_screen": { type: T.SCREEN, children: string }, } 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": { type: T.LABEL, children: string }, + "background_image": { type: T.IMAGE, children: string }, + "empty_arrow": { type: T.IMAGE, children: string }, + "full_arrow": { type: T.IMAGE, children: string }, + "flame_empty": { type: T.IMAGE, children: string }, + "flame_full": { type: T.IMAGE, children: string }, + "input_label": { type: T.LABEL, children: string }, + "fuel_label": { type: T.LABEL, children: string }, + "result_label": { type: T.LABEL, children: string }, + "result_name_label": { type: T.LABEL, children: string }, + "furnace_content": { type: T.PANEL, children: 'input_panel' | 'flame_empty' | 'flame_full' | 'fuel_panel' | 'empty_arrow' | 'full_arrow' | 'output_panel' }, + "furnace_content/input_panel": { type: T.PANEL, children: 'input_label' | 'ingredient_item' }, + "furnace_content/input_panel/input_label": { type: T.LABEL, children: string }, + "furnace_content/input_panel/ingredient_item": { type: T.INPUT_PANEL, children: string }, + "furnace_content/flame_empty": { type: T.IMAGE, children: string }, + "furnace_content/flame_full": { type: T.IMAGE, children: string }, + "furnace_content/fuel_panel": { type: T.PANEL, children: 'fuel_label' | 'fuel_item' }, + "furnace_content/fuel_panel/fuel_label": { type: T.LABEL, children: string }, + "furnace_content/fuel_panel/fuel_item": { type: T.INPUT_PANEL, children: string }, + "furnace_content/empty_arrow": { type: T.IMAGE, children: string }, + "furnace_content/full_arrow": { type: T.IMAGE, children: string }, + "furnace_content/output_panel": { type: T.PANEL, children: 'result_label' | 'result_name_label' | 'output_item' }, + "furnace_content/output_panel/result_label": { type: T.LABEL, children: string }, + "furnace_content/output_panel/result_name_label": { type: T.LABEL, children: string }, + "furnace_content/output_panel/output_item": { type: T.INPUT_PANEL, children: string }, + "inventory_grid": { type: T.GRID, children: string }, + "inventory_content": { type: T.PANEL, children: 'scrolling_panel' }, + "inventory_content/scrolling_panel": { type: T.PANEL, children: string }, + "header": { type: T.PANEL, children: 'header_background' | 'close_button' | 'panel' }, + "header/header_background": { type: T.IMAGE, children: string }, + "header/close_button": { type: T.BUTTON, children: string }, + "header/panel": { type: T.PANEL, children: 'title_label' }, + "header/panel/title_label": { type: T.LABEL, children: string }, + "inventory_and_furnace_panel": { type: T.PANEL, children: 'inventory_half_screen' | 'furnace_half_screen' }, + "inventory_and_furnace_panel/inventory_half_screen": { type: T.PANEL, children: 'inventory_content' }, + "inventory_and_furnace_panel/inventory_half_screen/inventory_content": { type: T.PANEL, children: string }, + "inventory_and_furnace_panel/furnace_half_screen": { type: T.PANEL, children: 'furnace_content' }, + "inventory_and_furnace_panel/furnace_half_screen/furnace_content": { type: T.PANEL, children: string }, + "header_and_content_stack_panel": { type: T.STACK_PANEL, children: 'header' | 'inventory_and_furnace_panel' }, + "header_and_content_stack_panel/header": { type: T.PANEL, children: string }, + "header_and_content_stack_panel/inventory_and_furnace_panel": { type: T.PANEL, children: string }, + "furnace_panel": { type: T.PANEL, children: 'bg' | 'root_panel' | 'header_and_content_stack_panel' | 'container_gamepad_helpers' | 'inventory_selected_icon_button' | 'hold_icon' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'flying_item_renderer' }, + "furnace_panel/bg": { type: T.IMAGE, children: string }, + "furnace_panel/root_panel": { type: T.INPUT_PANEL, children: string }, + "furnace_panel/header_and_content_stack_panel": { type: T.STACK_PANEL, children: string }, + "furnace_panel/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "furnace_panel/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "furnace_panel/hold_icon": { type: T.BUTTON, children: string }, + "furnace_panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "furnace_panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "furnace_panel/flying_item_renderer": { type: T.CUSTOM, children: string }, } 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": { type: T.IMAGE, children: string }, + "game_tip_animation_panel": { type: T.PANEL, children: 'animated_icon' }, + "game_tip_animation_panel/animated_icon": { type: T.IMAGE, children: string }, + "game_tip_label": { type: T.LABEL, children: string }, + "game_tip_text_panel": { type: T.STACK_PANEL, children: 'upper_padding' | 'label' | 'lower_padding' }, + "game_tip_text_panel/upper_padding": { type: T.PANEL, children: string }, + "game_tip_text_panel/label": { type: T.LABEL, children: string }, + "game_tip_text_panel/lower_padding": { type: T.PANEL, children: string }, + "game_tip_arrow_image": { type: T.IMAGE, children: string }, + "game_tip_arrow_panel": { type: T.PANEL, children: 'tip_arrow' }, + "game_tip_arrow_panel/tip_arrow": { type: T.IMAGE, children: string }, + "game_tip_panel": { type: T.STACK_PANEL, children: 'animated_panel' | 'middle_padding' | 'label' | 'right_padding' }, + "game_tip_panel/animated_panel": { type: T.PANEL, children: string }, + "game_tip_panel/middle_padding": { type: T.PANEL, children: string }, + "game_tip_panel/label": { type: T.STACK_PANEL, children: string }, + "game_tip_panel/right_padding": { type: T.PANEL, children: string }, + "game_tip_item_background": { type: T.IMAGE, children: 'horizontal_container' | 'arrow_panel' }, + "game_tip_item_background/horizontal_container": { type: T.STACK_PANEL, children: string }, + "game_tip_item_background/arrow_panel": { type: T.PANEL, children: string }, + "chat_stack_game_tip_panel": { type: T.STACK_PANEL, children: 'top_padding' | 'game_tip_background' }, + "chat_stack_game_tip_panel/top_padding": { type: T.PANEL, children: string }, + "chat_stack_game_tip_panel/game_tip_background": { type: T.IMAGE, children: string }, + "game_tip_factory": { type: T.PANEL, children: string }, + "game_tip_chat_stack_factory": { type: T.PANEL, children: string }, } 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": { type: T.PANEL, children: 'dialog_background_hollow_3' }, + "gamepad_disconnected_modal/dialog_background_hollow_3": { type: T.IMAGE, children: 'control' }, + "gamepad_disconnected_modal/dialog_background_hollow_3/control": { type: T.IMAGE, children: 'content_panel' }, + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel": { type: T.STACK_PANEL, children: 'padding_0' | 'title' | 'padding_1' | 'description' }, + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/padding_0": { type: T.PANEL, children: string }, + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/title": { type: T.LABEL, children: string }, + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/padding_1": { type: T.PANEL, children: string }, + "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/description": { type: T.LABEL, children: string }, + "gamepad_disconnected_screen": { type: T.SCREEN, children: string }, } 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": { type: T.CUSTOM, children: string }, + "bundle_open_icon_back": { type: T.CUSTOM, children: string }, + "bundle_open_icon_front": { type: T.CUSTOM, children: string }, + "bundle_selected_item_background": { type: T.PANEL, children: 'bundle_selected_item_background_colour_green' | 'bundle_selected_item_background_colour' | 'bundle_selected_item_frame' }, + "bundle_selected_item_background/bundle_selected_item_background_colour_green": { type: T.IMAGE, children: string }, + "bundle_selected_item_background/bundle_selected_item_background_colour": { type: T.IMAGE, children: string }, + "bundle_selected_item_background/bundle_selected_item_frame": { type: T.IMAGE, children: string }, + "bundle_selected_item_panel": { type: T.PANEL, children: 'bundle_selected_item_background' | 'bundle_open_icon_back' | 'bundle_selected_item_icon' | 'bundle_open_icon_front' | 'storage_bar' }, + "bundle_selected_item_panel/bundle_selected_item_background": { type: T.PANEL, children: string }, + "bundle_selected_item_panel/bundle_open_icon_back": { type: T.CUSTOM, children: string }, + "bundle_selected_item_panel/bundle_selected_item_icon": { type: T.CUSTOM, children: string }, + "bundle_selected_item_panel/bundle_open_icon_front": { type: T.CUSTOM, children: string }, + "bundle_selected_item_panel/storage_bar": { type: T.CUSTOM, children: string }, + "bundle_slot_panel": { type: T.PANEL, children: 'bundle_selected_item_panel' }, + "bundle_slot_panel/bundle_selected_item_panel": { type: T.PANEL, children: string }, + "bundle_cell_image": { type: T.PANEL, children: 'background_panel' | 'highlight_panel' }, + "bundle_cell_image/background_panel": { type: T.PANEL, children: 'item_background' }, + "bundle_cell_image/background_panel/item_background": { type: T.IMAGE, children: string }, + "bundle_cell_image/highlight_panel": { type: T.PANEL, children: 'bundle_selected_item_background_colour_green' | 'bundle_selected_item_background_border_white' | 'bundle_selected_item_background_colour_blue' }, + "bundle_cell_image/highlight_panel/bundle_selected_item_background_colour_green": { type: T.IMAGE, children: string }, + "bundle_cell_image/highlight_panel/bundle_selected_item_background_border_white": { type: T.IMAGE, children: string }, + "bundle_cell_image/highlight_panel/bundle_selected_item_background_colour_blue": { type: T.IMAGE, children: string }, + "bundle_tooltip_slot_button": { type: T.BUTTON, children: string }, + "bundle_tooltip_slot_pocket": { type: T.PANEL, children: 'item_in_bundle_tooltip_pocket' | 'more_hidden_items_label' }, + "bundle_tooltip_slot_pocket/item_in_bundle_tooltip_pocket": { type: T.INPUT_PANEL, children: string }, + "bundle_tooltip_slot_pocket/more_hidden_items_label": { type: T.LABEL, children: string }, + "bundle_tooltip_slot_classic": { type: T.PANEL, children: 'item_in_bundle_tooltip_pocket' | 'more_hidden_items_label' }, + "bundle_tooltip_slot_classic/item_in_bundle_tooltip_pocket": { type: T.INPUT_PANEL, children: string }, + "bundle_tooltip_slot_classic/more_hidden_items_label": { type: T.LABEL, children: string }, + "bundle_tooltip": { type: T.PANEL, children: 'background' | 'header_stack' | 'wrapper' }, + "bundle_tooltip/background": { type: T.IMAGE, children: 'empty_button' | 'selected_item_tooltip' }, + "bundle_tooltip/background/empty_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "bundle_tooltip/background/empty_button/default": { type: T.PANEL, children: string }, + "bundle_tooltip/background/empty_button/hover": { type: T.PANEL, children: string }, + "bundle_tooltip/background/empty_button/pressed": { type: T.PANEL, children: string }, + "bundle_tooltip/background/selected_item_tooltip": { type: T.IMAGE, children: 'item_text_label' }, + "bundle_tooltip/background/selected_item_tooltip/item_text_label": { type: T.LABEL, children: string }, + "bundle_tooltip/header_stack": { type: T.STACK_PANEL, children: 'bundle_label' | 'close_button' }, + "bundle_tooltip/header_stack/bundle_label": { type: T.LABEL, children: string }, + "bundle_tooltip/header_stack/close_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "bundle_tooltip/header_stack/close_button/default": { type: T.PANEL, children: string }, + "bundle_tooltip/header_stack/close_button/hover": { type: T.PANEL, children: string }, + "bundle_tooltip/header_stack/close_button/pressed": { type: T.PANEL, children: string }, + "bundle_tooltip/wrapper": { type: T.PANEL, children: 'vertical_layout_stack' }, + "bundle_tooltip/wrapper/vertical_layout_stack": { type: T.STACK_PANEL, children: 'header_padding' | 'horisontal_layout_stack' }, + "bundle_tooltip/wrapper/vertical_layout_stack/header_padding": { type: T.PANEL, children: string }, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack": { type: T.STACK_PANEL, children: 'left_padding' | 'body_stack' }, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/left_padding": { type: T.PANEL, children: string }, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack": { type: T.STACK_PANEL, children: 'item_grid' | 'info_message' | 'footer_panel' }, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/item_grid": { type: T.GRID, children: string }, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/info_message": { type: T.LABEL, children: string }, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel": { type: T.PANEL, children: 'weight_bar' }, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar": { type: T.PANEL, children: 'empty_message' | 'weight_bar_fill' | 'weight_bar_full' | 'weight_bar_border' }, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/empty_message": { type: T.LABEL, children: string }, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_fill": { type: T.IMAGE, children: string }, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_full": { type: T.IMAGE, children: 'full_label' }, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_full/full_label": { type: T.LABEL, children: string }, + "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_border": { type: T.IMAGE, children: string }, + "bundle_touch_tooltip": { type: T.PANEL, children: string }, + "bundle_tooltip_factory_wrapper": { type: T.PANEL, children: 'bundle_cursor_tooltip' }, + "bundle_tooltip_factory_wrapper/bundle_cursor_tooltip": { type: T.CUSTOM, children: string }, + "bundle_cursor_tooltip": { type: T.CUSTOM, children: 'tooltip' }, + "bundle_cursor_tooltip/tooltip": { type: T.PANEL, children: string }, } 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": { type: T.SCREEN, children: string }, + "info_content": { type: T.PANEL, children: 'header' | 'left_panel' | 'section_divider' | 'right_panel' }, + "info_content/header": { type: T.STACK_PANEL, children: string }, + "info_content/left_panel": { type: T.PANEL, children: 'stack' }, + "info_content/left_panel/stack": { type: T.STACK_PANEL, children: 'event_image' | 'pad_2' | 'button_and_caption' | 'pad_3' | 'info_button' | 'pad_4' | 'gamepad_helper_panel' | 'pad_fill' | 'gathering_id_label' | 'pad_5' }, + "info_content/left_panel/stack/event_image": { type: T.IMAGE, children: string }, + "info_content/left_panel/stack/pad_2": { type: T.PANEL, children: string }, + "info_content/left_panel/stack/button_and_caption": { type: T.PANEL, children: 'caption' | 'action_button' }, + "info_content/left_panel/stack/button_and_caption/caption": { type: T.IMAGE, children: string }, + "info_content/left_panel/stack/button_and_caption/action_button": { type: T.BUTTON, children: string }, + "info_content/left_panel/stack/pad_3": { type: T.PANEL, children: string }, + "info_content/left_panel/stack/info_button": { type: T.BUTTON, children: string }, + "info_content/left_panel/stack/pad_4": { type: T.PANEL, children: string }, + "info_content/left_panel/stack/gamepad_helper_panel": { type: T.PANEL, children: 'gamepad_helpers' }, + "info_content/left_panel/stack/gamepad_helper_panel/gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "info_content/left_panel/stack/pad_fill": { type: T.PANEL, children: string }, + "info_content/left_panel/stack/gathering_id_label": { type: T.LABEL, children: string }, + "info_content/left_panel/stack/pad_5": { type: T.PANEL, children: string }, + "info_content/section_divider": { type: T.IMAGE, children: string }, + "info_content/right_panel": { type: T.PANEL, children: 'scroll' }, + "info_content/right_panel/scroll": { type: T.PANEL, children: string }, + "right_panel_content": { type: T.STACK_PANEL, children: 'pad' | 'sign_in_panel' | 'sign_in_pad' | 'qr_panel' | 'qr_pad' | 'title' | 'pad_1' | 'body' | 'pad_2' | 'body_image' | 'footer' }, + "right_panel_content/pad": { type: T.PANEL, children: string }, + "right_panel_content/sign_in_panel": { type: T.STACK_PANEL, children: 'sign_in_image' | 'horizontal_pad' | 'text_stack' }, + "right_panel_content/sign_in_panel/sign_in_image": { type: T.IMAGE, children: string }, + "right_panel_content/sign_in_panel/horizontal_pad": { type: T.PANEL, children: string }, + "right_panel_content/sign_in_panel/text_stack": { type: T.STACK_PANEL, children: 'sign_in_title' | 'text_pad' | 'sign_in_body' }, + "right_panel_content/sign_in_panel/text_stack/sign_in_title": { type: T.PANEL, children: string }, + "right_panel_content/sign_in_panel/text_stack/text_pad": { type: T.PANEL, children: string }, + "right_panel_content/sign_in_panel/text_stack/sign_in_body": { type: T.PANEL, children: string }, + "right_panel_content/sign_in_pad": { type: T.PANEL, children: string }, + "right_panel_content/qr_panel": { type: T.STACK_PANEL, children: 'qr_background' | 'horizontal_pad' | 'text_stack' }, + "right_panel_content/qr_panel/qr_background": { type: T.IMAGE, children: 'qr_image' }, + "right_panel_content/qr_panel/qr_background/qr_image": { type: T.IMAGE, children: string }, + "right_panel_content/qr_panel/horizontal_pad": { type: T.PANEL, children: string }, + "right_panel_content/qr_panel/text_stack": { type: T.STACK_PANEL, children: 'qr_title' | 'text_pad' | 'qr_body' }, + "right_panel_content/qr_panel/text_stack/qr_title": { type: T.PANEL, children: string }, + "right_panel_content/qr_panel/text_stack/text_pad": { type: T.PANEL, children: string }, + "right_panel_content/qr_panel/text_stack/qr_body": { type: T.PANEL, children: string }, + "right_panel_content/qr_pad": { type: T.PANEL, children: string }, + "right_panel_content/title": { type: T.PANEL, children: string }, + "right_panel_content/pad_1": { type: T.PANEL, children: string }, + "right_panel_content/body": { type: T.PANEL, children: string }, + "right_panel_content/pad_2": { type: T.PANEL, children: string }, + "right_panel_content/body_image": { type: T.IMAGE, children: string }, + "right_panel_content/footer": { type: T.INPUT_PANEL, children: string }, + "tts_label": { type: T.PANEL, children: string }, + "tts_label_title": { type: T.PANEL, children: string }, + "sign_in_title": { type: T.LABEL, children: string }, + "sign_in_body": { type: T.LABEL, children: string }, + "qr_title": { type: T.LABEL, children: string }, + "qr_body": { type: T.LABEL, children: string }, + "title_panel": { type: T.LABEL, children: string }, + "body_panel": { type: T.LABEL, children: string }, + "section_divider": { type: T.IMAGE, children: string }, + "gamepad_helpers": { type: T.STACK_PANEL, children: 'gamepad_helper_a' | 'gamepad_helper_b' }, + "gamepad_helpers/gamepad_helper_a": { type: T.STACK_PANEL, children: string }, + "gamepad_helpers/gamepad_helper_b": { type: T.STACK_PANEL, children: string }, } 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": { type: T.LABEL, children: string }, + "quit_button": { type: T.BUTTON, children: string }, + "globalpause_screen": { type: T.SCREEN, children: string }, + "pause_screen_content": { type: T.PANEL, children: 'transparentFill' | 'message' | 'quit_button' }, + "pause_screen_content/transparentFill": { type: T.IMAGE, children: string }, + "pause_screen_content/message": { type: T.LABEL, children: string }, + "pause_screen_content/quit_button": { type: T.BUTTON, children: string }, } 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": { type: T.LABEL, children: string }, + "arrow_icon": { type: T.IMAGE, children: string }, + "cross_out_icon": { type: T.IMAGE, children: string }, + "grindstone_output_slot_button": { type: T.BUTTON, children: string }, + "grindstone_item_slot": { type: T.PANEL, children: 'container_item' }, + "grindstone_item_slot/container_item": { type: T.INPUT_PANEL, children: string }, + "grindstone_middle_panel": { type: T.PANEL, children: 'input_item_slot' | 'additional_item_slot' }, + "grindstone_middle_panel/input_item_slot": { type: T.PANEL, children: string }, + "grindstone_middle_panel/additional_item_slot": { type: T.PANEL, children: string }, + "grindstone_slots_panel": { type: T.PANEL, children: 'grindstone_middle_panel' | 'yields' | 'result_item_slot' }, + "grindstone_slots_panel/grindstone_middle_panel": { type: T.PANEL, children: string }, + "grindstone_slots_panel/yields": { type: T.PANEL, children: 'arrow_icon' | 'cross_out_icon' }, + "grindstone_slots_panel/yields/arrow_icon": { type: T.IMAGE, children: string }, + "grindstone_slots_panel/yields/cross_out_icon": { type: T.IMAGE, children: string }, + "grindstone_slots_panel/result_item_slot": { type: T.PANEL, children: string }, + "top_half_panel": { type: T.PANEL, children: 'title_label' | 'grindstone_slots_panel' }, + "top_half_panel/title_label": { type: T.LABEL, children: string }, + "top_half_panel/grindstone_slots_panel": { type: T.PANEL, children: string }, + "grindstone_panel": { type: T.PANEL, children: 'container_gamepad_helpers' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'root_panel' | 'flying_item_renderer' }, + "grindstone_panel/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "grindstone_panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "grindstone_panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "grindstone_panel/root_panel": { type: T.INPUT_PANEL, children: 'common_panel' | 'grindstone_screen_inventory' | 'inventory_selected_icon_button' | 'gamepad_cursor' }, + "grindstone_panel/root_panel/common_panel": { type: T.PANEL, children: string }, + "grindstone_panel/root_panel/grindstone_screen_inventory": { type: T.PANEL, children: 'top_half_panel' | 'inventory_panel_bottom_half_with_label' | 'hotbar_grid' | 'inventory_take_progress_icon_button' }, + "grindstone_panel/root_panel/grindstone_screen_inventory/top_half_panel": { type: T.PANEL, children: string }, + "grindstone_panel/root_panel/grindstone_screen_inventory/inventory_panel_bottom_half_with_label": { type: T.PANEL, children: string }, + "grindstone_panel/root_panel/grindstone_screen_inventory/hotbar_grid": { type: T.GRID, children: string }, + "grindstone_panel/root_panel/grindstone_screen_inventory/inventory_take_progress_icon_button": { type: T.BUTTON, children: string }, + "grindstone_panel/root_panel/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "grindstone_panel/root_panel/gamepad_cursor": { type: T.BUTTON, children: string }, + "grindstone_panel/flying_item_renderer": { type: T.CUSTOM, children: string }, + "grindstone_screen": { type: T.SCREEN, children: string }, } 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": { type: T.IMAGE, children: string }, + "repair_title_label": { type: T.LABEL, children: string }, + "grindstone_middle_panel": { type: T.PANEL, children: 'input_slot' | 'additional_slot' }, + "grindstone_middle_panel/input_slot": { type: T.INPUT_PANEL, children: string }, + "grindstone_middle_panel/additional_slot": { type: T.INPUT_PANEL, children: string }, + "slots_panel": { type: T.PANEL, children: 'grindstone_middle_panel' | 'arrow' | 'result_slot' }, + "slots_panel/grindstone_middle_panel": { type: T.PANEL, children: string }, + "slots_panel/arrow": { type: T.IMAGE, children: 'cross_out' }, + "slots_panel/arrow/cross_out": { type: T.IMAGE, children: string }, + "slots_panel/result_slot": { type: T.INPUT_PANEL, children: string }, + "grindstone_contents_panel": { type: T.PANEL, children: 'repair_title_label' | 'slots_panel' }, + "grindstone_contents_panel/repair_title_label": { type: T.LABEL, children: string }, + "grindstone_contents_panel/slots_panel": { type: T.PANEL, children: string }, + "inventory_grid": { type: T.GRID, children: string }, + "inventory_content": { type: T.PANEL, children: 'scrolling_panel' }, + "inventory_content/scrolling_panel": { type: T.PANEL, children: string }, + "header": { type: T.PANEL, children: 'header_background' | 'legacy_pocket_close_button' | 'panel' }, + "header/header_background": { type: T.IMAGE, children: string }, + "header/legacy_pocket_close_button": { type: T.BUTTON, children: string }, + "header/panel": { type: T.PANEL, children: 'title_label' }, + "header/panel/title_label": { type: T.LABEL, children: string }, + "inventory_and_grindstone_panel": { type: T.PANEL, children: 'inventory_half_screen' | 'grindstone_half_screen' }, + "inventory_and_grindstone_panel/inventory_half_screen": { type: T.PANEL, children: 'inventory_content' }, + "inventory_and_grindstone_panel/inventory_half_screen/inventory_content": { type: T.PANEL, children: string }, + "inventory_and_grindstone_panel/grindstone_half_screen": { type: T.PANEL, children: 'grindstone_content' }, + "inventory_and_grindstone_panel/grindstone_half_screen/grindstone_content": { type: T.PANEL, children: string }, + "header_and_content_stack_panel": { type: T.STACK_PANEL, children: 'header' | 'inventory_and_grindstone_panel' }, + "header_and_content_stack_panel/header": { type: T.PANEL, children: string }, + "header_and_content_stack_panel/inventory_and_grindstone_panel": { type: T.PANEL, children: string }, + "grindstone_panel": { type: T.PANEL, children: 'bg' | 'root_panel' | 'header_and_content_stack_panel' | 'container_gamepad_helpers' | 'inventory_selected_icon_button' | 'hold_icon' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'flying_item_renderer' }, + "grindstone_panel/bg": { type: T.IMAGE, children: string }, + "grindstone_panel/root_panel": { type: T.INPUT_PANEL, children: string }, + "grindstone_panel/header_and_content_stack_panel": { type: T.STACK_PANEL, children: string }, + "grindstone_panel/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "grindstone_panel/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "grindstone_panel/hold_icon": { type: T.BUTTON, children: string }, + "grindstone_panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "grindstone_panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "grindstone_panel/flying_item_renderer": { type: T.CUSTOM, children: string }, } 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": { type: T.PANEL, children: 'child' }, + "stack_panel_centering_panel/child": { type: T.UNKNOWN, children: string }, + "stack_panel_align_left_panel": { type: T.PANEL, children: 'child' }, + "stack_panel_align_left_panel/child": { type: T.UNKNOWN, children: string }, + "stack_panel_align_right_panel": { type: T.PANEL, children: 'child' }, + "stack_panel_align_right_panel/child": { type: T.UNKNOWN, children: string }, + "image_panel": { type: T.STACK_PANEL, children: 'padding' | 'image' }, + "image_panel/padding": { type: T.PANEL, children: string }, + "image_panel/image": { type: T.IMAGE, children: string }, + "horizontal_padding": { type: T.PANEL, children: string }, + "image_stack": { type: T.STACK_PANEL, children: 'not_visible_image' | 'padding_0' | 'barely_visible_image' | 'padding_1' | 'easily_visible_image' }, + "image_stack/not_visible_image": { type: T.STACK_PANEL, children: string }, + "image_stack/padding_0": { type: T.PANEL, children: string }, + "image_stack/barely_visible_image": { type: T.STACK_PANEL, children: string }, + "image_stack/padding_1": { type: T.PANEL, children: string }, + "image_stack/easily_visible_image": { type: T.STACK_PANEL, children: string }, + "button_stack": { type: T.STACK_PANEL, children: 'continue_button_panel' | 'padding' | 'reset_button_panel' }, + "button_stack/continue_button_panel": { type: T.PANEL, children: string }, + "button_stack/padding": { type: T.PANEL, children: string }, + "button_stack/reset_button_panel": { type: T.PANEL, children: string }, + "message_panel": { type: T.PANEL, children: 'message_label' }, + "message_panel/message_label": { type: T.LABEL, children: string }, + "calibration_slider": { type: T.PANEL, children: 'slider' }, + "calibration_slider/slider": { type: T.PANEL, children: string }, + "continue_button": { type: T.BUTTON, children: string }, + "reset_button": { type: T.BUTTON, children: string }, + "main_panel": { type: T.STACK_PANEL, children: 'hdr_message_panel' | 'image_stack_panel' | 'padding_0' | 'slider_panel' | 'padding_1' | 'button_stack_panel' }, + "main_panel/hdr_message_panel": { type: T.PANEL, children: string }, + "main_panel/image_stack_panel": { type: T.PANEL, children: string }, + "main_panel/padding_0": { type: T.PANEL, children: string }, + "main_panel/slider_panel": { type: T.PANEL, children: string }, + "main_panel/padding_1": { type: T.PANEL, children: string }, + "main_panel/button_stack_panel": { type: T.PANEL, children: string }, + "gamma_calibration_screen": { type: T.SCREEN, children: string }, } 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": { type: T.IMAGE, children: string }, + "overlay_image": { type: T.IMAGE, children: string }, + "saddle_image": { type: T.IMAGE, children: string }, + "horse_armor_image": { type: T.IMAGE, children: string }, + "carpet_image": { type: T.IMAGE, children: string }, + "nautilus_armor_image": { type: T.IMAGE, children: string }, + "horse_label": { type: T.LABEL, children: string }, + "equip_grid": { type: T.GRID, children: string }, + "inv_grid": { type: T.GRID, children: string }, + "inv_bg_panel": { type: T.PANEL, children: 'cell_image' }, + "inv_bg_panel/cell_image": { type: T.IMAGE, children: string }, + "equip_panel": { type: T.PANEL, children: 'equip_grid' | 'saddle' | 'horse_armor_0' | 'carpet_0' | 'nautilus_armor_0' | 'horse_armor_1' | 'carpet_1' | 'nautilus_armor_1' }, + "equip_panel/equip_grid": { type: T.GRID, children: string }, + "equip_panel/saddle": { type: T.IMAGE, children: string }, + "equip_panel/horse_armor_0": { type: T.IMAGE, children: string }, + "equip_panel/carpet_0": { type: T.IMAGE, children: string }, + "equip_panel/nautilus_armor_0": { type: T.IMAGE, children: string }, + "equip_panel/horse_armor_1": { type: T.IMAGE, children: string }, + "equip_panel/carpet_1": { type: T.IMAGE, children: string }, + "equip_panel/nautilus_armor_1": { type: T.IMAGE, children: string }, + "inv_panel": { type: T.PANEL, children: 'inv_bg_panel' | 'inv_grid' }, + "inv_panel/inv_bg_panel": { type: T.PANEL, children: string }, + "inv_panel/inv_grid": { type: T.GRID, children: string }, + "horse_renderer": { type: T.PANEL, children: 'renderer_bg' | 'horse_custom_panel' }, + "horse_renderer/renderer_bg": { type: T.IMAGE, children: string }, + "horse_renderer/horse_custom_panel": { type: T.PANEL, children: 'horse_custom' }, + "horse_renderer/horse_custom_panel/horse_custom": { type: T.CUSTOM, children: string }, + "horse_panel": { type: T.PANEL, children: 'container_gamepad_helpers' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'root_panel' | 'flying_item_renderer' }, + "horse_panel/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "horse_panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "horse_panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "horse_panel/root_panel": { type: T.INPUT_PANEL, children: 'common_panel' | 'horse_section_label' | 'inv_panel' | 'equipment' | 'renderer' | 'inventory_panel_bottom_half_with_label' | 'hotbar_grid_template' | 'inventory_selected_icon_button' | 'gamepad_cursor' }, + "horse_panel/root_panel/common_panel": { type: T.PANEL, children: string }, + "horse_panel/root_panel/horse_section_label": { type: T.LABEL, children: string }, + "horse_panel/root_panel/inv_panel": { type: T.PANEL, children: string }, + "horse_panel/root_panel/equipment": { type: T.PANEL, children: string }, + "horse_panel/root_panel/renderer": { type: T.PANEL, children: string }, + "horse_panel/root_panel/inventory_panel_bottom_half_with_label": { type: T.PANEL, children: string }, + "horse_panel/root_panel/hotbar_grid_template": { type: T.GRID, children: string }, + "horse_panel/root_panel/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "horse_panel/root_panel/gamepad_cursor": { type: T.BUTTON, children: string }, + "horse_panel/flying_item_renderer": { type: T.CUSTOM, children: string }, + "horse_screen": { type: T.SCREEN, children: string }, } 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": { type: T.PANEL, children: 'gamepad_helpers' | 'inventory_selected_icon_button' | 'gamepad_cursor' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'base_panel' | 'flying_item_renderer' }, + "horse_panel/gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "horse_panel/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "horse_panel/gamepad_cursor": { type: T.BUTTON, children: string }, + "horse_panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "horse_panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "horse_panel/base_panel": { type: T.PANEL, children: 'root_panel' | 'hold_icon' | 'bg' | 'interactive_tabs' | 'close_button' | 'inventory' | 'equipment' | 'chest_tab' | 'renderer_tab' }, + "horse_panel/base_panel/root_panel": { type: T.INPUT_PANEL, children: string }, + "horse_panel/base_panel/hold_icon": { type: T.BUTTON, children: string }, + "horse_panel/base_panel/bg": { type: T.PANEL, children: string }, + "horse_panel/base_panel/interactive_tabs": { type: T.PANEL, children: string }, + "horse_panel/base_panel/close_button": { type: T.BUTTON, children: string }, + "horse_panel/base_panel/inventory": { type: T.PANEL, children: string }, + "horse_panel/base_panel/equipment": { type: T.PANEL, children: string }, + "horse_panel/base_panel/chest_tab": { type: T.PANEL, children: 'visual_tabs_chest' | 'chest' }, + "horse_panel/base_panel/chest_tab/visual_tabs_chest": { type: T.PANEL, children: string }, + "horse_panel/base_panel/chest_tab/chest": { type: T.PANEL, children: string }, + "horse_panel/base_panel/renderer_tab": { type: T.PANEL, children: 'visual_tabs_equip' | 'renderer' }, + "horse_panel/base_panel/renderer_tab/visual_tabs_equip": { type: T.PANEL, children: string }, + "horse_panel/base_panel/renderer_tab/renderer": { type: T.PANEL, children: string }, + "horse_panel/flying_item_renderer": { type: T.CUSTOM, children: string }, + "background_image": { type: T.IMAGE, children: string }, + "dark_bg": { type: T.IMAGE, children: string }, + "renderer_bg": { type: T.IMAGE, children: string }, + "saddle_image": { type: T.IMAGE, children: string }, + "horse_armor_image": { type: T.IMAGE, children: string }, + "carpet_image": { type: T.IMAGE, children: string }, + "nautilus_armor_image": { type: T.IMAGE, children: string }, + "panel_outline": { type: T.IMAGE, children: string }, + "close_button_default": { type: T.IMAGE, children: string }, + "close_button_pressed": { type: T.IMAGE, children: string }, + "close_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "close_button/default": { type: T.IMAGE, children: string }, + "close_button/hover": { type: T.IMAGE, children: string }, + "close_button/pressed": { type: T.IMAGE, children: string }, + "base_grid": { type: T.GRID, children: string }, + "inventory_grid": { type: T.GRID, children: string }, + "chest_grid": { type: T.GRID, children: string }, + "base_grid_panel": { type: T.PANEL, children: 'panel_outline' | 'dark_bg' | 'scrolling_panel' }, + "base_grid_panel/panel_outline": { type: T.IMAGE, children: string }, + "base_grid_panel/dark_bg": { type: T.IMAGE, children: string }, + "base_grid_panel/scrolling_panel": { type: T.PANEL, children: string }, + "inventory_panel": { type: T.PANEL, children: string }, + "chest_panel": { type: T.PANEL, children: string }, + "half_screen": { type: T.PANEL, children: string }, + "middle_screen": { type: T.PANEL, children: string }, + "half_screen_inventory": { type: T.PANEL, children: 'inventory_panel' }, + "half_screen_inventory/inventory_panel": { type: T.PANEL, children: string }, + "half_screen_chest": { type: T.PANEL, children: 'chest_panel' }, + "half_screen_chest/chest_panel": { type: T.PANEL, children: string }, + "horse_renderer": { type: T.PANEL, children: 'horse_custom' }, + "horse_renderer/horse_custom": { type: T.CUSTOM, children: string }, + "half_screen_renderer": { type: T.PANEL, children: 'renderer_bg' | 'horse_custom_panel' | 'camel_custom_panel' }, + "half_screen_renderer/renderer_bg": { type: T.IMAGE, children: string }, + "half_screen_renderer/horse_custom_panel": { type: T.PANEL, children: string }, + "half_screen_renderer/camel_custom_panel": { type: T.PANEL, children: string }, + "equip_item_panel": { type: T.PANEL, children: 'equip_container_item' }, + "equip_item_panel/equip_container_item": { type: T.INPUT_PANEL, children: string }, + "equip_grid": { type: T.GRID, children: string }, + "equip_middle_screen": { type: T.PANEL, children: 'equip_grid_panel' }, + "equip_middle_screen/equip_grid_panel": { type: T.PANEL, children: 'equip_grid' | 'centered_0' | 'offset' | 'centered_1' | 'centered_2' | 'horse_armor_image' | 'carpet_image' }, + "equip_middle_screen/equip_grid_panel/equip_grid": { type: T.GRID, children: string }, + "equip_middle_screen/equip_grid_panel/centered_0": { type: T.IMAGE, children: string }, + "equip_middle_screen/equip_grid_panel/offset": { type: T.IMAGE, children: string }, + "equip_middle_screen/equip_grid_panel/centered_1": { type: T.IMAGE, children: string }, + "equip_middle_screen/equip_grid_panel/centered_2": { type: T.IMAGE, children: string }, + "equip_middle_screen/equip_grid_panel/horse_armor_image": { type: T.IMAGE, children: string }, + "equip_middle_screen/equip_grid_panel/carpet_image": { type: T.IMAGE, children: string }, + "horse_screen_tab_toggle": { type: T.TOGGLE, children: string }, + "interactive_tabs": { type: T.PANEL, children: 'renderer_tab_interactive' | 'chest_tab_interactive' }, + "interactive_tabs/renderer_tab_interactive": { type: T.TOGGLE, children: string }, + "interactive_tabs/chest_tab_interactive": { type: T.TOGGLE, children: string }, + "tab_front": { type: T.IMAGE, children: string }, + "tab_back": { type: T.IMAGE, children: string }, + "close_tab": { type: T.IMAGE, children: string }, + "item_icon_renderer": { type: T.CUSTOM, children: string }, + "saddle_icon_front": { type: T.CUSTOM, children: string }, + "chest_icon_front": { type: T.CUSTOM, children: string }, + "visual_tabs_equip": { type: T.PANEL, children: 'close_tab' | 'chest' | 'equip' }, + "visual_tabs_equip/close_tab": { type: T.IMAGE, children: 'nodrop_zone' }, + "visual_tabs_equip/close_tab/nodrop_zone": { type: T.INPUT_PANEL, children: string }, + "visual_tabs_equip/chest": { type: T.IMAGE, children: 'chest_icon' }, + "visual_tabs_equip/chest/chest_icon": { type: T.CUSTOM, children: string }, + "visual_tabs_equip/equip": { type: T.IMAGE, children: 'equip_icon' }, + "visual_tabs_equip/equip/equip_icon": { type: T.CUSTOM, children: string }, + "visual_tabs_chest": { type: T.PANEL, children: 'close_tab' | 'chest' | 'equip' }, + "visual_tabs_chest/close_tab": { type: T.IMAGE, children: string }, + "visual_tabs_chest/chest": { type: T.IMAGE, children: 'chest_icon' }, + "visual_tabs_chest/chest/chest_icon": { type: T.CUSTOM, children: string }, + "visual_tabs_chest/equip": { type: T.IMAGE, children: 'equip_icon' }, + "visual_tabs_chest/equip/equip_icon": { type: T.CUSTOM, children: string }, } 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": { type: T.SCREEN, children: string }, + "screen_background": { type: T.IMAGE, children: string }, + "top_bar": { type: T.IMAGE, children: string }, + "button_panel": { type: T.LABEL, children: string }, + "light_text_button": { type: T.BUTTON, children: string }, + "action_button": { type: T.BUTTON, children: string }, + "topic_category": { type: T.PANEL, children: 'top_padding' | 'category_text' }, + "topic_category/top_padding": { type: T.PANEL, children: string }, + "topic_category/category_text": { type: T.LABEL, children: string }, + "toggle_button_control": { type: T.PANEL, children: 'tab_button_text' }, + "toggle_button_control/tab_button_text": { type: T.LABEL, children: string }, + "glyph_button_control": { type: T.PANEL, children: 'tab_button_text' | 'glyph' }, + "glyph_button_control/tab_button_text": { type: T.LABEL, children: string }, + "glyph_button_control/glyph": { type: T.IMAGE, children: string }, + "section_toggle_button": { type: T.PANEL, children: 'section_toggle_button' }, + "section_toggle_button/section_toggle_button": { type: T.PANEL, children: string }, + "edu_section_toggle_button": { type: T.PANEL, children: string }, + "padding": { type: T.PANEL, children: string }, + "touch_padding": { type: T.PANEL, children: string }, + "small_padding": { type: T.PANEL, children: string }, + "large_padding": { type: T.PANEL, children: string }, + "section_contents_header": { type: T.INPUT_PANEL, children: string }, + "section_contents_footer": { type: T.INPUT_PANEL, children: string }, + "main_sections": { type: T.STACK_PANEL, children: string }, + "splitscreen_only_content": { type: T.STACK_PANEL, children: '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' }, + "splitscreen_only_content/0": { type: T.UNKNOWN, children: string }, + "tts_focus_border": { type: T.BUTTON, children: string }, + "header_tts_focus_border": { type: T.BUTTON, children: string }, + "header_background": { type: T.IMAGE, children: 'header_label' | 'focus_border' }, + "header_background/header_label": { type: T.LABEL, children: string }, + "header_background/focus_border": { type: T.BUTTON, children: string }, + "header": { type: T.PANEL, children: 'header' }, + "header/header": { type: T.IMAGE, children: string }, + "paragraph_panel": { type: T.PANEL, children: string }, + "paragraph_label": { type: T.LABEL, children: string }, + "paragraph_tts_focus_border": { type: T.BUTTON, children: string }, + "paragraph": { type: T.PANEL, children: 'label' | 'focus_border' }, + "paragraph/label": { type: T.LABEL, children: string }, + "paragraph/focus_border": { type: T.BUTTON, children: string }, + "paragraph_with_icons": { type: T.PANEL, children: 'label' | 'focus_border' }, + "paragraph_with_icons/label": { type: T.LABEL, children: string }, + "paragraph_with_icons/focus_border": { type: T.BUTTON, children: string }, + "input_conditional_paragraph": { type: T.PANEL, children: string }, + "input_conditional_paragraph_with_icons": { type: T.PANEL, children: string }, + "paragraph_keyboard": { type: T.PANEL, children: string }, + "paragraph_gamepad": { type: T.PANEL, children: string }, + "paragraph_gamepad_no_icons": { type: T.PANEL, children: string }, + "paragraph_touch": { type: T.PANEL, children: string }, + "paragraph_touch_classic_dpad_spacing": { type: T.PANEL, children: string }, + "paragraph_touch_no_icons": { type: T.PANEL, children: string }, + "paragraph_touch_joystick_tap": { type: T.PANEL, children: string }, + "paragraph_touch_classic_dpad": { type: T.PANEL, children: string }, + "paragraph_touch_joystick_crosshair": { type: T.PANEL, children: string }, + "paragraph_not_touch": { type: T.PANEL, children: string }, + "image": { type: T.IMAGE, children: string }, + "how_to_play_header": { type: T.PANEL, children: 'top_bar' }, + "how_to_play_header/top_bar": { type: T.IMAGE, children: 'back_button' | 'how_to_play_title' | 'gamepad_bumper_helpers' }, + "how_to_play_header/top_bar/back_button": { type: T.STACK_PANEL, children: string }, + "how_to_play_header/top_bar/how_to_play_title": { type: T.PANEL, children: string }, + "how_to_play_header/top_bar/gamepad_bumper_helpers": { type: T.STACK_PANEL, children: string }, + "how_to_play_content": { type: T.PANEL, children: 'header' | 'container' }, + "how_to_play_content/header": { type: T.PANEL, children: string }, + "how_to_play_content/container": { type: T.PANEL, children: string }, + "dialog_content": { type: T.PANEL, children: 'selector_area' | 'content_area' | 'section_divider' }, + "dialog_content/selector_area": { type: T.PANEL, children: string }, + "dialog_content/content_area": { type: T.PANEL, children: string }, + "dialog_content/section_divider": { type: T.IMAGE, children: string }, + "scrollable_selector_area_content": { type: T.PANEL, children: string }, + "selector_area": { type: T.PANEL, children: 'scrolling_panel' }, + "selector_area/scrolling_panel": { type: T.PANEL, children: string }, + "section_divider": { type: T.IMAGE, children: string }, + "content_area_wrapper": { type: T.PANEL, children: 'content_area' }, + "content_area_wrapper/content_area": { type: T.PANEL, children: string }, + "content_area": { type: T.PANEL, children: 'control' }, + "content_area/control": { type: T.STACK_PANEL, children: 'scrolling_panel' }, + "content_area/control/scrolling_panel": { type: T.PANEL, children: string }, + "screen_base": { type: T.SCREEN, children: string }, + "gamepad_bumper_helper_description": { type: T.LABEL, children: string }, + "gamepad_bumper_helpers": { type: T.STACK_PANEL, children: 'gamepad_helper_left_bumper' | 'padding' | 'gamepad_helper_right_bumper' }, + "gamepad_bumper_helpers/gamepad_helper_left_bumper": { type: T.STACK_PANEL, children: string }, + "gamepad_bumper_helpers/padding": { type: T.PANEL, children: string }, + "gamepad_bumper_helpers/gamepad_helper_right_bumper": { type: T.STACK_PANEL, children: string }, } 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": { type: T.SCREEN, children: string }, + "how_to_play_selector_stack_panel": { type: T.STACK_PANEL, children: 'how_to_play_selector_pane' }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane": { type: T.STACK_PANEL, children: 'getting_started_category' | 'moving_around_button' | 'gathering_resources_button' | 'selecting_items_button' | 'placing_blocks_button' | 'inventory_button' | 'preparing_for_the_night_category' | 'your_first_craft_button' | 'recipe_book_button' | 'the_crafting_table_button' | 'crafting_a_tool_button' | 'mining_button' | 'surviving_the_first_night_category' | 'nightfall_new_button' | 'building_a_shelter_button' | 'death_and_respawn_button' | 'getting_settled_category' | 'food_button' | 'beds_new_button' | 'improved_tools_button' | 'education_category' | 'world_builder_button' | 'permission_blocks_button' | 'chalkboard_button' | 'chemistry_button' | 'npc_button' | 'camera_button' | 'portfolio_button' | 'classroom_mode_button' | 'code_builder_button' | 'padding_1' | 'playing_together_button' | 'encyclopedia_button' }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/getting_started_category": { type: T.PANEL, children: string }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/moving_around_button": { type: T.PANEL, children: string }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/gathering_resources_button": { type: T.PANEL, children: string }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/selecting_items_button": { type: T.PANEL, children: string }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/placing_blocks_button": { type: T.PANEL, children: string }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/inventory_button": { type: T.PANEL, children: string }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/preparing_for_the_night_category": { type: T.PANEL, children: string }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/your_first_craft_button": { type: T.PANEL, children: string }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/recipe_book_button": { type: T.PANEL, children: string }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/the_crafting_table_button": { type: T.PANEL, children: string }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/crafting_a_tool_button": { type: T.PANEL, children: string }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/mining_button": { type: T.PANEL, children: string }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/surviving_the_first_night_category": { type: T.PANEL, children: string }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/nightfall_new_button": { type: T.PANEL, children: string }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/building_a_shelter_button": { type: T.PANEL, children: string }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/death_and_respawn_button": { type: T.PANEL, children: string }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/getting_settled_category": { type: T.PANEL, children: string }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/food_button": { type: T.PANEL, children: string }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/beds_new_button": { type: T.PANEL, children: string }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/improved_tools_button": { type: T.PANEL, children: string }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/education_category": { type: T.PANEL, children: string }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/world_builder_button": { type: T.PANEL, children: string }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/permission_blocks_button": { type: T.PANEL, children: string }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/chalkboard_button": { type: T.PANEL, children: string }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/chemistry_button": { type: T.PANEL, children: string }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/npc_button": { type: T.PANEL, children: string }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/camera_button": { type: T.PANEL, children: string }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/portfolio_button": { type: T.PANEL, children: string }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/classroom_mode_button": { type: T.PANEL, children: string }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/code_builder_button": { type: T.PANEL, children: string }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/padding_1": { type: T.PANEL, children: string }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/playing_together_button": { type: T.PANEL, children: string }, + "how_to_play_selector_stack_panel/how_to_play_selector_pane/encyclopedia_button": { type: T.PANEL, children: string }, + "how_to_play_section_content_panels": { type: T.STACK_PANEL, children: 'general_tips_sections' }, + "how_to_play_section_content_panels/general_tips_sections": { type: T.STACK_PANEL, children: 'section_contents_header' | 'moving_around_section' | 'gathering_resources_section' | 'selecting_items_section' | 'placing_blocks_section' | 'inventory_section' | 'your_first_craft_section' | 'recipe_book_section' | 'the_crafting_table_section' | 'crafting_a_tool_section' | 'mining_section' | 'nightfall_new_section' | 'building_a_shelter_section' | 'death_and_respawn_section' | 'food_section' | 'beds_new_section' | 'improved_tools_section' | 'world_builder_section' | 'permission_blocks_section' | 'chalkboard_section' | 'chemistry_section' | 'npc_section' | 'camera_section' | 'portfolio_section' | 'classroom_mode_section' | 'code_builder_section' | 'playing_together_section' | 'encyclopedia_section' | 'section_contents_footer' }, + "how_to_play_section_content_panels/general_tips_sections/section_contents_header": { type: T.INPUT_PANEL, children: string }, + "how_to_play_section_content_panels/general_tips_sections/moving_around_section": { type: T.STACK_PANEL, children: string }, + "how_to_play_section_content_panels/general_tips_sections/gathering_resources_section": { type: T.STACK_PANEL, children: string }, + "how_to_play_section_content_panels/general_tips_sections/selecting_items_section": { type: T.STACK_PANEL, children: string }, + "how_to_play_section_content_panels/general_tips_sections/placing_blocks_section": { type: T.STACK_PANEL, children: string }, + "how_to_play_section_content_panels/general_tips_sections/inventory_section": { type: T.STACK_PANEL, children: string }, + "how_to_play_section_content_panels/general_tips_sections/your_first_craft_section": { type: T.STACK_PANEL, children: string }, + "how_to_play_section_content_panels/general_tips_sections/recipe_book_section": { type: T.STACK_PANEL, children: string }, + "how_to_play_section_content_panels/general_tips_sections/the_crafting_table_section": { type: T.STACK_PANEL, children: string }, + "how_to_play_section_content_panels/general_tips_sections/crafting_a_tool_section": { type: T.STACK_PANEL, children: string }, + "how_to_play_section_content_panels/general_tips_sections/mining_section": { type: T.STACK_PANEL, children: string }, + "how_to_play_section_content_panels/general_tips_sections/nightfall_new_section": { type: T.STACK_PANEL, children: string }, + "how_to_play_section_content_panels/general_tips_sections/building_a_shelter_section": { type: T.STACK_PANEL, children: string }, + "how_to_play_section_content_panels/general_tips_sections/death_and_respawn_section": { type: T.STACK_PANEL, children: string }, + "how_to_play_section_content_panels/general_tips_sections/food_section": { type: T.STACK_PANEL, children: string }, + "how_to_play_section_content_panels/general_tips_sections/beds_new_section": { type: T.STACK_PANEL, children: string }, + "how_to_play_section_content_panels/general_tips_sections/improved_tools_section": { type: T.STACK_PANEL, children: string }, + "how_to_play_section_content_panels/general_tips_sections/world_builder_section": { type: T.STACK_PANEL, children: string }, + "how_to_play_section_content_panels/general_tips_sections/permission_blocks_section": { type: T.STACK_PANEL, children: string }, + "how_to_play_section_content_panels/general_tips_sections/chalkboard_section": { type: T.STACK_PANEL, children: string }, + "how_to_play_section_content_panels/general_tips_sections/chemistry_section": { type: T.STACK_PANEL, children: string }, + "how_to_play_section_content_panels/general_tips_sections/npc_section": { type: T.STACK_PANEL, children: string }, + "how_to_play_section_content_panels/general_tips_sections/camera_section": { type: T.STACK_PANEL, children: string }, + "how_to_play_section_content_panels/general_tips_sections/portfolio_section": { type: T.STACK_PANEL, children: string }, + "how_to_play_section_content_panels/general_tips_sections/classroom_mode_section": { type: T.STACK_PANEL, children: string }, + "how_to_play_section_content_panels/general_tips_sections/code_builder_section": { type: T.STACK_PANEL, children: string }, + "how_to_play_section_content_panels/general_tips_sections/playing_together_section": { type: T.STACK_PANEL, children: string }, + "how_to_play_section_content_panels/general_tips_sections/encyclopedia_section": { type: T.STACK_PANEL, children: string }, + "how_to_play_section_content_panels/general_tips_sections/section_contents_footer": { type: T.INPUT_PANEL, children: string }, + "moving_around_button": { type: T.PANEL, children: string }, + "moving_around_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2_keyboard' | 'paragraph_2_gamepad' | 'paragraph_touch_joystick_tap' | 'padding_2' | 'paragraph_3a_keyboard' | 'paragraph_3b_keyboard' | 'paragraph_3a_gamepad' | 'paragraph_3b_gamepad' | 'paragraph_3_touch_joystick_tap' | 'paragraph_3a_touch_classic_dpad' | 'paragraph_3b_touch_classic_dpad' | 'paragraph_3c_touch_classic_dpad' | 'paragraph_3d_touch_classic_dpad' | 'paragraph_3e_touch_classic_dpad' | 'paragraph_3_touch_joystick_crosshair' | 'image_1' }, + "moving_around_section/paragraph_1": { type: T.PANEL, children: string }, + "moving_around_section/padding_1": { type: T.PANEL, children: string }, + "moving_around_section/paragraph_2_keyboard": { type: T.PANEL, children: string }, + "moving_around_section/paragraph_2_gamepad": { type: T.PANEL, children: string }, + "moving_around_section/paragraph_touch_joystick_tap": { type: T.PANEL, children: string }, + "moving_around_section/padding_2": { type: T.PANEL, children: string }, + "moving_around_section/paragraph_3a_keyboard": { type: T.PANEL, children: string }, + "moving_around_section/paragraph_3b_keyboard": { type: T.PANEL, children: string }, + "moving_around_section/paragraph_3a_gamepad": { type: T.PANEL, children: string }, + "moving_around_section/paragraph_3b_gamepad": { type: T.PANEL, children: string }, + "moving_around_section/paragraph_3_touch_joystick_tap": { type: T.PANEL, children: string }, + "moving_around_section/paragraph_3a_touch_classic_dpad": { type: T.PANEL, children: string }, + "moving_around_section/paragraph_3b_touch_classic_dpad": { type: T.PANEL, children: string }, + "moving_around_section/paragraph_3c_touch_classic_dpad": { type: T.PANEL, children: string }, + "moving_around_section/paragraph_3d_touch_classic_dpad": { type: T.PANEL, children: string }, + "moving_around_section/paragraph_3e_touch_classic_dpad": { type: T.PANEL, children: string }, + "moving_around_section/paragraph_3_touch_joystick_crosshair": { type: T.PANEL, children: string }, + "moving_around_section/image_1": { type: T.IMAGE, children: string }, + "gathering_resources_button": { type: T.PANEL, children: string }, + "gathering_resources_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2_keyboard' | 'paragraph_2_gamepad' | 'paragraph_2_touch_joystick_tap' | 'paragraph_2_touch_classic_dpad' | 'paragraph_2_touch_joystick_crosshair' | 'padding_2' | 'paragraph_3' }, + "gathering_resources_section/paragraph_1": { type: T.PANEL, children: string }, + "gathering_resources_section/padding_1": { type: T.PANEL, children: string }, + "gathering_resources_section/paragraph_2_keyboard": { type: T.PANEL, children: string }, + "gathering_resources_section/paragraph_2_gamepad": { type: T.PANEL, children: string }, + "gathering_resources_section/paragraph_2_touch_joystick_tap": { type: T.PANEL, children: string }, + "gathering_resources_section/paragraph_2_touch_classic_dpad": { type: T.PANEL, children: string }, + "gathering_resources_section/paragraph_2_touch_joystick_crosshair": { type: T.PANEL, children: string }, + "gathering_resources_section/padding_2": { type: T.PANEL, children: string }, + "gathering_resources_section/paragraph_3": { type: T.PANEL, children: string }, + "selecting_items_button": { type: T.PANEL, children: string }, + "selecting_items_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2_keyboard' | 'paragraph_2_gamepad' | 'paragraph_touch_joystick_tap' | 'padding_2' | 'paragraph_3_keyboard' | 'paragraph_3_gamepad' | 'paragraph_3_touch_joystick_tap' | 'paragraph_3_touch_classic_dpad' | 'paragraph_3_touch_joystick_crosshair' | 'padding_3' | 'header_1' | 'image_1_not_touch' | 'image_1_touch' }, + "selecting_items_section/paragraph_1": { type: T.PANEL, children: string }, + "selecting_items_section/padding_1": { type: T.PANEL, children: string }, + "selecting_items_section/paragraph_2_keyboard": { type: T.PANEL, children: string }, + "selecting_items_section/paragraph_2_gamepad": { type: T.PANEL, children: string }, + "selecting_items_section/paragraph_touch_joystick_tap": { type: T.PANEL, children: string }, + "selecting_items_section/padding_2": { type: T.PANEL, children: string }, + "selecting_items_section/paragraph_3_keyboard": { type: T.PANEL, children: string }, + "selecting_items_section/paragraph_3_gamepad": { type: T.PANEL, children: string }, + "selecting_items_section/paragraph_3_touch_joystick_tap": { type: T.PANEL, children: string }, + "selecting_items_section/paragraph_3_touch_classic_dpad": { type: T.PANEL, children: string }, + "selecting_items_section/paragraph_3_touch_joystick_crosshair": { type: T.PANEL, children: string }, + "selecting_items_section/padding_3": { type: T.PANEL, children: string }, + "selecting_items_section/header_1": { type: T.PANEL, children: string }, + "selecting_items_section/image_1_not_touch": { type: T.IMAGE, children: string }, + "selecting_items_section/image_1_touch": { type: T.IMAGE, children: string }, + "placing_blocks_button": { type: T.PANEL, children: string }, + "placing_blocks_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2_keyboard' | 'paragraph_2_gamepad' | 'paragraph_2_touch_joystick_tap' | 'paragraph_2_touch_classic_dpad' | 'paragraph_2_touch_joystick_crosshair' | 'padding_2' | 'paragraph_3' }, + "placing_blocks_section/paragraph_1": { type: T.PANEL, children: string }, + "placing_blocks_section/padding_1": { type: T.PANEL, children: string }, + "placing_blocks_section/paragraph_2_keyboard": { type: T.PANEL, children: string }, + "placing_blocks_section/paragraph_2_gamepad": { type: T.PANEL, children: string }, + "placing_blocks_section/paragraph_2_touch_joystick_tap": { type: T.PANEL, children: string }, + "placing_blocks_section/paragraph_2_touch_classic_dpad": { type: T.PANEL, children: string }, + "placing_blocks_section/paragraph_2_touch_joystick_crosshair": { type: T.PANEL, children: string }, + "placing_blocks_section/padding_2": { type: T.PANEL, children: string }, + "placing_blocks_section/paragraph_3": { type: T.PANEL, children: string }, + "inventory_button": { type: T.PANEL, children: string }, + "inventory_section": { type: T.STACK_PANEL, children: 'image_1_not_touch' | 'image_1_touch' | 'header_1' | 'paragraph_1_keyboard' | 'paragraph_1_gamepad' | 'paragraph_1_touch' | 'padding_2' | 'header_2' | 'paragraph_2_keyboard' | 'paragraph_2_gamepad' | 'paragraph_2_touch' }, + "inventory_section/image_1_not_touch": { type: T.IMAGE, children: string }, + "inventory_section/image_1_touch": { type: T.IMAGE, children: string }, + "inventory_section/header_1": { type: T.PANEL, children: string }, + "inventory_section/paragraph_1_keyboard": { type: T.PANEL, children: string }, + "inventory_section/paragraph_1_gamepad": { type: T.PANEL, children: string }, + "inventory_section/paragraph_1_touch": { type: T.PANEL, children: string }, + "inventory_section/padding_2": { type: T.PANEL, children: string }, + "inventory_section/header_2": { type: T.PANEL, children: string }, + "inventory_section/paragraph_2_keyboard": { type: T.PANEL, children: string }, + "inventory_section/paragraph_2_gamepad": { type: T.PANEL, children: string }, + "inventory_section/paragraph_2_touch": { type: T.PANEL, children: string }, + "your_first_craft_button": { type: T.PANEL, children: string }, + "your_first_craft_section": { type: T.STACK_PANEL, children: 'image_1_not_touch' | 'image_1_touch' | 'header_1' | 'paragraph_1' | 'padding_2' | 'paragraph_2' | 'padding_3' | 'paragraph_3_touch' | 'paragraph_3_keyboard' | 'paragraph_3_gamepad' | 'padding_4' | 'header_2' | 'paragraph_4' | 'padding_5' | 'paragraph_5' }, + "your_first_craft_section/image_1_not_touch": { type: T.IMAGE, children: string }, + "your_first_craft_section/image_1_touch": { type: T.IMAGE, children: string }, + "your_first_craft_section/header_1": { type: T.PANEL, children: string }, + "your_first_craft_section/paragraph_1": { type: T.PANEL, children: string }, + "your_first_craft_section/padding_2": { type: T.PANEL, children: string }, + "your_first_craft_section/paragraph_2": { type: T.PANEL, children: string }, + "your_first_craft_section/padding_3": { type: T.PANEL, children: string }, + "your_first_craft_section/paragraph_3_touch": { type: T.PANEL, children: string }, + "your_first_craft_section/paragraph_3_keyboard": { type: T.PANEL, children: string }, + "your_first_craft_section/paragraph_3_gamepad": { type: T.PANEL, children: string }, + "your_first_craft_section/padding_4": { type: T.PANEL, children: string }, + "your_first_craft_section/header_2": { type: T.PANEL, children: string }, + "your_first_craft_section/paragraph_4": { type: T.PANEL, children: string }, + "your_first_craft_section/padding_5": { type: T.PANEL, children: string }, + "your_first_craft_section/paragraph_5": { type: T.PANEL, children: string }, + "recipe_book_button": { type: T.PANEL, children: string }, + "recipe_book_section": { type: T.STACK_PANEL, children: 'paragraph_1_keyboard' | 'paragraph_1_gamepad' | 'paragraph_1_touch' | 'padding_1' | 'paragraph_2_keyboard' | 'paragraph_2_gamepad' | 'paragraph_2_touch' }, + "recipe_book_section/paragraph_1_keyboard": { type: T.PANEL, children: string }, + "recipe_book_section/paragraph_1_gamepad": { type: T.PANEL, children: string }, + "recipe_book_section/paragraph_1_touch": { type: T.PANEL, children: string }, + "recipe_book_section/padding_1": { type: T.PANEL, children: string }, + "recipe_book_section/paragraph_2_keyboard": { type: T.PANEL, children: string }, + "recipe_book_section/paragraph_2_gamepad": { type: T.PANEL, children: string }, + "recipe_book_section/paragraph_2_touch": { type: T.PANEL, children: string }, + "the_crafting_table_button": { type: T.PANEL, children: string }, + "the_crafting_table_section": { type: T.STACK_PANEL, children: 'image_1' | 'paragraph_1' | 'padding_2' | 'paragraph_2_keyboard' | 'paragraph_2_gamepad' | 'paragraph_2_touch' }, + "the_crafting_table_section/image_1": { type: T.IMAGE, children: string }, + "the_crafting_table_section/paragraph_1": { type: T.PANEL, children: string }, + "the_crafting_table_section/padding_2": { type: T.PANEL, children: string }, + "the_crafting_table_section/paragraph_2_keyboard": { type: T.PANEL, children: string }, + "the_crafting_table_section/paragraph_2_gamepad": { type: T.PANEL, children: string }, + "the_crafting_table_section/paragraph_2_touch": { type: T.PANEL, children: string }, + "crafting_a_tool_button": { type: T.PANEL, children: string }, + "crafting_a_tool_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2_keyboard' | 'paragraph_2_gamepad' | 'paragraph_2_touch' }, + "crafting_a_tool_section/paragraph_1": { type: T.PANEL, children: string }, + "crafting_a_tool_section/padding_1": { type: T.PANEL, children: string }, + "crafting_a_tool_section/paragraph_2_keyboard": { type: T.PANEL, children: string }, + "crafting_a_tool_section/paragraph_2_gamepad": { type: T.PANEL, children: string }, + "crafting_a_tool_section/paragraph_2_touch": { type: T.PANEL, children: string }, + "mining_button": { type: T.PANEL, children: string }, + "mining_section": { type: T.STACK_PANEL, children: 'image_1' | 'paragraph_1' | 'padding_2' | 'paragraph_2' | 'padding_3' | 'paragraph_3' }, + "mining_section/image_1": { type: T.IMAGE, children: string }, + "mining_section/paragraph_1": { type: T.PANEL, children: string }, + "mining_section/padding_2": { type: T.PANEL, children: string }, + "mining_section/paragraph_2": { type: T.PANEL, children: string }, + "mining_section/padding_3": { type: T.PANEL, children: string }, + "mining_section/paragraph_3": { type: T.PANEL, children: string }, + "nightfall_new_button": { type: T.PANEL, children: string }, + "nightfall_new_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2' | 'padding_2' | 'paragraph_3' | 'padding_3' | 'paragraph_4_keyboard' | 'paragraph_4_gamepad' | 'paragraph_4_touch_joystick_tap' | 'paragraph_4_touch_classic_dpad' | 'paragraph_4_touch_joystick_crosshair' }, + "nightfall_new_section/paragraph_1": { type: T.PANEL, children: string }, + "nightfall_new_section/padding_1": { type: T.PANEL, children: string }, + "nightfall_new_section/paragraph_2": { type: T.PANEL, children: string }, + "nightfall_new_section/padding_2": { type: T.PANEL, children: string }, + "nightfall_new_section/paragraph_3": { type: T.PANEL, children: string }, + "nightfall_new_section/padding_3": { type: T.PANEL, children: string }, + "nightfall_new_section/paragraph_4_keyboard": { type: T.PANEL, children: string }, + "nightfall_new_section/paragraph_4_gamepad": { type: T.PANEL, children: string }, + "nightfall_new_section/paragraph_4_touch_joystick_tap": { type: T.PANEL, children: string }, + "nightfall_new_section/paragraph_4_touch_classic_dpad": { type: T.PANEL, children: string }, + "nightfall_new_section/paragraph_4_touch_joystick_crosshair": { type: T.PANEL, children: string }, + "building_a_shelter_button": { type: T.PANEL, children: string }, + "building_a_shelter_section": { type: T.STACK_PANEL, children: 'image_1' | 'paragraph_1' | 'padding_2' | 'paragraph_2' | 'padding_3' | 'paragraph_3' }, + "building_a_shelter_section/image_1": { type: T.IMAGE, children: string }, + "building_a_shelter_section/paragraph_1": { type: T.PANEL, children: string }, + "building_a_shelter_section/padding_2": { type: T.PANEL, children: string }, + "building_a_shelter_section/paragraph_2": { type: T.PANEL, children: string }, + "building_a_shelter_section/padding_3": { type: T.PANEL, children: string }, + "building_a_shelter_section/paragraph_3": { type: T.PANEL, children: string }, + "death_and_respawn_button": { type: T.PANEL, children: string }, + "death_and_respawn_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2' }, + "death_and_respawn_section/paragraph_1": { type: T.PANEL, children: string }, + "death_and_respawn_section/padding_1": { type: T.PANEL, children: string }, + "death_and_respawn_section/paragraph_2": { type: T.PANEL, children: string }, + "food_button": { type: T.PANEL, children: string }, + "food_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2_keyboard' | 'paragraph_2_gamepad' | 'paragraph_2_touch' | 'padding_2' | 'paragraph_3' }, + "food_section/paragraph_1": { type: T.PANEL, children: string }, + "food_section/padding_1": { type: T.PANEL, children: string }, + "food_section/paragraph_2_keyboard": { type: T.PANEL, children: string }, + "food_section/paragraph_2_gamepad": { type: T.PANEL, children: string }, + "food_section/paragraph_2_touch": { type: T.PANEL, children: string }, + "food_section/padding_2": { type: T.PANEL, children: string }, + "food_section/paragraph_3": { type: T.PANEL, children: string }, + "beds_new_button": { type: T.PANEL, children: string }, + "beds_new_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2' | 'padding_2' | 'paragraph_3' }, + "beds_new_section/paragraph_1": { type: T.PANEL, children: string }, + "beds_new_section/padding_1": { type: T.PANEL, children: string }, + "beds_new_section/paragraph_2": { type: T.PANEL, children: string }, + "beds_new_section/padding_2": { type: T.PANEL, children: string }, + "beds_new_section/paragraph_3": { type: T.PANEL, children: string }, + "improved_tools_button": { type: T.PANEL, children: string }, + "improved_tools_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2' }, + "improved_tools_section/paragraph_1": { type: T.PANEL, children: string }, + "improved_tools_section/padding_1": { type: T.PANEL, children: string }, + "improved_tools_section/paragraph_2": { type: T.PANEL, children: string }, + "world_builder_button": { type: T.PANEL, children: string }, + "world_builder_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2' | 'padding_2' | 'paragraph_3' | 'padding_3' | 'paragraph_4' | 'padding_4' | 'paragraph_5' | 'padding_5' | 'paragraph_6' | 'paragraph_7' | 'padding_7' | 'paragraph_8' | 'padding_8' | 'paragraph_9' }, + "world_builder_section/paragraph_1": { type: T.PANEL, children: string }, + "world_builder_section/padding_1": { type: T.PANEL, children: string }, + "world_builder_section/paragraph_2": { type: T.PANEL, children: string }, + "world_builder_section/padding_2": { type: T.PANEL, children: string }, + "world_builder_section/paragraph_3": { type: T.PANEL, children: string }, + "world_builder_section/padding_3": { type: T.PANEL, children: string }, + "world_builder_section/paragraph_4": { type: T.PANEL, children: string }, + "world_builder_section/padding_4": { type: T.PANEL, children: string }, + "world_builder_section/paragraph_5": { type: T.PANEL, children: string }, + "world_builder_section/padding_5": { type: T.PANEL, children: string }, + "world_builder_section/paragraph_6": { type: T.PANEL, children: string }, + "world_builder_section/paragraph_7": { type: T.PANEL, children: string }, + "world_builder_section/padding_7": { type: T.PANEL, children: string }, + "world_builder_section/paragraph_8": { type: T.PANEL, children: string }, + "world_builder_section/padding_8": { type: T.PANEL, children: string }, + "world_builder_section/paragraph_9": { type: T.PANEL, children: string }, + "permission_blocks_button": { type: T.PANEL, children: string }, + "permission_blocks_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'header_1' | 'paragraph_2' | 'padding_3' | 'paragraph_3' | 'padding_4' | 'paragraph_4' | 'padding_5' | 'paragraph_5' | 'padding_7' | 'header_2' | 'paragraph_6' }, + "permission_blocks_section/paragraph_1": { type: T.PANEL, children: string }, + "permission_blocks_section/padding_1": { type: T.PANEL, children: string }, + "permission_blocks_section/header_1": { type: T.PANEL, children: string }, + "permission_blocks_section/paragraph_2": { type: T.PANEL, children: string }, + "permission_blocks_section/padding_3": { type: T.PANEL, children: string }, + "permission_blocks_section/paragraph_3": { type: T.PANEL, children: string }, + "permission_blocks_section/padding_4": { type: T.PANEL, children: string }, + "permission_blocks_section/paragraph_4": { type: T.PANEL, children: string }, + "permission_blocks_section/padding_5": { type: T.PANEL, children: string }, + "permission_blocks_section/paragraph_5": { type: T.PANEL, children: string }, + "permission_blocks_section/padding_7": { type: T.PANEL, children: string }, + "permission_blocks_section/header_2": { type: T.PANEL, children: string }, + "permission_blocks_section/paragraph_6": { type: T.PANEL, children: string }, + "chalkboard_button": { type: T.PANEL, children: string }, + "chalkboard_section": { type: T.STACK_PANEL, children: 'paragraph_1_keyboard' | 'paragraph_1_gamepad' | 'paragraph_1_touch' }, + "chalkboard_section/paragraph_1_keyboard": { type: T.PANEL, children: string }, + "chalkboard_section/paragraph_1_gamepad": { type: T.PANEL, children: string }, + "chalkboard_section/paragraph_1_touch": { type: T.PANEL, children: string }, + "chemistry_button": { type: T.PANEL, children: string }, + "chemistry_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2' }, + "chemistry_section/paragraph_1": { type: T.PANEL, children: string }, + "chemistry_section/padding_1": { type: T.PANEL, children: string }, + "chemistry_section/paragraph_2": { type: T.PANEL, children: string }, + "npc_button": { type: T.PANEL, children: string }, + "npc_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2' | 'padding_2' | 'paragraph_3' }, + "npc_section/paragraph_1": { type: T.PANEL, children: string }, + "npc_section/padding_1": { type: T.PANEL, children: string }, + "npc_section/paragraph_2": { type: T.PANEL, children: string }, + "npc_section/padding_2": { type: T.PANEL, children: string }, + "npc_section/paragraph_3": { type: T.PANEL, children: string }, + "camera_button": { type: T.PANEL, children: string }, + "camera_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2_keyboard' | 'paragraph_2_gamepad' | 'paragraph_2_touch' | 'padding_2' | 'paragraph_3_keyboard' | 'paragraph_3_gamepad' | 'paragraph_3_touch' | 'padding_3' | 'paragraph_4' }, + "camera_section/paragraph_1": { type: T.PANEL, children: string }, + "camera_section/padding_1": { type: T.PANEL, children: string }, + "camera_section/paragraph_2_keyboard": { type: T.PANEL, children: string }, + "camera_section/paragraph_2_gamepad": { type: T.PANEL, children: string }, + "camera_section/paragraph_2_touch": { type: T.PANEL, children: string }, + "camera_section/padding_2": { type: T.PANEL, children: string }, + "camera_section/paragraph_3_keyboard": { type: T.PANEL, children: string }, + "camera_section/paragraph_3_gamepad": { type: T.PANEL, children: string }, + "camera_section/paragraph_3_touch": { type: T.PANEL, children: string }, + "camera_section/padding_3": { type: T.PANEL, children: string }, + "camera_section/paragraph_4": { type: T.PANEL, children: string }, + "portfolio_button": { type: T.PANEL, children: string }, + "portfolio_section": { type: T.STACK_PANEL, children: 'paragraph_1_keyboard' | 'paragraph_1_gamepad' | 'paragraph_1_touch' }, + "portfolio_section/paragraph_1_keyboard": { type: T.PANEL, children: string }, + "portfolio_section/paragraph_1_gamepad": { type: T.PANEL, children: string }, + "portfolio_section/paragraph_1_touch": { type: T.PANEL, children: string }, + "classroom_mode_button": { type: T.PANEL, children: string }, + "classroom_mode_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2' }, + "classroom_mode_section/paragraph_1": { type: T.PANEL, children: string }, + "classroom_mode_section/padding_1": { type: T.PANEL, children: string }, + "classroom_mode_section/paragraph_2": { type: T.PANEL, children: string }, + "code_builder_button": { type: T.PANEL, children: string }, + "code_builder_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'paragraph_2_keyboard' | 'paragraph_2_gamepad' | 'paragraph_2_touch' }, + "code_builder_section/paragraph_1": { type: T.PANEL, children: string }, + "code_builder_section/padding_1": { type: T.PANEL, children: string }, + "code_builder_section/paragraph_2_keyboard": { type: T.PANEL, children: string }, + "code_builder_section/paragraph_2_gamepad": { type: T.PANEL, children: string }, + "code_builder_section/paragraph_2_touch": { type: T.PANEL, children: string }, + "playing_together_button": { type: T.PANEL, children: string }, + "playing_together_section": { type: T.STACK_PANEL, children: 'paragraph_1' | 'padding_1' | 'header_1' | 'paragraph_2' | 'padding_2' | 'header_2' | 'paragraph_3' | 'padding_3' | 'paragraph_4' | 'padding_4' | 'paragraph_5' | 'padding_5' | 'header_3' | 'paragraph_6' | 'padding_6' | 'paragraph_7' | 'padding_7' | 'paragraph_8' | 'realms_button' | 'sign_in_button' | 'padding_8' | 'header_4' | 'paragraph_9' | 'padding_9' | 'paragraph_10' }, + "playing_together_section/paragraph_1": { type: T.PANEL, children: string }, + "playing_together_section/padding_1": { type: T.PANEL, children: string }, + "playing_together_section/header_1": { type: T.PANEL, children: string }, + "playing_together_section/paragraph_2": { type: T.PANEL, children: string }, + "playing_together_section/padding_2": { type: T.PANEL, children: string }, + "playing_together_section/header_2": { type: T.PANEL, children: string }, + "playing_together_section/paragraph_3": { type: T.PANEL, children: string }, + "playing_together_section/padding_3": { type: T.PANEL, children: string }, + "playing_together_section/paragraph_4": { type: T.PANEL, children: string }, + "playing_together_section/padding_4": { type: T.PANEL, children: string }, + "playing_together_section/paragraph_5": { type: T.PANEL, children: string }, + "playing_together_section/padding_5": { type: T.PANEL, children: string }, + "playing_together_section/header_3": { type: T.PANEL, children: string }, + "playing_together_section/paragraph_6": { type: T.PANEL, children: string }, + "playing_together_section/padding_6": { type: T.PANEL, children: string }, + "playing_together_section/paragraph_7": { type: T.PANEL, children: string }, + "playing_together_section/padding_7": { type: T.PANEL, children: string }, + "playing_together_section/paragraph_8": { type: T.PANEL, children: string }, + "playing_together_section/realms_button": { type: T.BUTTON, children: string }, + "playing_together_section/sign_in_button": { type: T.BUTTON, children: string }, + "playing_together_section/padding_8": { type: T.PANEL, children: string }, + "playing_together_section/header_4": { type: T.PANEL, children: string }, + "playing_together_section/paragraph_9": { type: T.PANEL, children: string }, + "playing_together_section/padding_9": { type: T.PANEL, children: string }, + "playing_together_section/paragraph_10": { type: T.PANEL, children: string }, + "try_realms_action_button": { type: T.BUTTON, children: string }, + "encyclopedia_button": { type: T.PANEL, children: string }, + "encyclopedia_section": { type: T.STACK_PANEL, children: 'paragraph_1' }, + "encyclopedia_section/paragraph_1": { type: T.PANEL, children: string }, } 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": { type: T.PANEL, children: 'hud_player' }, + "hud_player_renderer/hud_player": { type: T.CUSTOM, children: string }, + "hotbar_renderer": { type: T.CUSTOM, children: 'hotbar_slot_image' }, + "hotbar_renderer/hotbar_slot_image": { type: T.IMAGE, children: string }, + "cooldown_renderer": { type: T.CUSTOM, children: string }, + "heart_renderer": { type: T.CUSTOM, children: string }, + "horse_heart_renderer": { type: T.CUSTOM, children: string }, + "armor_renderer": { type: T.CUSTOM, children: string }, + "exp_progress_bar_and_hotbar": { type: T.PANEL, children: 'resizing_xp_bar_with_hotbar' | 'resizing_hotbar_no_xp_bar' | 'resizing_hotbar_locator_bar' | 'item_text_factory' }, + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar": { type: T.PANEL, children: 'empty_progress_bar' | 'progress_text_label' }, + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar": { type: T.IMAGE, children: 'full_progress_bar' }, + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar": { type: T.IMAGE, children: 'progress_bar_nub' }, + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub": { type: T.IMAGE, children: 'horse_jump_rend' }, + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub/horse_jump_rend": { type: T.CUSTOM, children: 'dash_rend' }, + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub/horse_jump_rend/dash_rend": { type: T.CUSTOM, children: 'hotbar' }, + "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": { type: T.PANEL, children: string }, + "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/progress_text_label": { type: T.LABEL, children: string }, + "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar": { type: T.PANEL, children: 'horse_jump_rend' }, + "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend": { type: T.CUSTOM, children: 'dash_rend' }, + "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend/dash_rend": { type: T.CUSTOM, children: 'hotbar' }, + "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend/dash_rend/hotbar": { type: T.PANEL, children: string }, + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar": { type: T.PANEL, children: 'size_owner' | 'horse_jump_rend' | 'dash_rend' | 'locator_bar' | 'progress_text_label' }, + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner": { type: T.PANEL, children: 'hotbar' | 'size_without_hotbar' }, + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner/hotbar": { type: T.PANEL, children: string }, + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner/size_without_hotbar": { type: T.PANEL, children: string }, + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/horse_jump_rend": { type: T.CUSTOM, children: string }, + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/dash_rend": { type: T.CUSTOM, children: string }, + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/locator_bar": { type: T.CUSTOM, children: string }, + "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/progress_text_label": { type: T.LABEL, children: string }, + "exp_progress_bar_and_hotbar/item_text_factory": { type: T.FACTORY, children: string }, + "exp_progress_bar_and_hotbar_pocket": { type: T.PANEL, children: 'resizing_xp_bar_with_hotbar' | 'resizing_locator_bar' | 'hotbar_panel' | 'item_text' | 'horse_jump_rend' | 'dash_rend' }, + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar": { type: T.PANEL, children: 'empty_progress_bar' | 'progress_text_label' }, + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar": { type: T.IMAGE, children: 'full_progress_bar' }, + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar": { type: T.IMAGE, children: 'progress_bar_nub' }, + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub": { type: T.IMAGE, children: string }, + "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/progress_text_label": { type: T.LABEL, children: string }, + "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar": { type: T.PANEL, children: 'locator_bar' | 'progress_text_label' }, + "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar/locator_bar": { type: T.CUSTOM, children: string }, + "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar/progress_text_label": { type: T.LABEL, children: string }, + "exp_progress_bar_and_hotbar_pocket/hotbar_panel": { type: T.STACK_PANEL, children: string }, + "exp_progress_bar_and_hotbar_pocket/item_text": { type: T.PANEL, children: 'item_text_factory' }, + "exp_progress_bar_and_hotbar_pocket/item_text/item_text_factory": { type: T.FACTORY, children: string }, + "exp_progress_bar_and_hotbar_pocket/horse_jump_rend": { type: T.CUSTOM, children: string }, + "exp_progress_bar_and_hotbar_pocket/dash_rend": { type: T.CUSTOM, children: string }, + "full_progress_bar": { type: T.IMAGE, children: string }, + "empty_progress_bar": { type: T.IMAGE, children: string }, + "progress_bar_nub": { type: T.IMAGE, children: string }, + "progress_text_label": { type: T.LABEL, children: string }, + "horse_jump_renderer": { type: T.CUSTOM, children: string }, + "dash_renderer": { type: T.CUSTOM, children: string }, + "locator_bar": { type: T.CUSTOM, children: string }, + "hunger_renderer": { type: T.CUSTOM, children: string }, + "bubbles_renderer": { type: T.CUSTOM, children: string }, + "mob_effects_renderer": { type: T.CUSTOM, children: string }, + "vignette_renderer": { type: T.CUSTOM, children: string }, + "editor_gizmo_renderer": { type: T.CUSTOM, children: string }, + "cursor_renderer": { type: T.CUSTOM, children: string }, + "progress_indicator_renderer": { type: T.CUSTOM, children: string }, + "camera_renderer": { type: T.CUSTOM, children: string }, + "editor_volume_highlight_renderer": { type: T.CUSTOM, children: string }, + "editor_compass_renderer": { type: T.CUSTOM, children: string }, + "hotbar_hud_item_icon": { type: T.CUSTOM, children: string }, + "elipses_image": { type: T.IMAGE, children: string }, + "bound_button_label": { type: T.UNKNOWN, children: string }, + "default_borderless_button_layout": { type: T.IMAGE, children: string }, + "hover_borderless_button_layout": { type: T.IMAGE, children: string }, + "pressed_borderless_button_layout": { type: T.IMAGE, children: string }, + "borderless_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' | 'elipses' }, + "borderless_button/default": { type: T.IMAGE, children: string }, + "borderless_button/hover": { type: T.IMAGE, children: string }, + "borderless_button/pressed": { type: T.IMAGE, children: string }, + "borderless_button/elipses": { type: T.IMAGE, children: string }, + "hotbar_elipses_button": { type: T.BUTTON, children: string }, + "start_cap_image": { type: T.IMAGE, children: string }, + "end_cap_image": { type: T.IMAGE, children: string }, + "hotbar_start_cap": { type: T.PANEL, children: 'start_cap_image' }, + "hotbar_start_cap/start_cap_image": { type: T.IMAGE, children: string }, + "hotbar_end_cap": { type: T.PANEL, children: 'end_cap_image' }, + "hotbar_end_cap/end_cap_image": { type: T.IMAGE, children: string }, + "heart_image": { type: T.IMAGE, children: string }, + "hotbar_slot_image": { type: T.IMAGE, children: string }, + "hotbar_slot_selected_image": { type: T.IMAGE, children: string }, + "gui_hotbar_slot_button_prototype": { type: T.BUTTON, children: string }, + "player_position": { type: T.IMAGE, children: 'player_position_text' }, + "player_position/player_position_text": { type: T.LABEL, children: string }, + "number_of_days_played": { type: T.IMAGE, children: 'number_of_days_played_text' }, + "number_of_days_played/number_of_days_played_text": { type: T.LABEL, children: string }, + "chat_label": { type: T.LABEL, children: string }, + "chat_grid_item": { type: T.PANEL, children: 'chat_background' }, + "chat_grid_item/chat_background": { type: T.IMAGE, children: 'chat_text' }, + "chat_grid_item/chat_background/chat_text": { type: T.LABEL, children: string }, + "chat_panel": { type: T.PANEL, children: 'stack_panel' }, + "chat_panel/stack_panel": { type: T.STACK_PANEL, children: string }, + "item_durability": { type: T.CUSTOM, children: string }, + "item_storage": { type: T.CUSTOM, children: string }, + "container_item_lock_overlay": { type: T.PANEL, children: string }, + "item_lock_cell_image": { type: T.IMAGE, children: string }, + "gui_hotbar_grid_item": { type: T.PANEL, children: 'hotbar_slot_selected_image' | 'hotbar_renderer' | 'hotbar_parent' | 'cooldown_renderer' | 'hotbar_slot_button' }, + "gui_hotbar_grid_item/hotbar_slot_selected_image": { type: T.IMAGE, children: string }, + "gui_hotbar_grid_item/hotbar_renderer": { type: T.CUSTOM, children: string }, + "gui_hotbar_grid_item/hotbar_parent": { type: T.PANEL, children: 'item_icon' | 'item_count' | 'hotbar_hint' | 'item_dura' | 'item_store' | 'container_item_lock_overlay' }, + "gui_hotbar_grid_item/hotbar_parent/item_icon": { type: T.CUSTOM, children: string }, + "gui_hotbar_grid_item/hotbar_parent/item_count": { type: T.LABEL, children: string }, + "gui_hotbar_grid_item/hotbar_parent/hotbar_hint": { type: T.PANEL, children: string }, + "gui_hotbar_grid_item/hotbar_parent/item_dura": { type: T.CUSTOM, children: string }, + "gui_hotbar_grid_item/hotbar_parent/item_store": { type: T.CUSTOM, children: string }, + "gui_hotbar_grid_item/hotbar_parent/container_item_lock_overlay": { type: T.PANEL, children: string }, + "gui_hotbar_grid_item/cooldown_renderer": { type: T.CUSTOM, children: string }, + "gui_hotbar_grid_item/hotbar_slot_button": { type: T.BUTTON, children: string }, + "gui_hotbar_grid_item_pocket": { type: T.PANEL, children: 'hotbar_slot_selected_image' | 'hotbar_renderer' | 'hotbar_parent' | 'cooldown_renderer' | 'hotbar_slot_button' }, + "gui_hotbar_grid_item_pocket/hotbar_slot_selected_image": { type: T.IMAGE, children: string }, + "gui_hotbar_grid_item_pocket/hotbar_renderer": { type: T.CUSTOM, children: string }, + "gui_hotbar_grid_item_pocket/hotbar_parent": { type: T.PANEL, children: 'item_icon' | 'item_count' | 'item_dura' | 'item_store' | 'container_item_lock_overlay' }, + "gui_hotbar_grid_item_pocket/hotbar_parent/item_icon": { type: T.CUSTOM, children: string }, + "gui_hotbar_grid_item_pocket/hotbar_parent/item_count": { type: T.LABEL, children: string }, + "gui_hotbar_grid_item_pocket/hotbar_parent/item_dura": { type: T.CUSTOM, children: string }, + "gui_hotbar_grid_item_pocket/hotbar_parent/item_store": { type: T.CUSTOM, children: string }, + "gui_hotbar_grid_item_pocket/hotbar_parent/container_item_lock_overlay": { type: T.PANEL, children: string }, + "gui_hotbar_grid_item_pocket/cooldown_renderer": { type: T.CUSTOM, children: string }, + "gui_hotbar_grid_item_pocket/hotbar_slot_button": { type: T.BUTTON, children: string }, + "centered_gui_elements": { type: T.PANEL, children: 'hud_player_rend_desktop' }, + "centered_gui_elements/hud_player_rend_desktop": { type: T.PANEL, children: string }, + "centered_gui_elements_at_bottom_middle": { type: T.PANEL, children: 'heart_rend' | 'horse_heart_rend_0' | 'horse_heart_rend_1' | 'armor_rend' | 'hunger_rend' | 'bubbles_rend_0' | 'bubbles_rend_1' | 'exp_rend' }, + "centered_gui_elements_at_bottom_middle/heart_rend": { type: T.CUSTOM, children: string }, + "centered_gui_elements_at_bottom_middle/horse_heart_rend_0": { type: T.CUSTOM, children: string }, + "centered_gui_elements_at_bottom_middle/horse_heart_rend_1": { type: T.CUSTOM, children: string }, + "centered_gui_elements_at_bottom_middle/armor_rend": { type: T.CUSTOM, children: string }, + "centered_gui_elements_at_bottom_middle/hunger_rend": { type: T.CUSTOM, children: string }, + "centered_gui_elements_at_bottom_middle/bubbles_rend_0": { type: T.CUSTOM, children: string }, + "centered_gui_elements_at_bottom_middle/bubbles_rend_1": { type: T.CUSTOM, children: string }, + "centered_gui_elements_at_bottom_middle/exp_rend": { type: T.PANEL, children: string }, + "centered_gui_elements_at_bottom_middle_touch": { type: T.PANEL, children: 'heart_rend' | 'horse_heart_rend_0' | 'horse_heart_rend_1' | 'armor_rend' | 'hunger_rend' | 'bubbles_rend_0' | 'bubbles_rend_1' | 'exp_rend' }, + "centered_gui_elements_at_bottom_middle_touch/heart_rend": { type: T.CUSTOM, children: string }, + "centered_gui_elements_at_bottom_middle_touch/horse_heart_rend_0": { type: T.CUSTOM, children: string }, + "centered_gui_elements_at_bottom_middle_touch/horse_heart_rend_1": { type: T.CUSTOM, children: string }, + "centered_gui_elements_at_bottom_middle_touch/armor_rend": { type: T.CUSTOM, children: string }, + "centered_gui_elements_at_bottom_middle_touch/hunger_rend": { type: T.CUSTOM, children: string }, + "centered_gui_elements_at_bottom_middle_touch/bubbles_rend_0": { type: T.CUSTOM, children: string }, + "centered_gui_elements_at_bottom_middle_touch/bubbles_rend_1": { type: T.CUSTOM, children: string }, + "centered_gui_elements_at_bottom_middle_touch/exp_rend": { type: T.PANEL, children: string }, + "not_centered_gui_elements": { type: T.PANEL, children: 'heart_rend' | 'horse_heart_rend' | 'hunger_rend' | 'armor_rend' | 'hud_player_rend_pocket' | 'bubbles_rend_0' | 'bubbles_rend_1' }, + "not_centered_gui_elements/heart_rend": { type: T.CUSTOM, children: string }, + "not_centered_gui_elements/horse_heart_rend": { type: T.CUSTOM, children: string }, + "not_centered_gui_elements/hunger_rend": { type: T.CUSTOM, children: string }, + "not_centered_gui_elements/armor_rend": { type: T.CUSTOM, children: string }, + "not_centered_gui_elements/hud_player_rend_pocket": { type: T.PANEL, children: string }, + "not_centered_gui_elements/bubbles_rend_0": { type: T.CUSTOM, children: string }, + "not_centered_gui_elements/bubbles_rend_1": { type: T.CUSTOM, children: string }, + "hotbar_chooser": { type: T.PANEL, children: 'desktop_hotbar' | 'pocket_hotbar' }, + "hotbar_chooser/desktop_hotbar": { type: T.STACK_PANEL, children: string }, + "hotbar_chooser/pocket_hotbar": { type: T.STACK_PANEL, children: string }, + "hotbar_elipses_panel_right_content": { type: T.STACK_PANEL, children: 'elipses_content' }, + "hotbar_elipses_panel_right_content/elipses_content": { type: T.PANEL, children: string }, + "hotbar_elipses_panel_right_art": { type: T.PANEL, children: 'slot' | 'button' }, + "hotbar_elipses_panel_right_art/slot": { type: T.IMAGE, children: string }, + "hotbar_elipses_panel_right_art/button": { type: T.BUTTON, children: string }, + "hotbar_elipses_panel_left_content": { type: T.STACK_PANEL, children: 'button' }, + "hotbar_elipses_panel_left_content/button": { type: T.PANEL, children: string }, + "hotbar_elipses_panel_left_art": { type: T.PANEL, children: 'slot' | 'button' }, + "hotbar_elipses_panel_left_art/slot": { type: T.IMAGE, children: string }, + "hotbar_elipses_panel_left_art/button": { type: T.BUTTON, children: string }, + "hotbar_panel": { type: T.STACK_PANEL, children: 'hotbar_start_cap' | 'hotbar_elipses_panel_left' | 'hotbar_grid' | 'hotbar_elipses_panel_right' | 'hotbar_end_cap' }, + "hotbar_panel/hotbar_start_cap": { type: T.PANEL, children: string }, + "hotbar_panel/hotbar_elipses_panel_left": { type: T.STACK_PANEL, children: string }, + "hotbar_panel/hotbar_grid": { type: T.GRID, children: string }, + "hotbar_panel/hotbar_elipses_panel_right": { type: T.STACK_PANEL, children: string }, + "hotbar_panel/hotbar_end_cap": { type: T.PANEL, children: string }, + "hotbar_panel_pocket": { type: T.STACK_PANEL, children: 'hotbar_start_cap_frame' | 'hotbar_elipses_panel_left' | 'hotbar_grid' | 'hotbar_elipses_panel_right' | 'hotbar_end_cap_frame' }, + "hotbar_panel_pocket/hotbar_start_cap_frame": { type: T.PANEL, children: 'hotbar_start_cap' }, + "hotbar_panel_pocket/hotbar_start_cap_frame/hotbar_start_cap": { type: T.PANEL, children: string }, + "hotbar_panel_pocket/hotbar_elipses_panel_left": { type: T.PANEL, children: 'hotbar_elipses_panel_left' }, + "hotbar_panel_pocket/hotbar_elipses_panel_left/hotbar_elipses_panel_left": { type: T.PANEL, children: string }, + "hotbar_panel_pocket/hotbar_grid": { type: T.GRID, children: string }, + "hotbar_panel_pocket/hotbar_elipses_panel_right": { type: T.PANEL, children: 'hotbar_elipses_panel_right' }, + "hotbar_panel_pocket/hotbar_elipses_panel_right/hotbar_elipses_panel_right": { type: T.PANEL, children: string }, + "hotbar_panel_pocket/hotbar_end_cap_frame": { type: T.PANEL, children: 'hotbar_end_cap' }, + "hotbar_panel_pocket/hotbar_end_cap_frame/hotbar_end_cap": { type: T.PANEL, children: string }, + "hotbar_grid": { type: T.GRID, children: string }, + "edu_hotbar_grid": { type: T.GRID, children: string }, + "item_name_text_root": { type: T.PANEL, children: 'item_text_aligner' }, + "item_name_text_root/item_text_aligner": { type: T.STACK_PANEL, children: 'item_text_control' | 'interact_padding' | 'survival_buffer' }, + "item_name_text_root/item_text_aligner/item_text_control": { type: T.PANEL, children: 'item_text_background' | 'item_text_label' }, + "item_name_text_root/item_text_aligner/item_text_control/item_text_background": { type: T.IMAGE, children: string }, + "item_name_text_root/item_text_aligner/item_text_control/item_text_label": { type: T.LABEL, children: string }, + "item_name_text_root/item_text_aligner/interact_padding": { type: T.PANEL, children: string }, + "item_name_text_root/item_text_aligner/survival_buffer": { type: T.PANEL, children: string }, + "item_name_text": { type: T.PANEL, children: string }, + "jukebox_popup_text": { type: T.PANEL, children: string }, + "hud_tip_text": { type: T.IMAGE, children: 'item_text_label' }, + "hud_tip_text/item_text_label": { type: T.LABEL, children: string }, + "auto_save": { type: T.IMAGE, children: string }, + "hud_actionbar_text": { type: T.IMAGE, children: 'actionbar_message' }, + "hud_actionbar_text/actionbar_message": { type: T.LABEL, children: string }, + "hud_title_text": { type: T.STACK_PANEL, children: 'title_frame' | 'subtitle_frame' }, + "hud_title_text/title_frame": { type: T.PANEL, children: 'title_background' | 'title' }, + "hud_title_text/title_frame/title_background": { type: T.IMAGE, children: string }, + "hud_title_text/title_frame/title": { type: T.LABEL, children: string }, + "hud_title_text/subtitle_frame": { type: T.PANEL, children: 'subtitle_background' | 'subtitle' }, + "hud_title_text/subtitle_frame/subtitle_background": { type: T.IMAGE, children: string }, + "hud_title_text/subtitle_frame/subtitle": { type: T.LABEL, children: string }, + "boss_name_panel": { type: T.PANEL, children: 'boss_name' }, + "boss_name_panel/boss_name": { type: T.LABEL, children: string }, + "tooltip_helper_icon_description": { type: T.LABEL, children: 'label_background' }, + "tooltip_helper_icon_description/label_background": { type: T.IMAGE, children: string }, + "tooltip_helper": { type: T.STACK_PANEL, children: 'icon' | 'padding' | 'centerer' }, + "tooltip_helper/icon": { type: T.UNKNOWN, children: string }, + "tooltip_helper/padding": { type: T.PANEL, children: string }, + "tooltip_helper/centerer": { type: T.PANEL, children: 'desc' }, + "tooltip_helper/centerer/desc": { type: T.LABEL, children: string }, + "tooltip_helper_form_fitting": { type: T.STACK_PANEL, children: 'icon' | 'padding' | 'centerer' }, + "tooltip_helper_form_fitting/icon": { type: T.UNKNOWN, children: string }, + "tooltip_helper_form_fitting/padding": { type: T.PANEL, children: string }, + "tooltip_helper_form_fitting/centerer": { type: T.PANEL, children: 'desc' }, + "tooltip_helper_form_fitting/centerer/desc": { type: T.LABEL, children: string }, + "keyboard_tooltip_helper": { type: T.STACK_PANEL, children: string }, + "keyboard_tooltip_helper_form_fitting": { type: T.STACK_PANEL, children: string }, + "mixed_tooltip_helper": { type: T.PANEL, children: 'gamepad_tooltip' | 'keyboard_tooltip' }, + "mixed_tooltip_helper/gamepad_tooltip": { type: T.STACK_PANEL, children: string }, + "mixed_tooltip_helper/keyboard_tooltip": { type: T.STACK_PANEL, children: string }, + "mixed_tooltip_helper_form_fitting": { type: T.PANEL, children: 'gamepad_tooltip' | 'keyboard_tooltip' }, + "mixed_tooltip_helper_form_fitting/gamepad_tooltip": { type: T.STACK_PANEL, children: string }, + "mixed_tooltip_helper_form_fitting/keyboard_tooltip": { type: T.STACK_PANEL, children: string }, + "base_icon_image": { type: T.STACK_PANEL, children: 'icon' | 'postfix_label_wrapper' }, + "base_icon_image/icon": { type: T.IMAGE, children: string }, + "base_icon_image/postfix_label_wrapper": { type: T.PANEL, children: 'label' }, + "base_icon_image/postfix_label_wrapper/label": { type: T.LABEL, children: string }, + "base_keyboard_icon": { type: T.PANEL, children: 'icon' }, + "base_keyboard_icon/icon": { type: T.PANEL, children: 'key_backing' | 'mouse_buttons' }, + "base_keyboard_icon/icon/key_backing": { type: T.IMAGE, children: 'key_label' }, + "base_keyboard_icon/icon/key_backing/key_label": { type: T.LABEL, children: string }, + "base_keyboard_icon/icon/mouse_buttons": { type: T.LABEL, children: string }, + "left_helpers_edu": { type: T.STACK_PANEL, children: 'tip_window' | 'tip_paddding' | 'controls_toggle_label' | 'controls_inventory_label' | 'controls_menu_label' }, + "left_helpers_edu/tip_window": { type: T.IMAGE, children: 'stack_panel' }, + "left_helpers_edu/tip_window/stack_panel": { type: T.STACK_PANEL, children: string }, + "left_helpers_edu/tip_paddding": { type: T.PANEL, children: string }, + "left_helpers_edu/controls_toggle_label": { type: T.PANEL, children: 'tip' }, + "left_helpers_edu/controls_toggle_label/tip": { type: T.PANEL, children: string }, + "left_helpers_edu/controls_inventory_label": { type: T.PANEL, children: 'tip' }, + "left_helpers_edu/controls_inventory_label/tip": { type: T.PANEL, children: string }, + "left_helpers_edu/controls_menu_label": { type: T.PANEL, children: 'tip' }, + "left_helpers_edu/controls_menu_label/tip": { type: T.PANEL, children: string }, + "left_helpers": { type: T.PANEL, children: 'stack_panel' }, + "left_helpers/stack_panel": { type: T.STACK_PANEL, children: string }, + "emote_label_background": { type: T.IMAGE, children: string }, + "emote_tip": { type: T.IMAGE, children: 'emote_keyboard_centerer' | 'emote_gamepad_helper' }, + "emote_tip/emote_keyboard_centerer": { type: T.PANEL, children: 'emote_keyboard_helper' }, + "emote_tip/emote_keyboard_centerer/emote_keyboard_helper": { type: T.STACK_PANEL, children: string }, + "emote_tip/emote_gamepad_helper": { type: T.UNKNOWN, children: string }, + "emote_expediate_helpers": { type: T.PANEL, children: 'stack_panel' }, + "emote_expediate_helpers/stack_panel": { type: T.STACK_PANEL, children: 'emote_tip_0' | 'emote_tip_1' | 'emote_tip_2' | 'emote_tip_3' }, + "emote_expediate_helpers/stack_panel/emote_tip_0": { type: T.IMAGE, children: string }, + "emote_expediate_helpers/stack_panel/emote_tip_1": { type: T.IMAGE, children: string }, + "emote_expediate_helpers/stack_panel/emote_tip_2": { type: T.IMAGE, children: string }, + "emote_expediate_helpers/stack_panel/emote_tip_3": { type: T.IMAGE, children: string }, + "right_helpers": { type: T.PANEL, children: 'stack_panel' }, + "right_helpers/stack_panel": { type: T.STACK_PANEL, children: string }, + "boss_health_panel": { type: T.PANEL, children: 'boss_name' | 'progress_bar_for_collections' }, + "boss_health_panel/boss_name": { type: T.PANEL, children: string }, + "boss_health_panel/progress_bar_for_collections": { type: T.PANEL, children: string }, + "boss_health_grid": { type: T.GRID, children: string }, + "wysiwyg_reset_modal_ok": { type: T.BUTTON, children: string }, + "wysiwyg_reset_modal_cancel": { type: T.BUTTON, children: string }, + "wysiwyg_close_without_saving_modal_ok": { type: T.BUTTON, children: string }, + "wysiwyg_close_without_saving_modal_cancel": { type: T.BUTTON, children: string }, + "root_panel": { type: T.PANEL, children: 'layout_customization_reset' | 'layout_customization_close_without_saving' | 'layout_customization_main_panel' | 'layout_customization_sub_panel' | 'layout_customization_hint_drag_frame' | 'layout_customization_hint_deselect_frame' | 'layout_customization_hint_saved' | 'left_helpers' | 'right_helpers' | 'emote_expediate_helpers' | 'centered_gui_elements' | 'centered_gui_elements_at_bottom_middle' | 'centered_gui_elements_at_bottom_middle_touch' | 'not_centered_gui_elements' | 'gamertag_label_for_splitscreen' | 'exp_rend' | 'exp_rend_resizable' | 'hud_tip_text_factory' | 'hud_actionbar_text_area' | 'hud_title_text_area' | 'mob_effects_renderer' | 'vignette_rend' | 'curor_rend' | 'game_tip' | 'sidebar' | 'progress_rend' | 'chat_stack' | 'boss_health_panel' | 'save_icon' }, + "root_panel/layout_customization_reset": { type: T.IMAGE, children: 'layout_customization_reset_modal' }, + "root_panel/layout_customization_reset/layout_customization_reset_modal": { type: T.PANEL, children: string }, + "root_panel/layout_customization_close_without_saving": { type: T.IMAGE, children: 'layout_customization_close_without_saving_modal' }, + "root_panel/layout_customization_close_without_saving/layout_customization_close_without_saving_modal": { type: T.PANEL, children: string }, + "root_panel/layout_customization_main_panel": { type: T.PANEL, children: string }, + "root_panel/layout_customization_sub_panel": { type: T.PANEL, children: string }, + "root_panel/layout_customization_hint_drag_frame": { type: T.IMAGE, children: 'layout_customization_hint_drag' }, + "root_panel/layout_customization_hint_drag_frame/layout_customization_hint_drag": { type: T.LABEL, children: string }, + "root_panel/layout_customization_hint_deselect_frame": { type: T.IMAGE, children: 'layout_customization_hint_deselect' }, + "root_panel/layout_customization_hint_deselect_frame/layout_customization_hint_deselect": { type: T.LABEL, children: string }, + "root_panel/layout_customization_hint_saved": { type: T.IMAGE, children: 'layout_customization_hint_saved' }, + "root_panel/layout_customization_hint_saved/layout_customization_hint_saved": { type: T.LABEL, children: string }, + "root_panel/left_helpers": { type: T.UNKNOWN, children: string }, + "root_panel/right_helpers": { type: T.PANEL, children: string }, + "root_panel/emote_expediate_helpers": { type: T.PANEL, children: string }, + "root_panel/centered_gui_elements": { type: T.PANEL, children: string }, + "root_panel/centered_gui_elements_at_bottom_middle": { type: T.PANEL, children: string }, + "root_panel/centered_gui_elements_at_bottom_middle_touch": { type: T.PANEL, children: string }, + "root_panel/not_centered_gui_elements": { type: T.PANEL, children: string }, + "root_panel/gamertag_label_for_splitscreen": { type: T.LABEL, children: string }, + "root_panel/exp_rend": { type: T.PANEL, children: string }, + "root_panel/exp_rend_resizable": { type: T.PANEL, children: string }, + "root_panel/hud_tip_text_factory": { type: T.FACTORY, children: string }, + "root_panel/hud_actionbar_text_area": { type: T.PANEL, children: string }, + "root_panel/hud_title_text_area": { type: T.PANEL, children: string }, + "root_panel/mob_effects_renderer": { type: T.CUSTOM, children: string }, + "root_panel/vignette_rend": { type: T.CUSTOM, children: string }, + "root_panel/curor_rend": { type: T.CUSTOM, children: string }, + "root_panel/game_tip": { type: T.PANEL, children: string }, + "root_panel/sidebar": { type: T.PANEL, children: string }, + "root_panel/progress_rend": { type: T.CUSTOM, children: string }, + "root_panel/chat_stack": { type: T.STACK_PANEL, children: 'paper_doll_padding' | 'non_centered_gui_padding' | 'player_position' | 'number_of_days_played' | 'game_tip' | 'chat_panel' }, + "root_panel/chat_stack/paper_doll_padding": { type: T.PANEL, children: string }, + "root_panel/chat_stack/non_centered_gui_padding": { type: T.PANEL, children: string }, + "root_panel/chat_stack/player_position": { type: T.IMAGE, children: string }, + "root_panel/chat_stack/number_of_days_played": { type: T.IMAGE, children: string }, + "root_panel/chat_stack/game_tip": { type: T.PANEL, children: string }, + "root_panel/chat_stack/chat_panel": { type: T.PANEL, children: string }, + "root_panel/boss_health_panel": { type: T.STACK_PANEL, children: 'boss_hud_padding' | 'boss_hud_touch_padding' | 'boss_hud_panel' }, + "root_panel/boss_health_panel/boss_hud_padding": { type: T.PANEL, children: string }, + "root_panel/boss_health_panel/boss_hud_touch_padding": { type: T.PANEL, children: string }, + "root_panel/boss_health_panel/boss_hud_panel": { type: T.PANEL, children: 'boss_health_grid' }, + "root_panel/boss_health_panel/boss_hud_panel/boss_health_grid": { type: T.GRID, children: string }, + "root_panel/save_icon": { type: T.IMAGE, children: string }, + "hud_screen": { type: T.SCREEN, children: string }, + "hud_content": { type: T.PANEL, children: 'root_panel' | 'editor_gizmo_renderer' | 'editor_compass_renderer' | 'editor_volume_highlight_renderer' | 'camera_renderer' }, + "hud_content/root_panel": { type: T.PANEL, children: string }, + "hud_content/editor_gizmo_renderer": { type: T.CUSTOM, children: string }, + "hud_content/editor_compass_renderer": { type: T.CUSTOM, children: string }, + "hud_content/editor_volume_highlight_renderer": { type: T.CUSTOM, children: string }, + "hud_content/camera_renderer": { type: T.CUSTOM, children: string }, + "layout_customization_main_panel_button": { type: T.PANEL, children: 'button' }, + "layout_customization_main_panel_button/button": { type: T.BUTTON, children: string }, + "layout_customization_main_panel": { type: T.PANEL, children: 'main_panel_frame' }, + "layout_customization_main_panel/main_panel_frame": { type: T.IMAGE, children: 'main_panel_content' }, + "layout_customization_main_panel/main_panel_frame/main_panel_content": { type: T.STACK_PANEL, children: 'reset_button' | 'exit_button' | 'opacity_button' | 'size_button' }, + "layout_customization_main_panel/main_panel_frame/main_panel_content/reset_button": { type: T.PANEL, children: string }, + "layout_customization_main_panel/main_panel_frame/main_panel_content/exit_button": { type: T.PANEL, children: string }, + "layout_customization_main_panel/main_panel_frame/main_panel_content/opacity_button": { type: T.PANEL, children: string }, + "layout_customization_main_panel/main_panel_frame/main_panel_content/size_button": { type: T.PANEL, children: string }, + "layout_customization_option_slider": { type: T.STACK_PANEL, children: 'slider' | 'reset' }, + "layout_customization_option_slider/slider": { type: T.PANEL, children: string }, + "layout_customization_option_slider/reset": { type: T.PANEL, children: 'reset_button' }, + "layout_customization_option_slider/reset/reset_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "layout_customization_option_slider/reset/reset_button/default": { type: T.IMAGE, children: string }, + "layout_customization_option_slider/reset/reset_button/hover": { type: T.IMAGE, children: string }, + "layout_customization_option_slider/reset/reset_button/pressed": { type: T.IMAGE, children: string }, + "layout_customization_option_content": { type: T.PANEL, children: 'scale_option' | 'opacity_option' | 'apply_to_all_toggle' }, + "layout_customization_option_content/scale_option": { type: T.STACK_PANEL, children: string }, + "layout_customization_option_content/opacity_option": { type: T.STACK_PANEL, children: string }, + "layout_customization_option_content/apply_to_all_toggle": { type: T.STACK_PANEL, children: 'checkbox_frame' | 'caption_frame' }, + "layout_customization_option_content/apply_to_all_toggle/checkbox_frame": { type: T.PANEL, children: 'checkbox_unchecked' | 'checkbox_checked' }, + "layout_customization_option_content/apply_to_all_toggle/checkbox_frame/checkbox_unchecked": { type: T.IMAGE, children: string }, + "layout_customization_option_content/apply_to_all_toggle/checkbox_frame/checkbox_checked": { type: T.IMAGE, children: string }, + "layout_customization_option_content/apply_to_all_toggle/caption_frame": { type: T.PANEL, children: 'caption' }, + "layout_customization_option_content/apply_to_all_toggle/caption_frame/caption": { type: T.LABEL, children: string }, + "layout_customization_option": { type: T.PANEL, children: 'content' }, + "layout_customization_option/content": { type: T.PANEL, children: string }, + "layout_customization_sub_panel": { type: T.PANEL, children: 'background' }, + "layout_customization_sub_panel/background": { type: T.IMAGE, children: 'sub_panel_content' }, + "layout_customization_sub_panel/background/sub_panel_content": { type: T.GRID, children: string }, } 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": { type: T.LABEL, children: string }, + "host_image_panel": { type: T.PANEL, children: 'host_image' }, + "host_image_panel/host_image": { type: T.LABEL, children: string }, + "host_glyph_panel": { type: T.IMAGE, children: string }, + "scrollable_selector_area": { type: T.PANEL, children: string }, + "host_main_button": { type: T.BUTTON, children: string }, + "scrolling_panel": { type: T.PANEL, children: 'background' | 'scrollable_tab' }, + "scrolling_panel/background": { type: T.IMAGE, children: string }, + "scrolling_panel/scrollable_tab": { type: T.PANEL, children: string }, + "button_content": { type: T.PANEL, children: 'button_label' | 'image' }, + "button_content/button_label": { type: T.LABEL, children: string }, + "button_content/image": { type: T.IMAGE, children: string }, + "main_light_button": { type: T.BUTTON, children: string }, + "main_dark_button": { type: T.BUTTON, children: string }, + "host_grid": { type: T.GRID, children: string }, + "host_sub_command_grid_item": { type: T.PANEL, children: 'host_option_banner' }, + "host_sub_command_grid_item/host_option_banner": { type: T.BUTTON, children: string }, + "return_from_sub_command_button": { type: T.BUTTON, children: string }, + "platform_icon_panel": { type: T.PANEL, children: string }, + "gamertag_wrapper": { type: T.PANEL, children: string }, + "player_pic_panel": { type: T.PANEL, children: 'player_gamer_pic' | 'player_local_icon' }, + "player_pic_panel/player_gamer_pic": { type: T.IMAGE, children: string }, + "player_pic_panel/player_local_icon": { type: T.IMAGE, children: string }, + "player_button_content": { type: T.STACK_PANEL, children: 'player_pic_panel' | 'player_gamertag' | 'platform_icon' }, + "player_button_content/player_pic_panel": { type: T.PANEL, children: string }, + "player_button_content/player_gamertag": { type: T.PANEL, children: string }, + "player_button_content/platform_icon": { type: T.PANEL, children: string }, + "player_grid_item": { type: T.PANEL, children: 'player_banner' }, + "player_grid_item/player_banner": { type: T.BUTTON, children: string }, + "host_friends_tab": { type: T.PANEL, children: 'players_grid' }, + "host_friends_tab/players_grid": { type: T.GRID, children: string }, + "host_teleport_grid_item": { type: T.PANEL, children: 'host_option_toggle' | 'host_option_button' }, + "host_teleport_grid_item/host_option_toggle": { type: T.PANEL, children: string }, + "host_teleport_grid_item/host_option_button": { type: T.BUTTON, children: string }, + "host_teleport_buttons": { type: T.STACK_PANEL, children: 'return' | 'sub_tab' }, + "host_teleport_buttons/return": { type: T.BUTTON, children: string }, + "host_teleport_buttons/sub_tab": { type: T.PANEL, children: 'host_main_grid' }, + "host_teleport_buttons/sub_tab/host_main_grid": { type: T.GRID, children: string }, + "host_teleport_player_list_buttons": { type: T.STACK_PANEL, children: 'toggle' }, + "host_teleport_player_list_buttons/toggle": { type: T.PANEL, children: 'host_time_panel' }, + "host_teleport_player_list_buttons/toggle/host_time_panel": { type: T.PANEL, children: string }, + "host_teleport_player_buttons": { type: T.STACK_PANEL, children: string }, + "host_time_buttons": { type: T.STACK_PANEL, children: 'return' | 'sub_tab' }, + "host_time_buttons/return": { type: T.BUTTON, children: string }, + "host_time_buttons/sub_tab": { type: T.PANEL, children: 'scrolli_scrolli_ravioli' }, + "host_time_buttons/sub_tab/scrolli_scrolli_ravioli": { type: T.PANEL, children: string }, + "host_weather_buttons": { type: T.STACK_PANEL, children: 'return' | 'sub_tab' }, + "host_weather_buttons/return": { type: T.BUTTON, children: string }, + "host_weather_buttons/sub_tab": { type: T.PANEL, children: 'host_main_grid' }, + "host_weather_buttons/sub_tab/host_main_grid": { type: T.GRID, children: string }, + "host_menu_grid_item": { type: T.PANEL, children: 'host_option_banner' }, + "host_menu_grid_item/host_option_banner": { type: T.BUTTON, children: string }, + "host_main_buttons": { type: T.STACK_PANEL, children: 'host_main_grid' }, + "host_main_buttons/host_main_grid": { type: T.GRID, children: string }, + "host_panel": { type: T.PANEL, children: 'host_main_panel' | 'host_teleport_panel' | 'host_teleport_player_panel' | 'host_time_panel' | 'host_weather_panel' }, + "host_panel/host_main_panel": { type: T.STACK_PANEL, children: string }, + "host_panel/host_teleport_panel": { type: T.STACK_PANEL, children: string }, + "host_panel/host_teleport_player_panel": { type: T.STACK_PANEL, children: string }, + "host_panel/host_time_panel": { type: T.STACK_PANEL, children: string }, + "host_panel/host_weather_panel": { type: T.STACK_PANEL, children: string }, } 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": { type: T.SCREEN, children: string }, + "in_bed_screen_content": { type: T.PANEL, children: 'wake_up_button_panel' | 'wake_up_label_panel' | 'select_button' }, + "in_bed_screen_content/wake_up_button_panel": { type: T.STACK_PANEL, children: 'wake_up_button' | 'spacer' | 'chat_button' }, + "in_bed_screen_content/wake_up_button_panel/wake_up_button": { type: T.BUTTON, children: string }, + "in_bed_screen_content/wake_up_button_panel/spacer": { type: T.PANEL, children: string }, + "in_bed_screen_content/wake_up_button_panel/chat_button": { type: T.BUTTON, children: string }, + "in_bed_screen_content/wake_up_label_panel": { type: T.LABEL, children: string }, + "in_bed_screen_content/select_button": { type: T.PANEL, children: string }, + "background": { type: T.IMAGE, children: string }, } 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": { type: T.IMAGE, children: string }, + "reader_button": { type: T.BUTTON, children: string }, + "webview": { type: T.CUSTOM, children: string }, + "loading": { type: T.STACK_PANEL, children: 'animation_item' | 'loading_text_item' | 'bottom_padding' | 'cancel_button' }, + "loading/animation_item": { type: T.PANEL, children: 'animation' }, + "loading/animation_item/animation": { type: T.IMAGE, children: string }, + "loading/loading_text_item": { type: T.PANEL, children: 'loading_text' }, + "loading/loading_text_item/loading_text": { type: T.LABEL, children: string }, + "loading/bottom_padding": { type: T.PANEL, children: string }, + "loading/cancel_button": { type: T.BUTTON, children: string }, + "no_retry_error_button": { type: T.BUTTON, children: string }, + "retry_error_buttons": { type: T.STACK_PANEL, children: 'try_again' | 'middle_padding' | 'cancel' }, + "retry_error_buttons/try_again": { type: T.BUTTON, children: string }, + "retry_error_buttons/middle_padding": { type: T.PANEL, children: string }, + "retry_error_buttons/cancel": { type: T.BUTTON, children: string }, + "error": { type: T.STACK_PANEL, children: 'error_text' | 'error_buttons' }, + "error/error_text": { type: T.LABEL, children: string }, + "error/error_buttons": { type: T.PANEL, children: 'retry' | 'no_retry' }, + "error/error_buttons/retry": { type: T.STACK_PANEL, children: string }, + "error/error_buttons/no_retry": { type: T.BUTTON, children: string }, + "loading_and_error_panel": { type: T.PANEL, children: 'loading' | 'error' }, + "loading_and_error_panel/loading": { type: T.STACK_PANEL, children: string }, + "loading_and_error_panel/error": { type: T.STACK_PANEL, children: string }, + "immersive_reader_screen_content": { type: T.PANEL, children: 'loading_and_error' | 'webview' }, + "immersive_reader_screen_content/loading_and_error": { type: T.PANEL, children: string }, + "immersive_reader_screen_content/webview": { type: T.CUSTOM, children: string }, + "immersive_reader_screen": { type: T.SCREEN, children: string }, } 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": { type: T.STACK_PANEL, children: string }, + "inventory_y_gamepad_helper": { type: T.STACK_PANEL, children: string }, + "inventory_a_gamepad_helper": { type: T.STACK_PANEL, children: string }, + "inventory_b_gamepad_helper": { type: T.STACK_PANEL, children: string }, + "gamepad_helper_bumpers": { type: T.PANEL, children: 'gamepad_helper_left_bumper' | 'gamepad_helper_right_bumper' }, + "gamepad_helper_bumpers/gamepad_helper_left_bumper": { type: T.STACK_PANEL, children: string }, + "gamepad_helper_bumpers/gamepad_helper_right_bumper": { type: T.STACK_PANEL, children: string }, + "gamepad_helper_left_trigger": { type: T.STACK_PANEL, children: string }, + "gamepad_helper_right_trigger": { type: T.STACK_PANEL, children: string }, + "container_gamepad_helpers_second_row": { type: T.STACK_PANEL, children: 'buffer_panel_left' | 'left_thumbstick_visibility' | 'fill_panel' | 'right_thumbstick_visibility' | 'buffer_panel_right' }, + "container_gamepad_helpers_second_row/buffer_panel_left": { type: T.PANEL, children: string }, + "container_gamepad_helpers_second_row/left_thumbstick_visibility": { type: T.PANEL, children: 'gamepad_helper_thumbstick_left' }, + "container_gamepad_helpers_second_row/left_thumbstick_visibility/gamepad_helper_thumbstick_left": { type: T.STACK_PANEL, children: string }, + "container_gamepad_helpers_second_row/fill_panel": { type: T.PANEL, children: string }, + "container_gamepad_helpers_second_row/right_thumbstick_visibility": { type: T.PANEL, children: 'gamepad_helper_thumbstick_right' }, + "container_gamepad_helpers_second_row/right_thumbstick_visibility/gamepad_helper_thumbstick_right": { type: T.STACK_PANEL, children: string }, + "container_gamepad_helpers_second_row/buffer_panel_right": { type: T.PANEL, children: string }, + "crafting_root_panel": { type: T.INPUT_PANEL, children: string }, + "drop_item_panel": { type: T.INPUT_PANEL, children: string }, + "inventory_container_slot_button": { type: T.BUTTON, children: string }, + "creative_hotbar_container_slot_button": { type: T.BUTTON, children: string }, + "no_coalesce_container_slot_button": { type: T.BUTTON, children: string }, + "creative_no_coalesce_container_slot_button": { type: T.BUTTON, children: string }, + "output_no_coalesce_container_slot_button": { type: T.BUTTON, children: string }, + "tab_image": { type: T.IMAGE, children: string }, + "item_renderer": { type: T.CUSTOM, children: string }, + "inventory_icon": { type: T.IMAGE, children: string }, + "recipe_book_icon": { type: T.IMAGE, children: string }, + "creative_icon": { type: T.IMAGE, children: string }, + "icon_image": { type: T.IMAGE, children: string }, + "tab_front": { type: T.IMAGE, children: string }, + "tab_back": { type: T.IMAGE, children: string }, + "equipment_icon": { type: T.IMAGE, children: string }, + "construction_icon": { type: T.IMAGE, children: string }, + "nature_icon": { type: T.IMAGE, children: string }, + "search_icon": { type: T.IMAGE, children: string }, + "miscellaneous_icon": { type: T.IMAGE, children: string }, + "empty_tab_panel": { type: T.PANEL, children: 'img' }, + "empty_tab_panel/img": { type: T.UNKNOWN, children: string }, + "top_tab": { type: T.PANEL, children: string }, + "search_tab": { type: T.PANEL, children: string }, + "construction_tab": { type: T.PANEL, children: string }, + "equipment_tab": { type: T.PANEL, children: string }, + "nature_tab": { type: T.PANEL, children: string }, + "items_tab": { type: T.PANEL, children: string }, + "tab_navigation_panel_layout": { type: T.STACK_PANEL, children: 'navigation_tabs' }, + "tab_navigation_panel_layout/navigation_tabs": { type: T.PANEL, children: 'content' }, + "tab_navigation_panel_layout/navigation_tabs/content": { type: T.STACK_PANEL, children: 'construction_tab_panel' | 'equipment_tab_panel' | 'items_tab_panel' | 'nature_tab_panel' | 'fill_panel_0' | 'search_tab_holder' }, + "tab_navigation_panel_layout/navigation_tabs/content/construction_tab_panel": { type: T.PANEL, children: 'construction_tab_factory' }, + "tab_navigation_panel_layout/navigation_tabs/content/construction_tab_panel/construction_tab_factory": { type: T.FACTORY, children: string }, + "tab_navigation_panel_layout/navigation_tabs/content/equipment_tab_panel": { type: T.PANEL, children: 'equipment_tab_factory' }, + "tab_navigation_panel_layout/navigation_tabs/content/equipment_tab_panel/equipment_tab_factory": { type: T.FACTORY, children: string }, + "tab_navigation_panel_layout/navigation_tabs/content/items_tab_panel": { type: T.PANEL, children: 'items_tab_factory' }, + "tab_navigation_panel_layout/navigation_tabs/content/items_tab_panel/items_tab_factory": { type: T.FACTORY, children: string }, + "tab_navigation_panel_layout/navigation_tabs/content/nature_tab_panel": { type: T.PANEL, children: 'nature_tab_factory' }, + "tab_navigation_panel_layout/navigation_tabs/content/nature_tab_panel/nature_tab_factory": { type: T.FACTORY, children: string }, + "tab_navigation_panel_layout/navigation_tabs/content/fill_panel_0": { type: T.PANEL, children: string }, + "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder": { type: T.PANEL, children: 'search_tab_end_creative' | 'search_tab_creative' | 'search_tab_survival' }, + "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_end_creative": { type: T.PANEL, children: string }, + "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_creative": { type: T.PANEL, children: string }, + "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_survival": { type: T.PANEL, children: string }, + "tab_content_padding": { type: T.PANEL, children: string }, + "tab_content": { type: T.PANEL, children: 'tab_content_search_bar_panel' | 'nodrop_zone' }, + "tab_content/tab_content_search_bar_panel": { type: T.STACK_PANEL, children: 'vertical_padding_1' | 'creative_label_and_filter_toggle_holder' | 'vertical_padding_2' | 'search_and_filter_panel' | 'vertical_padding_3' | 'scroll_pane' }, + "tab_content/tab_content_search_bar_panel/vertical_padding_1": { type: T.PANEL, children: string }, + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder": { type: T.STACK_PANEL, children: 'padding_1' | 'creative_label' | 'padding_2' | 'filter_toggle_holder' }, + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/padding_1": { type: T.PANEL, children: string }, + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/creative_label": { type: T.LABEL, children: string }, + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/padding_2": { type: T.PANEL, children: string }, + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/filter_toggle_holder": { type: T.PANEL, children: 'filter_toggle' }, + "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/filter_toggle_holder/filter_toggle": { type: T.PANEL, children: string }, + "tab_content/tab_content_search_bar_panel/vertical_padding_2": { type: T.PANEL, children: string }, + "tab_content/tab_content_search_bar_panel/search_and_filter_panel": { type: T.STACK_PANEL, children: 'text_edit_control' | 'padding_1' | 'filter_toggle_holder' }, + "tab_content/tab_content_search_bar_panel/search_and_filter_panel/text_edit_control": { type: T.EDIT_BOX, children: string }, + "tab_content/tab_content_search_bar_panel/search_and_filter_panel/padding_1": { type: T.PANEL, children: string }, + "tab_content/tab_content_search_bar_panel/search_and_filter_panel/filter_toggle_holder": { type: T.PANEL, children: 'filter_toggle' }, + "tab_content/tab_content_search_bar_panel/search_and_filter_panel/filter_toggle_holder/filter_toggle": { type: T.PANEL, children: string }, + "tab_content/tab_content_search_bar_panel/vertical_padding_3": { type: T.PANEL, children: string }, + "tab_content/tab_content_search_bar_panel/scroll_pane": { type: T.UNKNOWN, children: string }, + "tab_content/nodrop_zone": { type: T.INPUT_PANEL, children: string }, + "armor_overlay": { type: T.IMAGE, children: string }, + "offhand_overlay": { type: T.IMAGE, children: string }, + "armor_overlay_helmet": { type: T.IMAGE, children: string }, + "armor_overlay_chest": { type: T.IMAGE, children: string }, + "armor_overlay_legs": { type: T.IMAGE, children: string }, + "armor_image_feet": { type: T.IMAGE, children: string }, + "armor_overlay_shield": { type: T.IMAGE, children: string }, + "player_armor_panel": { type: T.PANEL, children: 'player_bg' | 'player_preview_border' | 'armor_grid' | 'offhand_grid' }, + "player_armor_panel/player_bg": { type: T.IMAGE, children: 'player_renderer_panel' }, + "player_armor_panel/player_bg/player_renderer_panel": { type: T.PANEL, children: 'player_renderer' }, + "player_armor_panel/player_bg/player_renderer_panel/player_renderer": { type: T.CUSTOM, children: string }, + "player_armor_panel/player_preview_border": { type: T.IMAGE, children: string }, + "player_armor_panel/armor_grid": { type: T.GRID, children: 'head_grid_item' | 'chest_grid_item' | 'legs_grid_item' | 'feet_grid_item' }, + "player_armor_panel/armor_grid/head_grid_item": { type: T.INPUT_PANEL, children: string }, + "player_armor_panel/armor_grid/chest_grid_item": { type: T.INPUT_PANEL, children: string }, + "player_armor_panel/armor_grid/legs_grid_item": { type: T.INPUT_PANEL, children: string }, + "player_armor_panel/armor_grid/feet_grid_item": { type: T.INPUT_PANEL, children: string }, + "player_armor_panel/offhand_grid": { type: T.GRID, children: 'offhand_grid_item' }, + "player_armor_panel/offhand_grid/offhand_grid_item": { type: T.INPUT_PANEL, children: string }, + "crafting_label": { type: T.LABEL, children: string }, + "inventory_label": { type: T.LABEL, children: string }, + "crafting_arrow": { type: T.IMAGE, children: string }, + "crafting_arrow_large": { type: T.IMAGE, children: string }, + "crafting_input_grid_item": { type: T.INPUT_PANEL, children: string }, + "crafting_grid_3x3": { type: T.GRID, children: 'crafting_input_item_top_left' | 'crafting_input_item_top_mid' | 'crafting_input_item_top_right' | 'crafting_input_item_mid_left' | 'crafting_input_item_middle' | 'crafting_input_item_mid_right' | 'crafting_input_item_bot_left' | 'crafting_input_item_bot_mid' | 'crafting_input_item_bot_right' }, + "crafting_grid_3x3/crafting_input_item_top_left": { type: T.INPUT_PANEL, children: string }, + "crafting_grid_3x3/crafting_input_item_top_mid": { type: T.INPUT_PANEL, children: string }, + "crafting_grid_3x3/crafting_input_item_top_right": { type: T.INPUT_PANEL, children: string }, + "crafting_grid_3x3/crafting_input_item_mid_left": { type: T.INPUT_PANEL, children: string }, + "crafting_grid_3x3/crafting_input_item_middle": { type: T.INPUT_PANEL, children: string }, + "crafting_grid_3x3/crafting_input_item_mid_right": { type: T.INPUT_PANEL, children: string }, + "crafting_grid_3x3/crafting_input_item_bot_left": { type: T.INPUT_PANEL, children: string }, + "crafting_grid_3x3/crafting_input_item_bot_mid": { type: T.INPUT_PANEL, children: string }, + "crafting_grid_3x3/crafting_input_item_bot_right": { type: T.INPUT_PANEL, children: string }, + "crafting_grid_2x2": { type: T.GRID, children: 'crafting_input_item_top_left' | 'crafting_input_item_top_right' | 'crafting_input_item_bot_left' | 'crafting_input_item_bot_right' }, + "crafting_grid_2x2/crafting_input_item_top_left": { type: T.INPUT_PANEL, children: string }, + "crafting_grid_2x2/crafting_input_item_top_right": { type: T.INPUT_PANEL, children: string }, + "crafting_grid_2x2/crafting_input_item_bot_left": { type: T.INPUT_PANEL, children: string }, + "crafting_grid_2x2/crafting_input_item_bot_right": { type: T.INPUT_PANEL, children: string }, + "output_grid_3x3": { type: T.GRID, children: 'work_bench_output' }, + "output_grid_3x3/work_bench_output": { type: T.INPUT_PANEL, children: string }, + "output_grid_2x2": { type: T.GRID, children: 'work_bench_output' }, + "output_grid_2x2/work_bench_output": { type: T.INPUT_PANEL, children: string }, + "work_bench_panel_3x3": { type: T.PANEL, children: 'inventory_label' | 'crafting_arrow_large' | 'crafting_grid_3x3_with_label_0' | 'work_bench_output_grid' }, + "work_bench_panel_3x3/inventory_label": { type: T.LABEL, children: string }, + "work_bench_panel_3x3/crafting_arrow_large": { type: T.IMAGE, children: string }, + "work_bench_panel_3x3/crafting_grid_3x3_with_label_0": { type: T.PANEL, children: string }, + "work_bench_panel_3x3/work_bench_output_grid": { type: T.GRID, children: string }, + "crafting_grid_3x3_with_label": { type: T.PANEL, children: 'crafting_label' | 'crafting_grid_3x3' }, + "crafting_grid_3x3_with_label/crafting_label": { type: T.LABEL, children: string }, + "crafting_grid_3x3_with_label/crafting_grid_3x3": { type: T.GRID, children: string }, + "crafting_grid_2x2_with_label": { type: T.PANEL, children: 'crafting_label' | 'crafting_grid_2x2' }, + "crafting_grid_2x2_with_label/crafting_label": { type: T.LABEL, children: string }, + "crafting_grid_2x2_with_label/crafting_grid_2x2": { type: T.GRID, children: string }, + "crafting_panel_2x2": { type: T.PANEL, children: 'crafting_arrow' | 'crafting_table' | 'crafting_grid_2x2' | 'survival_crafting_output_grid' }, + "crafting_panel_2x2/crafting_arrow": { type: T.IMAGE, children: string }, + "crafting_panel_2x2/crafting_table": { type: T.CUSTOM, children: string }, + "crafting_panel_2x2/crafting_grid_2x2": { type: T.PANEL, children: string }, + "crafting_panel_2x2/survival_crafting_output_grid": { type: T.GRID, children: string }, + "survival_panel_top_half": { type: T.PANEL, children: 'player_armor_panel' | 'crafting_panel' }, + "survival_panel_top_half/player_armor_panel": { type: T.PANEL, children: string }, + "survival_panel_top_half/crafting_panel": { type: T.PANEL, children: string }, + "crafting_panel_top_half": { type: T.PANEL, children: 'crafting_panel' }, + "crafting_panel_top_half/crafting_panel": { type: T.PANEL, children: string }, + "recipe_container_cell_images": { type: T.IMAGE, children: string }, + "cell_image_recipe_default": { type: T.IMAGE, children: string }, + "cell_image_recipe_group_head_collapsed": { type: T.IMAGE, children: string }, + "cell_image_recipe_group_head_expanded": { type: T.IMAGE, children: string }, + "cell_image_recipe_group_item": { type: T.IMAGE, children: string }, + "cell_image_recipe_selected": { type: T.IMAGE, children: string }, + "cell_image_recipe_default_red": { type: T.IMAGE, children: string }, + "container_cell_images": { type: T.PANEL, children: 'cell_classic' | 'cell_normal' | 'cell_invert' | 'cell_red' | 'cell_selected' | 'cell_darkgrey' }, + "container_cell_images/cell_classic": { type: T.IMAGE, children: string }, + "container_cell_images/cell_normal": { type: T.IMAGE, children: string }, + "container_cell_images/cell_invert": { type: T.IMAGE, children: string }, + "container_cell_images/cell_red": { type: T.IMAGE, children: string }, + "container_cell_images/cell_selected": { type: T.IMAGE, children: string }, + "container_cell_images/cell_darkgrey": { type: T.IMAGE, children: string }, + "crafting_container_cell_images": { type: T.PANEL, children: string }, + "cell_image": { type: T.IMAGE, children: string }, + "cell_image_classic": { type: T.IMAGE, children: string }, + "cell_image_normal": { type: T.IMAGE, children: string }, + "cell_image_invert": { type: T.IMAGE, children: string }, + "cell_image_red": { type: T.IMAGE, children: string }, + "cell_image_selected": { type: T.IMAGE, children: string }, + "cell_image_darkgrey": { type: T.IMAGE, children: string }, + "container_overlay_images": { type: T.PANEL, children: 'expand' | 'contract' }, + "container_overlay_images/expand": { type: T.IMAGE, children: string }, + "container_overlay_images/contract": { type: T.IMAGE, children: string }, + "item_overlay_image": { type: T.IMAGE, children: string }, + "item_overlay_contract": { type: T.IMAGE, children: string }, + "item_overlay_expand": { type: T.IMAGE, children: string }, + "inventory_container_item": { type: T.INPUT_PANEL, children: 'item_cell' | 'item_cell_overlay_ref' | 'item_selected_image' | 'item_button_ref' | 'container_item_lock_overlay' | 'item_lock_cell_image' | 'bundle_slot_panel' }, + "inventory_container_item/item_cell": { type: T.PANEL, children: 'item' | 'durability_bar' | 'storage_bar' }, + "inventory_container_item/item_cell/item": { type: T.PANEL, children: 'stack_count_label' }, + "inventory_container_item/item_cell/item/stack_count_label": { type: T.LABEL, children: string }, + "inventory_container_item/item_cell/durability_bar": { type: T.CUSTOM, children: string }, + "inventory_container_item/item_cell/storage_bar": { type: T.CUSTOM, children: string }, + "inventory_container_item/item_cell_overlay_ref": { type: T.UNKNOWN, children: string }, + "inventory_container_item/item_selected_image": { type: T.IMAGE, children: string }, + "inventory_container_item/item_button_ref": { type: T.UNKNOWN, children: string }, + "inventory_container_item/container_item_lock_overlay": { type: T.PANEL, children: string }, + "inventory_container_item/item_lock_cell_image": { type: T.IMAGE, children: string }, + "inventory_container_item/bundle_slot_panel": { type: T.PANEL, children: string }, + "grid_item_for_recipe_book": { type: T.INPUT_PANEL, children: string }, + "scroll_grid_panel": { type: T.INPUT_PANEL, children: 'grid' }, + "scroll_grid_panel/grid": { type: T.GRID, children: string }, + "scroll_grid": { type: T.GRID, children: string }, + "scroll_panel": { type: T.PANEL, children: string }, + "recipe_book_scroll_panel": { type: T.PANEL, children: string }, + "creative_label": { type: T.LABEL, children: string }, + "filter_toggle": { type: T.PANEL, children: string }, + "toolbar_background": { type: T.IMAGE, children: string }, + "layout_toggle_content": { type: T.PANEL, children: 'image' | 'icon' }, + "layout_toggle_content/image": { type: T.UNKNOWN, children: string }, + "layout_toggle_content/icon": { type: T.UNKNOWN, children: string }, + "layout_template_toggle": { type: T.TOGGLE, children: string }, + "layout_toggle": { type: T.PANEL, children: string }, + "creative_layout_toggle": { type: T.PANEL, children: string }, + "recipe_book_layout_toggle": { type: T.PANEL, children: string }, + "survival_layout_toggle": { type: T.PANEL, children: string }, + "help_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "help_button/default": { type: T.IMAGE, children: string }, + "help_button/hover": { type: T.IMAGE, children: string }, + "help_button/pressed": { type: T.IMAGE, children: string }, + "player_inventory": { type: T.INPUT_PANEL, children: 'common_panel' | 'inventory_panel_top_half' | 'inventory_panel_bottom_half' | 'hotbar_grid' }, + "player_inventory/common_panel": { type: T.PANEL, children: string }, + "player_inventory/inventory_panel_top_half": { type: T.UNKNOWN, children: string }, + "player_inventory/inventory_panel_bottom_half": { type: T.PANEL, children: string }, + "player_inventory/hotbar_grid": { type: T.GRID, children: string }, + "recipe_book": { type: T.INPUT_PANEL, children: 'gamepad_helper_bumpers' | 'tab_navigation_panel' | 'bg' | 'tab_content_panel' | 'creative_hotbar_panel' }, + "recipe_book/gamepad_helper_bumpers": { type: T.PANEL, children: string }, + "recipe_book/tab_navigation_panel": { type: T.STACK_PANEL, children: string }, + "recipe_book/bg": { type: T.PANEL, children: string }, + "recipe_book/tab_content_panel": { type: T.PANEL, children: string }, + "recipe_book/creative_hotbar_panel": { type: T.INPUT_PANEL, children: string }, + "creative_hotbar_panel": { type: T.INPUT_PANEL, children: 'creative_hotbar_background' }, + "creative_hotbar_panel/creative_hotbar_background": { type: T.IMAGE, children: 'hotbar_grid' }, + "creative_hotbar_panel/creative_hotbar_background/hotbar_grid": { type: T.GRID, children: string }, + "center_fold": { type: T.INPUT_PANEL, children: 'center_bg' }, + "center_fold/center_bg": { type: T.IMAGE, children: string }, + "toolbar_panel": { type: T.INPUT_PANEL, children: 'toolbar_background' }, + "toolbar_panel/toolbar_background": { type: T.IMAGE, children: 'toolbar_stack_panel' }, + "toolbar_panel/toolbar_background/toolbar_stack_panel": { type: T.STACK_PANEL, children: 'left_trigger_anchor' | 'padding_0' | 'creative_layout_toggle_panel' | 'padding_1' | 'recipe_book_layout_toggle_panel_survival' | 'recipe_book_layout_toggle_panel_creative' | 'padding_2' | 'survival_layout_toggle_panel' | 'padding_3' | 'help_button_panel' | 'close_button_panel' | 'padding_4' | 'right_trigger_anchor' }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/left_trigger_anchor": { type: T.PANEL, children: 'gamepad_helper_left_trigger' }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/left_trigger_anchor/gamepad_helper_left_trigger": { type: T.STACK_PANEL, children: string }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_0": { type: T.PANEL, children: string }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel": { type: T.PANEL, children: 'creative_layout_toggle' }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel/creative_layout_toggle": { type: T.PANEL, children: string }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": { type: T.PANEL, children: string }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_survival": { type: T.PANEL, children: 'recipe_book_layout_toggle' }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_survival/recipe_book_layout_toggle": { type: T.PANEL, children: string }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_creative": { type: T.PANEL, children: 'recipe_book_layout_toggle' }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_creative/recipe_book_layout_toggle": { type: T.PANEL, children: string }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": { type: T.PANEL, children: string }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel": { type: T.PANEL, children: 'survival_layout_toggle' }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel/survival_layout_toggle": { type: T.PANEL, children: string }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_3": { type: T.PANEL, children: string }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": { type: T.PANEL, children: 'help_button' }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": { type: T.BUTTON, children: string }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": { type: T.PANEL, children: 'close_button' }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": { type: T.BUTTON, children: string }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_4": { type: T.PANEL, children: string }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/right_trigger_anchor": { type: T.PANEL, children: 'gamepad_helper_right_trigger' }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/right_trigger_anchor/gamepad_helper_right_trigger": { type: T.STACK_PANEL, children: string }, + "inventory_screen_base": { type: T.SCREEN, children: string }, + "crafting_screen": { type: T.SCREEN, children: string }, + "inventory_screen": { type: T.SCREEN, children: string }, + "recipe_book_toggle_image": { type: T.IMAGE, children: string }, + "recipe_inventory_screen_content": { type: T.PANEL, children: 'content_stack_panel' | 'inventory_take_progress_icon_button' | 'inventory_selected_icon_button' | 'hold_icon' | 'controller_gamepad_helpers_stack_panel' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'flying_item_renderer' }, + "recipe_inventory_screen_content/content_stack_panel": { type: T.STACK_PANEL, children: 'recipe_book' | 'center_fold' | 'survival_padding' | 'player_inventory' | 'toolbar_anchor' }, + "recipe_inventory_screen_content/content_stack_panel/recipe_book": { type: T.INPUT_PANEL, children: string }, + "recipe_inventory_screen_content/content_stack_panel/center_fold": { type: T.INPUT_PANEL, children: string }, + "recipe_inventory_screen_content/content_stack_panel/survival_padding": { type: T.PANEL, children: string }, + "recipe_inventory_screen_content/content_stack_panel/player_inventory": { type: T.INPUT_PANEL, children: string }, + "recipe_inventory_screen_content/content_stack_panel/toolbar_anchor": { type: T.PANEL, children: 'toolbar_panel' }, + "recipe_inventory_screen_content/content_stack_panel/toolbar_anchor/toolbar_panel": { type: T.INPUT_PANEL, children: string }, + "recipe_inventory_screen_content/inventory_take_progress_icon_button": { type: T.BUTTON, children: string }, + "recipe_inventory_screen_content/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "recipe_inventory_screen_content/hold_icon": { type: T.BUTTON, children: string }, + "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel": { type: T.STACK_PANEL, children: 'container_gamepad_helpers_second_row' | 'container_gamepad_helpers' }, + "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel/container_gamepad_helpers_second_row": { type: T.STACK_PANEL, children: string }, + "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "recipe_inventory_screen_content/selected_item_details_factory": { type: T.FACTORY, children: string }, + "recipe_inventory_screen_content/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "recipe_inventory_screen_content/flying_item_renderer": { type: T.CUSTOM, children: string }, } 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": { type: T.CUSTOM, children: string }, + "full_screen_icon": { type: T.IMAGE, children: string }, + "crafting_icon": { type: T.IMAGE, children: string }, + "armor_icon": { type: T.IMAGE, children: string }, + "crafting_arrow_down": { type: T.IMAGE, children: string }, + "empty_tab_panel": { type: T.PANEL, children: string }, + "left_tab": { type: T.PANEL, children: string }, + "right_tab": { type: T.PANEL, children: string }, + "full_screen_tab": { type: T.PANEL, children: string }, + "crafting_tab": { type: T.PANEL, children: string }, + "armor_tab": { type: T.PANEL, children: string }, + "search_tab": { type: T.PANEL, children: string }, + "construction_tab": { type: T.PANEL, children: string }, + "equipment_tab": { type: T.PANEL, children: string }, + "items_tab": { type: T.PANEL, children: string }, + "nature_tab": { type: T.PANEL, children: string }, + "inventory_tab": { type: T.PANEL, children: string }, + "left_tab_navigation_panel_pocket": { type: T.PANEL, children: 'content' }, + "left_tab_navigation_panel_pocket/content": { type: T.STACK_PANEL, children: 'search_tab_panel' | 'construction_tab_panel' | 'equipment_tab_panel' | 'items_tab_panel' | 'nature_tab_panel' | 'fill' | 'inventory_tab' }, + "left_tab_navigation_panel_pocket/content/search_tab_panel": { type: T.PANEL, children: 'search_tab' }, + "left_tab_navigation_panel_pocket/content/search_tab_panel/search_tab": { type: T.PANEL, children: string }, + "left_tab_navigation_panel_pocket/content/construction_tab_panel": { type: T.PANEL, children: 'construction_tab_factory' }, + "left_tab_navigation_panel_pocket/content/construction_tab_panel/construction_tab_factory": { type: T.FACTORY, children: string }, + "left_tab_navigation_panel_pocket/content/equipment_tab_panel": { type: T.PANEL, children: 'equipment_tab_factory' }, + "left_tab_navigation_panel_pocket/content/equipment_tab_panel/equipment_tab_factory": { type: T.FACTORY, children: string }, + "left_tab_navigation_panel_pocket/content/items_tab_panel": { type: T.PANEL, children: 'items_tab_factory' }, + "left_tab_navigation_panel_pocket/content/items_tab_panel/items_tab_factory": { type: T.FACTORY, children: string }, + "left_tab_navigation_panel_pocket/content/nature_tab_panel": { type: T.PANEL, children: 'nature_tab_factory' }, + "left_tab_navigation_panel_pocket/content/nature_tab_panel/nature_tab_factory": { type: T.FACTORY, children: string }, + "left_tab_navigation_panel_pocket/content/fill": { type: T.PANEL, children: string }, + "left_tab_navigation_panel_pocket/content/inventory_tab": { type: T.PANEL, children: string }, + "right_tab_navigation_panel_pocket": { type: T.PANEL, children: 'content' }, + "right_tab_navigation_panel_pocket/content": { type: T.STACK_PANEL, children: 'close' | 'fill' | 'full_screen_tab' | 'crafting_tab' | 'armor_tab' }, + "right_tab_navigation_panel_pocket/content/close": { type: T.IMAGE, children: 'nodrop_zone' | 'close_button' }, + "right_tab_navigation_panel_pocket/content/close/nodrop_zone": { type: T.INPUT_PANEL, children: string }, + "right_tab_navigation_panel_pocket/content/close/close_button": { type: T.BUTTON, children: string }, + "right_tab_navigation_panel_pocket/content/fill": { type: T.PANEL, children: string }, + "right_tab_navigation_panel_pocket/content/full_screen_tab": { type: T.PANEL, children: string }, + "right_tab_navigation_panel_pocket/content/crafting_tab": { type: T.PANEL, children: string }, + "right_tab_navigation_panel_pocket/content/armor_tab": { type: T.PANEL, children: string }, + "recipe_book_tab_content": { type: T.PANEL, children: string }, + "inventory_tab_content": { type: T.PANEL, children: string }, + "right_tab_content": { type: T.PANEL, children: 'bg' | 'content' }, + "right_tab_content/bg": { type: T.PANEL, children: string }, + "right_tab_content/content": { type: T.UNKNOWN, children: string }, + "crafting_input_grid_item": { type: T.INPUT_PANEL, children: string }, + "crafting_grid_3x3": { type: T.GRID, children: string }, + "crafting_grid_2x2": { type: T.GRID, children: string }, + "output_grid_and_label": { type: T.PANEL, children: 'recipe_item_label' | 'output_grid' }, + "output_grid_and_label/recipe_item_label": { type: T.LABEL, children: string }, + "output_grid_and_label/output_grid": { type: T.GRID, children: string }, + "output_grid": { type: T.GRID, children: 'work_bench_output' }, + "output_grid/work_bench_output": { type: T.INPUT_PANEL, children: string }, + "crafting_grid_3x3_with_label": { type: T.PANEL, children: 'crafting_label' | 'crafting_grid_3x3' }, + "crafting_grid_3x3_with_label/crafting_label": { type: T.LABEL, children: string }, + "crafting_grid_3x3_with_label/crafting_grid_3x3": { type: T.GRID, children: string }, + "crafting_grid_2x2_with_label": { type: T.PANEL, children: 'crafting_label' | 'crafting_grid_2x2' }, + "crafting_grid_2x2_with_label/crafting_label": { type: T.LABEL, children: string }, + "crafting_grid_2x2_with_label/crafting_grid_2x2": { type: T.GRID, children: string }, + "scroll_background_image": { type: T.IMAGE, children: string }, + "grid_item_for_inventory": { type: T.INPUT_PANEL, children: string }, + "survival_inventory_grid": { type: T.INPUT_PANEL, children: string }, + "scroll_panel_pocket": { type: T.PANEL, children: string }, + "recipe_book_scroll_panel_pocket": { type: T.PANEL, children: string }, + "survival_scroll_panel": { type: T.PANEL, children: string }, + "pocket_armor_tab_content": { type: T.STACK_PANEL, children: 'label_and_renderer' | 'equipment_and_renderer' }, + "pocket_armor_tab_content/label_and_renderer": { type: T.PANEL, children: 'label_panel' | 'renderer_panel' }, + "pocket_armor_tab_content/label_and_renderer/label_panel": { type: T.PANEL, children: 'armor_label' }, + "pocket_armor_tab_content/label_and_renderer/label_panel/armor_label": { type: T.LABEL, children: string }, + "pocket_armor_tab_content/label_and_renderer/renderer_panel": { type: T.PANEL, children: 'armor_renderer' }, + "pocket_armor_tab_content/label_and_renderer/renderer_panel/armor_renderer": { type: T.CUSTOM, children: string }, + "pocket_armor_tab_content/equipment_and_renderer": { type: T.STACK_PANEL, children: 'equipment' | 'armor_panel' }, + "pocket_armor_tab_content/equipment_and_renderer/equipment": { type: T.STACK_PANEL, children: 'armor_grid' | 'offhand_grid' }, + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid": { type: T.GRID, children: 'head_grid_item' | 'chest_grid_item' | 'legs_grid_item' | 'feet_grid_item' }, + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/head_grid_item": { type: T.INPUT_PANEL, children: string }, + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/chest_grid_item": { type: T.INPUT_PANEL, children: string }, + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/legs_grid_item": { type: T.INPUT_PANEL, children: string }, + "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/feet_grid_item": { type: T.INPUT_PANEL, children: string }, + "pocket_armor_tab_content/equipment_and_renderer/equipment/offhand_grid": { type: T.GRID, children: 'offhand_grid_item' }, + "pocket_armor_tab_content/equipment_and_renderer/equipment/offhand_grid/offhand_grid_item": { type: T.INPUT_PANEL, children: string }, + "pocket_armor_tab_content/equipment_and_renderer/armor_panel": { type: T.PANEL, children: 'armor_and_player' }, + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player": { type: T.PANEL, children: 'player_preview_border' }, + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border": { type: T.IMAGE, children: 'player_bg' }, + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg": { type: T.IMAGE, children: 'player_renderer_panel' }, + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg/player_renderer_panel": { type: T.PANEL, children: 'player_renderer' }, + "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg/player_renderer_panel/player_renderer": { type: T.CUSTOM, children: string }, + "hotbar_panel": { type: T.INPUT_PANEL, children: 'bg' | 'hotbar_grid' }, + "hotbar_panel/bg": { type: T.PANEL, children: string }, + "hotbar_panel/hotbar_grid": { type: T.GRID, children: string }, + "hotbar_grid_item": { type: T.INPUT_PANEL, children: string }, + "survival_panel_pocket": { type: T.PANEL, children: 'crafting_panel' | 'crafting_arrow_down' | 'crafting_table' | 'output' }, + "survival_panel_pocket/crafting_panel": { type: T.PANEL, children: string }, + "survival_panel_pocket/crafting_arrow_down": { type: T.IMAGE, children: string }, + "survival_panel_pocket/crafting_table": { type: T.CUSTOM, children: string }, + "survival_panel_pocket/output": { type: T.PANEL, children: string }, + "survival_panel_crafting_pocket": { type: T.PANEL, children: 'crafting_panel' | 'crafting_arrow_down' | 'output' }, + "survival_panel_crafting_pocket/crafting_panel": { type: T.PANEL, children: string }, + "survival_panel_crafting_pocket/crafting_arrow_down": { type: T.IMAGE, children: string }, + "survival_panel_crafting_pocket/output": { type: T.PANEL, children: string }, + "inventory_screen_pocket_base": { type: T.SCREEN, children: string }, + "crafting_screen_pocket": { type: T.SCREEN, children: string }, + "inventory_screen_pocket": { type: T.SCREEN, children: string }, + "left_panel": { type: T.PANEL, children: 'left_background' | 'recipe_book_tab_content' | 'inventory_tab_content' }, + "left_panel/left_background": { type: T.PANEL, children: string }, + "left_panel/recipe_book_tab_content": { type: T.PANEL, children: string }, + "left_panel/inventory_tab_content": { type: T.PANEL, children: string }, + "right_panel": { type: T.INPUT_PANEL, children: 'right_background' | 'help_button' | 'crafting_tab_content' | 'armor_tab_content' }, + "right_panel/right_background": { type: T.PANEL, children: string }, + "right_panel/help_button": { type: T.BUTTON, children: string }, + "right_panel/crafting_tab_content": { type: T.PANEL, children: string }, + "right_panel/armor_tab_content": { type: T.PANEL, children: string }, + "both_panels": { type: T.STACK_PANEL, children: 'left_tab_navigation_panel_pocket' | 'left_panel' | 'offset_panel' | 'right_panel' | 'right_tab_navigation_panel_pocket' }, + "both_panels/left_tab_navigation_panel_pocket": { type: T.PANEL, children: string }, + "both_panels/left_panel": { type: T.PANEL, children: string }, + "both_panels/offset_panel": { type: T.PANEL, children: 'center_bg' }, + "both_panels/offset_panel/center_bg": { type: T.IMAGE, children: string }, + "both_panels/right_panel": { type: T.INPUT_PANEL, children: string }, + "both_panels/right_tab_navigation_panel_pocket": { type: T.PANEL, children: string }, + "gamepad_helper_border": { type: T.STACK_PANEL, children: 'left_gamepad_panel' | 'both_panels' | 'right_gamepad_panel' }, + "gamepad_helper_border/left_gamepad_panel": { type: T.PANEL, children: 'gamepad_helper_left_bumper' | 'gamepad_helper_left_trigger' }, + "gamepad_helper_border/left_gamepad_panel/gamepad_helper_left_bumper": { type: T.STACK_PANEL, children: string }, + "gamepad_helper_border/left_gamepad_panel/gamepad_helper_left_trigger": { type: T.STACK_PANEL, children: string }, + "gamepad_helper_border/both_panels": { type: T.STACK_PANEL, children: string }, + "gamepad_helper_border/right_gamepad_panel": { type: T.PANEL, children: 'gamepad_helper_right_bumper_creative' | 'gamepad_helper_right_bumper' | 'gamepad_helper_right_trigger' }, + "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_bumper_creative": { type: T.STACK_PANEL, children: string }, + "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_bumper": { type: T.STACK_PANEL, children: string }, + "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_trigger": { type: T.STACK_PANEL, children: string }, + "hotbar_and_panels": { type: T.STACK_PANEL, children: 'padding_1' | 'gamepad_helper_border' | 'hotbar_section_panel' }, + "hotbar_and_panels/padding_1": { type: T.PANEL, children: string }, + "hotbar_and_panels/gamepad_helper_border": { type: T.STACK_PANEL, children: string }, + "hotbar_and_panels/hotbar_section_panel": { type: T.INPUT_PANEL, children: 'hotbar' }, + "hotbar_and_panels/hotbar_section_panel/hotbar": { type: T.INPUT_PANEL, children: string }, + "recipe_inventory_screen_content_pocket": { type: T.INPUT_PANEL, children: 'container_gamepad_helpers_pocket' | 'toast_screen_content' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'base_panel' | 'flying_item_renderer' }, + "recipe_inventory_screen_content_pocket/container_gamepad_helpers_pocket": { type: T.STACK_PANEL, children: string }, + "recipe_inventory_screen_content_pocket/toast_screen_content": { type: T.PANEL, children: string }, + "recipe_inventory_screen_content_pocket/selected_item_details_factory": { type: T.FACTORY, children: string }, + "recipe_inventory_screen_content_pocket/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "recipe_inventory_screen_content_pocket/base_panel": { type: T.PANEL, children: 'root_panel' | 'inventory_selected_icon_button' | 'gamepad_cursor' | 'hold_icon' | 'hotbar_and_panels' }, + "recipe_inventory_screen_content_pocket/base_panel/root_panel": { type: T.INPUT_PANEL, children: string }, + "recipe_inventory_screen_content_pocket/base_panel/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "recipe_inventory_screen_content_pocket/base_panel/gamepad_cursor": { type: T.BUTTON, children: string }, + "recipe_inventory_screen_content_pocket/base_panel/hold_icon": { type: T.BUTTON, children: string }, + "recipe_inventory_screen_content_pocket/base_panel/hotbar_and_panels": { type: T.STACK_PANEL, children: string }, + "recipe_inventory_screen_content_pocket/flying_item_renderer": { type: T.CUSTOM, children: string }, } 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": { type: T.IMAGE, children: string }, + "black_border_hover": { type: T.IMAGE, children: string }, + "platform_icon": { type: T.IMAGE, children: string }, + "grey_borderless_locked": { type: T.IMAGE, children: string }, + "checked_locked_image": { type: T.IMAGE, children: string }, + "unchecked_locked_image": { type: T.IMAGE, children: string }, + "left_arrow_image": { type: T.IMAGE, children: string }, + "right_arrow_image": { type: T.IMAGE, children: string }, + "account_link_image": { type: T.IMAGE, children: string }, + "panel_text": { type: T.LABEL, children: string }, + "loading_friends": { type: T.LABEL, children: string }, + "account_link_icon": { type: T.STACK_PANEL, children: 'space_01' | 'account_link_image' | 'space_03' }, + "account_link_icon/space_01": { type: T.PANEL, children: string }, + "account_link_icon/account_link_image": { type: T.IMAGE, children: string }, + "account_link_icon/space_03": { type: T.PANEL, children: string }, + "gamerpic": { type: T.CUSTOM, children: string }, + "third_party_profile_pic": { type: T.IMAGE, children: string }, + "gamerpic_panel": { type: T.PANEL, children: 'black_border' | 'gamerpic' | 'online_indication_positioner' }, + "gamerpic_panel/black_border": { type: T.IMAGE, children: string }, + "gamerpic_panel/gamerpic": { type: T.CUSTOM, children: string }, + "gamerpic_panel/online_indication_positioner": { type: T.PANEL, children: 'indicator_images' }, + "gamerpic_panel/online_indication_positioner/indicator_images": { type: T.PANEL, children: string }, + "third_party_profile_pic_panel": { type: T.PANEL, children: 'black_border' | 'third_party_profile_pic' }, + "third_party_profile_pic_panel/black_border": { type: T.IMAGE, children: string }, + "third_party_profile_pic_panel/third_party_profile_pic": { type: T.IMAGE, children: string }, + "platform_icon_panel": { type: T.PANEL, children: 'platform_icon' }, + "platform_icon_panel/platform_icon": { type: T.IMAGE, children: string }, + "status_image": { type: T.IMAGE, children: string }, + "online_image": { type: T.IMAGE, children: string }, + "offline_image": { type: T.IMAGE, children: string }, + "online_indicator": { type: T.PANEL, children: 'online_image' }, + "online_indicator/online_image": { type: T.IMAGE, children: string }, + "checkbox_panel": { type: T.PANEL, children: string }, + "checked_panel": { type: T.PANEL, children: 'checked_image' }, + "checked_panel/checked_image": { type: T.IMAGE, children: string }, + "unchecked_panel": { type: T.PANEL, children: 'unchecked_image' }, + "unchecked_panel/unchecked_image": { type: T.IMAGE, children: string }, + "checked_locked_panel": { type: T.PANEL, children: 'checked_image' }, + "checked_locked_panel/checked_image": { type: T.IMAGE, children: string }, + "unchecked_locked_panel": { type: T.PANEL, children: 'unchecked_image' }, + "unchecked_locked_panel/unchecked_image": { type: T.IMAGE, children: string }, + "checked_hover_panel": { type: T.PANEL, children: 'checked_hover_image' }, + "checked_hover_panel/checked_hover_image": { type: T.IMAGE, children: string }, + "unchecked_hover_panel": { type: T.PANEL, children: 'unchecked_hover_image' }, + "unchecked_hover_panel/unchecked_hover_image": { type: T.IMAGE, children: string }, + "friend_label": { type: T.LABEL, children: string }, + "friend_grid_xbl_gamertag": { type: T.LABEL, children: string }, + "friend_grid_current_game_label": { type: T.LABEL, children: string }, + "friend_grid_third_party_tag": { type: T.LABEL, children: string }, + "friend_background": { type: T.IMAGE, children: string }, + "friend_background_hover": { type: T.IMAGE, children: string }, + "friend_background_borderless": { type: T.IMAGE, children: string }, + "hover_friend_button": { type: T.PANEL, children: 'friend_button_layout' | 'hover_text' }, + "hover_friend_button/friend_button_layout": { type: T.UNKNOWN, children: string }, + "hover_friend_button/hover_text": { type: T.CUSTOM, children: string }, + "linked_hover_friend_button": { type: T.PANEL, children: 'hover_text' }, + "linked_hover_friend_button/hover_text": { type: T.CUSTOM, children: string }, + "msa_friend_button_layout": { type: T.STACK_PANEL, children: 'spacer01' | 'platform_icon_spacer' | 'spacer_02' | 'friend_grid_label_layout' }, + "msa_friend_button_layout/spacer01": { type: T.PANEL, children: string }, + "msa_friend_button_layout/platform_icon_spacer": { type: T.PANEL, children: string }, + "msa_friend_button_layout/spacer_02": { type: T.PANEL, children: string }, + "msa_friend_button_layout/friend_grid_label_layout": { type: T.STACK_PANEL, children: 'spacer_01' | 'friend_grid_xbl_gamertag' | 'friend_grid_current_game_label' }, + "msa_friend_button_layout/friend_grid_label_layout/spacer_01": { type: T.PANEL, children: string }, + "msa_friend_button_layout/friend_grid_label_layout/friend_grid_xbl_gamertag": { type: T.LABEL, children: string }, + "msa_friend_button_layout/friend_grid_label_layout/friend_grid_current_game_label": { type: T.LABEL, children: string }, + "platform_friend_button_layout": { type: T.STACK_PANEL, children: 'spacer01' | 'platform_icon_spacer' | 'third_party_pic_panel_positioner' | 'spacer_02' | 'friend_grid_label_layout' | 'platform_icon_positioner' | 'online_indication_positioner' }, + "platform_friend_button_layout/spacer01": { type: T.PANEL, children: string }, + "platform_friend_button_layout/platform_icon_spacer": { type: T.PANEL, children: string }, + "platform_friend_button_layout/third_party_pic_panel_positioner": { type: T.PANEL, children: 'pp' }, + "platform_friend_button_layout/third_party_pic_panel_positioner/pp": { type: T.PANEL, children: string }, + "platform_friend_button_layout/spacer_02": { type: T.PANEL, children: string }, + "platform_friend_button_layout/friend_grid_label_layout": { type: T.STACK_PANEL, children: 'spacer_01' | 'friend_grid_third_party_tag' | 'friend_grid_current_game_label' }, + "platform_friend_button_layout/friend_grid_label_layout/spacer_01": { type: T.PANEL, children: string }, + "platform_friend_button_layout/friend_grid_label_layout/friend_grid_third_party_tag": { type: T.LABEL, children: string }, + "platform_friend_button_layout/friend_grid_label_layout/friend_grid_current_game_label": { type: T.LABEL, children: string }, + "platform_friend_button_layout/platform_icon_positioner": { type: T.PANEL, children: 'platform_icon' }, + "platform_friend_button_layout/platform_icon_positioner/platform_icon": { type: T.PANEL, children: string }, + "platform_friend_button_layout/online_indication_positioner": { type: T.PANEL, children: 'indicator_images' }, + "platform_friend_button_layout/online_indication_positioner/indicator_images": { type: T.PANEL, children: string }, + "linked_friend_button_layout": { type: T.STACK_PANEL, children: 'spacer01' | 'platform_icon_positioner' | 'spacer02' | 'platform_profile_pictures' | 'spacer03' | 'platform_profile_names' | 'online_indication_positioner' }, + "linked_friend_button_layout/spacer01": { type: T.PANEL, children: string }, + "linked_friend_button_layout/platform_icon_positioner": { type: T.PANEL, children: 'platform_icon' }, + "linked_friend_button_layout/platform_icon_positioner/platform_icon": { type: T.PANEL, children: string }, + "linked_friend_button_layout/spacer02": { type: T.PANEL, children: string }, + "linked_friend_button_layout/platform_profile_pictures": { type: T.STACK_PANEL, children: 'spacer_01' | 'pp2' | 'account_link' | 'pp1' | 'spacer_03' }, + "linked_friend_button_layout/platform_profile_pictures/spacer_01": { type: T.PANEL, children: string }, + "linked_friend_button_layout/platform_profile_pictures/pp2": { type: T.PANEL, children: string }, + "linked_friend_button_layout/platform_profile_pictures/account_link": { type: T.STACK_PANEL, children: string }, + "linked_friend_button_layout/platform_profile_pictures/pp1": { type: T.PANEL, children: string }, + "linked_friend_button_layout/platform_profile_pictures/spacer_03": { type: T.PANEL, children: string }, + "linked_friend_button_layout/spacer03": { type: T.PANEL, children: string }, + "linked_friend_button_layout/platform_profile_names": { type: T.STACK_PANEL, children: 'spacer_01' | 'friend_grid_third_party_tag' | 'spacer_02' | 'friend_grid_xbl_gamertag' | 'friend_grid_current_game_label' }, + "linked_friend_button_layout/platform_profile_names/spacer_01": { type: T.PANEL, children: string }, + "linked_friend_button_layout/platform_profile_names/friend_grid_third_party_tag": { type: T.LABEL, children: string }, + "linked_friend_button_layout/platform_profile_names/spacer_02": { type: T.PANEL, children: string }, + "linked_friend_button_layout/platform_profile_names/friend_grid_xbl_gamertag": { type: T.LABEL, children: string }, + "linked_friend_button_layout/platform_profile_names/friend_grid_current_game_label": { type: T.LABEL, children: string }, + "linked_friend_button_layout/online_indication_positioner": { type: T.PANEL, children: 'indicator_images' }, + "linked_friend_button_layout/online_indication_positioner/indicator_images": { type: T.PANEL, children: string }, + "template_msa_friend_button_layout": { type: T.PANEL, children: 'friend_background' | 'friend_button_layout' | 'unchecked' }, + "template_msa_friend_button_layout/friend_background": { type: T.IMAGE, children: string }, + "template_msa_friend_button_layout/friend_button_layout": { type: T.STACK_PANEL, children: string }, + "template_msa_friend_button_layout/unchecked": { type: T.UNKNOWN, children: string }, + "template_platform_friend_button_layout": { type: T.PANEL, children: 'friend_background' | 'friend_button_layout' | 'unchecked' }, + "template_platform_friend_button_layout/friend_background": { type: T.IMAGE, children: string }, + "template_platform_friend_button_layout/friend_button_layout": { type: T.STACK_PANEL, children: string }, + "template_platform_friend_button_layout/unchecked": { type: T.UNKNOWN, children: string }, + "template_linked_friend_button_layout": { type: T.PANEL, children: 'friend_background' | 'horizontal_spacer_panel' }, + "template_linked_friend_button_layout/friend_background": { type: T.IMAGE, children: string }, + "template_linked_friend_button_layout/horizontal_spacer_panel": { type: T.STACK_PANEL, children: 'unchecked_locked' | 'friend_button_layout' }, + "template_linked_friend_button_layout/horizontal_spacer_panel/unchecked_locked": { type: T.UNKNOWN, children: string }, + "template_linked_friend_button_layout/horizontal_spacer_panel/friend_button_layout": { type: T.STACK_PANEL, children: string }, + "msa_friend_button": { type: T.TOGGLE, children: 'checked' | 'unchecked' | 'checked_hover' | 'unchecked_hover' | 'checked_locked' | 'unchecked_locked' | 'checked_locked_hover' | 'unchecked_locked_hover' }, + "msa_friend_button/checked": { type: T.PANEL, children: string }, + "msa_friend_button/unchecked": { type: T.PANEL, children: string }, + "msa_friend_button/checked_hover": { type: T.PANEL, children: string }, + "msa_friend_button/unchecked_hover": { type: T.PANEL, children: string }, + "msa_friend_button/checked_locked": { type: T.PANEL, children: string }, + "msa_friend_button/unchecked_locked": { type: T.PANEL, children: string }, + "msa_friend_button/checked_locked_hover": { type: T.PANEL, children: string }, + "msa_friend_button/unchecked_locked_hover": { type: T.PANEL, children: string }, + "platform_friend_button": { type: T.TOGGLE, children: 'checked' | 'unchecked' | 'checked_hover' | 'unchecked_hover' | 'checked_locked' | 'unchecked_locked' | 'checked_locked_hover' | 'unchecked_locked_hover' }, + "platform_friend_button/checked": { type: T.PANEL, children: string }, + "platform_friend_button/unchecked": { type: T.PANEL, children: string }, + "platform_friend_button/checked_hover": { type: T.PANEL, children: string }, + "platform_friend_button/unchecked_hover": { type: T.PANEL, children: string }, + "platform_friend_button/checked_locked": { type: T.PANEL, children: string }, + "platform_friend_button/unchecked_locked": { type: T.PANEL, children: string }, + "platform_friend_button/checked_locked_hover": { type: T.PANEL, children: string }, + "platform_friend_button/unchecked_locked_hover": { type: T.PANEL, children: string }, + "linked_friend_button": { type: T.TOGGLE, children: 'checked' | 'unchecked' | 'checked_hover' | 'unchecked_hover' | 'checked_locked' | 'unchecked_locked' | 'checked_locked_hover' | 'unchecked_locked_hover' }, + "linked_friend_button/checked": { type: T.PANEL, children: string }, + "linked_friend_button/unchecked": { type: T.PANEL, children: string }, + "linked_friend_button/checked_hover": { type: T.PANEL, children: string }, + "linked_friend_button/unchecked_hover": { type: T.PANEL, children: string }, + "linked_friend_button/checked_locked": { type: T.PANEL, children: string }, + "linked_friend_button/unchecked_locked": { type: T.PANEL, children: string }, + "linked_friend_button/checked_locked_hover": { type: T.PANEL, children: string }, + "linked_friend_button/unchecked_locked_hover": { type: T.PANEL, children: string }, + "msa_friend_grid_item_template": { type: T.STACK_PANEL, children: 'friend_button_Panel' | 'profile_button_pannel' | 'spacer_03' }, + "msa_friend_grid_item_template/friend_button_Panel": { type: T.PANEL, children: 'gamerpic_panel_positioner' | 'friend_button' }, + "msa_friend_grid_item_template/friend_button_Panel/gamerpic_panel_positioner": { type: T.PANEL, children: 'pp' }, + "msa_friend_grid_item_template/friend_button_Panel/gamerpic_panel_positioner/pp": { type: T.PANEL, children: string }, + "msa_friend_grid_item_template/friend_button_Panel/friend_button": { type: T.TOGGLE, children: string }, + "msa_friend_grid_item_template/profile_button_pannel": { type: T.PANEL, children: 'view_profile_button' }, + "msa_friend_grid_item_template/profile_button_pannel/view_profile_button": { type: T.BUTTON, children: string }, + "msa_friend_grid_item_template/spacer_03": { type: T.PANEL, children: string }, + "platform_friend_grid_item_template": { type: T.PANEL, children: 'friend_button' }, + "platform_friend_grid_item_template/friend_button": { type: T.TOGGLE, children: string }, + "friend_linked_account_grid_item_template": { type: T.PANEL, children: 'friend_button' }, + "friend_linked_account_grid_item_template/friend_button": { type: T.TOGGLE, children: string }, + "online_xbox_live_friend_grid_item": { type: T.STACK_PANEL, children: string }, + "offline_xbox_live_friend_grid_item": { type: T.STACK_PANEL, children: string }, + "online_linked_account_friend_grid_item": { type: T.PANEL, children: string }, + "offline_linked_account_friend_grid_item": { type: T.PANEL, children: string }, + "online_platform_friend_grid_item": { type: T.PANEL, children: string }, + "offline_platform_friend_grid_item": { type: T.PANEL, children: string }, + "online_xbox_live_friend_list_grid": { type: T.GRID, children: string }, + "offline_xbox_live_friend_list_grid": { type: T.GRID, children: string }, + "online_platform_friend_list_grid": { type: T.GRID, children: string }, + "offline_platform_friend_list_grid": { type: T.GRID, children: string }, + "online_linked_account_friend_list_grid": { type: T.GRID, children: string }, + "offline_linked_account_friend_list_grid": { type: T.GRID, children: string }, + "friends_pagination_controls": { type: T.STACK_PANEL, children: 'previous_button' | 'center_panel' | 'next_button' }, + "friends_pagination_controls/previous_button": { type: T.BUTTON, children: string }, + "friends_pagination_controls/center_panel": { type: T.PANEL, children: 'page_counter' }, + "friends_pagination_controls/center_panel/page_counter": { type: T.LABEL, children: string }, + "friends_pagination_controls/next_button": { type: T.BUTTON, children: string }, + "friends_category": { type: T.STACK_PANEL, children: 'friends_grid' | 'pagination_stack_panel' | 'padding' }, + "friends_category/friends_grid": { type: T.UNKNOWN, children: string }, + "friends_category/pagination_stack_panel": { type: T.STACK_PANEL, children: 'padding_1' | 'pagination_controls' | 'padding_2' | 'divider' }, + "friends_category/pagination_stack_panel/padding_1": { type: T.PANEL, children: string }, + "friends_category/pagination_stack_panel/pagination_controls": { type: T.STACK_PANEL, children: string }, + "friends_category/pagination_stack_panel/padding_2": { type: T.PANEL, children: string }, + "friends_category/pagination_stack_panel/divider": { type: T.PANEL, children: string }, + "friends_category/padding": { type: T.PANEL, children: string }, + "frame_label": { type: T.LABEL, children: string }, + "friend_panel": { type: T.PANEL, children: string }, + "scrolling_content_stack": { type: T.STACK_PANEL, children: 'message' | 'online_platform' | 'vertical_padding_0' | 'online_platform_friend_list_category' | 'crossplatform_disabled_panel' | 'crossplatform_disable_spacer' | 'online_cross_platform' | 'vertical_padding_1' | 'online_linked_account_friend_list_category' | 'online_xbox_live_friend_list_category' | 'offline_platform' | 'vertical_padding_2' | 'offline_platform_friend_list_category' | 'no_platform_friends' | 'offline_cross_platform' | 'vertical_padding_3' | 'offline_linked_account_friend_list_category' | 'offline_xbox_live_friend_list_category' | 'no_xbox_live_friends' }, + "scrolling_content_stack/message": { type: T.PANEL, children: 'frame_label' }, + "scrolling_content_stack/message/frame_label": { type: T.LABEL, children: string }, + "scrolling_content_stack/online_platform": { type: T.PANEL, children: 'frame_label' }, + "scrolling_content_stack/online_platform/frame_label": { type: T.LABEL, children: string }, + "scrolling_content_stack/vertical_padding_0": { type: T.PANEL, children: string }, + "scrolling_content_stack/online_platform_friend_list_category": { type: T.STACK_PANEL, children: string }, + "scrolling_content_stack/crossplatform_disabled_panel": { type: T.IMAGE, children: 'disable_text' }, + "scrolling_content_stack/crossplatform_disabled_panel/disable_text": { type: T.LABEL, children: string }, + "scrolling_content_stack/crossplatform_disable_spacer": { type: T.PANEL, children: string }, + "scrolling_content_stack/online_cross_platform": { type: T.PANEL, children: 'frame_label' }, + "scrolling_content_stack/online_cross_platform/frame_label": { type: T.LABEL, children: string }, + "scrolling_content_stack/vertical_padding_1": { type: T.PANEL, children: string }, + "scrolling_content_stack/online_linked_account_friend_list_category": { type: T.STACK_PANEL, children: string }, + "scrolling_content_stack/online_xbox_live_friend_list_category": { type: T.STACK_PANEL, children: string }, + "scrolling_content_stack/offline_platform": { type: T.PANEL, children: 'frame_label' }, + "scrolling_content_stack/offline_platform/frame_label": { type: T.LABEL, children: string }, + "scrolling_content_stack/vertical_padding_2": { type: T.PANEL, children: string }, + "scrolling_content_stack/offline_platform_friend_list_category": { type: T.STACK_PANEL, children: string }, + "scrolling_content_stack/no_platform_friends": { type: T.PANEL, children: 'no_friends_tts_wrapper' }, + "scrolling_content_stack/no_platform_friends/no_friends_tts_wrapper": { type: T.PANEL, children: string }, + "scrolling_content_stack/offline_cross_platform": { type: T.PANEL, children: 'frame_label' }, + "scrolling_content_stack/offline_cross_platform/frame_label": { type: T.LABEL, children: string }, + "scrolling_content_stack/vertical_padding_3": { type: T.PANEL, children: string }, + "scrolling_content_stack/offline_linked_account_friend_list_category": { type: T.STACK_PANEL, children: string }, + "scrolling_content_stack/offline_xbox_live_friend_list_category": { type: T.STACK_PANEL, children: string }, + "scrolling_content_stack/no_xbox_live_friends": { type: T.PANEL, children: 'no_friends_tts_wrapper' }, + "scrolling_content_stack/no_xbox_live_friends/no_friends_tts_wrapper": { type: T.PANEL, children: string }, + "progress_bar_and_scrolling_content_panel": { type: T.PANEL, children: 'progress_loading_bars' | 'invite_scrolling_area' }, + "progress_bar_and_scrolling_content_panel/progress_loading_bars": { type: T.IMAGE, children: string }, + "progress_bar_and_scrolling_content_panel/invite_scrolling_area": { type: T.STACK_PANEL, children: string }, + "no_xbox_live_friends_frame_label": { type: T.LABEL, children: string }, + "no_platform_friends_frame_label": { type: T.LABEL, children: string }, + "horizontal_invite_panel": { type: T.PANEL, children: string }, + "vertical_invite_panel": { type: T.PANEL, children: string }, + "scrolling_area": { type: T.PANEL, children: string }, + "invite_button_content": { type: T.PANEL, children: 'gameplay_helper' | 'button_label' }, + "invite_button_content/gameplay_helper": { type: T.UNKNOWN, children: string }, + "invite_button_content/button_label": { type: T.LABEL, children: string }, + "invite_button_content_hover": { type: T.PANEL, children: string }, + "invite_button_content_pressed": { type: T.PANEL, children: string }, + "invite_button_content_locked": { type: T.PANEL, children: string }, + "add_friend_button": { type: T.BUTTON, children: string }, + "profile_button_content": { type: T.PANEL, children: 'button_label' }, + "profile_button_content/button_label": { type: T.LABEL, children: string }, + "profile_button_content_hover": { type: T.PANEL, children: string }, + "profile_button_content_pressed": { type: T.PANEL, children: string }, + "profile_button_content_locked": { type: T.PANEL, children: string }, + "add_member_button": { type: T.BUTTON, children: string }, + "send_button": { type: T.BUTTON, children: string }, + "profile_button": { type: T.BUTTON, children: string }, + "horizontal_button_stack_panel": { type: T.STACK_PANEL, children: 'add_friend_button' | 'add_member_button' | 'padding' | 'send_button' }, + "horizontal_button_stack_panel/add_friend_button": { type: T.BUTTON, children: string }, + "horizontal_button_stack_panel/add_member_button": { type: T.BUTTON, children: string }, + "horizontal_button_stack_panel/padding": { type: T.PANEL, children: string }, + "horizontal_button_stack_panel/send_button": { type: T.BUTTON, children: string }, + "vertical_buttons_top_panel": { type: T.PANEL, children: 'add_friend_button' | 'add_member_button' }, + "vertical_buttons_top_panel/add_friend_button": { type: T.BUTTON, children: string }, + "vertical_buttons_top_panel/add_member_button": { type: T.BUTTON, children: string }, + "vertical_buttons_bottom_panel": { type: T.PANEL, children: 'send_button' }, + "vertical_buttons_bottom_panel/send_button": { type: T.BUTTON, children: string }, + "gamepad_helpers": { type: T.PANEL, children: 'gamepad_helper_a' }, + "gamepad_helpers/gamepad_helper_a": { type: T.STACK_PANEL, children: string }, + "invite_screen": { type: T.SCREEN, children: string }, + "invite_screen_content": { type: T.PANEL, children: 'gamepad_helpers' | 'invite_panel' }, + "invite_screen_content/gamepad_helpers": { type: T.PANEL, children: string }, + "invite_screen_content/invite_panel": { type: T.UNKNOWN, children: string }, } 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": { type: T.PANEL, children: string }, + "vertical_buffer": { type: T.PANEL, children: string }, + "common_text_label": { type: T.LABEL, children: string }, + "text_edit_box": { type: T.EDIT_BOX, children: string }, + "help_icon": { type: T.IMAGE, children: string }, + "toggle_with_label": { type: T.STACK_PANEL, children: 'toggle' | 'toggle_label_padding' | 'toggle_label_wrapper' }, + "toggle_with_label/toggle": { type: T.TOGGLE, children: string }, + "toggle_with_label/toggle_label_padding": { type: T.PANEL, children: string }, + "toggle_with_label/toggle_label_wrapper": { type: T.PANEL, children: 'toggle_label' | 'toggle_label_disabled' }, + "toggle_with_label/toggle_label_wrapper/toggle_label": { type: T.LABEL, children: string }, + "toggle_with_label/toggle_label_wrapper/toggle_label_disabled": { type: T.LABEL, children: string }, + "data_item_title_and_edit": { type: T.STACK_PANEL, children: 'data_title' | 'data_text_edit' }, + "data_item_title_and_edit/data_title": { type: T.LABEL, children: string }, + "data_item_title_and_edit/data_text_edit": { type: T.EDIT_BOX, children: string }, + "data_item_title_and_edit_fill": { type: T.STACK_PANEL, children: string }, + "data_item_title_and_toggle": { type: T.STACK_PANEL, children: 'data_title' | 'toggle' }, + "data_item_title_and_toggle/data_title": { type: T.LABEL, children: string }, + "data_item_title_and_toggle/toggle": { type: T.STACK_PANEL, children: string }, + "exit_buttons": { type: T.STACK_PANEL, children: 'done_button' | 'buffer' | 'help_button' }, + "exit_buttons/done_button": { type: T.BUTTON, children: string }, + "exit_buttons/buffer": { type: T.PANEL, children: string }, + "exit_buttons/help_button": { type: T.BUTTON, children: string }, + "scrolling_panel_wrapper": { type: T.IMAGE, children: 'scrolling_panel' }, + "scrolling_panel_wrapper/scrolling_panel": { type: T.PANEL, children: string }, + "scrolling_panel": { type: T.PANEL, children: string }, + "scroll_panel_content": { type: T.STACK_PANEL, children: 'target_pool_title_and_edit' | 'buffer_1' | 'name_title_and_edit' | 'buffer_2' | 'target_title_and_edit' | 'buffer_3' | 'final_block_title_and_edit' | 'buffer_4' | 'selection_and_placement_priority' | 'buffer_5' | 'joint_type_title_and_toggle' | 'buffer_6' }, + "scroll_panel_content/target_pool_title_and_edit": { type: T.STACK_PANEL, children: string }, + "scroll_panel_content/buffer_1": { type: T.PANEL, children: string }, + "scroll_panel_content/name_title_and_edit": { type: T.STACK_PANEL, children: string }, + "scroll_panel_content/buffer_2": { type: T.PANEL, children: string }, + "scroll_panel_content/target_title_and_edit": { type: T.STACK_PANEL, children: string }, + "scroll_panel_content/buffer_3": { type: T.PANEL, children: string }, + "scroll_panel_content/final_block_title_and_edit": { type: T.STACK_PANEL, children: string }, + "scroll_panel_content/buffer_4": { type: T.PANEL, children: string }, + "scroll_panel_content/selection_and_placement_priority": { type: T.STACK_PANEL, children: string }, + "scroll_panel_content/buffer_5": { type: T.PANEL, children: string }, + "scroll_panel_content/joint_type_title_and_toggle": { type: T.STACK_PANEL, children: string }, + "scroll_panel_content/buffer_6": { type: T.PANEL, children: string }, + "selection_and_placement_priority": { type: T.STACK_PANEL, children: 'selection_priority_title_and_edit' | 'buffer_1' | 'placement_priority_title_and_edit' }, + "selection_and_placement_priority/selection_priority_title_and_edit": { type: T.STACK_PANEL, children: string }, + "selection_and_placement_priority/buffer_1": { type: T.PANEL, children: string }, + "selection_and_placement_priority/placement_priority_title_and_edit": { type: T.STACK_PANEL, children: string }, + "button_panel_wrapper": { type: T.IMAGE, children: 'exit_buttons' }, + "button_panel_wrapper/exit_buttons": { type: T.STACK_PANEL, children: string }, + "jigsaw_editor_panel": { type: T.STACK_PANEL, children: 'scrolling_panel' | 'button_wrapper' }, + "jigsaw_editor_panel/scrolling_panel": { type: T.IMAGE, children: string }, + "jigsaw_editor_panel/button_wrapper": { type: T.PANEL, children: 'buttons' }, + "jigsaw_editor_panel/button_wrapper/buttons": { type: T.IMAGE, children: string }, + "jigsaw_editor_content": { type: T.PANEL, children: 'background_panel' | 'title' | 'jigsaw_editor_panel' }, + "jigsaw_editor_content/background_panel": { type: T.STACK_PANEL, children: string }, + "jigsaw_editor_content/title": { type: T.LABEL, children: string }, + "jigsaw_editor_content/jigsaw_editor_panel": { type: T.STACK_PANEL, children: string }, + "jigsaw_editor_screen": { type: T.SCREEN, children: string }, } 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": { type: T.PANEL, children: 'stacked_column' }, + "animation_panel/stacked_column": { type: T.STACK_PANEL, children: 'waiting_animating_text' }, + "animation_panel/stacked_column/waiting_animating_text": { type: T.LABEL, children: string }, + "gamepad_helpers": { type: T.STACK_PANEL, children: 'gamepad_helper_b_and_padding' }, + "gamepad_helpers/gamepad_helper_b_and_padding": { type: T.PANEL, children: 'gamepad_helper_b' }, + "gamepad_helpers/gamepad_helper_b_and_padding/gamepad_helper_b": { type: T.STACK_PANEL, children: string }, + "late_join_pregame_screen": { type: T.SCREEN, children: string }, + "late_join_screen_content": { type: T.PANEL, children: 'animation_panel' | 'gamepad_helpers' }, + "late_join_screen_content/animation_panel": { type: T.PANEL, children: string }, + "late_join_screen_content/gamepad_helpers": { type: T.STACK_PANEL, children: string }, } 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": { type: T.BUTTON, children: string }, + "modal_text_content": { type: T.LABEL, children: string }, + "modal_ok": { type: T.BUTTON, children: string }, + "modal_cancel": { type: T.BUTTON, children: string }, + "in_game_prompt": { type: T.PANEL, children: string }, + "fetch_error": { type: T.PANEL, children: string }, + "content": { type: T.PANEL, children: 'fetch' | 'ingame' }, + "content/fetch": { type: T.PANEL, children: string }, + "content/ingame": { type: T.PANEL, children: string }, + "content_wrapper": { type: T.INPUT_PANEL, children: 'content' }, + "content_wrapper/content": { type: T.PANEL, children: string }, + "background": { type: T.IMAGE, children: string }, + "library_modal_screen": { type: T.SCREEN, children: string }, + "text_panel": { type: T.STACK_PANEL, children: string }, + "edu_icon": { type: T.IMAGE, children: string }, + "continue_button": { type: T.BUTTON, children: string }, + "paragraph": { type: T.LABEL, children: string }, + "welcome_text_panel": { type: T.STACK_PANEL, children: 'padding_1' | 'paragraph_1_wrapper' | 'padding_2' | 'paragraph_two' | 'padding_3' | 'paragraph_three' }, + "welcome_text_panel/padding_1": { type: T.PANEL, children: string }, + "welcome_text_panel/paragraph_1_wrapper": { type: T.STACK_PANEL, children: 'edu_icon' | 'stack_buffer1' | 'paragraph_1_panel' }, + "welcome_text_panel/paragraph_1_wrapper/edu_icon": { type: T.IMAGE, children: string }, + "welcome_text_panel/paragraph_1_wrapper/stack_buffer1": { type: T.PANEL, children: string }, + "welcome_text_panel/paragraph_1_wrapper/paragraph_1_panel": { type: T.PANEL, children: 'paragraph_1' }, + "welcome_text_panel/paragraph_1_wrapper/paragraph_1_panel/paragraph_1": { type: T.LABEL, children: string }, + "welcome_text_panel/padding_2": { type: T.PANEL, children: string }, + "welcome_text_panel/paragraph_two": { type: T.LABEL, children: string }, + "welcome_text_panel/padding_3": { type: T.PANEL, children: string }, + "welcome_text_panel/paragraph_three": { type: T.LABEL, children: string }, + "welcome_scrolling_panel": { type: T.PANEL, children: string }, + "welcome_panel_content": { type: T.PANEL, children: 'background_panel' | 'welcome_scrolling_panel' | 'continue_button' }, + "welcome_panel_content/background_panel": { type: T.PANEL, children: string }, + "welcome_panel_content/welcome_scrolling_panel": { type: T.PANEL, children: string }, + "welcome_panel_content/continue_button": { type: T.BUTTON, children: string }, + "welcome_panel": { type: T.INPUT_PANEL, children: 'welcome' }, + "welcome_panel/welcome": { type: T.PANEL, children: string }, } 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": { type: T.SCREEN, children: string }, + "local_world_picker_content": { type: T.PANEL, children: 'background' | 'panel_label' | 'content' }, + "local_world_picker_content/background": { type: T.PANEL, children: string }, + "local_world_picker_content/panel_label": { type: T.LABEL, children: string }, + "local_world_picker_content/content": { type: T.INPUT_PANEL, children: string }, } 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": { type: T.LABEL, children: string }, + "arrow_icon": { type: T.IMAGE, children: string }, + "pattern_cell_image": { type: T.IMAGE, children: string }, + "container_cell_image": { type: T.IMAGE, children: string }, + "banner_outline": { type: T.IMAGE, children: string }, + "item_empty_image": { type: T.IMAGE, children: string }, + "banner_empty_image": { type: T.IMAGE, children: string }, + "dye_empty_image": { type: T.IMAGE, children: string }, + "pattern_item_empty_image": { type: T.IMAGE, children: string }, + "toolbar_background": { type: T.IMAGE, children: string }, + "highlight_slot_panel": { type: T.PANEL, children: 'highlight' | 'white_border' }, + "highlight_slot_panel/highlight": { type: T.IMAGE, children: string }, + "highlight_slot_panel/white_border": { type: T.IMAGE, children: string }, + "pattern_slot_button": { type: T.BUTTON, children: 'hover' }, + "pattern_slot_button/hover": { type: T.UNKNOWN, children: string }, + "banner_pattern": { type: T.CUSTOM, children: string }, + "pattern_button": { type: T.INPUT_PANEL, children: 'banner_pattern' | 'item_button_ref' }, + "pattern_button/banner_pattern": { type: T.UNKNOWN, children: string }, + "pattern_button/item_button_ref": { type: T.UNKNOWN, children: string }, + "scroll_grid": { type: T.GRID, children: string }, + "scroll_grid_panel": { type: T.INPUT_PANEL, children: 'grid' }, + "scroll_grid_panel/grid": { type: T.GRID, children: string }, + "scroll_panel": { type: T.PANEL, children: string }, + "pattern_book_panel": { type: T.INPUT_PANEL, children: 'bg' | 'scroll_panel' }, + "pattern_book_panel/bg": { type: T.PANEL, children: string }, + "pattern_book_panel/scroll_panel": { type: T.PANEL, children: string }, + "result_slot_button": { type: T.BUTTON, children: string }, + "input_item_slot": { type: T.INPUT_PANEL, children: string }, + "dye_item_slot": { type: T.INPUT_PANEL, children: string }, + "material_item_slot": { type: T.INPUT_PANEL, children: string }, + "result_item_slot": { type: T.INPUT_PANEL, children: string }, + "input_slots_stack_panel": { type: T.STACK_PANEL, children: 'input_item_slot' | 'padding_1' | 'dye_item_slot' | 'padding_2' | 'material_item_slot' }, + "input_slots_stack_panel/input_item_slot": { type: T.INPUT_PANEL, children: string }, + "input_slots_stack_panel/padding_1": { type: T.PANEL, children: string }, + "input_slots_stack_panel/dye_item_slot": { type: T.INPUT_PANEL, children: string }, + "input_slots_stack_panel/padding_2": { type: T.PANEL, children: string }, + "input_slots_stack_panel/material_item_slot": { type: T.INPUT_PANEL, children: string }, + "result_banner_renderer": { type: T.CUSTOM, children: string }, + "top_half_stack_panel": { type: T.STACK_PANEL, children: 'input_slots_holder' | 'padding_1' | 'arrow_holder' | 'padding_2' | 'result_item_slot_holder' | 'padding_3' | 'result_banner_outline' }, + "top_half_stack_panel/input_slots_holder": { type: T.PANEL, children: 'input_slots_stack_panel' }, + "top_half_stack_panel/input_slots_holder/input_slots_stack_panel": { type: T.STACK_PANEL, children: string }, + "top_half_stack_panel/padding_1": { type: T.PANEL, children: string }, + "top_half_stack_panel/arrow_holder": { type: T.PANEL, children: 'arrow_icon' }, + "top_half_stack_panel/arrow_holder/arrow_icon": { type: T.IMAGE, children: string }, + "top_half_stack_panel/padding_2": { type: T.PANEL, children: string }, + "top_half_stack_panel/result_item_slot_holder": { type: T.PANEL, children: 'result_item_slot' }, + "top_half_stack_panel/result_item_slot_holder/result_item_slot": { type: T.INPUT_PANEL, children: string }, + "top_half_stack_panel/padding_3": { type: T.PANEL, children: string }, + "top_half_stack_panel/result_banner_outline": { type: T.IMAGE, children: 'result_banner_renderer' }, + "top_half_stack_panel/result_banner_outline/result_banner_renderer": { type: T.CUSTOM, children: string }, + "top_half_panel": { type: T.PANEL, children: 'top_half_stack_panel' }, + "top_half_panel/top_half_stack_panel": { type: T.STACK_PANEL, children: string }, + "right_panel": { type: T.INPUT_PANEL, children: 'common_panel' | 'loom_screen_inventory' }, + "right_panel/common_panel": { type: T.PANEL, children: string }, + "right_panel/loom_screen_inventory": { type: T.PANEL, children: 'loom_label' | 'top_half_panel' | 'inventory_panel_bottom_half_with_label' | 'hotbar_grid' }, + "right_panel/loom_screen_inventory/loom_label": { type: T.LABEL, children: string }, + "right_panel/loom_screen_inventory/top_half_panel": { type: T.PANEL, children: string }, + "right_panel/loom_screen_inventory/inventory_panel_bottom_half_with_label": { type: T.PANEL, children: string }, + "right_panel/loom_screen_inventory/hotbar_grid": { type: T.GRID, children: string }, + "help_button": { type: T.BUTTON, children: string }, + "toolbar_panel": { type: T.INPUT_PANEL, children: 'toolbar_background' }, + "toolbar_panel/toolbar_background": { type: T.IMAGE, children: 'toolbar_stack_panel' }, + "toolbar_panel/toolbar_background/toolbar_stack_panel": { type: T.STACK_PANEL, children: 'padding_1' | 'help_button_panel' | 'close_button_panel' | 'padding_2' }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": { type: T.PANEL, children: string }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": { type: T.PANEL, children: 'help_button' }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": { type: T.BUTTON, children: string }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": { type: T.PANEL, children: 'close_button' }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": { type: T.BUTTON, children: string }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": { type: T.PANEL, children: string }, + "toolbar_anchor": { type: T.PANEL, children: 'toolbar_panel' }, + "toolbar_anchor/toolbar_panel": { type: T.INPUT_PANEL, children: string }, + "center_fold": { type: T.INPUT_PANEL, children: 'center_bg' }, + "center_fold/center_bg": { type: T.IMAGE, children: string }, + "screen_stack_panel": { type: T.STACK_PANEL, children: 'pattern_book_panel' | 'center_fold' | 'right_panel' | 'toolbar_anchor' }, + "screen_stack_panel/pattern_book_panel": { type: T.INPUT_PANEL, children: string }, + "screen_stack_panel/center_fold": { type: T.INPUT_PANEL, children: string }, + "screen_stack_panel/right_panel": { type: T.INPUT_PANEL, children: string }, + "screen_stack_panel/toolbar_anchor": { type: T.PANEL, children: string }, + "loom_panel": { type: T.PANEL, children: 'screen_stack_panel' | 'container_gamepad_helpers' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'inventory_selected_icon_button' | 'inventory_take_progress_icon_button' | 'flying_item_renderer' }, + "loom_panel/screen_stack_panel": { type: T.STACK_PANEL, children: string }, + "loom_panel/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "loom_panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "loom_panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "loom_panel/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "loom_panel/inventory_take_progress_icon_button": { type: T.BUTTON, children: string }, + "loom_panel/flying_item_renderer": { type: T.CUSTOM, children: string }, + "loom_screen": { type: T.SCREEN, children: string }, } 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": { type: T.IMAGE, children: string }, + "banner_empty_image": { type: T.IMAGE, children: string }, + "dye_empty_image": { type: T.IMAGE, children: string }, + "pattern_item_empty_image": { type: T.IMAGE, children: string }, + "chest_item_renderer": { type: T.CUSTOM, children: string }, + "banner_item_renderer": { type: T.CUSTOM, children: string }, + "loom_item_renderer": { type: T.CUSTOM, children: string }, + "input_item_slot": { type: T.INPUT_PANEL, children: string }, + "dye_item_slot": { type: T.INPUT_PANEL, children: string }, + "material_item_slot": { type: T.INPUT_PANEL, children: string }, + "result_item_slot": { type: T.INPUT_PANEL, children: string }, + "right_panel": { type: T.STACK_PANEL, children: 'content' | 'navigation_tabs_holder' }, + "right_panel/content": { type: T.INPUT_PANEL, children: 'bg' | 'loom_content_stack_panel' }, + "right_panel/content/bg": { type: T.PANEL, children: string }, + "right_panel/content/loom_content_stack_panel": { type: T.STACK_PANEL, children: string }, + "right_panel/navigation_tabs_holder": { type: T.PANEL, children: 'right_navigation_tabs' }, + "right_panel/navigation_tabs_holder/right_navigation_tabs": { type: T.STACK_PANEL, children: string }, + "right_tab_loom": { type: T.PANEL, children: string }, + "right_navigation_tabs": { type: T.STACK_PANEL, children: 'pocket_tab_close_and_help_button' | 'fill' | 'right_tab_loom' }, + "right_navigation_tabs/pocket_tab_close_and_help_button": { type: T.IMAGE, children: string }, + "right_navigation_tabs/fill": { type: T.PANEL, children: string }, + "right_navigation_tabs/right_tab_loom": { type: T.PANEL, children: string }, + "input_slots_stack_panel": { type: T.STACK_PANEL, children: 'input_item_slot' | 'padding_1' | 'dye_item_slot' | 'padding_2' | 'material_item_slot' }, + "input_slots_stack_panel/input_item_slot": { type: T.INPUT_PANEL, children: string }, + "input_slots_stack_panel/padding_1": { type: T.PANEL, children: string }, + "input_slots_stack_panel/dye_item_slot": { type: T.INPUT_PANEL, children: string }, + "input_slots_stack_panel/padding_2": { type: T.PANEL, children: string }, + "input_slots_stack_panel/material_item_slot": { type: T.INPUT_PANEL, children: string }, + "result_banner_outline": { type: T.IMAGE, children: 'result_banner_renderer' }, + "result_banner_outline/result_banner_renderer": { type: T.CUSTOM, children: string }, + "loom_content_stack_panel": { type: T.STACK_PANEL, children: 'label_holder' | 'padding_1' | 'input_slots_holder' | 'padding_2' | 'banner_pattern_holder' | 'padding_3' | 'arrow_holder' | 'padding_4' | 'result_item_slot_holder' | 'padding_5' }, + "loom_content_stack_panel/label_holder": { type: T.PANEL, children: 'loom_label' }, + "loom_content_stack_panel/label_holder/loom_label": { type: T.LABEL, children: string }, + "loom_content_stack_panel/padding_1": { type: T.PANEL, children: string }, + "loom_content_stack_panel/input_slots_holder": { type: T.PANEL, children: 'input_slots_stack_panel' }, + "loom_content_stack_panel/input_slots_holder/input_slots_stack_panel": { type: T.STACK_PANEL, children: string }, + "loom_content_stack_panel/padding_2": { type: T.PANEL, children: string }, + "loom_content_stack_panel/banner_pattern_holder": { type: T.PANEL, children: 'result_banner_outline' }, + "loom_content_stack_panel/banner_pattern_holder/result_banner_outline": { type: T.IMAGE, children: string }, + "loom_content_stack_panel/padding_3": { type: T.PANEL, children: string }, + "loom_content_stack_panel/arrow_holder": { type: T.PANEL, children: 'vertical_arrow_icon' }, + "loom_content_stack_panel/arrow_holder/vertical_arrow_icon": { type: T.IMAGE, children: string }, + "loom_content_stack_panel/padding_4": { type: T.PANEL, children: string }, + "loom_content_stack_panel/result_item_slot_holder": { type: T.PANEL, children: 'result_item_slot' }, + "loom_content_stack_panel/result_item_slot_holder/result_item_slot": { type: T.INPUT_PANEL, children: string }, + "loom_content_stack_panel/padding_5": { type: T.PANEL, children: string }, + "inventory_scroll_panel": { type: T.PANEL, children: string }, + "pattern_button": { type: T.INPUT_PANEL, children: string }, + "banner_pattern": { type: T.CUSTOM, children: string }, + "pattern_scroll_panel": { type: T.PANEL, children: string }, + "left_panel": { type: T.STACK_PANEL, children: 'gamepad_helpers_and_tabs_holder' | 'content' }, + "left_panel/gamepad_helpers_and_tabs_holder": { type: T.PANEL, children: 'tabs_left_gamepad_helpers' | 'navigation_tabs_holder' }, + "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": { type: T.PANEL, children: string }, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": { type: T.PANEL, children: 'left_navigation_tabs' }, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": { type: T.STACK_PANEL, children: string }, + "left_panel/content": { type: T.INPUT_PANEL, children: 'bg' | 'inventory_scroll_panel' | 'pattern_scroll_panel' }, + "left_panel/content/bg": { type: T.PANEL, children: string }, + "left_panel/content/inventory_scroll_panel": { type: T.PANEL, children: string }, + "left_panel/content/pattern_scroll_panel": { type: T.PANEL, children: string }, + "left_tab_patterns": { type: T.PANEL, children: string }, + "left_tab_inventory": { type: T.PANEL, children: string }, + "left_navigation_tabs": { type: T.STACK_PANEL, children: 'left_tab_patterns' | 'padding' | 'left_tab_inventory' }, + "left_navigation_tabs/left_tab_patterns": { type: T.PANEL, children: string }, + "left_navigation_tabs/padding": { type: T.PANEL, children: string }, + "left_navigation_tabs/left_tab_inventory": { type: T.PANEL, children: string }, + "pocket_hotbar_and_content_panels": { type: T.STACK_PANEL, children: string }, + "loom_panel": { type: T.PANEL, children: 'pocket_hotbar_and_content_panels' | 'container_gamepad_helpers' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'inventory_selected_icon_button' | 'inventory_take_progress_icon_button' | 'flying_item_renderer' }, + "loom_panel/pocket_hotbar_and_content_panels": { type: T.STACK_PANEL, children: string }, + "loom_panel/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "loom_panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "loom_panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "loom_panel/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "loom_panel/inventory_take_progress_icon_button": { type: T.BUTTON, children: string }, + "loom_panel/flying_item_renderer": { type: T.CUSTOM, children: string }, } 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": { type: T.PANEL, children: 'manage_feed_item_scrolling_panel_content' }, + "manage_feed_item_scrolling_panel/manage_feed_item_scrolling_panel_content": { type: T.PANEL, children: string }, + "manage_feed_item_scrolling_panel_content": { type: T.PANEL, children: string }, + "grid_panel": { type: T.STACK_PANEL, children: 'top_spacing_gap' | 'manage_feed_loading_grid_item' | 'manage_feed_grid' | 'spacing_gap2' | 'pagination_panel' }, + "grid_panel/top_spacing_gap": { type: T.PANEL, children: string }, + "grid_panel/manage_feed_loading_grid_item": { type: T.PANEL, children: string }, + "grid_panel/manage_feed_grid": { type: T.GRID, children: string }, + "grid_panel/spacing_gap2": { type: T.PANEL, children: string }, + "grid_panel/pagination_panel": { type: T.PANEL, children: string }, + "pagination_panel": { type: T.PANEL, children: string }, + "manage_feed_grid": { type: T.GRID, children: string }, + "manage_feed_grid_item": { type: T.PANEL, children: 'image_panel_instance' | 'manage_feed_buttons_panel' | 'manage_feed_text_instance' | 'feed_timesince_instance' | 'nr_of_reports' | 'manage_player_pic_panel' | 'manage_feed_gamertag_instance' }, + "manage_feed_grid_item/image_panel_instance": { type: T.PANEL, children: string }, + "manage_feed_grid_item/manage_feed_buttons_panel": { type: T.STACK_PANEL, children: string }, + "manage_feed_grid_item/manage_feed_text_instance": { type: T.LABEL, children: string }, + "manage_feed_grid_item/feed_timesince_instance": { type: T.LABEL, children: string }, + "manage_feed_grid_item/nr_of_reports": { type: T.LABEL, children: string }, + "manage_feed_grid_item/manage_player_pic_panel": { type: T.PANEL, children: string }, + "manage_feed_grid_item/manage_feed_gamertag_instance": { type: T.LABEL, children: string }, + "manage_feed_buttons_panel": { type: T.STACK_PANEL, children: 'ignore_button' | 'delete_button' }, + "manage_feed_buttons_panel/ignore_button": { type: T.BUTTON, children: string }, + "manage_feed_buttons_panel/delete_button": { type: T.BUTTON, children: string }, + "manage_feed_loading_grid_item": { type: T.PANEL, children: 'loading_image_panel' }, + "manage_feed_loading_grid_item/loading_image_panel": { type: T.PANEL, children: string }, + "feed_buttons_panel_loading": { type: T.STACK_PANEL, children: 'like_button_loading' | 'spacing_gap1' | 'comment_button_loading' | 'spacing_gap2' | 'options_button_loading' }, + "feed_buttons_panel_loading/like_button_loading": { type: T.UNKNOWN, children: string }, + "feed_buttons_panel_loading/spacing_gap1": { type: T.PANEL, children: string }, + "feed_buttons_panel_loading/comment_button_loading": { type: T.UNKNOWN, children: string }, + "feed_buttons_panel_loading/spacing_gap2": { type: T.PANEL, children: string }, + "feed_buttons_panel_loading/options_button_loading": { type: T.UNKNOWN, children: string }, + "like_button_loading": { type: T.IMAGE, children: string }, + "comment_button_loading": { type: T.IMAGE, children: string }, + "options_button_loading": { type: T.IMAGE, children: string }, + "player_pic_panel_loading": { type: T.PANEL, children: 'player_gamer_pic_loading' }, + "player_pic_panel_loading/player_gamer_pic_loading": { type: T.UNKNOWN, children: string }, + "player_gamer_pic_loading": { type: T.IMAGE, children: string }, + "loading_image_panel": { type: T.PANEL, children: 'progress_loading_bars' | 'manage_feed_image_loading' | 'no_feed_item_content' }, + "loading_image_panel/progress_loading_bars": { type: T.IMAGE, children: string }, + "loading_image_panel/manage_feed_image_loading": { type: T.IMAGE, children: string }, + "loading_image_panel/no_feed_item_content": { type: T.LABEL, children: string }, + "manage_feed_image_loading": { type: T.IMAGE, children: string }, + "ignore_button": { type: T.BUTTON, children: string }, + "ignore_content_panel": { type: T.PANEL, children: 'ignore_label' }, + "ignore_content_panel/ignore_label": { type: T.LABEL, children: string }, + "delete_button": { type: T.BUTTON, children: string }, + "delete_content_panel": { type: T.PANEL, children: 'delete_label' }, + "delete_content_panel/delete_label": { type: T.LABEL, children: string }, + "manage_feed_image": { type: T.IMAGE, children: string }, + "manage_feed_image_content_panel": { type: T.PANEL, children: 'manage_feed_image' | 'textpost_content' }, + "manage_feed_image_content_panel/manage_feed_image": { type: T.IMAGE, children: string }, + "manage_feed_image_content_panel/textpost_content": { type: T.LABEL, children: string }, + "textpost_content": { type: T.LABEL, children: string }, + "image_panel": { type: T.PANEL, children: 'manage_feed_image_content_panel' }, + "image_panel/manage_feed_image_content_panel": { type: T.PANEL, children: string }, + "manage_player_pic_panel": { type: T.PANEL, children: 'manage_player_gamer_pic' }, + "manage_player_pic_panel/manage_player_gamer_pic": { type: T.CUSTOM, children: string }, + "manage_player_gamer_pic": { type: T.CUSTOM, children: string }, + "content": { type: T.PANEL, children: 'top_bar_gradient' | 'gamepad_helpers' | 'return_button' | 'reported_items_label' | 'manage_feed_item_scrolling_panel_instance' }, + "content/top_bar_gradient": { type: T.CUSTOM, children: string }, + "content/gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "content/return_button": { type: T.BUTTON, children: string }, + "content/reported_items_label": { type: T.LABEL, children: string }, + "content/manage_feed_item_scrolling_panel_instance": { type: T.PANEL, children: string }, + "manage_feed_screen": { type: T.SCREEN, children: string }, + "manage_feed_screen_content": { type: T.PANEL, children: 'transparent_background' | 'container' }, + "manage_feed_screen_content/transparent_background": { type: T.IMAGE, children: string }, + "manage_feed_screen_content/container": { type: T.PANEL, children: 'content' }, + "manage_feed_screen_content/container/content": { type: T.PANEL, children: string }, } 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": { type: T.IMAGE, children: string }, + "clipboard_icon_wrapper": { type: T.PANEL, children: 'icon' }, + "clipboard_icon_wrapper/icon": { type: T.IMAGE, children: string }, + "trash_icon": { type: T.IMAGE, children: string }, + "trash_icon_wrapper": { type: T.PANEL, children: 'icon' | 'progress_loading_bars' }, + "trash_icon_wrapper/icon": { type: T.IMAGE, children: string }, + "trash_icon_wrapper/progress_loading_bars": { type: T.IMAGE, children: string }, + "refresh_icon": { type: T.IMAGE, children: string }, + "refresh_icon_wrapper": { type: T.PANEL, children: 'icon' | 'progress_loading_bars' }, + "refresh_icon_wrapper/icon": { type: T.IMAGE, children: string }, + "refresh_icon_wrapper/progress_loading_bars": { type: T.IMAGE, children: string }, + "section_divider": { type: T.PANEL, children: 'divider_image' }, + "section_divider/divider_image": { type: T.IMAGE, children: string }, + "text_label": { type: T.LABEL, children: string }, + "icon_image": { type: T.IMAGE, children: string }, + "progress_loading_bars": { type: T.IMAGE, children: string }, + "background": { type: T.IMAGE, children: string }, + "black_background_fill": { type: T.IMAGE, children: string }, + "error_pack_secondary_layout": { type: T.PANEL, children: 'black' }, + "error_pack_secondary_layout/black": { type: T.IMAGE, children: 'stack_panel' }, + "error_pack_secondary_layout/black/stack_panel": { type: T.PANEL, children: 'stack_panel' | 'secondary_panel' }, + "error_pack_secondary_layout/black/stack_panel/stack_panel": { type: T.STACK_PANEL, children: 'icon_background' | 'pack_info' | 'button_panel' | 'pad' }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/icon_background": { type: T.IMAGE, children: 'icon' }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/icon_background/icon": { type: T.IMAGE, children: string }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info": { type: T.PANEL, children: 'top' | 'bottom' }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top": { type: T.STACK_PANEL, children: 'title' | 'padding' | 'pack_size' }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/title": { type: T.LABEL, children: string }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/padding": { type: T.PANEL, children: string }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/pack_size": { type: T.LABEL, children: string }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom": { type: T.STACK_PANEL, children: 'description' | 'padding' }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom/description": { type: T.LABEL, children: string }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom/padding": { type: T.PANEL, children: string }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel": { type: T.STACK_PANEL, children: 'top_pad' | 'refresh' | 'pad' | 'delete' }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/top_pad": { type: T.PANEL, children: string }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/refresh": { type: T.PANEL, children: 'button' }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/refresh/button": { type: T.BUTTON, children: string }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/pad": { type: T.PANEL, children: string }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/delete": { type: T.PANEL, children: 'button' }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/delete/button": { type: T.BUTTON, children: string }, + "error_pack_secondary_layout/black/stack_panel/stack_panel/pad": { type: T.PANEL, children: string }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel": { type: T.STACK_PANEL, children: 'padding_0' | 'title_panel' | 'pad_0' | 'padding_1' | 'version_panel' | 'pad_1' | 'padding_2' | 'path_panel' }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_0": { type: T.PANEL, children: string }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel": { type: T.STACK_PANEL, children: 'title_text' | 'space' | 'offset' }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/title_text": { type: T.LABEL, children: string }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/space": { type: T.PANEL, children: string }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/offset": { type: T.PANEL, children: 'title' }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/offset/title": { type: T.LABEL, children: string }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/pad_0": { type: T.PANEL, children: string }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_1": { type: T.PANEL, children: string }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel": { type: T.STACK_PANEL, children: 'version_text' | 'space' | 'offset' }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/version_text": { type: T.LABEL, children: string }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/space": { type: T.PANEL, children: string }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/offset": { type: T.PANEL, children: 'version' }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/offset/version": { type: T.LABEL, children: string }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/pad_1": { type: T.PANEL, children: string }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_2": { type: T.PANEL, children: string }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel": { type: T.STACK_PANEL, children: 'path_text' | 'space' | 'offset' }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/path_text": { type: T.LABEL, children: string }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/space": { type: T.PANEL, children: string }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/offset": { type: T.PANEL, children: 'description' }, + "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/offset/description": { type: T.LABEL, children: string }, + "error_pack_content_layout": { type: T.PANEL, children: 'black' }, + "error_pack_content_layout/black": { type: T.IMAGE, children: 'error_panel' }, + "error_pack_content_layout/black/error_panel": { type: T.STACK_PANEL, children: 'error_header_panel' | 'padding_0' | 'error_text_panel' }, + "error_pack_content_layout/black/error_panel/error_header_panel": { type: T.PANEL, children: 'error_type_panel' | 'button' }, + "error_pack_content_layout/black/error_panel/error_header_panel/error_type_panel": { type: T.LABEL, children: string }, + "error_pack_content_layout/black/error_panel/error_header_panel/button": { type: T.BUTTON, children: string }, + "error_pack_content_layout/black/error_panel/padding_0": { type: T.PANEL, children: string }, + "error_pack_content_layout/black/error_panel/error_text_panel": { type: T.STACK_PANEL, children: 'error_text' | 'space' | 'offset' }, + "error_pack_content_layout/black/error_panel/error_text_panel/error_text": { type: T.LABEL, children: string }, + "error_pack_content_layout/black/error_panel/error_text_panel/space": { type: T.PANEL, children: string }, + "error_pack_content_layout/black/error_panel/error_text_panel/offset": { type: T.PANEL, children: 'error_label' }, + "error_pack_content_layout/black/error_panel/error_text_panel/offset/error_label": { type: T.LABEL, children: string }, + "delete_button": { type: T.BUTTON, children: string }, + "delete_text_button": { type: T.BUTTON, children: string }, + "clipboard_button": { type: T.BUTTON, children: string }, + "refresh_button": { type: T.BUTTON, children: string }, + "refresh_text_button": { type: T.BUTTON, children: string }, + "pack_secondary_info": { type: T.PANEL, children: 'layout' }, + "pack_secondary_info/layout": { type: T.PANEL, children: string }, + "error_content_grid": { type: T.STACK_PANEL, children: string }, + "pack_error_item": { type: T.STACK_PANEL, children: 'secondary' | 'error_header' | 'error' }, + "pack_error_item/secondary": { type: T.PANEL, children: string }, + "pack_error_item/error_header": { type: T.PANEL, children: 'error_text' }, + "pack_error_item/error_header/error_text": { type: T.LABEL, children: string }, + "pack_error_item/error": { type: T.STACK_PANEL, children: string }, + "pack_error_group": { type: T.STACK_PANEL, children: 'top_padding' | 'errors' | 'padding' }, + "pack_error_group/top_padding": { type: T.PANEL, children: string }, + "pack_error_group/errors": { type: T.STACK_PANEL, children: string }, + "pack_error_group/padding": { type: T.PANEL, children: string }, + "common_scrolling_panel": { type: T.PANEL, children: string }, + "common_content": { type: T.INPUT_PANEL, children: string }, + "scrolling_offsets": { type: T.PANEL, children: string }, + "manifest_validation_scroll_content": { type: T.INPUT_PANEL, children: 'scrolling_panel' }, + "manifest_validation_scroll_content/scrolling_panel": { type: T.PANEL, children: string }, + "common_scroll_panel": { type: T.PANEL, children: string }, + "manifest_validation_scroll_panel": { type: T.PANEL, children: 'pack_error_group' }, + "manifest_validation_scroll_panel/pack_error_group": { type: T.STACK_PANEL, children: string }, + "manifest_validation_screen": { type: T.SCREEN, children: string }, + "manifest_validation_screen_content": { type: T.PANEL, children: 'background' }, + "manifest_validation_screen_content/background": { type: T.PANEL, children: string }, } export type SdlLabelType = { - "sdl_label_factory": T.STACK_PANEL, - "sdl_label": T.LABEL, - "sdl_mc_ten_label": T.LABEL, + "sdl_label_factory": { type: T.STACK_PANEL, children: string }, + "sdl_label": { type: T.LABEL, children: string }, + "sdl_mc_ten_label": { type: T.LABEL, children: string }, } 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": { type: T.PANEL, children: 'container_panel' }, + "sdl_dropdown_rows/container_panel": { type: T.STACK_PANEL, children: 'toggle' | 'pad' }, + "sdl_dropdown_rows/container_panel/toggle": { type: T.PANEL, children: string }, + "sdl_dropdown_rows/container_panel/pad": { type: T.PANEL, children: string }, + "sdl_rows_toggle": { type: T.PANEL, children: string }, } 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": { type: T.STACK_PANEL, children: string }, + "buffer_panel": { type: T.PANEL, children: string }, + "single_image": { type: T.PANEL, children: 'image_with_border' | 'image_selector' }, + "single_image/image_with_border": { type: T.PANEL, children: 'screenshot_image' | 'dark_border' | 'progress_loading' }, + "single_image/image_with_border/screenshot_image": { type: T.IMAGE, children: string }, + "single_image/image_with_border/dark_border": { type: T.IMAGE, children: string }, + "single_image/image_with_border/progress_loading": { type: T.PANEL, children: string }, + "single_image/image_selector": { type: T.BUTTON, children: string }, + "double_image": { type: T.PANEL, children: string }, + "triple_image_with_buffer": { type: T.STACK_PANEL, children: 'buffer_panel_in_1' | 'buffer_panel_in_2' | 'triple_image' | 'buffer_panel_out_1' | 'buffer_panel_out_2' }, + "triple_image_with_buffer/buffer_panel_in_1": { type: T.PANEL, children: string }, + "triple_image_with_buffer/buffer_panel_in_2": { type: T.PANEL, children: string }, + "triple_image_with_buffer/triple_image": { type: T.PANEL, children: string }, + "triple_image_with_buffer/buffer_panel_out_1": { type: T.PANEL, children: string }, + "triple_image_with_buffer/buffer_panel_out_2": { type: T.PANEL, children: string }, } 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": { type: T.STACK_PANEL, children: string }, + "sdl_header_component_factory": { type: T.STACK_PANEL, children: string }, + "label_button": { type: T.BUTTON, children: string }, + "sdl_header_component_panel": { type: T.PANEL, children: 'header_background' | 'header_internals' | 'header_highlight' | 'text_row_header_text' }, + "sdl_header_component_panel/header_background": { type: T.IMAGE, children: string }, + "sdl_header_component_panel/header_internals": { type: T.BUTTON, children: string }, + "sdl_header_component_panel/header_highlight": { type: T.IMAGE, children: string }, + "sdl_header_component_panel/text_row_header_text": { type: T.STACK_PANEL, children: string }, + "sdl_text_row_component_panel": { type: T.PANEL, children: 'text_background' | 'text_row_selector' | 'text_row_background' | 'text_row_component_text' }, + "sdl_text_row_component_panel/text_background": { type: T.IMAGE, children: string }, + "sdl_text_row_component_panel/text_row_selector": { type: T.BUTTON, children: string }, + "sdl_text_row_component_panel/text_row_background": { type: T.IMAGE, children: string }, + "sdl_text_row_component_panel/text_row_component_text": { type: T.STACK_PANEL, children: string }, + "solo_text_row": { type: T.STACK_PANEL, children: 'buffer_panel_front' | 'headercomp_and_textcomp_panel' | 'buffer_panel_back' }, + "solo_text_row/buffer_panel_front": { type: T.PANEL, children: string }, + "solo_text_row/headercomp_and_textcomp_panel": { type: T.STACK_PANEL, children: 'text_row_header_text_panel' | 'text_row_text_panel' }, + "solo_text_row/headercomp_and_textcomp_panel/text_row_header_text_panel": { type: T.PANEL, children: string }, + "solo_text_row/headercomp_and_textcomp_panel/text_row_text_panel": { type: T.PANEL, children: string }, + "solo_text_row/buffer_panel_back": { type: T.PANEL, children: string }, } 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": { type: T.IMAGE, children: string }, + "main_background": { type: T.IMAGE, children: string }, + "button_background": { type: T.IMAGE, children: string }, + "effect_name": { type: T.LABEL, children: string }, + "effect_timer": { type: T.LABEL, children: string }, + "effect_icon": { type: T.IMAGE, children: string }, + "mob_effect_grid_panel": { type: T.PANEL, children: 'mob_effect_grid' }, + "mob_effect_grid_panel/mob_effect_grid": { type: T.GRID, children: string }, + "mob_effect_grid": { type: T.GRID, children: string }, + "mob_effect_grid_item": { type: T.PANEL, children: 'bg' | 'name' | 'timer' | 'icon' }, + "mob_effect_grid_item/bg": { type: T.IMAGE, children: string }, + "mob_effect_grid_item/name": { type: T.LABEL, children: string }, + "mob_effect_grid_item/timer": { type: T.LABEL, children: string }, + "mob_effect_grid_item/icon": { type: T.IMAGE, children: string }, + "mob_effect_list_content_panel": { type: T.PANEL, children: 'scrolling_panel' }, + "mob_effect_list_content_panel/scrolling_panel": { type: T.PANEL, children: string }, + "mob_effect_screen_close_button": { type: T.BUTTON, children: string }, + "close_button_panel": { type: T.PANEL, children: 'bg' | 'close_button' }, + "close_button_panel/bg": { type: T.IMAGE, children: string }, + "close_button_panel/close_button": { type: T.BUTTON, children: string }, + "mob_effect_content": { type: T.PANEL, children: 'bg' | 'close_panel' | 'content_panel' }, + "mob_effect_content/bg": { type: T.IMAGE, children: string }, + "mob_effect_content/close_panel": { type: T.PANEL, children: string }, + "mob_effect_content/content_panel": { type: T.PANEL, children: string }, + "main_screen": { type: T.PANEL, children: 'main_screen' }, + "main_screen/main_screen": { type: T.PANEL, children: string }, + "mob_effect_screen": { type: T.SCREEN, children: string }, } 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": { type: T.IMAGE, children: string }, + "modal_title_text": { type: T.LABEL, children: string }, + "modal_label_text": { type: T.STACK_PANEL, children: 'padding' | 'text' }, + "modal_label_text/padding": { type: T.PANEL, children: string }, + "modal_label_text/text": { type: T.LABEL, children: string }, + "modal_label_panel": { type: T.PANEL, children: string }, + "modal_left_button": { type: T.BUTTON, children: string }, + "modal_middle_button": { type: T.BUTTON, children: string }, + "modal_rightcancel_button": { type: T.BUTTON, children: string }, + "three_buttons_panel": { type: T.PANEL, children: 'left' | 'middle' | 'right' }, + "three_buttons_panel/left": { type: T.BUTTON, children: string }, + "three_buttons_panel/middle": { type: T.BUTTON, children: string }, + "three_buttons_panel/right": { type: T.BUTTON, children: string }, + "two_buttons_panel": { type: T.PANEL, children: 'left' | 'right' }, + "two_buttons_panel/left": { type: T.BUTTON, children: string }, + "two_buttons_panel/right": { type: T.BUTTON, children: string }, + "single_button_panel": { type: T.PANEL, children: 'left' }, + "single_button_panel/left": { type: T.BUTTON, children: string }, + "modal_dialog_with_buttons": { type: T.PANEL, children: 'background_with_buttons' | 'title' | 'text_with_buttons' | 'button_panel' }, + "modal_dialog_with_buttons/background_with_buttons": { type: T.PANEL, children: string }, + "modal_dialog_with_buttons/title": { type: T.LABEL, children: string }, + "modal_dialog_with_buttons/text_with_buttons": { type: T.PANEL, children: string }, + "modal_dialog_with_buttons/button_panel": { type: T.UNKNOWN, children: string }, + "modal_input_panel": { type: T.INPUT_PANEL, children: 'black_tint_image' }, + "modal_input_panel/black_tint_image": { type: T.IMAGE, children: string }, + "user_confirm_dialog_screen_content": { type: T.PANEL, children: 'modal_input' }, + "user_confirm_dialog_screen_content/modal_input": { type: T.INPUT_PANEL, children: 'modal_bg_buttons' }, + "user_confirm_dialog_screen_content/modal_input/modal_bg_buttons": { type: T.PANEL, children: string }, + "user_confirm_dialog_screen": { type: T.SCREEN, children: string }, } 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": { type: T.EDIT_BOX, children: string }, + "text_edit_control": { type: T.EDIT_BOX, children: string }, + "label_padding": { type: T.PANEL, children: string }, + "main_stack_panel": { type: T.STACK_PANEL, children: string }, + "skin_button": { type: T.BUTTON, children: string }, + "skin_model": { type: T.CUSTOM, children: string }, + "skin_model_clipper": { type: T.PANEL, children: string }, + "skins_grid_item": { type: T.PANEL, children: 'clip' | 'button' | 'selectFrame' }, + "skins_grid_item/clip": { type: T.PANEL, children: 'model' }, + "skins_grid_item/clip/model": { type: T.CUSTOM, children: string }, + "skins_grid_item/button": { type: T.BUTTON, children: string }, + "skins_grid_item/selectFrame": { type: T.IMAGE, children: string }, + "skins_grid": { type: T.GRID, children: string }, + "cycle_pack_button": { type: T.BUTTON, children: string }, + "cycle_pack_left_button": { type: T.BUTTON, children: string }, + "cycle_pack_right_button": { type: T.BUTTON, children: string }, + "banner_fill": { type: T.IMAGE, children: string }, + "skin_picker": { type: T.IMAGE, children: 'left' | 'sg' | 'right' }, + "skin_picker/left": { type: T.BUTTON, children: string }, + "skin_picker/sg": { type: T.GRID, children: string }, + "skin_picker/right": { type: T.BUTTON, children: string }, + "name_edit": { type: T.EDIT_BOX, children: string }, + "advanced_button": { type: T.PANEL, children: 'button' }, + "advanced_button/button": { type: T.BUTTON, children: string }, + "dialog_button": { type: T.PANEL, children: 'button' }, + "dialog_button/button": { type: T.BUTTON, children: string }, + "basic_stack_panel": { type: T.STACK_PANEL, children: 'top_pad' | 'name_label' | 'name_padding' | 'name_edit' | 'dialog_pre_padding' | 'dialog_label' | 'dialog_post_padding' | 'dialog__padding' | 'dialog_button' | 'appearance_pre_padding' | 'appearance_label' | 'appearance_post_padding' | 'skins' | 'advanced_button' }, + "basic_stack_panel/top_pad": { type: T.PANEL, children: string }, + "basic_stack_panel/name_label": { type: T.LABEL, children: string }, + "basic_stack_panel/name_padding": { type: T.PANEL, children: string }, + "basic_stack_panel/name_edit": { type: T.EDIT_BOX, children: string }, + "basic_stack_panel/dialog_pre_padding": { type: T.PANEL, children: string }, + "basic_stack_panel/dialog_label": { type: T.LABEL, children: string }, + "basic_stack_panel/dialog_post_padding": { type: T.PANEL, children: string }, + "basic_stack_panel/dialog__padding": { type: T.PANEL, children: string }, + "basic_stack_panel/dialog_button": { type: T.PANEL, children: string }, + "basic_stack_panel/appearance_pre_padding": { type: T.PANEL, children: string }, + "basic_stack_panel/appearance_label": { type: T.LABEL, children: string }, + "basic_stack_panel/appearance_post_padding": { type: T.PANEL, children: string }, + "basic_stack_panel/skins": { type: T.IMAGE, children: string }, + "basic_stack_panel/advanced_button": { type: T.PANEL, children: string }, + "basic_content": { type: T.PANEL, children: 'basic' }, + "basic_content/basic": { type: T.STACK_PANEL, children: string }, + "advanced_stack_panel": { type: T.STACK_PANEL, children: 'top_pad' | 'add_help_text' | 'middle_pad' | 'actions' | 'add_buttons' | 'bottom_pad' }, + "advanced_stack_panel/top_pad": { type: T.PANEL, children: string }, + "advanced_stack_panel/add_help_text": { type: T.STACK_PANEL, children: string }, + "advanced_stack_panel/middle_pad": { type: T.PANEL, children: string }, + "advanced_stack_panel/actions": { type: T.STACK_PANEL, children: string }, + "advanced_stack_panel/add_buttons": { type: T.STACK_PANEL, children: string }, + "advanced_stack_panel/bottom_pad": { type: T.PANEL, children: string }, + "action_title": { type: T.LABEL, children: string }, + "plus_icon": { type: T.IMAGE, children: string }, + "plus_button": { type: T.BUTTON, children: string }, + "action_text_edit": { type: T.EDIT_BOX, children: string }, + "maximized_action_edit": { type: T.EDIT_BOX, children: string }, + "action_edit": { type: T.STACK_PANEL, children: 'text_edit' | 'expand' }, + "action_edit/text_edit": { type: T.EDIT_BOX, children: string }, + "action_edit/expand": { type: T.BUTTON, children: string }, + "button_name_edit": { type: T.EDIT_BOX, children: string }, + "command_toggle": { type: T.TOGGLE, children: string }, + "command_toggle_panel": { type: T.PANEL, children: 'command_toggle' | 'toggle_label' }, + "command_toggle_panel/command_toggle": { type: T.TOGGLE, children: string }, + "command_toggle_panel/toggle_label": { type: T.LABEL, children: string }, + "action_mode": { type: T.STACK_PANEL, children: 'button_mode_toggle_panel' | 'on_enter_toggle_panel' | 'on_exit_toggle_panel' }, + "action_mode/button_mode_toggle_panel": { type: T.PANEL, children: string }, + "action_mode/on_enter_toggle_panel": { type: T.PANEL, children: string }, + "action_mode/on_exit_toggle_panel": { type: T.PANEL, children: string }, + "button_name_label": { type: T.LABEL, children: string }, + "url_notifications": { type: T.STACK_PANEL, children: 'empty_uri_warning' | 'invalid_uri_warning' }, + "url_notifications/empty_uri_warning": { type: T.IMAGE, children: string }, + "url_notifications/invalid_uri_warning": { type: T.IMAGE, children: string }, + "action_template": { type: T.STACK_PANEL, children: 'title' | 'label_pad' | 'edit' | 'edit_pad' | 'url_warning' | 'url_pad' | 'action_mode' | 'mode_pad' | 'button_name_label' | 'button_name' }, + "action_template/title": { type: T.LABEL, children: string }, + "action_template/label_pad": { type: T.PANEL, children: string }, + "action_template/edit": { type: T.STACK_PANEL, children: string }, + "action_template/edit_pad": { type: T.PANEL, children: string }, + "action_template/url_warning": { type: T.STACK_PANEL, children: string }, + "action_template/url_pad": { type: T.PANEL, children: string }, + "action_template/action_mode": { type: T.STACK_PANEL, children: string }, + "action_template/mode_pad": { type: T.PANEL, children: string }, + "action_template/button_name_label": { type: T.LABEL, children: string }, + "action_template/button_name": { type: T.EDIT_BOX, children: string }, + "action_command": { type: T.STACK_PANEL, children: string }, + "action_url": { type: T.STACK_PANEL, children: string }, + "padded_action": { type: T.STACK_PANEL, children: 'action' | 'padding' }, + "padded_action/action": { type: T.IMAGE, children: string }, + "padded_action/padding": { type: T.PANEL, children: string }, + "action": { type: T.IMAGE, children: 'trash' | 'command' | 'url' }, + "action/trash": { type: T.BUTTON, children: string }, + "action/command": { type: T.STACK_PANEL, children: string }, + "action/url": { type: T.STACK_PANEL, children: string }, + "action_panel": { type: T.STACK_PANEL, children: string }, + "add_button": { type: T.BUTTON, children: string }, + "help_label": { type: T.LABEL, children: string }, + "add_help_section": { type: T.STACK_PANEL, children: 'text_url' | 'padding' | 'text_command' }, + "add_help_section/text_url": { type: T.PANEL, children: 'tts_border' | 'wrapper_panel_url' }, + "add_help_section/text_url/tts_border": { type: T.BUTTON, children: string }, + "add_help_section/text_url/wrapper_panel_url": { type: T.STACK_PANEL, children: 'text_url_a' | 'padding' | 'text_url_b' }, + "add_help_section/text_url/wrapper_panel_url/text_url_a": { type: T.LABEL, children: string }, + "add_help_section/text_url/wrapper_panel_url/padding": { type: T.PANEL, children: string }, + "add_help_section/text_url/wrapper_panel_url/text_url_b": { type: T.LABEL, children: string }, + "add_help_section/padding": { type: T.PANEL, children: string }, + "add_help_section/text_command": { type: T.PANEL, children: 'tts_border' | 'wrapper_panel_command' }, + "add_help_section/text_command/tts_border": { type: T.BUTTON, children: string }, + "add_help_section/text_command/wrapper_panel_command": { type: T.STACK_PANEL, children: 'text_command_a' | 'padding' | 'text_command_b' }, + "add_help_section/text_command/wrapper_panel_command/text_command_a": { type: T.LABEL, children: string }, + "add_help_section/text_command/wrapper_panel_command/padding": { type: T.PANEL, children: string }, + "add_help_section/text_command/wrapper_panel_command/text_command_b": { type: T.LABEL, children: string }, + "add_help_text": { type: T.STACK_PANEL, children: string }, + "add_buttons": { type: T.STACK_PANEL, children: 'add_url' | 'padding' | 'add_command' }, + "add_buttons/add_url": { type: T.BUTTON, children: string }, + "add_buttons/padding": { type: T.PANEL, children: string }, + "add_buttons/add_command": { type: T.BUTTON, children: string }, + "advanced_scrolling_panel": { type: T.PANEL, children: string }, + "advanced_scrolling_content": { type: T.PANEL, children: 'advanced' }, + "advanced_scrolling_content/advanced": { type: T.STACK_PANEL, children: string }, + "message_model": { type: T.PANEL, children: 'model' }, + "message_model/model": { type: T.CUSTOM, children: string }, + "clipped_message_model": { type: T.PANEL, children: 'model' }, + "clipped_message_model/model": { type: T.PANEL, children: string }, + "message_model_window": { type: T.IMAGE, children: 'model' | 'immersive_reader_button' }, + "message_model_window/model": { type: T.PANEL, children: string }, + "message_model_window/immersive_reader_button": { type: T.BUTTON, children: string }, + "edit_box_background": { type: T.PANEL, children: string }, + "npc_message": { type: T.EDIT_BOX, children: 'label' | 'visibility_panel' | 'background' }, + "npc_message/label": { type: T.LABEL, children: string }, + "npc_message/visibility_panel": { type: T.PANEL, children: 'place_holder' }, + "npc_message/visibility_panel/place_holder": { type: T.LABEL, children: string }, + "npc_message/background": { type: T.PANEL, children: string }, + "text_scroll": { type: T.PANEL, children: string }, + "student_message_bubble": { type: T.IMAGE, children: 'dialog_panel' }, + "student_message_bubble/dialog_panel": { type: T.PANEL, children: 'text_scroll' }, + "student_message_bubble/dialog_panel/text_scroll": { type: T.PANEL, children: string }, + "bubble_point": { type: T.IMAGE, children: string }, + "student_message_section": { type: T.PANEL, children: 'model' | 'point' | 'message' }, + "student_message_section/model": { type: T.IMAGE, children: string }, + "student_message_section/point": { type: T.IMAGE, children: string }, + "student_message_section/message": { type: T.IMAGE, children: string }, + "student_button_label": { type: T.LABEL, children: string }, + "student_button_label_panel": { type: T.PANEL, children: 'url' | 'command' }, + "student_button_label_panel/url": { type: T.LABEL, children: string }, + "student_button_label_panel/command": { type: T.LABEL, children: string }, + "student_button": { type: T.PANEL, children: 'button' }, + "student_button/button": { type: T.BUTTON, children: string }, + "student_buttons": { type: T.PANEL, children: 'buttons' }, + "student_buttons/buttons": { type: T.STACK_PANEL, children: 'actions' }, + "student_buttons/buttons/actions": { type: T.GRID, children: string }, + "student_stack_panel": { type: T.STACK_PANEL, children: 'top_pad' | 'message' | 'message_pad' | 'buttons' }, + "student_stack_panel/top_pad": { type: T.PANEL, children: string }, + "student_stack_panel/message": { type: T.PANEL, children: string }, + "student_stack_panel/message_pad": { type: T.PANEL, children: string }, + "student_stack_panel/buttons": { type: T.PANEL, children: string }, + "student_view_content": { type: T.PANEL, children: 'student' | 'close' }, + "student_view_content/student": { type: T.STACK_PANEL, children: string }, + "student_view_content/close": { type: T.PANEL, children: string }, + "close_button_base": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "close_button_base/default": { type: T.PANEL, children: string }, + "close_button_base/hover": { type: T.PANEL, children: string }, + "close_button_base/pressed": { type: T.PANEL, children: string }, + "x_close_button": { type: T.BUTTON, children: string }, + "ignorable_x_close_button": { type: T.PANEL, children: 'button' }, + "ignorable_x_close_button/button": { type: T.BUTTON, children: string }, + "close_button_holder": { type: T.PANEL, children: 'close_basic' | 'close_student_edit' | 'close_student' | 'close_maximized_action_edit' | 'close_advanced' }, + "close_button_holder/close_basic": { type: T.BUTTON, children: string }, + "close_button_holder/close_student_edit": { type: T.PANEL, children: string }, + "close_button_holder/close_student": { type: T.PANEL, children: string }, + "close_button_holder/close_maximized_action_edit": { type: T.BUTTON, children: string }, + "close_button_holder/close_advanced": { type: T.BUTTON, children: string }, + "main_content": { type: T.PANEL, children: 'basic' | 'advanced' | 'maximized_action_edit' | 'close' }, + "main_content/basic": { type: T.PANEL, children: string }, + "main_content/advanced": { type: T.PANEL, children: string }, + "main_content/maximized_action_edit": { type: T.EDIT_BOX, children: string }, + "main_content/close": { type: T.PANEL, children: string }, + "root_panel": { type: T.PANEL, children: string }, + "gamepad_helper_exit_text": { type: T.LABEL, children: string }, + "close_text": { type: T.STACK_PANEL, children: string }, + "npc_screen_contents": { type: T.PANEL, children: 'teacher' | 'student' | 'npc_screen_close' }, + "npc_screen_contents/teacher": { type: T.PANEL, children: string }, + "npc_screen_contents/student": { type: T.PANEL, children: string }, + "npc_screen_contents/npc_screen_close": { type: T.STACK_PANEL, children: string }, + "npc_screen": { type: T.SCREEN, children: string }, } 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": { type: T.BUTTON, children: string }, + "online_safety_back_button": { type: T.BUTTON, children: string }, + "online_safety_description": { type: T.LABEL, children: string }, + "ip_safety_description": { type: T.LABEL, children: string }, + "online_safety_label_panel": { type: T.PANEL, children: string }, + "ip_safety_label_panel": { type: T.PANEL, children: string }, + "do_not_show_checkbox": { type: T.TOGGLE, children: 'header_description_stack_panel' }, + "do_not_show_checkbox/header_description_stack_panel": { type: T.STACK_PANEL, children: 'checkbox_visuals' | 'buffer_panel' | 'another_panel' }, + "do_not_show_checkbox/header_description_stack_panel/checkbox_visuals": { type: T.PANEL, children: string }, + "do_not_show_checkbox/header_description_stack_panel/buffer_panel": { type: T.PANEL, children: 'label' }, + "do_not_show_checkbox/header_description_stack_panel/buffer_panel/label": { type: T.LABEL, children: string }, + "do_not_show_checkbox/header_description_stack_panel/another_panel": { type: T.PANEL, children: string }, + "online_safety_dialog": { type: T.PANEL, children: string }, + "ip_safety_dialog": { type: T.PANEL, children: string }, + "gamepad_helpers": { type: T.PANEL, children: 'gamepad_helper_a' }, + "gamepad_helpers/gamepad_helper_a": { type: T.STACK_PANEL, children: string }, + "online_safety_screen": { type: T.SCREEN, children: string }, + "online_safety_screen_content": { type: T.PANEL, children: 'online_safety_dialog' | 'gamepad_helpers' }, + "online_safety_screen_content/online_safety_dialog": { type: T.PANEL, children: string }, + "online_safety_screen_content/gamepad_helpers": { type: T.PANEL, children: string }, + "ip_safety_screen": { type: T.SCREEN, children: string }, + "ip_safety_screen_content": { type: T.PANEL, children: 'ip_safety_dialog' | 'gamepad_helpers' }, + "ip_safety_screen_content/ip_safety_dialog": { type: T.PANEL, children: string }, + "ip_safety_screen_content/gamepad_helpers": { type: T.PANEL, children: string }, } 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": { type: T.IMAGE, children: string }, + "screen": { type: T.SCREEN, children: string }, + "main_screen_content": { type: T.PANEL, children: string }, + "pack_scroll_panel": { type: T.PANEL, children: string }, + "scrolling_content": { type: T.STACK_PANEL, children: 'content_tiering_panel' | 'generated_form' }, + "scrolling_content/content_tiering_panel": { type: T.STACK_PANEL, children: string }, + "scrolling_content/generated_form": { type: T.STACK_PANEL, children: string }, + "content_tiering_panel": { type: T.STACK_PANEL, children: 'label_panel' | 'slider_panel' | 'incompatible_label_panel' }, + "content_tiering_panel/label_panel": { type: T.PANEL, children: 'content_tier_label' | 'unsupported_content_tier_label' }, + "content_tiering_panel/label_panel/content_tier_label": { type: T.LABEL, children: string }, + "content_tiering_panel/label_panel/unsupported_content_tier_label": { type: T.LABEL, children: string }, + "content_tiering_panel/slider_panel": { type: T.PANEL, children: 'content_tier_slider' }, + "content_tiering_panel/slider_panel/content_tier_slider": { type: T.SLIDER, children: string }, + "content_tiering_panel/incompatible_label_panel": { type: T.PANEL, children: 'label' }, + "content_tiering_panel/incompatible_label_panel/label": { type: T.LABEL, children: string }, } 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": { type: T.PANEL, children: 'pan_left' | 'screenshot' | 'pan_right' }, + "panorama_view/pan_left": { type: T.BUTTON, children: string }, + "panorama_view/screenshot": { type: T.INPUT_PANEL, children: string }, + "panorama_view/pan_right": { type: T.BUTTON, children: string }, + "panorama_input_panel": { type: T.INPUT_PANEL, children: 'image_border' }, + "panorama_input_panel/image_border": { type: T.IMAGE, children: 'panorama_key_art' | 'progress_loading' }, + "panorama_input_panel/image_border/panorama_key_art": { type: T.CUSTOM, children: string }, + "panorama_input_panel/image_border/progress_loading": { type: T.PANEL, children: string }, + "pan_left_button": { type: T.BUTTON, children: string }, + "pan_right_button": { type: T.BUTTON, children: string }, } 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": { type: T.IMAGE, children: string }, + "image_with_background": { type: T.IMAGE, children: 'image' }, + "image_with_background/image": { type: T.UNKNOWN, children: 'loading_animation' }, + "image_with_background/image/loading_animation": { type: T.PANEL, children: string }, + "white_image": { type: T.IMAGE, children: string }, + "patch_main_image": { type: T.IMAGE, children: string }, + "store_image": { type: T.IMAGE, children: string }, + "patch_notes_header_background": { type: T.PANEL, children: 'black_background' }, + "patch_notes_header_background/black_background": { type: T.IMAGE, children: 'content' }, + "patch_notes_header_background/black_background/content": { type: T.UNKNOWN, children: string }, + "button_label_panel": { type: T.PANEL, children: 'text_label' }, + "button_label_panel/text_label": { type: T.LABEL, children: string }, + "button_content": { type: T.PANEL, children: 'button_label2' }, + "button_content/button_label2": { type: T.PANEL, children: string }, + "patch_image": { type: T.IMAGE, children: string }, + "patch_notes_header_content_without_offer": { type: T.PANEL, children: 'patch_image' }, + "patch_notes_header_content_without_offer/patch_image": { type: T.IMAGE, children: string }, + "patch_notes_header_content_with_offer": { type: T.STACK_PANEL, children: 'patch_image' | 'padding' | 'store_item_section' }, + "patch_notes_header_content_with_offer/patch_image": { type: T.IMAGE, children: string }, + "patch_notes_header_content_with_offer/padding": { type: T.PANEL, children: string }, + "patch_notes_header_content_with_offer/store_item_section": { type: T.STACK_PANEL, children: 'store_image' | 'padding' | 'store_button' }, + "patch_notes_header_content_with_offer/store_item_section/store_image": { type: T.IMAGE, children: string }, + "patch_notes_header_content_with_offer/store_item_section/padding": { type: T.PANEL, children: string }, + "patch_notes_header_content_with_offer/store_item_section/store_button": { type: T.PANEL, children: string }, + "store_button": { type: T.PANEL, children: 'store_button' | 'loading_animation' }, + "store_button/store_button": { type: T.BUTTON, children: string }, + "store_button/loading_animation": { type: T.BUTTON, children: string }, + "patch_notes_header": { type: T.PANEL, children: 'patch_notes_background' }, + "patch_notes_header/patch_notes_background": { type: T.PANEL, children: string }, + "scroll_content": { type: T.STACK_PANEL, children: 'padding_0' | 'patch_notes_header' | 'padding_1' | 'tts_label_wrapper' }, + "scroll_content/padding_0": { type: T.PANEL, children: string }, + "scroll_content/patch_notes_header": { type: T.PANEL, children: string }, + "scroll_content/padding_1": { type: T.PANEL, children: string }, + "scroll_content/tts_label_wrapper": { type: T.PANEL, children: string }, + "patch_notes_panel": { type: T.PANEL, children: 'patch_notes_text' }, + "patch_notes_panel/patch_notes_text": { type: T.LABEL, children: 'loading_animation' }, + "patch_notes_panel/patch_notes_text/loading_animation": { type: T.PANEL, children: string }, + "patch_notes_content": { type: T.PANEL, children: 'scrolling_panel' }, + "patch_notes_content/scrolling_panel": { type: T.PANEL, children: string }, + "continue_button": { type: T.BUTTON, children: string }, + "patch_notes_dialog": { type: T.PANEL, children: string }, + "patch_notes_screen": { type: T.SCREEN, children: string }, + "sunsetting_button_panel": { type: T.STACK_PANEL, children: 'padding_0' | 'more_info_button' | 'padding_1' | 'continue_button' | 'padding_2' | 'sunsetting_toggle_panel' }, + "sunsetting_button_panel/padding_0": { type: T.PANEL, children: string }, + "sunsetting_button_panel/more_info_button": { type: T.BUTTON, children: string }, + "sunsetting_button_panel/padding_1": { type: T.PANEL, children: string }, + "sunsetting_button_panel/continue_button": { type: T.BUTTON, children: string }, + "sunsetting_button_panel/padding_2": { type: T.PANEL, children: string }, + "sunsetting_button_panel/sunsetting_toggle_panel": { type: T.TOGGLE, children: 'header_description_stack_panel' }, + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel": { type: T.STACK_PANEL, children: 'checkbox_visuals' | 'buffer_panel' | 'another_panel' }, + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/checkbox_visuals": { type: T.PANEL, children: string }, + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/buffer_panel": { type: T.PANEL, children: 'label' }, + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/buffer_panel/label": { type: T.LABEL, children: string }, + "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/another_panel": { type: T.PANEL, children: string }, + "sunsetting_content": { type: T.PANEL, children: 'scrolling_panel' }, + "sunsetting_content/scrolling_panel": { type: T.PANEL, children: string }, + "sunsetting_dialog": { type: T.PANEL, children: string }, + "sunsetting_screen": { type: T.SCREEN, children: string }, } 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": { type: T.IMAGE, children: string }, + "feedback_icon": { type: T.IMAGE, children: string }, + "change_skin_icon": { type: T.IMAGE, children: string }, + "take_screenshot_icon": { type: T.IMAGE, children: string }, + "settings_icon": { type: T.IMAGE, children: string }, + "achievements_icon": { type: T.IMAGE, children: string }, + "alex_icon": { type: T.IMAGE, children: string }, + "profile_gamerpic": { type: T.CUSTOM, children: string }, + "button_x": { type: T.STACK_PANEL, children: string }, + "dressing_room_controller_button_content": { type: T.PANEL, children: 'button_x' | 'button_label_panel' }, + "dressing_room_controller_button_content/button_x": { type: T.STACK_PANEL, children: string }, + "dressing_room_controller_button_content/button_label_panel": { type: T.PANEL, children: 'button_label_text_left' }, + "dressing_room_controller_button_content/button_label_panel/button_label_text_left": { type: T.LABEL, children: string }, + "controller_button_label": { type: T.LABEL, children: string }, + "column_frame": { type: T.PANEL, children: string }, + "dressing_room_button_gamepad": { type: T.BUTTON, children: string }, + "dressing_room_button": { type: T.BUTTON, children: string }, + "profile_button_content": { type: T.STACK_PANEL, children: 'button_offset_wrapper' | 'gamerpic_offset_wrapper' | 'padding_middle' | 'vertically_central_text' | 'padding_right' }, + "profile_button_content/button_offset_wrapper": { type: T.PANEL, children: 'button_x' }, + "profile_button_content/button_offset_wrapper/button_x": { type: T.STACK_PANEL, children: string }, + "profile_button_content/gamerpic_offset_wrapper": { type: T.PANEL, children: 'gamerpic_with_border' }, + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border": { type: T.PANEL, children: 'gamerpic' | 'alex_icon' | 'border_black' }, + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/gamerpic": { type: T.CUSTOM, children: string }, + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/alex_icon": { type: T.IMAGE, children: string }, + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/border_black": { type: T.IMAGE, children: string }, + "profile_button_content/padding_middle": { type: T.PANEL, children: string }, + "profile_button_content/vertically_central_text": { type: T.STACK_PANEL, children: 'top_padding' | 'profile_button_label' }, + "profile_button_content/vertically_central_text/top_padding": { type: T.PANEL, children: string }, + "profile_button_content/vertically_central_text/profile_button_label": { type: T.LABEL, children: string }, + "profile_button_content/padding_right": { type: T.PANEL, children: string }, + "profile_button": { type: T.BUTTON, children: string }, + "skin_viewer_panel": { type: T.INPUT_PANEL, children: 'paper_doll_panel' | 'paper_doll_name_tag' }, + "skin_viewer_panel/paper_doll_panel": { type: T.PANEL, children: 'paper_doll' }, + "skin_viewer_panel/paper_doll_panel/paper_doll": { type: T.CUSTOM, children: string }, + "skin_viewer_panel/paper_doll_name_tag": { type: T.CUSTOM, children: string }, + "skin_panel": { type: T.PANEL, children: 'interior' }, + "skin_panel/interior": { type: T.STACK_PANEL, children: string }, + "skin_panel_interior": { type: T.STACK_PANEL, children: 'offset_panel' | 'fill_1' | 'change_profile_panel' }, + "skin_panel_interior/offset_panel": { type: T.PANEL, children: 'viewer_panel' }, + "skin_panel_interior/offset_panel/viewer_panel": { type: T.INPUT_PANEL, children: string }, + "skin_panel_interior/fill_1": { type: T.PANEL, children: string }, + "skin_panel_interior/change_profile_panel": { type: T.STACK_PANEL, children: 'centering_panel_1' | 'centering_panel_2' | 'centering_panel_3' }, + "skin_panel_interior/change_profile_panel/centering_panel_1": { type: T.PANEL, children: 'dressing_room_button' }, + "skin_panel_interior/change_profile_panel/centering_panel_1/dressing_room_button": { type: T.BUTTON, children: string }, + "skin_panel_interior/change_profile_panel/centering_panel_2": { type: T.INPUT_PANEL, children: 'dressing_room_button_gamepad' }, + "skin_panel_interior/change_profile_panel/centering_panel_2/dressing_room_button_gamepad": { type: T.BUTTON, children: string }, + "skin_panel_interior/change_profile_panel/centering_panel_3": { type: T.INPUT_PANEL, children: 'profile_button' }, + "skin_panel_interior/change_profile_panel/centering_panel_3/profile_button": { type: T.BUTTON, children: string }, + "pause_button_template": { type: T.BUTTON, children: string }, + "grid_button_template": { type: T.BUTTON, children: string }, + "return_to_game_button": { type: T.BUTTON, children: string }, + "realms_stories_button_panel": { type: T.PANEL, children: 'realms_stories_button' | 'unread_story_count_panel' }, + "realms_stories_button_panel/realms_stories_button": { type: T.BUTTON, children: string }, + "realms_stories_button_panel/unread_story_count_panel": { type: T.PANEL, children: string }, + "realms_stories_button": { type: T.BUTTON, children: string }, + "unread_story_count_panel": { type: T.PANEL, children: 'text' }, + "unread_story_count_panel/text": { type: T.LABEL, children: 'background' }, + "unread_story_count_panel/text/background": { type: T.IMAGE, children: string }, + "store_button_panel": { type: T.PANEL, children: 'store_button' | 'store_error_button' }, + "store_button_panel/store_button": { type: T.BUTTON, children: string }, + "store_button_panel/store_error_button": { type: T.BUTTON, children: string }, + "store_button": { type: T.BUTTON, children: string }, + "store_error_button": { type: T.BUTTON, children: string }, + "store_error_button_content": { type: T.IMAGE, children: 'marketplace_button_label' }, + "store_error_button_content/marketplace_button_label": { type: T.LABEL, children: string }, + "settings_button": { type: T.BUTTON, children: string }, + "how_to_play_button": { type: T.BUTTON, children: string }, + "invite_players_button": { type: T.BUTTON, children: string }, + "buy_button": { type: T.BUTTON, children: string }, + "quit_button": { type: T.BUTTON, children: string }, + "feedback_button": { type: T.BUTTON, children: string }, + "feedback_icon_button": { type: T.PANEL, children: 'feedback_button' }, + "feedback_icon_button/feedback_button": { type: T.BUTTON, children: string }, + "take_screenshot_gamepad_button_content": { type: T.PANEL, children: 'button_y' | 'take_screenshot_icon' }, + "take_screenshot_gamepad_button_content/button_y": { type: T.STACK_PANEL, children: string }, + "take_screenshot_gamepad_button_content/take_screenshot_icon": { type: T.IMAGE, children: string }, + "take_screenshot_gamepad_button": { type: T.BUTTON, children: string }, + "achievements_button_small": { type: T.BUTTON, children: string }, + "settings_button_small": { type: T.BUTTON, children: string }, + "take_screenshot_button": { type: T.BUTTON, children: string }, + "pause_screen": { type: T.SCREEN, children: string }, + "pause_screen_content": { type: T.PANEL, children: 'pause_screen_main_panels' | 'skin_panel' | 'friendsdrawer_button_panel' | 'gamepad_helpers' | 'keyboard_helpers' }, + "pause_screen_content/pause_screen_main_panels": { type: T.STACK_PANEL, children: string }, + "pause_screen_content/skin_panel": { type: T.PANEL, children: string }, + "pause_screen_content/friendsdrawer_button_panel": { type: T.PANEL, children: string }, + "pause_screen_content/gamepad_helpers": { type: T.PANEL, children: string }, + "pause_screen_content/keyboard_helpers": { type: T.PANEL, children: string }, + "friendsdrawer_button_panel": { type: T.PANEL, children: 'friendsdrawer_container_stack_panel' }, + "friendsdrawer_button_panel/friendsdrawer_container_stack_panel": { type: T.PANEL, children: 'friendsdrawer_button' | 'friends_drawer_ftue_popup' }, + "friendsdrawer_button_panel/friendsdrawer_container_stack_panel/friendsdrawer_button": { type: T.BUTTON, children: string }, + "friendsdrawer_button_panel/friendsdrawer_container_stack_panel/friends_drawer_ftue_popup": { type: T.BUTTON, children: string }, + "pause_screen_main_panels": { type: T.STACK_PANEL, children: 'menu' }, + "pause_screen_main_panels/menu": { type: T.IMAGE, children: string }, + "left_buttons_panel": { type: T.IMAGE, children: 'filler' | 'trialTime' | 'the_rest_panel' }, + "left_buttons_panel/filler": { type: T.PANEL, children: string }, + "left_buttons_panel/trialTime": { type: T.CUSTOM, children: string }, + "left_buttons_panel/the_rest_panel": { type: T.STACK_PANEL, children: string }, + "smaller_buttons_panel": { type: T.STACK_PANEL, children: 'stacked_column' | 'padding_bottom' }, + "smaller_buttons_panel/stacked_column": { type: T.STACK_PANEL, children: 'fill_1' | 'side_padding' | 'small_settings_button' | 'small_settings_padding' | 'small_achievements_button' | 'small_achievements_padding' | 'take_screenshot_btn' | 'screenshot_padding' | 'fill_3' }, + "smaller_buttons_panel/stacked_column/fill_1": { type: T.PANEL, children: string }, + "smaller_buttons_panel/stacked_column/side_padding": { type: T.PANEL, children: string }, + "smaller_buttons_panel/stacked_column/small_settings_button": { type: T.INPUT_PANEL, children: 'small_settings_btn' }, + "smaller_buttons_panel/stacked_column/small_settings_button/small_settings_btn": { type: T.BUTTON, children: string }, + "smaller_buttons_panel/stacked_column/small_settings_padding": { type: T.PANEL, children: string }, + "smaller_buttons_panel/stacked_column/small_achievements_button": { type: T.INPUT_PANEL, children: 'small_achievements_btn' }, + "smaller_buttons_panel/stacked_column/small_achievements_button/small_achievements_btn": { type: T.BUTTON, children: string }, + "smaller_buttons_panel/stacked_column/small_achievements_padding": { type: T.PANEL, children: string }, + "smaller_buttons_panel/stacked_column/take_screenshot_btn": { type: T.INPUT_PANEL, children: 'take_screenshot_button' | 'take_screenshot_gamepad_button' }, + "smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_button": { type: T.BUTTON, children: string }, + "smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_gamepad_button": { type: T.BUTTON, children: string }, + "smaller_buttons_panel/stacked_column/screenshot_padding": { type: T.PANEL, children: string }, + "smaller_buttons_panel/stacked_column/fill_3": { type: T.PANEL, children: string }, + "smaller_buttons_panel/padding_bottom": { type: T.PANEL, children: string }, + "social_buttons_panel": { type: T.STACK_PANEL, children: 'friendsbutton_panel' | 'invitebutton_panel' }, + "social_buttons_panel/friendsbutton_panel": { type: T.PANEL, children: 'friendsdrawer_button' | 'friends_drawer__ftue_popup' }, + "social_buttons_panel/friendsbutton_panel/friendsdrawer_button": { type: T.BUTTON, children: string }, + "social_buttons_panel/friendsbutton_panel/friends_drawer__ftue_popup": { type: T.BUTTON, children: string }, + "social_buttons_panel/invitebutton_panel": { type: T.STACK_PANEL, children: 'invite_button' | 'vertical_padding_2' }, + "social_buttons_panel/invitebutton_panel/invite_button": { type: T.BUTTON, children: string }, + "social_buttons_panel/invitebutton_panel/vertical_padding_2": { type: T.PANEL, children: string }, + "the_rest_panel": { type: T.STACK_PANEL, children: 'fill_1' | 'pause_menu' | 'fill_3' }, + "the_rest_panel/fill_1": { type: T.PANEL, children: string }, + "the_rest_panel/pause_menu": { type: T.PANEL, children: string }, + "the_rest_panel/fill_3": { type: T.PANEL, children: string }, + "paused_text": { type: T.LABEL, children: string }, + "green_tag": { type: T.IMAGE, children: string }, + "paused_text_panel": { type: T.IMAGE, children: 'horizontal_stack' }, + "paused_text_panel/pause": { type: T.LABEL, children: string }, + "paused_text_panel/horizontal_stack": { type: T.STACK_PANEL, children: 'pause_icon' | 'fill_1' | 'pause' }, + "paused_text_panel/horizontal_stack/pause_icon": { type: T.IMAGE, children: string }, + "paused_text_panel/horizontal_stack/fill_1": { type: T.PANEL, children: string }, + "paused_text_panel/horizontal_stack/pause": { type: T.LABEL, children: string }, + "transparent_background": { type: T.IMAGE, children: string }, + "non_transparent_background": { type: T.IMAGE, children: string }, + "menu_the_rest_panel": { type: T.PANEL, children: 'menu_button_control' }, + "menu_the_rest_panel/menu_button_control": { type: T.IMAGE, children: string }, + "menu_button_control": { type: T.IMAGE, children: 'menu_background' }, + "menu_button_control/menu_background": { type: T.IMAGE, children: string }, + "pause_announcement_panel_type": { type: T.STACK_PANEL, children: 'horizontal_stack' }, + "pause_announcement_panel_type/horizontal_stack": { type: T.STACK_PANEL, children: 'fill_1' | 'pause_text' | 'fill_2' }, + "pause_announcement_panel_type/horizontal_stack/fill_1": { type: T.PANEL, children: string }, + "pause_announcement_panel_type/horizontal_stack/pause_text": { type: T.IMAGE, children: string }, + "pause_announcement_panel_type/horizontal_stack/fill_2": { type: T.PANEL, children: string }, + "menu_background": { type: T.IMAGE, children: 'button_panel' }, + "menu_background/button_panel": { type: T.STACK_PANEL, children: 'title_image' | 'fill_1' | 'return_to_game_button' | 'return' | 'realms_stories_button_panel' | 'realms_stories' | 'buy_button' | 'buy' | 'store_button_panel' | 'store_button_panel_padding' | 'quit_button' | 'smaller_buttons' | 'pause_panel' }, + "menu_background/button_panel/title_image": { type: T.PANEL, children: 'image' }, + "menu_background/button_panel/title_image/image": { type: T.IMAGE, children: string }, + "menu_background/button_panel/fill_1": { type: T.PANEL, children: string }, + "menu_background/button_panel/return_to_game_button": { type: T.BUTTON, children: string }, + "menu_background/button_panel/return": { type: T.PANEL, children: string }, + "menu_background/button_panel/realms_stories_button_panel": { type: T.PANEL, children: string }, + "menu_background/button_panel/realms_stories": { type: T.PANEL, children: string }, + "menu_background/button_panel/buy_button": { type: T.BUTTON, children: string }, + "menu_background/button_panel/buy": { type: T.PANEL, children: string }, + "menu_background/button_panel/store_button_panel": { type: T.PANEL, children: string }, + "menu_background/button_panel/store_button_panel_padding": { type: T.PANEL, children: string }, + "menu_background/button_panel/quit_button": { type: T.BUTTON, children: string }, + "menu_background/button_panel/smaller_buttons": { type: T.STACK_PANEL, children: string }, + "menu_background/button_panel/pause_panel": { type: T.STACK_PANEL, children: string }, + "info_panel_content_list": { type: T.STACK_PANEL, children: 'player_list_scrolling_panel' | 'vertical_padding' }, + "info_panel_content_list/player_list_scrolling_panel": { type: T.PANEL, children: string }, + "info_panel_content_list/vertical_padding": { type: T.PANEL, children: string }, + "info_panel_background": { type: T.IMAGE, children: string }, + "info_panel": { type: T.IMAGE, children: 'info_panel_background' | 'info_panel_list' }, + "info_panel/info_panel_background": { type: T.IMAGE, children: string }, + "info_panel/info_panel_list": { type: T.STACK_PANEL, children: string }, + "player_panel_background": { type: T.IMAGE, children: 'player_list_scrolling_panel' }, + "player_panel_background/player_list_scrolling_panel": { type: T.PANEL, children: string }, + "player_list": { type: T.STACK_PANEL, children: 'vertical_padding_0' | 'social_buttons_panel' | 'players_label' | 'vertical_padding_4' | 'players_grid_panel' | 'vertical_padding_5' | 'invite_players_button_panel' | 'vertical_padding_6' | 'disconnected_from_multiplayer_label_panel' | 'vertical_padding_7' }, + "player_list/vertical_padding_0": { type: T.PANEL, children: string }, + "player_list/social_buttons_panel": { type: T.STACK_PANEL, children: string }, + "player_list/players_label": { type: T.LABEL, children: string }, + "player_list/vertical_padding_4": { type: T.PANEL, children: string }, + "player_list/players_grid_panel": { type: T.GRID, children: string }, + "player_list/vertical_padding_5": { type: T.PANEL, children: string }, + "player_list/invite_players_button_panel": { type: T.PANEL, children: string }, + "player_list/vertical_padding_6": { type: T.PANEL, children: string }, + "player_list/disconnected_from_multiplayer_label_panel": { type: T.STACK_PANEL, children: string }, + "player_list/vertical_padding_7": { type: T.PANEL, children: string }, + "player_lists": { type: T.PANEL, children: 'normal_list' | 'scoreboard_list' }, + "player_lists/normal_list": { type: T.STACK_PANEL, children: string }, + "player_lists/scoreboard_list": { type: T.STACK_PANEL, children: string }, + "player_list_scrolling_panel": { type: T.PANEL, children: string }, + "disconnected_label": { type: T.LABEL, children: string }, + "disconnected_from_multiplayer_label_panel": { type: T.STACK_PANEL, children: 'disconnected_from_xbox_live_label' | 'disconnected_from_third_party_label' | 'disconnected_from_adhoc_label' | 'disconnected_from_crossplatform_multiplayer' | 'disconnected_from_multiplayer' }, + "disconnected_from_multiplayer_label_panel/disconnected_from_xbox_live_label": { type: T.LABEL, children: string }, + "disconnected_from_multiplayer_label_panel/disconnected_from_third_party_label": { type: T.LABEL, children: string }, + "disconnected_from_multiplayer_label_panel/disconnected_from_adhoc_label": { type: T.LABEL, children: string }, + "disconnected_from_multiplayer_label_panel/disconnected_from_crossplatform_multiplayer": { type: T.LABEL, children: string }, + "disconnected_from_multiplayer_label_panel/disconnected_from_multiplayer": { type: T.LABEL, children: string }, + "invite_players_button_panel": { type: T.PANEL, children: 'invite_players_button' }, + "invite_players_button_panel/invite_players_button": { type: T.BUTTON, children: string }, + "ip_label": { type: T.LABEL, children: string }, + "players_label": { type: T.LABEL, children: string }, + "players_grid": { type: T.GRID, children: string }, + "player_grid_item": { type: T.PANEL, children: 'player_grid_item_content' }, + "player_grid_item/player_grid_item_content": { type: T.PANEL, children: string }, + "player_grid_item_content": { type: T.PANEL, children: 'player_button_panel' | 'player_permission_button_panel' }, + "player_grid_item_content/player_button_panel": { type: T.STACK_PANEL, children: 'player_button_banner' | 'player_permission_button_padding' }, + "player_grid_item_content/player_button_panel/player_button_banner": { type: T.PANEL, children: 'player_button' | 'player_banner' }, + "player_grid_item_content/player_button_panel/player_button_banner/player_button": { type: T.BUTTON, children: string }, + "player_grid_item_content/player_button_panel/player_button_banner/player_banner": { type: T.PANEL, children: string }, + "player_grid_item_content/player_button_panel/player_permission_button_padding": { type: T.PANEL, children: string }, + "player_grid_item_content/player_permission_button_panel": { type: T.PANEL, children: 'player_permission_button' }, + "player_grid_item_content/player_permission_button_panel/player_permission_button": { type: T.BUTTON, children: string }, + "player_permission_button": { type: T.BUTTON, children: string }, + "player_permission_button_content": { type: T.PANEL, children: 'permission_icon_image' }, + "player_permission_button_content/permission_icon_image": { type: T.IMAGE, children: string }, + "vertical_padding": { type: T.PANEL, children: string }, + "horizontal_padding": { type: T.PANEL, children: string }, + "player_button_content": { type: T.STACK_PANEL, children: 'player_pic_panel' | 'player_gamertag' | 'platform_icon' }, + "player_button_content/player_pic_panel": { type: T.PANEL, children: string }, + "player_button_content/player_gamertag": { type: T.PANEL, children: string }, + "player_button_content/platform_icon": { type: T.PANEL, children: string }, + "player_button": { type: T.BUTTON, children: string }, + "player_banner": { type: T.PANEL, children: string }, + "player_pic_panel": { type: T.PANEL, children: 'player_gamer_pic' | 'player_local_icon' }, + "player_pic_panel/player_gamer_pic": { type: T.IMAGE, children: string }, + "player_pic_panel/player_local_icon": { type: T.IMAGE, children: string }, + "player_local_icon": { type: T.IMAGE, children: string }, + "player_gamer_pic": { type: T.IMAGE, children: 'player_panel_black_border' }, + "player_gamer_pic/player_panel_black_border": { type: T.IMAGE, children: string }, + "gametag_wrapper": { type: T.PANEL, children: 'gamertag' }, + "gametag_wrapper/gamertag": { type: T.LABEL, children: string }, + "platform_icon_panel": { type: T.PANEL, children: 'platform_icon' }, + "platform_icon_panel/platform_icon": { type: T.IMAGE, children: string }, + "player_gamertag": { type: T.LABEL, children: string }, + "platform_icon": { type: T.IMAGE, children: string }, + "player_grid_banner_no_focus": { type: T.IMAGE, children: string }, + "player_grid_banner": { type: T.PANEL, children: 'player_grid_banner_no_focus' | 'focus_border_button' }, + "player_grid_banner/player_grid_banner_no_focus": { type: T.IMAGE, children: 'player_button_content' }, + "player_grid_banner/player_grid_banner_no_focus/player_button_content": { type: T.STACK_PANEL, children: string }, + "player_grid_banner/focus_border_button": { type: T.BUTTON, children: string }, + "focus_border_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "focus_border_button/default": { type: T.PANEL, children: string }, + "focus_border_button/hover": { type: T.IMAGE, children: string }, + "focus_border_button/pressed": { type: T.IMAGE, children: string }, + "focus_border": { type: T.IMAGE, children: string }, + "pause_screen_border": { type: T.IMAGE, children: string }, + "filler_panel": { type: T.PANEL, children: string }, + "gamepad_helpers": { type: T.PANEL, children: 'gamepad_helper_y' }, + "gamepad_helpers/gamepad_helper_y": { type: T.STACK_PANEL, children: string }, + "keyboard_helpers": { type: T.PANEL, children: 'keyboard_helper_keys' }, + "keyboard_helpers/keyboard_helper_keys": { type: T.STACK_PANEL, children: string }, } 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": { type: T.IMAGE, children: 'stacker' }, + "download_progress/stacker": { type: T.STACK_PANEL, children: 'sizer_text' | 'sizer_bar' }, + "download_progress/stacker/sizer_text": { type: T.PANEL, children: 'download_progress_text' }, + "download_progress/stacker/sizer_text/download_progress_text": { type: T.LABEL, children: string }, + "download_progress/stacker/sizer_bar": { type: T.PANEL, children: 'download_progress_bar' }, + "download_progress/stacker/sizer_bar/download_progress_bar": { type: T.PANEL, children: string }, + "summary_box_button_panel": { type: T.PANEL, children: 'buttons_panel' | 'download_buttons_panel' | 'focus_border' }, + "summary_box_button_panel/buttons_panel": { type: T.STACK_PANEL, children: string }, + "summary_box_button_panel/download_buttons_panel": { type: T.STACK_PANEL, children: string }, + "summary_box_button_panel/focus_border": { type: T.BUTTON, children: string }, + "interaction_button_content": { type: T.STACK_PANEL, children: 'line1_panel' }, + "interaction_button_content/line1_panel": { type: T.PANEL, children: 'upsell_text' }, + "interaction_button_content/line1_panel/upsell_text": { type: T.LABEL, children: string }, + "interaction_button_panel": { type: T.PANEL, children: 'content_action_button' | 'progress_bar' | 'focus_border' }, + "interaction_button_panel/content_action_button": { type: T.BUTTON, children: string }, + "interaction_button_panel/progress_bar": { type: T.IMAGE, children: string }, + "interaction_button_panel/focus_border": { type: T.BUTTON, children: string }, + "download_progress_small": { type: T.IMAGE, children: 'stacker' }, + "download_progress_small/stacker": { type: T.STACK_PANEL, children: 'sizer_text' | 'sizer_bar' }, + "download_progress_small/stacker/sizer_text": { type: T.PANEL, children: 'download_progress_text' }, + "download_progress_small/stacker/sizer_text/download_progress_text": { type: T.LABEL, children: string }, + "download_progress_small/stacker/sizer_bar": { type: T.PANEL, children: 'download_progress_bar' }, + "download_progress_small/stacker/sizer_bar/download_progress_bar": { type: T.PANEL, children: string }, + "progress_loading_anim": { type: T.PANEL, children: string }, + "focus_border": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "focus_border/default": { type: T.IMAGE, children: 'loading_anim' }, + "focus_border/default/loading_anim": { type: T.PANEL, children: string }, + "focus_border/hover": { type: T.IMAGE, children: 'loading_anim' }, + "focus_border/hover/loading_anim": { type: T.PANEL, children: string }, + "focus_border/pressed": { type: T.IMAGE, children: 'loading_anim' }, + "focus_border/pressed/loading_anim": { type: T.PANEL, children: string }, + "purchase_button_base": { type: T.BUTTON, children: string }, + "deactivated_purchase_button_base": { type: T.BUTTON, children: string }, + "download_buttons_panel": { type: T.STACK_PANEL, children: 'progress_panel' }, + "download_buttons_panel/progress_panel": { type: T.STACK_PANEL, children: 'progress_bar' }, + "download_buttons_panel/progress_panel/progress_bar": { type: T.IMAGE, children: string }, + "smooth_purchase_buttons_panel": { type: T.STACK_PANEL, children: 'activated_purchase_buttons_panel' | 'deactivated_purchase_buttons_panel' }, + "smooth_purchase_buttons_panel/activated_purchase_buttons_panel": { type: T.STACK_PANEL, children: string }, + "smooth_purchase_buttons_panel/deactivated_purchase_buttons_panel": { type: T.STACK_PANEL, children: string }, + "smooth_buttons_panel": { type: T.STACK_PANEL, children: 'purchase_buttons_panel' | 'interact_filling_button' | 'interact_exit_world_filling_button' }, + "smooth_buttons_panel/purchase_buttons_panel": { type: T.STACK_PANEL, children: string }, + "smooth_buttons_panel/interact_filling_button": { type: T.BUTTON, children: string }, + "smooth_buttons_panel/interact_exit_world_filling_button": { type: T.BUTTON, children: string }, + "disabled_interact_label_formfitting": { type: T.STACK_PANEL, children: 'info_icon' | 'info_icon_pad' | 'interact_label_panel' | 'pad' }, + "disabled_interact_label_formfitting/info_icon": { type: T.STACK_PANEL, children: string }, + "disabled_interact_label_formfitting/info_icon_pad": { type: T.PANEL, children: string }, + "disabled_interact_label_formfitting/interact_label_panel": { type: T.PANEL, children: 'interact_label_text_left' }, + "disabled_interact_label_formfitting/interact_label_panel/interact_label_text_left": { type: T.LABEL, children: string }, + "disabled_interact_label_formfitting/pad": { type: T.PANEL, children: string }, + "interact_label_text": { type: T.LABEL, children: string }, + "activated_smooth_purchase_buttons_panel": { type: T.STACK_PANEL, children: 'purchase_coins_button_panel' | 'pad_h1' | 'purchase_currency_button_panel' }, + "activated_smooth_purchase_buttons_panel/purchase_coins_button_panel": { type: T.PANEL, children: 'smooth_purchase_with_coins_button' }, + "activated_smooth_purchase_buttons_panel/purchase_coins_button_panel/smooth_purchase_with_coins_button": { type: T.BUTTON, children: string }, + "activated_smooth_purchase_buttons_panel/pad_h1": { type: T.PANEL, children: string }, + "activated_smooth_purchase_buttons_panel/purchase_currency_button_panel": { type: T.PANEL, children: 'purchase_with_currency_button' }, + "activated_smooth_purchase_buttons_panel/purchase_currency_button_panel/purchase_with_currency_button": { type: T.BUTTON, children: string }, + "deactivated_purchase_hover_popup": { type: T.IMAGE, children: string }, + "deactivated_smooth_purchase_buttons_panel": { type: T.STACK_PANEL, children: 'fake_deactivated_smooth_purchase_with_coins_button' | 'pad_h1' | 'purchase_currency_button_panel' }, + "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button": { type: T.IMAGE, children: 'deactivated_purchase_hover_popup' | 'content' }, + "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button/deactivated_purchase_hover_popup": { type: T.IMAGE, children: string }, + "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button/content": { type: T.STACK_PANEL, children: string }, + "deactivated_smooth_purchase_buttons_panel/pad_h1": { type: T.PANEL, children: string }, + "deactivated_smooth_purchase_buttons_panel/purchase_currency_button_panel": { type: T.PANEL, children: 'deactivated_purchase_with_currency_button' }, + "deactivated_smooth_purchase_buttons_panel/purchase_currency_button_panel/deactivated_purchase_with_currency_button": { type: T.BUTTON, children: string }, + "smooth_save_share_button_panel": { type: T.STACK_PANEL, children: 'pad_0' | 'share_button' | 'pad_1' | 'save_button' }, + "smooth_save_share_button_panel/pad_0": { type: T.PANEL, children: string }, + "smooth_save_share_button_panel/share_button": { type: T.BUTTON, children: string }, + "smooth_save_share_button_panel/pad_1": { type: T.PANEL, children: string }, + "smooth_save_share_button_panel/save_button": { type: T.BUTTON, children: string }, + "currency_purchase_label": { type: T.PANEL, children: 'currency_purchase_label_text' }, + "currency_purchase_label/currency_purchase_label_text": { type: T.LABEL, children: string }, + "coin_image": { type: T.IMAGE, children: string }, + "smooth_currency_purchase_label": { type: T.PANEL, children: 'currency_purchase_label_text' }, + "smooth_currency_purchase_label/currency_purchase_label_text": { type: T.LABEL, children: string }, + "discount_label": { type: T.STACK_PANEL, children: 'label_panel' | 'icon_panel' }, + "discount_label/label_panel": { type: T.PANEL, children: 'label' }, + "discount_label/label_panel/label": { type: T.LABEL, children: string }, + "discount_label/icon_panel": { type: T.PANEL, children: 'icon' }, + "discount_label/icon_panel/icon": { type: T.IMAGE, children: string }, + "coin_purchase_label_text": { type: T.LABEL, children: string }, + "smooth_coin_purchase_label_formfitting": { type: T.STACK_PANEL, children: 'sales_banner_offset_panel' | 'markdown_panel' | 'fill_pad_left' | 'left_coin_image_offset_panel' | 'coin_purchase_label_panel' | 'pad' | 'right_coin_image_offset_panel' | 'fill_pad_right' }, + "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel": { type: T.PANEL, children: 'sales_banner_panel' }, + "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel": { type: T.PANEL, children: 'markdown_banner' }, + "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel/markdown_banner": { type: T.STACK_PANEL, children: string }, + "smooth_coin_purchase_label_formfitting/markdown_panel": { type: T.PANEL, children: 'markdown_label' }, + "smooth_coin_purchase_label_formfitting/markdown_panel/markdown_label": { type: T.PANEL, children: string }, + "smooth_coin_purchase_label_formfitting/fill_pad_left": { type: T.PANEL, children: string }, + "smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel": { type: T.PANEL, children: 'coin' }, + "smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel/coin": { type: T.IMAGE, children: string }, + "smooth_coin_purchase_label_formfitting/coin_purchase_label_panel": { type: T.PANEL, children: 'coin_purchase_label_text_left' }, + "smooth_coin_purchase_label_formfitting/coin_purchase_label_panel/coin_purchase_label_text_left": { type: T.LABEL, children: string }, + "smooth_coin_purchase_label_formfitting/pad": { type: T.PANEL, children: string }, + "smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel": { type: T.PANEL, children: 'coin' }, + "smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel/coin": { type: T.IMAGE, children: string }, + "smooth_coin_purchase_label_formfitting/fill_pad_right": { type: T.PANEL, children: string }, + "disabled_smooth_coin_purchase_label_formfitting": { type: T.STACK_PANEL, children: 'sales_banner_offset_panel' | 'markdown_panel' | 'fill_pad_left' | 'info_icon_input_panel' | 'left_coin_image_offset_panel' | 'info_icon_pad' | 'coin_purchase_label_panel' | 'pad' | 'right_coin_image_offset_panel' | 'fill_pad_right' }, + "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel": { type: T.PANEL, children: 'sales_banner_panel' }, + "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel": { type: T.PANEL, children: 'markdown_banner' }, + "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel/markdown_banner": { type: T.STACK_PANEL, children: string }, + "disabled_smooth_coin_purchase_label_formfitting/markdown_panel": { type: T.PANEL, children: 'markdown_label' }, + "disabled_smooth_coin_purchase_label_formfitting/markdown_panel/markdown_label": { type: T.PANEL, children: string }, + "disabled_smooth_coin_purchase_label_formfitting/fill_pad_left": { type: T.PANEL, children: string }, + "disabled_smooth_coin_purchase_label_formfitting/info_icon_input_panel": { type: T.INPUT_PANEL, children: 'info_bulb' }, + "disabled_smooth_coin_purchase_label_formfitting/info_icon_input_panel/info_bulb": { type: T.STACK_PANEL, children: string }, + "disabled_smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel": { type: T.PANEL, children: 'coin' }, + "disabled_smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel/coin": { type: T.IMAGE, children: string }, + "disabled_smooth_coin_purchase_label_formfitting/info_icon_pad": { type: T.PANEL, children: string }, + "disabled_smooth_coin_purchase_label_formfitting/coin_purchase_label_panel": { type: T.PANEL, children: 'coin_purchase_label_text_left' }, + "disabled_smooth_coin_purchase_label_formfitting/coin_purchase_label_panel/coin_purchase_label_text_left": { type: T.LABEL, children: string }, + "disabled_smooth_coin_purchase_label_formfitting/pad": { type: T.PANEL, children: string }, + "disabled_smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel": { type: T.PANEL, children: 'coin' }, + "disabled_smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel/coin": { type: T.IMAGE, children: string }, + "disabled_smooth_coin_purchase_label_formfitting/fill_pad_right": { type: T.PANEL, children: string }, + "share_icon": { type: T.IMAGE, children: string }, + "share_label": { type: T.STACK_PANEL, children: 'share_image_offset_panel' }, + "share_label/share_image_offset_panel": { type: T.PANEL, children: 'link_share' }, + "share_label/share_image_offset_panel/link_share": { type: T.IMAGE, children: string }, + "save_label_panel": { type: T.PANEL, children: 'heart_image' | 'progress_loading' }, + "save_label_panel/heart_image": { type: T.PANEL, children: string }, + "save_label_panel/progress_loading": { type: T.IMAGE, children: string }, + "save_label": { type: T.PANEL, children: 'save_image_offset_panel' }, + "save_label/save_image_offset_panel": { type: T.PANEL, children: 'full_heart' | 'empty_heart' }, + "save_label/save_image_offset_panel/full_heart": { type: T.IMAGE, children: string }, + "save_label/save_image_offset_panel/empty_heart": { type: T.IMAGE, children: string }, + "large_button_coin_purchase_label": { type: T.STACK_PANEL, children: 'markdown_banner_filler_panel' | 'center_markdown_panel' | 'sales_padding_0' | 'price_markdown_panel' | 'sales_padding_1' | 'left_coin_image_offset_panel' | 'coin_purchase_label_panel' | 'right_coin_image_offset_panel' | 'fill_padding_1' }, + "large_button_coin_purchase_label/markdown_banner_filler_panel": { type: T.PANEL, children: string }, + "large_button_coin_purchase_label/center_markdown_panel": { type: T.PANEL, children: 'markdown_banner' }, + "large_button_coin_purchase_label/center_markdown_panel/markdown_banner": { type: T.STACK_PANEL, children: string }, + "large_button_coin_purchase_label/sales_padding_0": { type: T.PANEL, children: string }, + "large_button_coin_purchase_label/price_markdown_panel": { type: T.PANEL, children: 'price_markdown_label' }, + "large_button_coin_purchase_label/price_markdown_panel/price_markdown_label": { type: T.PANEL, children: string }, + "large_button_coin_purchase_label/sales_padding_1": { type: T.PANEL, children: string }, + "large_button_coin_purchase_label/left_coin_image_offset_panel": { type: T.PANEL, children: 'coin' }, + "large_button_coin_purchase_label/left_coin_image_offset_panel/coin": { type: T.IMAGE, children: string }, + "large_button_coin_purchase_label/coin_purchase_label_panel": { type: T.PANEL, children: 'coin_purchase_label_text' }, + "large_button_coin_purchase_label/coin_purchase_label_panel/coin_purchase_label_text": { type: T.LABEL, children: string }, + "large_button_coin_purchase_label/right_coin_image_offset_panel": { type: T.PANEL, children: 'coin' }, + "large_button_coin_purchase_label/right_coin_image_offset_panel/coin": { type: T.IMAGE, children: string }, + "large_button_coin_purchase_label/fill_padding_1": { type: T.PANEL, children: string }, + "price_markdown_panel": { type: T.PANEL, children: 'offer_price' }, + "price_markdown_panel/offer_price": { type: T.LABEL, children: 'text_strike_through' }, + "price_markdown_panel/offer_price/text_strike_through": { type: T.IMAGE, children: string }, + "vertical_padding_2px": { type: T.PANEL, children: string }, + "vertical_padding_4px": { type: T.PANEL, children: string }, + "vertical_padding_fill": { type: T.PANEL, children: string }, + "horizontal_padding_2px": { type: T.PANEL, children: string }, + "horizontal_padding_4px": { type: T.PANEL, children: string }, + "horizontal_padding_8px": { type: T.PANEL, children: string }, + "horizontal_padding_fill": { type: T.PANEL, children: string }, + "empty_content_panel": { type: T.PANEL, children: string }, + "section_header": { type: T.PANEL, children: 'header_label' }, + "section_header/header_label": { type: T.LABEL, children: string }, + "content_section_bg": { type: T.STACK_PANEL, children: 'pad' | 'section_header' | 'bg_and_content' }, + "content_section_bg/pad": { type: T.PANEL, children: string }, + "content_section_bg/section_header": { type: T.PANEL, children: string }, + "content_section_bg/bg_and_content": { type: T.PANEL, children: 'bg' }, + "content_section_bg/bg_and_content/bg": { type: T.IMAGE, children: string }, + "content_section_boarder_bg": { type: T.STACK_PANEL, children: 'pad' | 'bg_and_content' | 'pad_3' | 'divider_3' }, + "content_section_boarder_bg/pad": { type: T.PANEL, children: string }, + "content_section_boarder_bg/bg_and_content": { type: T.PANEL, children: 'bg' }, + "content_section_boarder_bg/bg_and_content/bg": { type: T.IMAGE, children: 'inner' }, + "content_section_boarder_bg/bg_and_content/bg/inner": { type: T.IMAGE, children: string }, + "content_section_boarder_bg/pad_3": { type: T.PANEL, children: string }, + "content_section_boarder_bg/divider_3": { type: T.PANEL, children: string }, + "summary_factory_object": { type: T.STACK_PANEL, children: 'summary' | 'navigation_tab_section' | 'update_notification_section' }, + "summary_factory_object/summary": { type: T.STACK_PANEL, children: string }, + "summary_factory_object/navigation_tab_section": { type: T.PANEL, children: string }, + "summary_factory_object/update_notification_section": { type: T.STACK_PANEL, children: string }, + "screenshot_carousel_factory_object": { type: T.STACK_PANEL, children: 'resource_pack_content_panel' | 'pad_3' | 'divider_3' }, + "screenshot_carousel_factory_object/resource_pack_content_panel": { type: T.STACK_PANEL, children: string }, + "screenshot_carousel_factory_object/pad_3": { type: T.PANEL, children: string }, + "screenshot_carousel_factory_object/divider_3": { type: T.PANEL, children: string }, + "image_gallery_factory_object": { type: T.STACK_PANEL, children: 'resource_pack_content_panel' }, + "image_gallery_factory_object/resource_pack_content_panel": { type: T.PANEL, children: string }, + "left_text_right_image_factory_object": { type: T.STACK_PANEL, children: 'resource_pack_content_panel' }, + "left_text_right_image_factory_object/resource_pack_content_panel": { type: T.STACK_PANEL, children: string }, + "right_text_left_image_factory_object": { type: T.STACK_PANEL, children: 'resource_pack_content_panel' }, + "right_text_left_image_factory_object/resource_pack_content_panel": { type: T.STACK_PANEL, children: string }, + "skin_pack_section_factory_object": { type: T.PANEL, children: 'skin_pack_section_factory_content' }, + "skin_pack_section_factory_object/skin_pack_section_factory_content": { type: T.STACK_PANEL, children: 'skin_pack_content_panel' | 'pad_3' | 'divider_3' }, + "skin_pack_section_factory_object/skin_pack_section_factory_content/skin_pack_content_panel": { type: T.STACK_PANEL, children: string }, + "skin_pack_section_factory_object/skin_pack_section_factory_content/pad_3": { type: T.PANEL, children: string }, + "skin_pack_section_factory_object/skin_pack_section_factory_content/divider_3": { type: T.PANEL, children: string }, + "panorama_view_factory_object": { type: T.STACK_PANEL, children: 'panorama_view_content_panel' | 'pad_3' | 'divider_3' }, + "panorama_view_factory_object/panorama_view_content_panel": { type: T.STACK_PANEL, children: string }, + "panorama_view_factory_object/pad_3": { type: T.PANEL, children: string }, + "panorama_view_factory_object/divider_3": { type: T.PANEL, children: string }, + "ratings_factory_object": { type: T.PANEL, children: 'rating_factory_object_content' }, + "ratings_factory_object/rating_factory_object_content": { type: T.STACK_PANEL, children: string }, + "focus_container_button": { type: T.BUTTON, children: 'default' }, + "focus_container_button/default": { type: T.PANEL, children: string }, + "bundle_summary_factory_object": { type: T.PANEL, children: 'bundle_summary_factory_object_content' }, + "bundle_summary_factory_object/bundle_summary_factory_object_content": { type: T.PANEL, children: string }, + "pdp_cycle_offer_row_content": { type: T.STACK_PANEL, children: 'store_row_panel' | 'pad_3' | 'divider_3' }, + "pdp_cycle_offer_row_content/store_row_panel": { type: T.STACK_PANEL, children: string }, + "pdp_cycle_offer_row_content/pad_3": { type: T.PANEL, children: string }, + "pdp_cycle_offer_row_content/divider_3": { type: T.PANEL, children: string }, + "pdp_cycle_offer_row_section": { type: T.PANEL, children: string }, + "recently_viewed_viewed_factory_object": { type: T.PANEL, children: string }, + "scrolling_content_stack": { type: T.STACK_PANEL, children: string }, + "warning_image": { type: T.IMAGE, children: string }, + "scaling_rating": { type: T.PANEL, children: 'empty_rating' }, + "scaling_rating/empty_rating": { type: T.IMAGE, children: 'full_rating' }, + "scaling_rating/empty_rating/full_rating": { type: T.IMAGE, children: string }, + "scaling_rating_new": { type: T.PANEL, children: 'empty_rating' }, + "scaling_rating_new/empty_rating": { type: T.IMAGE, children: 'full_rating' }, + "scaling_rating_new/empty_rating/full_rating": { type: T.IMAGE, children: string }, + "chart_section": { type: T.PANEL, children: 'stack' }, + "chart_section/stack": { type: T.STACK_PANEL, children: 'star_number_panel' | 'star_panel' | 'pad_0' | 'bar_panel' | 'pad_1' | 'percent' }, + "chart_section/stack/star_number_panel": { type: T.PANEL, children: 'star_number' }, + "chart_section/stack/star_number_panel/star_number": { type: T.LABEL, children: string }, + "chart_section/stack/star_panel": { type: T.PANEL, children: 'star_img' }, + "chart_section/stack/star_panel/star_img": { type: T.IMAGE, children: string }, + "chart_section/stack/pad_0": { type: T.PANEL, children: string }, + "chart_section/stack/bar_panel": { type: T.PANEL, children: 'bar' }, + "chart_section/stack/bar_panel/bar": { type: T.IMAGE, children: 'full_bar' }, + "chart_section/stack/bar_panel/bar/full_bar": { type: T.IMAGE, children: string }, + "chart_section/stack/pad_1": { type: T.PANEL, children: string }, + "chart_section/stack/percent": { type: T.LABEL, children: string }, + "ratings_chart": { type: T.STACK_PANEL, children: '5_star' | '4_star' | '3_star' | '2_star' | '1_star' }, + "ratings_chart/5_star": { type: T.PANEL, children: string }, + "ratings_chart/4_star": { type: T.PANEL, children: string }, + "ratings_chart/3_star": { type: T.PANEL, children: string }, + "ratings_chart/2_star": { type: T.PANEL, children: string }, + "ratings_chart/1_star": { type: T.PANEL, children: string }, + "ratings_chart_panel": { type: T.PANEL, children: 'ratings_chart_content' }, + "ratings_chart_panel/ratings_chart_content": { type: T.STACK_PANEL, children: 'pad_0' | 'title' | 'pad_1' | 'rating_panel' | 'rating_text_panel' | 'count_panel' | 'pad_2' | 'chart' | 'pad_3' }, + "ratings_chart_panel/ratings_chart_content/pad_0": { type: T.PANEL, children: string }, + "ratings_chart_panel/ratings_chart_content/title": { type: T.PANEL, children: 'title_text' }, + "ratings_chart_panel/ratings_chart_content/title/title_text": { type: T.LABEL, children: string }, + "ratings_chart_panel/ratings_chart_content/pad_1": { type: T.PANEL, children: string }, + "ratings_chart_panel/ratings_chart_content/rating_panel": { type: T.PANEL, children: 'rating' }, + "ratings_chart_panel/ratings_chart_content/rating_panel/rating": { type: T.STACK_PANEL, children: 'rating_bar' | 'pad' }, + "ratings_chart_panel/ratings_chart_content/rating_panel/rating/rating_bar": { type: T.PANEL, children: string }, + "ratings_chart_panel/ratings_chart_content/rating_panel/rating/pad": { type: T.PANEL, children: string }, + "ratings_chart_panel/ratings_chart_content/rating_text_panel": { type: T.PANEL, children: 'rating_text' }, + "ratings_chart_panel/ratings_chart_content/rating_text_panel/rating_text": { type: T.LABEL, children: string }, + "ratings_chart_panel/ratings_chart_content/count_panel": { type: T.PANEL, children: 'count' }, + "ratings_chart_panel/ratings_chart_content/count_panel/count": { type: T.LABEL, children: string }, + "ratings_chart_panel/ratings_chart_content/pad_2": { type: T.PANEL, children: string }, + "ratings_chart_panel/ratings_chart_content/chart": { type: T.STACK_PANEL, children: string }, + "ratings_chart_panel/ratings_chart_content/pad_3": { type: T.PANEL, children: string }, + "ratings_box": { type: T.PANEL, children: 'ratings_panel_focus_point' | 'ratings_full_panel' | 'divider' }, + "ratings_box/ratings_panel_focus_point": { type: T.BUTTON, children: string }, + "ratings_box/ratings_full_panel": { type: T.PANEL, children: 'ratings_chart_and_button' }, + "ratings_box/ratings_full_panel/ratings_chart_and_button": { type: T.STACK_PANEL, children: 'chart' | 'pad_1' }, + "ratings_box/ratings_full_panel/ratings_chart_and_button/chart": { type: T.PANEL, children: string }, + "ratings_box/ratings_full_panel/ratings_chart_and_button/pad_1": { type: T.PANEL, children: string }, + "ratings_box/divider": { type: T.IMAGE, children: string }, + "user_rating_star_button": { type: T.BUTTON, children: 'default' | 'hover' }, + "user_rating_star_button/default": { type: T.PANEL, children: 'default_user_rating_star' }, + "user_rating_star_button/default/default_user_rating_star": { type: T.IMAGE, children: string }, + "user_rating_star_button/hover": { type: T.PANEL, children: 'hover_user_rating_star' }, + "user_rating_star_button/hover/hover_user_rating_star": { type: T.IMAGE, children: string }, + "user_rating_star_list_grid": { type: T.GRID, children: string }, + "ratings_interact_panel": { type: T.STACK_PANEL, children: 'title_text' | 'pad_vertical_4px' | 'rating_stars_and_button_panel' | 'pad_vertical_8px' | 'fill_pad' | 'send_feedback_button' | 'pad_1' }, + "ratings_interact_panel/title_text": { type: T.LABEL, children: string }, + "ratings_interact_panel/pad_vertical_4px": { type: T.PANEL, children: string }, + "ratings_interact_panel/rating_stars_and_button_panel": { type: T.STACK_PANEL, children: 'fill_stars' | 'pad_3_percent' | 'submit_button_panel' }, + "ratings_interact_panel/rating_stars_and_button_panel/fill_stars": { type: T.PANEL, children: 'rating_buttons' }, + "ratings_interact_panel/rating_stars_and_button_panel/fill_stars/rating_buttons": { type: T.GRID, children: string }, + "ratings_interact_panel/rating_stars_and_button_panel/pad_3_percent": { type: T.PANEL, children: string }, + "ratings_interact_panel/rating_stars_and_button_panel/submit_button_panel": { type: T.PANEL, children: 'submit' }, + "ratings_interact_panel/rating_stars_and_button_panel/submit_button_panel/submit": { type: T.BUTTON, children: string }, + "ratings_interact_panel/pad_vertical_8px": { type: T.PANEL, children: string }, + "ratings_interact_panel/fill_pad": { type: T.PANEL, children: 'text' }, + "ratings_interact_panel/fill_pad/text": { type: T.LABEL, children: string }, + "ratings_interact_panel/send_feedback_button": { type: T.BUTTON, children: string }, + "ratings_interact_panel/pad_1": { type: T.PANEL, children: string }, + "ratings_info_panel": { type: T.PANEL, children: 'ratings' | 'ratings_right' }, + "ratings_info_panel/ratings": { type: T.PANEL, children: string }, + "ratings_info_panel/ratings_right": { type: T.PANEL, children: 'ratings_interact_panel' }, + "ratings_info_panel/ratings_right/ratings_interact_panel": { type: T.STACK_PANEL, children: string }, + "ratings_content_panel": { type: T.STACK_PANEL, children: string }, + "panorama_view_content": { type: T.STACK_PANEL, children: 'panorama_panel' }, + "panorama_view_content/panorama_panel": { type: T.PANEL, children: 'panorama_content' }, + "panorama_view_content/panorama_panel/panorama_content": { type: T.PANEL, children: string }, + "skins": { type: T.PANEL, children: string }, + "skin_pack_content_panel": { type: T.STACK_PANEL, children: string }, + "resource_pack_content": { type: T.PANEL, children: 'screenshots' }, + "resource_pack_content/screenshots": { type: T.PANEL, children: string }, + "image_row_left_text_content": { type: T.STACK_PANEL, children: 'buffer_panel_front' | 'text_section' | 'buffer_panel_mid' | 'screenshots_single' | 'buffer_panel_back' }, + "image_row_left_text_content/buffer_panel_front": { type: T.PANEL, children: string }, + "image_row_left_text_content/text_section": { type: T.STACK_PANEL, children: 'left_header' | 'left_text' | 'buffer_panel_bottom' }, + "image_row_left_text_content/text_section/left_header": { type: T.PANEL, children: string }, + "image_row_left_text_content/text_section/left_text": { type: T.PANEL, children: string }, + "image_row_left_text_content/text_section/buffer_panel_bottom": { type: T.PANEL, children: string }, + "image_row_left_text_content/buffer_panel_mid": { type: T.PANEL, children: string }, + "image_row_left_text_content/screenshots_single": { type: T.PANEL, children: string }, + "image_row_left_text_content/buffer_panel_back": { type: T.PANEL, children: string }, + "image_row_right_text_content": { type: T.STACK_PANEL, children: 'buffer_panel_front' | 'screenshots_single' | 'buffer_panel_mid' | 'text_section' | 'buffer_panel_back' }, + "image_row_right_text_content/buffer_panel_front": { type: T.PANEL, children: string }, + "image_row_right_text_content/screenshots_single": { type: T.PANEL, children: string }, + "image_row_right_text_content/buffer_panel_mid": { type: T.PANEL, children: string }, + "image_row_right_text_content/text_section": { type: T.STACK_PANEL, children: 'right_header' | 'right_text' | 'buffer_panel_bottom' }, + "image_row_right_text_content/text_section/right_header": { type: T.PANEL, children: string }, + "image_row_right_text_content/text_section/right_text": { type: T.PANEL, children: string }, + "image_row_right_text_content/text_section/buffer_panel_bottom": { type: T.PANEL, children: string }, + "image_row_right_text_content/buffer_panel_back": { type: T.PANEL, children: string }, + "image_row_content": { type: T.PANEL, children: 'screenshots_triple' }, + "image_row_content/screenshots_triple": { type: T.STACK_PANEL, children: string }, + "play_button": { type: T.IMAGE, children: string }, + "csb_expiration": { type: T.PANEL, children: 'background' }, + "csb_expiration/background": { type: T.IMAGE, children: 'content_stack_panel' }, + "csb_expiration/background/content_stack_panel": { type: T.STACK_PANEL, children: 'icon_wrapper' | 'text_wrapper' }, + "csb_expiration/background/content_stack_panel/icon_wrapper": { type: T.PANEL, children: 'icon' }, + "csb_expiration/background/content_stack_panel/icon_wrapper/icon": { type: T.IMAGE, children: string }, + "csb_expiration/background/content_stack_panel/text_wrapper": { type: T.PANEL, children: 'text' }, + "csb_expiration/background/content_stack_panel/text_wrapper/text": { type: T.LABEL, children: string }, + "summary_content_left_side": { type: T.STACK_PANEL, children: 'pad_left' | 'full_content' }, + "summary_content_left_side/pad_left": { type: T.PANEL, children: string }, + "summary_content_left_side/full_content": { type: T.STACK_PANEL, children: 'top' | 'bottom' }, + "summary_content_left_side/full_content/top": { type: T.STACK_PANEL, children: 'image' | 'divider' | 'info' }, + "summary_content_left_side/full_content/top/image": { type: T.PANEL, children: 'key_image' }, + "summary_content_left_side/full_content/top/image/key_image": { type: T.IMAGE, children: 'border' | 'csb_expiration_banner' | 'video_overlay_button' | 'rtx_label' }, + "summary_content_left_side/full_content/top/image/key_image/border": { type: T.IMAGE, children: string }, + "summary_content_left_side/full_content/top/image/key_image/csb_expiration_banner": { type: T.PANEL, children: string }, + "summary_content_left_side/full_content/top/image/key_image/video_overlay_button": { type: T.BUTTON, children: 'mask' | 'default' | 'hover' }, + "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/mask": { type: T.IMAGE, children: string }, + "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/default": { type: T.IMAGE, children: string }, + "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/hover": { type: T.IMAGE, children: string }, + "summary_content_left_side/full_content/top/image/key_image/rtx_label": { type: T.PANEL, children: string }, + "summary_content_left_side/full_content/top/divider": { type: T.PANEL, children: string }, + "summary_content_left_side/full_content/top/info": { type: T.STACK_PANEL, children: 'summary_title_and_author_panel' | 'pad_fill' | 'glyph_section' | 'ratings_summary' | 'vibrant_visuals_badge_and_hover' }, + "summary_content_left_side/full_content/top/info/summary_title_and_author_panel": { type: T.STACK_PANEL, children: string }, + "summary_content_left_side/full_content/top/info/pad_fill": { type: T.PANEL, children: string }, + "summary_content_left_side/full_content/top/info/glyph_section": { type: T.PANEL, children: 'glyph_section_panel' }, + "summary_content_left_side/full_content/top/info/glyph_section/glyph_section_panel": { type: T.STACK_PANEL, children: string }, + "summary_content_left_side/full_content/top/info/ratings_summary": { type: T.STACK_PANEL, children: 'ratings_display' }, + "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display": { type: T.STACK_PANEL, children: 'rating_stars_panel' | 'summary_rating_button' }, + "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel": { type: T.PANEL, children: 'rating' }, + "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel/rating": { type: T.PANEL, children: string }, + "summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/summary_rating_button": { type: T.BUTTON, children: string }, + "summary_content_left_side/full_content/top/info/vibrant_visuals_badge_and_hover": { type: T.PANEL, children: string }, + "summary_content_left_side/full_content/bottom": { type: T.PANEL, children: string }, + "offer_title_label": { type: T.PANEL, children: string }, + "title_and_author_panel": { type: T.STACK_PANEL, children: 'title_panel' | 'author_button_panel' }, + "title_and_author_panel/title_panel": { type: T.PANEL, children: string }, + "title_and_author_panel/author_button_panel": { type: T.PANEL, children: 'summary_author_button' }, + "title_and_author_panel/author_button_panel/summary_author_button": { type: T.BUTTON, children: string }, + "description_label": { type: T.LABEL, children: string }, + "warning_stack_panel": { type: T.STACK_PANEL, children: 'warning_icon' | 'pad_0' | 'warning_text_panel' }, + "warning_stack_panel/warning_icon": { type: T.IMAGE, children: string }, + "warning_stack_panel/pad_0": { type: T.PANEL, children: string }, + "warning_stack_panel/warning_text_panel": { type: T.PANEL, children: 'warning_text' }, + "warning_stack_panel/warning_text_panel/warning_text": { type: T.LABEL, children: string }, + "warning_panel": { type: T.PANEL, children: 'background' | 'content_stack_panel' }, + "warning_panel/background": { type: T.IMAGE, children: string }, + "warning_panel/content_stack_panel": { type: T.STACK_PANEL, children: string }, + "description_toggle_show_button_panel": { type: T.PANEL, children: 'description_bottom_right_button_border' | 'description_toggle_show_button' | 'warning_icon' }, + "description_toggle_show_button_panel/description_bottom_right_button_border": { type: T.IMAGE, children: string }, + "description_toggle_show_button_panel/description_toggle_show_button": { type: T.BUTTON, children: string }, + "description_toggle_show_button_panel/warning_icon": { type: T.IMAGE, children: string }, + "vibrant_visuals_underline_button": { type: T.BUTTON, children: string }, + "vibrant_visuals_hover_popup": { type: T.IMAGE, children: string }, + "vibrant_visuals_badge_display": { type: T.IMAGE, children: 'vibrant_visuals_underline_button' }, + "vibrant_visuals_badge_display/vibrant_visuals_underline_button": { type: T.BUTTON, children: string }, + "vibrant_visuals_badge_and_hover": { type: T.PANEL, children: 'vibrant_visuals_hover_popup' | 'vibrant_visuals_badge_display' }, + "vibrant_visuals_badge_and_hover/vibrant_visuals_hover_popup": { type: T.IMAGE, children: string }, + "vibrant_visuals_badge_and_hover/vibrant_visuals_badge_display": { type: T.IMAGE, children: string }, + "glyph_icon": { type: T.IMAGE, children: string }, + "glyph_count_label": { type: T.LABEL, children: string }, + "glyph_count_underline_button": { type: T.BUTTON, children: string }, + "glyph_count_hover_underline_button_panel": { type: T.PANEL, children: 'glyph_hover_popup' | 'glyph_count_underline_button' }, + "glyph_count_hover_underline_button_panel/glyph_hover_popup": { type: T.UNKNOWN, children: string }, + "glyph_count_hover_underline_button_panel/glyph_count_underline_button": { type: T.BUTTON, children: string }, + "glyph_icon_with_count": { type: T.STACK_PANEL, children: 'glyph_icon' | 'horizontal_padding' | 'item_glyph_count_panel_label' }, + "glyph_icon_with_count/glyph_icon": { type: T.IMAGE, children: string }, + "glyph_icon_with_count/horizontal_padding": { type: T.PANEL, children: string }, + "glyph_icon_with_count/item_glyph_count_panel_label": { type: T.UNKNOWN, children: string }, + "glyph_panel_hover_popup": { type: T.IMAGE, children: string }, + "glyph_panel_mashup_hover_popup": { type: T.IMAGE, children: string }, + "mashup_glyph_tooltip_content": { type: T.STACK_PANEL, children: 'mashup_text_row' | 'mashup_line_two' | 'offset_panel' }, + "mashup_glyph_tooltip_content/mashup_text_row": { type: T.STACK_PANEL, children: 'info_icon' | 'mashup_line_one' }, + "mashup_glyph_tooltip_content/mashup_text_row/info_icon": { type: T.STACK_PANEL, children: string }, + "mashup_glyph_tooltip_content/mashup_text_row/mashup_line_one": { type: T.PANEL, children: string }, + "mashup_glyph_tooltip_content/mashup_line_two": { type: T.PANEL, children: string }, + "mashup_glyph_tooltip_content/offset_panel": { type: T.PANEL, children: 'basic_vertical_glyph_section_panel' }, + "mashup_glyph_tooltip_content/offset_panel/basic_vertical_glyph_section_panel": { type: T.STACK_PANEL, children: string }, + "glyph_section_mashup": { type: T.STACK_PANEL, children: string }, + "glyph_section_skin": { type: T.STACK_PANEL, children: string }, + "glyph_section_resource_pack": { type: T.STACK_PANEL, children: string }, + "glyph_section_world": { type: T.STACK_PANEL, children: string }, + "glyph_section_addon": { type: T.STACK_PANEL, children: string }, + "basic_vertical_glyph_section_panel": { type: T.STACK_PANEL, children: 'glyph_section_skin' | 'glyph_section_world' | 'glyph_section_resource_pack' | 'glyph_section_addon' }, + "basic_vertical_glyph_section_panel/glyph_section_skin": { type: T.STACK_PANEL, children: string }, + "basic_vertical_glyph_section_panel/glyph_section_world": { type: T.STACK_PANEL, children: string }, + "basic_vertical_glyph_section_panel/glyph_section_resource_pack": { type: T.STACK_PANEL, children: string }, + "basic_vertical_glyph_section_panel/glyph_section_addon": { type: T.STACK_PANEL, children: string }, + "vertical_glyph_section_panel": { type: T.STACK_PANEL, children: 'glyph_section_mashup' | 'basic_vertical_glyph_section_panel' }, + "vertical_glyph_section_panel/glyph_section_mashup": { type: T.STACK_PANEL, children: string }, + "vertical_glyph_section_panel/basic_vertical_glyph_section_panel": { type: T.STACK_PANEL, children: string }, + "summary_text_panel": { type: T.STACK_PANEL, children: 'top_interact_button_stack' | 'apply_to_realm_panel' | 'in_csb_panel' | 'progress_loading_anim_panel' | 'pad_0' | 'disclaimer_panel' | 'pad_1' | 'save_share_button_panel' | 'pad_2' }, + "summary_text_panel/top_interact_button_stack": { type: T.STACK_PANEL, children: 'top_interact' }, + "summary_text_panel/top_interact_button_stack/top_interact": { type: T.PANEL, children: string }, + "summary_text_panel/apply_to_realm_panel": { type: T.PANEL, children: 'apply_to_realm_button' }, + "summary_text_panel/apply_to_realm_panel/apply_to_realm_button": { type: T.BUTTON, children: string }, + "summary_text_panel/in_csb_panel": { type: T.PANEL, children: 'in_csb_button' }, + "summary_text_panel/in_csb_panel/in_csb_button": { type: T.BUTTON, children: string }, + "summary_text_panel/progress_loading_anim_panel": { type: T.PANEL, children: 'progress_loading_anim' }, + "summary_text_panel/progress_loading_anim_panel/progress_loading_anim": { type: T.PANEL, children: string }, + "summary_text_panel/pad_0": { type: T.PANEL, children: string }, + "summary_text_panel/disclaimer_panel": { type: T.PANEL, children: string }, + "summary_text_panel/pad_1": { type: T.PANEL, children: string }, + "summary_text_panel/save_share_button_panel": { type: T.STACK_PANEL, children: string }, + "summary_text_panel/pad_2": { type: T.PANEL, children: string }, + "info_bulb_image": { type: T.IMAGE, children: string }, + "info_bulb_image_small": { type: T.IMAGE, children: string }, + "info_bulb_image_small_centered": { type: T.STACK_PANEL, children: 'top_filler' | 'middle_panel' | 'bottom_filler' }, + "info_bulb_image_small_centered/top_filler": { type: T.PANEL, children: string }, + "info_bulb_image_small_centered/middle_panel": { type: T.STACK_PANEL, children: 'front_filler' | 'info_bulb' | 'bottom_filler' }, + "info_bulb_image_small_centered/middle_panel/front_filler": { type: T.PANEL, children: string }, + "info_bulb_image_small_centered/middle_panel/info_bulb": { type: T.IMAGE, children: string }, + "info_bulb_image_small_centered/middle_panel/bottom_filler": { type: T.PANEL, children: string }, + "info_bulb_image_small_centered/bottom_filler": { type: T.PANEL, children: string }, + "realms_incompatable_content": { type: T.IMAGE, children: 'realms_content_stack_panel' }, + "realms_incompatable_content/realms_content_stack_panel": { type: T.STACK_PANEL, children: 'info_bulb_image' | 'padding' | 'realms_incompatable_button_label' }, + "realms_incompatable_content/realms_content_stack_panel/info_bulb_image": { type: T.IMAGE, children: string }, + "realms_incompatable_content/realms_content_stack_panel/padding": { type: T.PANEL, children: string }, + "realms_incompatable_content/realms_content_stack_panel/realms_incompatable_button_label": { type: T.LABEL, children: string }, + "apply_to_realm_button": { type: T.BUTTON, children: string }, + "in_csb_button": { type: T.BUTTON, children: string }, + "read_more_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "read_more_button/default": { type: T.PANEL, children: string }, + "read_more_button/hover": { type: T.IMAGE, children: string }, + "read_more_button/pressed": { type: T.IMAGE, children: string }, + "summary_content_right_side": { type: T.STACK_PANEL, children: 'pad_middle' | 'text' | 'entitlements_progress_panel' | 'pad_right' }, + "summary_content_right_side/pad_middle": { type: T.PANEL, children: string }, + "summary_content_right_side/text": { type: T.STACK_PANEL, children: string }, + "summary_content_right_side/entitlements_progress_panel": { type: T.PANEL, children: 'progress_loading' }, + "summary_content_right_side/entitlements_progress_panel/progress_loading": { type: T.IMAGE, children: string }, + "summary_content_right_side/pad_right": { type: T.PANEL, children: string }, + "summary_content_whole_stack_panel": { type: T.STACK_PANEL, children: 'left_side' | 'divider_panel' | 'right_side' }, + "summary_content_whole_stack_panel/left_side": { type: T.STACK_PANEL, children: string }, + "summary_content_whole_stack_panel/divider_panel": { type: T.PANEL, children: string }, + "summary_content_whole_stack_panel/right_side": { type: T.STACK_PANEL, children: string }, + "summary_content_panel": { type: T.STACK_PANEL, children: 'pad_top' | 'summary_content_whole_stack' | 'pad_3' | 'divider_3' }, + "summary_content_panel/pad_top": { type: T.PANEL, children: string }, + "summary_content_panel/summary_content_whole_stack": { type: T.STACK_PANEL, children: string }, + "summary_content_panel/pad_3": { type: T.PANEL, children: string }, + "summary_content_panel/divider_3": { type: T.PANEL, children: string }, + "appearance_status_image_panel": { type: T.PANEL, children: 'limited_status_image' | 'no_restrictions_status_image' }, + "appearance_status_image_panel/limited_status_image": { type: T.IMAGE, children: string }, + "appearance_status_image_panel/no_restrictions_status_image": { type: T.IMAGE, children: string }, + "appearance_status_content": { type: T.STACK_PANEL, children: 'appearance_status_image_panel' | 'last_update_panel' }, + "appearance_status_content/appearance_status_image_panel": { type: T.PANEL, children: string }, + "appearance_status_content/last_update_panel": { type: T.PANEL, children: 'last_update_label' }, + "appearance_status_content/last_update_panel/last_update_label": { type: T.LABEL, children: string }, + "dynamic_tooltip_notification_panel": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "dynamic_tooltip_notification_panel/default": { type: T.PANEL, children: string }, + "dynamic_tooltip_notification_panel/hover": { type: T.IMAGE, children: string }, + "dynamic_tooltip_notification_panel/pressed": { type: T.IMAGE, children: string }, + "update_notification_content": { type: T.PANEL, children: 'dynamic_tooltip_notification_panel' | 'status' }, + "update_notification_content/dynamic_tooltip_notification_panel": { type: T.BUTTON, children: string }, + "update_notification_content/status": { type: T.STACK_PANEL, children: string }, + "update_notification_stack_panel": { type: T.STACK_PANEL, children: 'pad_0' | 'content' | 'pad_1' }, + "update_notification_stack_panel/pad_0": { type: T.PANEL, children: string }, + "update_notification_stack_panel/content": { type: T.PANEL, children: string }, + "update_notification_stack_panel/pad_1": { type: T.PANEL, children: string }, + "tag_base": { type: T.IMAGE, children: string }, + "tag_button_panel": { type: T.PANEL, children: 'button' }, + "tag_button_panel/button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' | 'label' }, + "tag_button_panel/button/default": { type: T.IMAGE, children: string }, + "tag_button_panel/button/hover": { type: T.IMAGE, children: string }, + "tag_button_panel/button/pressed": { type: T.IMAGE, children: string }, + "tag_button_panel/button/label": { type: T.LABEL, children: string }, + "tag_row_factory": { type: T.STACK_PANEL, children: string }, + "player_count_button_panel": { type: T.PANEL, children: 'player_count_button' | 'comma' }, + "player_count_button_panel/player_count_button": { type: T.BUTTON, children: string }, + "player_count_button_panel/comma": { type: T.LABEL, children: string }, + "player_count_factory": { type: T.STACK_PANEL, children: string }, + "language_button_panel": { type: T.PANEL, children: 'language_button' | 'comma' }, + "language_button_panel/language_button": { type: T.BUTTON, children: string }, + "language_button_panel/comma": { type: T.LABEL, children: string }, + "language_row_factory": { type: T.STACK_PANEL, children: string }, + "description_inner_panel": { type: T.PANEL, children: 'description_stack_panel' }, + "description_inner_panel/description_stack_panel": { type: T.STACK_PANEL, children: 'pad_0' | 'title_stack_panel' | 'description_text_panel_full' | 'description_text_panel_collapsed' | 'pad_1' | 'divider_panel' | 'pad_2' | 'tags_panel' | 'genre_panel' | 'players_panel' | 'languages_panel' | 'pad_3' | 'show_less_button_panel' }, + "description_inner_panel/description_stack_panel/pad_0": { type: T.PANEL, children: string }, + "description_inner_panel/description_stack_panel/title_stack_panel": { type: T.STACK_PANEL, children: 'title_text_panel' | 'pad_0' | 'divider_panel' | 'pad_1' }, + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel": { type: T.STACK_PANEL, children: 'title_label_icon' | 'pad_0' | 'title_panel' }, + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_label_icon": { type: T.IMAGE, children: string }, + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/pad_0": { type: T.PANEL, children: string }, + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_panel": { type: T.PANEL, children: 'title_label' }, + "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_panel/title_label": { type: T.LABEL, children: string }, + "description_inner_panel/description_stack_panel/title_stack_panel/pad_0": { type: T.PANEL, children: string }, + "description_inner_panel/description_stack_panel/title_stack_panel/divider_panel": { type: T.PANEL, children: 'divider' }, + "description_inner_panel/description_stack_panel/title_stack_panel/divider_panel/divider": { type: T.PANEL, children: string }, + "description_inner_panel/description_stack_panel/title_stack_panel/pad_1": { type: T.PANEL, children: string }, + "description_inner_panel/description_stack_panel/description_text_panel_full": { type: T.STACK_PANEL, children: 'description_text_expanded' | 'button_panel' }, + "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded": { type: T.STACK_PANEL, children: 'description_label' | 'pad_0' | 'warning_panel' }, + "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/description_label": { type: T.LABEL, children: string }, + "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/pad_0": { type: T.PANEL, children: string }, + "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/warning_panel": { type: T.PANEL, children: string }, + "description_inner_panel/description_stack_panel/description_text_panel_full/button_panel": { type: T.PANEL, children: string }, + "description_inner_panel/description_stack_panel/description_text_panel_collapsed": { type: T.STACK_PANEL, children: 'description_text_collapsed' | 'collapsed_show_more_panel' }, + "description_inner_panel/description_stack_panel/description_text_panel_collapsed/description_text_collapsed": { type: T.LABEL, children: string }, + "description_inner_panel/description_stack_panel/description_text_panel_collapsed/collapsed_show_more_panel": { type: T.PANEL, children: string }, + "description_inner_panel/description_stack_panel/pad_1": { type: T.PANEL, children: string }, + "description_inner_panel/description_stack_panel/divider_panel": { type: T.PANEL, children: 'divider' }, + "description_inner_panel/description_stack_panel/divider_panel/divider": { type: T.PANEL, children: string }, + "description_inner_panel/description_stack_panel/pad_2": { type: T.PANEL, children: string }, + "description_inner_panel/description_stack_panel/tags_panel": { type: T.STACK_PANEL, children: 'label_text_panel' | 'pad' | 'tag_factory_panel' }, + "description_inner_panel/description_stack_panel/tags_panel/label_text_panel": { type: T.PANEL, children: 'label_text' }, + "description_inner_panel/description_stack_panel/tags_panel/label_text_panel/label_text": { type: T.LABEL, children: string }, + "description_inner_panel/description_stack_panel/tags_panel/pad": { type: T.PANEL, children: string }, + "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel": { type: T.PANEL, children: 'tags_factory_with_rows' | 'tags_factory' }, + "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel/tags_factory_with_rows": { type: T.STACK_PANEL, children: string }, + "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel/tags_factory": { type: T.STACK_PANEL, children: string }, + "description_inner_panel/description_stack_panel/genre_panel": { type: T.STACK_PANEL, children: 'label_text' | 'pad' | 'text_panel' }, + "description_inner_panel/description_stack_panel/genre_panel/label_text": { type: T.LABEL, children: string }, + "description_inner_panel/description_stack_panel/genre_panel/pad": { type: T.PANEL, children: string }, + "description_inner_panel/description_stack_panel/genre_panel/text_panel": { type: T.PANEL, children: 'text_stack_panel' }, + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel": { type: T.STACK_PANEL, children: 'genre_button' | 'pad_0' | 'slash_divider' | 'subgenre_button' }, + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/genre_button": { type: T.BUTTON, children: string }, + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/pad_0": { type: T.PANEL, children: string }, + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/slash_divider": { type: T.LABEL, children: string }, + "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/subgenre_button": { type: T.BUTTON, children: string }, + "description_inner_panel/description_stack_panel/players_panel": { type: T.STACK_PANEL, children: 'label_text' | 'pad' | 'text_panel' }, + "description_inner_panel/description_stack_panel/players_panel/label_text": { type: T.LABEL, children: string }, + "description_inner_panel/description_stack_panel/players_panel/pad": { type: T.PANEL, children: string }, + "description_inner_panel/description_stack_panel/players_panel/text_panel": { type: T.PANEL, children: 'text_stack_panel' }, + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel": { type: T.STACK_PANEL, children: 'player_count_button_panel' | 'note_text' }, + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel": { type: T.STACK_PANEL, children: 'player_count_button_factory' | 'pad' | 'player_count_range_panel' }, + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_button_factory": { type: T.STACK_PANEL, children: string }, + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/pad": { type: T.PANEL, children: string }, + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_range_panel": { type: T.PANEL, children: 'player_count_range_text' }, + "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": { type: T.LABEL, children: string }, + "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/note_text": { type: T.LABEL, children: string }, + "description_inner_panel/description_stack_panel/languages_panel": { type: T.STACK_PANEL, children: 'label_text_panel' | 'pad' | 'languages_factory' }, + "description_inner_panel/description_stack_panel/languages_panel/label_text_panel": { type: T.PANEL, children: 'label_text' }, + "description_inner_panel/description_stack_panel/languages_panel/label_text_panel/label_text": { type: T.LABEL, children: string }, + "description_inner_panel/description_stack_panel/languages_panel/pad": { type: T.PANEL, children: string }, + "description_inner_panel/description_stack_panel/languages_panel/languages_factory": { type: T.STACK_PANEL, children: string }, + "description_inner_panel/description_stack_panel/pad_3": { type: T.PANEL, children: string }, + "description_inner_panel/description_stack_panel/show_less_button_panel": { type: T.PANEL, children: string }, + "description_section": { type: T.STACK_PANEL, children: string }, + "changelog_section": { type: T.STACK_PANEL, children: string }, + "bundle_thumbnail": { type: T.IMAGE, children: string }, + "bundle_thumbnail_section_content": { type: T.PANEL, children: 'bundle_thumbnail_grid' }, + "bundle_thumbnail_section_content/bundle_thumbnail_grid": { type: T.GRID, children: string }, + "bundle_thumbnail_section": { type: T.STACK_PANEL, children: string }, + "price_panel": { type: T.STACK_PANEL, children: 'coin_non_sale_price_label' | 'price_padding' | 'offer_prompt_panel' | 'padding_3' | 'coin_panel' }, + "price_panel/coin_non_sale_price_label": { type: T.PANEL, children: string }, + "price_panel/price_padding": { type: T.PANEL, children: string }, + "price_panel/offer_prompt_panel": { type: T.PANEL, children: 'offer_status_text' }, + "price_panel/offer_prompt_panel/offer_status_text": { type: T.LABEL, children: string }, + "price_panel/padding_3": { type: T.PANEL, children: string }, + "price_panel/coin_panel": { type: T.PANEL, children: 'offer_coin_icon' }, + "price_panel/coin_panel/offer_coin_icon": { type: T.IMAGE, children: string }, + "rating_and_coins_panel": { type: T.STACK_PANEL, children: 'rating_panel' | 'rating_padding_coin' | 'price_panel' }, + "rating_and_coins_panel/rating_panel": { type: T.STACK_PANEL, children: string }, + "rating_and_coins_panel/rating_padding_coin": { type: T.PANEL, children: string }, + "rating_and_coins_panel/price_panel": { type: T.STACK_PANEL, children: string }, + "bundle_offer_texture": { type: T.PANEL, children: 'texture' }, + "bundle_offer_texture/texture": { type: T.IMAGE, children: 'border' }, + "bundle_offer_texture/texture/border": { type: T.IMAGE, children: string }, + "bundle_offer_info": { type: T.STACK_PANEL, children: 'top_padding' | 'offer_title_and_author_panel' | 'glyph_section' | 'glyph_description_padding' | 'description_panel' | 'description_padding' | 'description_padding_bottom' | 'rating_and_price_panel' | 'bottom_padding' }, + "bundle_offer_info/top_padding": { type: T.PANEL, children: string }, + "bundle_offer_info/offer_title_and_author_panel": { type: T.STACK_PANEL, children: string }, + "bundle_offer_info/glyph_section": { type: T.UNKNOWN, children: string }, + "bundle_offer_info/glyph_description_padding": { type: T.PANEL, children: string }, + "bundle_offer_info/description_panel": { type: T.UNKNOWN, children: string }, + "bundle_offer_info/description_padding": { type: T.PANEL, children: string }, + "bundle_offer_info/description_padding_bottom": { type: T.PANEL, children: string }, + "bundle_offer_info/rating_and_price_panel": { type: T.STACK_PANEL, children: string }, + "bundle_offer_info/bottom_padding": { type: T.PANEL, children: string }, + "bundle_offer_summary_grid_item_content": { type: T.IMAGE, children: 'bundle_offer_pdp_panel' }, + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel": { type: T.PANEL, children: 'focus_border' | 'bundle_offer_content_panel' }, + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/focus_border": { type: T.IMAGE, children: string }, + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel": { type: T.STACK_PANEL, children: 'key_art' | 'mid_padding' | 'info' | 'right_padding' }, + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/key_art": { type: T.PANEL, children: string }, + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/mid_padding": { type: T.PANEL, children: string }, + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/info": { type: T.STACK_PANEL, children: string }, + "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/right_padding": { type: T.PANEL, children: string }, + "bundle_offer_summary_grid_item": { type: T.PANEL, children: 'bundle_offer_summary_button' }, + "bundle_offer_summary_grid_item/bundle_offer_summary_button": { type: T.BUTTON, children: string }, + "bundle_offer_content_section": { type: T.PANEL, children: 'bundle_grid' }, + "bundle_offer_content_section/bundle_grid": { type: T.GRID, children: string }, + "bundle_summary_section_panel": { type: T.PANEL, children: 'bundle_summary_section' | 'divider_3' }, + "bundle_summary_section_panel/bundle_summary_section": { type: T.STACK_PANEL, children: 'bundle_header_and_thumnails_section' | 'mid_padding' | 'bundle_offers_info_section' | 'mid_padding_2' | 'interact_panel' }, + "bundle_summary_section_panel/bundle_summary_section/bundle_header_and_thumnails_section": { type: T.STACK_PANEL, children: string }, + "bundle_summary_section_panel/bundle_summary_section/mid_padding": { type: T.PANEL, children: string }, + "bundle_summary_section_panel/bundle_summary_section/bundle_offers_info_section": { type: T.PANEL, children: string }, + "bundle_summary_section_panel/bundle_summary_section/mid_padding_2": { type: T.PANEL, children: string }, + "bundle_summary_section_panel/bundle_summary_section/interact_panel": { type: T.PANEL, children: 'bundle_interact' }, + "bundle_summary_section_panel/bundle_summary_section/interact_panel/bundle_interact": { type: T.PANEL, children: string }, + "bundle_summary_section_panel/divider_3": { type: T.PANEL, children: string }, + "pdp_screen": { type: T.SCREEN, children: string }, + "mashup_screen_content": { type: T.PANEL, children: 'header' | 'popup_dialog_factory' }, + "mashup_screen_content/header": { type: T.STACK_PANEL, children: string }, + "mashup_screen_content/popup_dialog_factory": { type: T.FACTORY, children: string }, + "mashup_screen_main": { type: T.INPUT_PANEL, children: 'pack_content' | 'progress_loading' }, + "mashup_screen_main/pack_content": { type: T.PANEL, children: string }, + "mashup_screen_main/progress_loading": { type: T.PANEL, children: string }, } 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": { type: T.IMAGE, children: string }, + "screenshot_carousel": { type: T.PANEL, children: 'screenshot_carousel_content' }, + "screenshot_carousel/screenshot_carousel_content": { type: T.PANEL, children: 'cycle_pack_left_button' | 'screenshots_grid' | 'cycle_pack_right_button' }, + "screenshot_carousel/screenshot_carousel_content/cycle_pack_left_button": { type: T.BUTTON, children: string }, + "screenshot_carousel/screenshot_carousel_content/screenshots_grid": { type: T.STACK_PANEL, children: string }, + "screenshot_carousel/screenshot_carousel_content/cycle_pack_right_button": { type: T.BUTTON, children: string }, + "screenshots_grid": { type: T.STACK_PANEL, children: 'left_image_panel' | 'middle_image_panel' | 'right_image_panel' }, + "screenshots_grid/left_image_panel": { type: T.PANEL, children: string }, + "screenshots_grid/middle_image_panel": { type: T.PANEL, children: string }, + "screenshots_grid/right_image_panel": { type: T.PANEL, children: string }, + "screenshots_grid_item": { type: T.PANEL, children: 'frame' | 'screenshot_image' | 'progress_loading' }, + "screenshots_grid_item/frame": { type: T.IMAGE, children: 'screenshot_button' }, + "screenshots_grid_item/frame/screenshot_button": { type: T.BUTTON, children: 'hover' | 'pressed' }, + "screenshots_grid_item/frame/screenshot_button/hover": { type: T.IMAGE, children: string }, + "screenshots_grid_item/frame/screenshot_button/pressed": { type: T.IMAGE, children: string }, + "screenshots_grid_item/screenshot_image": { type: T.IMAGE, children: string }, + "screenshots_grid_item/progress_loading": { type: T.PANEL, children: string }, } 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": { type: T.SCREEN, children: string }, + "permissions_screen_content": { type: T.STACK_PANEL, children: 'top_bar_panel' | 'content_panel' }, + "permissions_screen_content/top_bar_panel": { type: T.PANEL, children: string }, + "permissions_screen_content/content_panel": { type: T.PANEL, children: string }, + "top_bar_panel": { type: T.PANEL, children: 'top_bar' | 'back_button' | 'gamepad_helper_b' | 'title_label' }, + "top_bar_panel/top_bar": { type: T.IMAGE, children: string }, + "top_bar_panel/back_button": { type: T.BUTTON, children: string }, + "top_bar_panel/gamepad_helper_b": { type: T.STACK_PANEL, children: string }, + "top_bar_panel/title_label": { type: T.LABEL, children: string }, + "content_panel": { type: T.PANEL, children: 'content_stack_panel' }, + "content_panel/content_stack_panel": { type: T.STACK_PANEL, children: 'content_padding_1' | 'ip_label' | 'world_label' | 'content_padding_2' | 'player_and_permissions_panel' }, + "content_panel/content_stack_panel/content_padding_1": { type: T.PANEL, children: string }, + "content_panel/content_stack_panel/ip_label": { type: T.LABEL, children: string }, + "content_panel/content_stack_panel/world_label": { type: T.LABEL, children: string }, + "content_panel/content_stack_panel/content_padding_2": { type: T.PANEL, children: string }, + "content_panel/content_stack_panel/player_and_permissions_panel": { type: T.STACK_PANEL, children: string }, + "player_and_permissions_panel": { type: T.STACK_PANEL, children: 'selector_area' | 'content_area' }, + "player_and_permissions_panel/selector_area": { type: T.INPUT_PANEL, children: string }, + "player_and_permissions_panel/content_area": { type: T.INPUT_PANEL, children: string }, + "selector_area": { type: T.INPUT_PANEL, children: 'player_scrolling_panel' }, + "selector_area/player_scrolling_panel": { type: T.PANEL, children: string }, + "content_area": { type: T.INPUT_PANEL, children: 'permissions_options_background' | 'inactive_modal_pane_fade' }, + "content_area/permissions_options_background": { type: T.PANEL, children: 'permissions_options_background_image' }, + "content_area/permissions_options_background/permissions_options_background_image": { type: T.IMAGE, children: 'permissions_options_scrolling_panel' }, + "content_area/permissions_options_background/permissions_options_background_image/permissions_options_scrolling_panel": { type: T.PANEL, children: string }, + "content_area/inactive_modal_pane_fade": { type: T.IMAGE, children: string }, + "kick_button": { type: T.BUTTON, children: string }, + "ban_button": { type: T.BUTTON, children: string }, + "players_grid_panel": { type: T.PANEL, children: 'players_grid' }, + "players_grid_panel/players_grid": { type: T.GRID, children: string }, + "players_grid": { type: T.GRID, children: string }, + "player_grid_item": { type: T.PANEL, children: 'player_toggle' | 'inactive_modal_pane_fade' }, + "player_grid_item/player_toggle": { type: T.PANEL, children: string }, + "player_grid_item/inactive_modal_pane_fade": { type: T.IMAGE, children: string }, + "permissions_options_scrolling_panel": { type: T.PANEL, children: string }, + "permissions_options_panel": { type: T.PANEL, children: 'inner_permissions_options_panel' }, + "permissions_options_panel/inner_permissions_options_panel": { type: T.PANEL, children: 'permissions_options_stack_panel' }, + "permissions_options_panel/inner_permissions_options_panel/permissions_options_stack_panel": { type: T.STACK_PANEL, children: string }, + "permissions_options_stack_panel": { type: T.STACK_PANEL, children: 'permissions_padding_0' | 'world_template_option_lock_panel' | 'permissions_padding_1' | 'permission_level_dropdown' | 'permissions_padding_2' | 'permissions_options_grid' | 'permissions_padding_3' | 'permissions_kick_button_panel' | 'permissions_padding_4' | 'permissions_ban_button_panel' | 'permissions_padding_5' }, + "permissions_options_stack_panel/permissions_padding_0": { type: T.PANEL, children: string }, + "permissions_options_stack_panel/world_template_option_lock_panel": { type: T.PANEL, children: 'option_info_label' }, + "permissions_options_stack_panel/world_template_option_lock_panel/option_info_label": { type: T.PANEL, children: string }, + "permissions_options_stack_panel/permissions_padding_1": { type: T.PANEL, children: string }, + "permissions_options_stack_panel/permission_level_dropdown": { type: T.PANEL, children: string }, + "permissions_options_stack_panel/permissions_padding_2": { type: T.PANEL, children: string }, + "permissions_options_stack_panel/permissions_options_grid": { type: T.GRID, children: string }, + "permissions_options_stack_panel/permissions_padding_3": { type: T.PANEL, children: string }, + "permissions_options_stack_panel/permissions_kick_button_panel": { type: T.PANEL, children: string }, + "permissions_options_stack_panel/permissions_padding_4": { type: T.PANEL, children: string }, + "permissions_options_stack_panel/permissions_ban_button_panel": { type: T.PANEL, children: string }, + "permissions_options_stack_panel/permissions_padding_5": { type: T.PANEL, children: string }, + "permissions_options_grid": { type: T.GRID, children: string }, + "permissions_options_grid_item": { type: T.STACK_PANEL, children: 'option_label_panel' | 'option_state_label_panel' | 'option_toggle' }, + "permissions_options_grid_item/option_label_panel": { type: T.PANEL, children: 'option_label' }, + "permissions_options_grid_item/option_label_panel/option_label": { type: T.LABEL, children: string }, + "permissions_options_grid_item/option_state_label_panel": { type: T.PANEL, children: 'option_state_label' }, + "permissions_options_grid_item/option_state_label_panel/option_state_label": { type: T.LABEL, children: string }, + "permissions_options_grid_item/option_toggle": { type: T.PANEL, children: string }, + "permissions_kick_button_panel": { type: T.PANEL, children: 'kick_button' }, + "permissions_kick_button_panel/kick_button": { type: T.BUTTON, children: string }, + "permissions_ban_button_panel": { type: T.PANEL, children: 'ban_button' }, + "permissions_ban_button_panel/ban_button": { type: T.BUTTON, children: string }, + "title_label": { type: T.LABEL, children: string }, + "ip_label": { type: T.LABEL, children: string }, + "world_label": { type: T.LABEL, children: string }, + "gamertag_label": { type: T.LABEL, children: string }, + "option_state_label": { type: T.LABEL, children: string }, + "option_label": { type: T.LABEL, children: string }, + "top_bar": { type: T.IMAGE, children: string }, + "banner_background": { type: T.IMAGE, children: string }, + "player_local_icon": { type: T.IMAGE, children: string }, + "player_gamer_pic": { type: T.IMAGE, children: 'player_panel_black_border' }, + "player_gamer_pic/player_panel_black_border": { type: T.IMAGE, children: string }, + "back_button": { type: T.BUTTON, children: string }, + "back_button_content": { type: T.STACK_PANEL, children: 'chevron_panel' | 'back_button_padding' | 'label_panel' }, + "back_button_content/chevron_panel": { type: T.PANEL, children: 'left_chevron' }, + "back_button_content/chevron_panel/left_chevron": { type: T.IMAGE, children: string }, + "back_button_content/back_button_padding": { type: T.PANEL, children: string }, + "back_button_content/label_panel": { type: T.PANEL, children: 'label' }, + "back_button_content/label_panel/label": { type: T.LABEL, children: string }, + "player_toggle": { type: T.PANEL, children: string }, + "player_button_content": { type: T.STACK_PANEL, children: 'player_pic_panel' | 'player_button_padding_1' | 'gamertag_panel' | 'icon_panel' | 'player_button_padding_2' }, + "player_button_content/player_pic_panel": { type: T.PANEL, children: string }, + "player_button_content/player_button_padding_1": { type: T.PANEL, children: string }, + "player_button_content/gamertag_panel": { type: T.PANEL, children: 'gamertag_label' }, + "player_button_content/gamertag_panel/gamertag_label": { type: T.LABEL, children: string }, + "player_button_content/icon_panel": { type: T.PANEL, children: 'dropdown_icon_image' }, + "player_button_content/icon_panel/dropdown_icon_image": { type: T.IMAGE, children: string }, + "player_button_content/player_button_padding_2": { type: T.PANEL, children: string }, + "player_pic_panel": { type: T.PANEL, children: 'player_gamer_pic' | 'player_local_icon' }, + "player_pic_panel/player_gamer_pic": { type: T.IMAGE, children: string }, + "player_pic_panel/player_local_icon": { type: T.IMAGE, children: string }, + "option_toggle": { type: T.PANEL, children: string }, + "permission_level_dropdown": { type: T.PANEL, children: string }, + "radio_title_and_icon": { type: T.PANEL, children: 'radio_icon' | 'radio_title' }, + "radio_title_and_icon/radio_icon": { type: T.IMAGE, children: string }, + "radio_title_and_icon/radio_title": { type: T.LABEL, children: string }, + "radio_content_with_title_bar": { type: T.STACK_PANEL, children: 'title_and_icon' | 'helper_text' | 'bottom_padding' }, + "radio_content_with_title_bar/title_and_icon": { type: T.PANEL, children: string }, + "radio_content_with_title_bar/helper_text": { type: T.LABEL, children: string }, + "radio_content_with_title_bar/bottom_padding": { type: T.PANEL, children: string }, + "radio_visuals_with_title": { type: T.PANEL, children: 'radio_content' }, + "radio_visuals_with_title/radio_content": { type: T.STACK_PANEL, children: string }, + "radio_visuals_with_title_hover": { type: T.IMAGE, children: 'radio_content' }, + "radio_visuals_with_title_hover/radio_content": { type: T.STACK_PANEL, children: string }, + "permissions_visitor_visuals_with_title_normal": { type: T.PANEL, children: string }, + "permissions_visitor_visuals_with_title_hover": { type: T.IMAGE, children: string }, + "permissions_member_visuals_with_title_normal": { type: T.PANEL, children: string }, + "permissions_member_visuals_with_title_hover": { type: T.IMAGE, children: string }, + "permissions_op_visuals_with_title_normal": { type: T.PANEL, children: string }, + "permissions_op_visuals_with_title_hover": { type: T.IMAGE, children: string }, + "permissions_visitor_radio_visuals_normal": { type: T.PANEL, children: string }, + "permissions_visitor_radio_visuals_hover": { type: T.PANEL, children: string }, + "permissions_member_radio_visuals_normal": { type: T.PANEL, children: string }, + "permissions_member_radio_visuals_hover": { type: T.PANEL, children: string }, + "permissions_op_radio_visuals_normal": { type: T.PANEL, children: string }, + "permissions_op_radio_visuals_hover": { type: T.PANEL, children: string }, + "permissions_custom_radio_visuals_normal": { type: T.PANEL, children: string }, + "permissions_custom_radio_visuals_hover": { type: T.PANEL, children: string }, + "permission_level_radio": { type: T.PANEL, children: 'radio_with_label_core' }, + "permission_level_radio/radio_with_label_core": { type: T.TOGGLE, children: string }, + "permission_level_dropdown_content": { type: T.PANEL, children: string }, + "permission_level_dropdown_state_content": { type: T.STACK_PANEL, children: 'icon_panel' | 'dropdown_label_padding' | 'label_panel' | 'arrow_panel' }, + "permission_level_dropdown_state_content/icon_panel": { type: T.PANEL, children: 'dropdown_icon_image' }, + "permission_level_dropdown_state_content/icon_panel/dropdown_icon_image": { type: T.IMAGE, children: string }, + "permission_level_dropdown_state_content/dropdown_label_padding": { type: T.PANEL, children: string }, + "permission_level_dropdown_state_content/label_panel": { type: T.PANEL, children: 'label' }, + "permission_level_dropdown_state_content/label_panel/label": { type: T.LABEL, children: string }, + "permission_level_dropdown_state_content/arrow_panel": { type: T.PANEL, children: 'arrow_image' }, + "permission_level_dropdown_state_content/arrow_panel/arrow_image": { type: T.IMAGE, children: string }, } 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": { type: T.STACK_PANEL, children: '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' }, + "cast_modal_bottom_bar/0": { type: T.UNKNOWN, children: string }, + "cast_common_dialog_background": { type: T.IMAGE, children: 'top_bar' | 'popup_inner_contents' | 'cast_modal_bottom_bar' }, + "cast_common_dialog_background/top_bar": { type: T.PANEL, children: string }, + "cast_common_dialog_background/popup_inner_contents": { type: T.UNKNOWN, children: string }, + "cast_common_dialog_background/cast_modal_bottom_bar": { type: T.STACK_PANEL, children: string }, + "cast_modal_panel": { type: T.INPUT_PANEL, children: 'cast_preview_modal_content' }, + "cast_modal_panel/cast_preview_modal_content": { type: T.IMAGE, children: string }, + "popup_dialog__cast_character_select": { type: T.INPUT_PANEL, children: 'background' | 'popup_background' }, + "popup_dialog__cast_character_select/background": { type: T.IMAGE, children: string }, + "popup_dialog__cast_character_select/popup_background": { type: T.INPUT_PANEL, children: string }, + "common_dcast_popup_framework": { type: T.INPUT_PANEL, children: string }, + "common_cast_modal_top_bar": { type: T.PANEL, children: 'title_panel' | 'close_button_holder' }, + "common_cast_modal_top_bar/title_panel": { type: T.LABEL, children: string }, + "common_cast_modal_top_bar/close_button_holder": { type: T.STACK_PANEL, children: string }, + "cast_character_select_main": { type: T.PANEL, children: 'modal_inner_background' | 'main_content_horizontal_stack' }, + "cast_character_select_main/modal_inner_background": { type: T.IMAGE, children: string }, + "cast_character_select_main/main_content_horizontal_stack": { type: T.STACK_PANEL, children: 'cast_grid' | 'vertical_centerer' }, + "cast_character_select_main/main_content_horizontal_stack/cast_grid": { type: T.PANEL, children: string }, + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer": { type: T.PANEL, children: 'top_fill' | 'skin_viewer_panel' | 'bottom_fill' | 'bottom_padding' }, + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/top_fill": { type: T.PANEL, children: string }, + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/skin_viewer_panel": { type: T.PANEL, children: string }, + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/bottom_fill": { type: T.PANEL, children: string }, + "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/bottom_padding": { type: T.PANEL, children: string }, + "cast_scroll_view_panel": { type: T.PANEL, children: string }, + "cast_grid_with_buttons": { type: T.STACK_PANEL, children: 'top_spacing' | 'cast_grid' | 'bottom_spacing' }, + "cast_grid_with_buttons/top_spacing": { type: T.PANEL, children: string }, + "cast_grid_with_buttons/cast_grid": { type: T.GRID, children: string }, + "cast_grid_with_buttons/bottom_spacing": { type: T.PANEL, children: string }, + "cast_grid_panel": { type: T.PANEL, children: 'cast_grid' }, + "cast_grid_panel/cast_grid": { type: T.STACK_PANEL, children: string }, + "cast_single_character_button_panel": { type: T.PANEL, children: 'cast_character_button' }, + "cast_single_character_button_panel/cast_character_button": { type: T.BUTTON, children: 'background_image' | 'selected' | 'default' | 'hover' | 'pressed' | 'button_outline' }, + "cast_single_character_button_panel/cast_character_button/background_image": { type: T.IMAGE, children: string }, + "cast_single_character_button_panel/cast_character_button/selected": { type: T.IMAGE, children: string }, + "cast_single_character_button_panel/cast_character_button/default": { type: T.PANEL, children: string }, + "cast_single_character_button_panel/cast_character_button/hover": { type: T.IMAGE, children: string }, + "cast_single_character_button_panel/cast_character_button/pressed": { type: T.IMAGE, children: string }, + "cast_single_character_button_panel/cast_character_button/button_outline": { type: T.IMAGE, children: 'cast_character_content' }, + "cast_single_character_button_panel/cast_character_button/button_outline/cast_character_content": { type: T.PANEL, children: string }, + "cast_character_button_content_panel": { type: T.PANEL, children: 'cast_single_character_content_visible_panel' }, + "cast_character_button_content_panel/cast_single_character_content_visible_panel": { type: T.PANEL, children: 'cast_single_character_button_content' }, + "cast_character_button_content_panel/cast_single_character_content_visible_panel/cast_single_character_button_content": { type: T.IMAGE, children: string }, + "in_use_grid_item": { type: T.IMAGE, children: string }, + "persona_cast_paper_doll_panel": { type: T.PANEL, children: 'preset_input_panel' }, + "persona_cast_paper_doll_panel/preset_input_panel": { type: T.INPUT_PANEL, children: string }, + "character_loading_anim": { type: T.IMAGE, children: string }, + "character_loading_anim_panel": { type: T.IMAGE, children: 'character_loading_anim' }, + "character_loading_anim_panel/character_loading_anim": { type: T.IMAGE, children: string }, + "skin_viewer_panel_skin_model": { type: T.PANEL, children: 'skin_model' }, + "skin_viewer_panel_skin_model/skin_model": { type: T.CUSTOM, children: string }, + "cast_character_screen_right_side_model": { type: T.INPUT_PANEL, children: 'skin_model_panel' | 'skin_model_loading_anim' | 'skin_model_label' }, + "cast_character_screen_right_side_model/skin_model_panel": { type: T.PANEL, children: string }, + "cast_character_screen_right_side_model/skin_model_loading_anim": { type: T.IMAGE, children: string }, + "cast_character_screen_right_side_model/skin_model_label": { type: T.LABEL, children: string }, + "common_background_blocker": { type: T.IMAGE, children: 'modal_background_button' }, + "common_background_blocker/modal_background_button": { type: T.BUTTON, children: string }, + "common_preview_page_framework": { type: T.INPUT_PANEL, children: 'background' | 'cast_preview_modal' }, + "common_preview_page_framework/background": { type: T.IMAGE, children: string }, + "common_preview_page_framework/cast_preview_modal": { type: T.INPUT_PANEL, children: string }, + "cast_preview_page_one": { type: T.INPUT_PANEL, children: string }, + "cast_preview_page_two": { type: T.INPUT_PANEL, children: string }, + "cast_preview_page_one_inner_section": { type: T.PANEL, children: 'modal_inner_background' | 'cast_content' }, + "cast_preview_page_one_inner_section/modal_inner_background": { type: T.IMAGE, children: string }, + "cast_preview_page_one_inner_section/cast_content": { type: T.INPUT_PANEL, children: 'cast_image_cycler' | 'cast_vertical_panel' }, + "cast_preview_page_one_inner_section/cast_content/cast_image_cycler": { type: T.IMAGE_CYCLER, children: string }, + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel": { type: T.STACK_PANEL, children: 'controls_label_panel' | 'buffer_panel' | 'controls_shoulder_button_display_panel' }, + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_label_panel": { type: T.PANEL, children: 'text_cycler' }, + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_label_panel/text_cycler": { type: T.LABEL_CYCLER, children: string }, + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/buffer_panel": { type: T.PANEL, children: string }, + "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_shoulder_button_display_panel": { type: T.PANEL, children: string }, + "chevron_image_panel": { type: T.PANEL, children: 'chevron_image' }, + "chevron_image_panel/chevron_image": { type: T.IMAGE, children: string }, + "chevron_button": { type: T.BUTTON, children: string }, + "shift_page_panel": { type: T.PANEL, children: 'centering_panel' }, + "shift_page_panel/centering_panel": { type: T.PANEL, children: '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' }, + "shift_page_panel/centering_panel/0": { type: T.UNKNOWN, children: string }, + "shift_page_left_panel": { type: T.PANEL, children: string }, + "shift_page_right_panel": { type: T.PANEL, children: string }, + "horizontal_8px_padding": { type: T.PANEL, children: string }, + "horizontal_20px_padding": { type: T.PANEL, children: string }, + "ftue_subpage_indicator_panel": { type: T.PANEL, children: 'controls_shoulder_button_display' }, + "ftue_subpage_indicator_panel/controls_shoulder_button_display": { type: T.STACK_PANEL, children: 'left_padding' | 'left_shoulder_button_panel' | 'left_shoulder_button_padding' | 'page_indicator_grid' | 'right_shoulder_button_padding' | 'right_shoulder_button_panel' | 'right_padding' }, + "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_padding": { type: T.PANEL, children: string }, + "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_shoulder_button_panel": { type: T.PANEL, children: string }, + "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_shoulder_button_padding": { type: T.PANEL, children: string }, + "ftue_subpage_indicator_panel/controls_shoulder_button_display/page_indicator_grid": { type: T.GRID_PAGE_INDICATOR, children: string }, + "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_shoulder_button_padding": { type: T.PANEL, children: string }, + "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_shoulder_button_panel": { type: T.PANEL, children: string }, + "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_padding": { type: T.PANEL, children: string }, + "individaul_cast_page_indicator": { type: T.PANEL, children: 'panel_when_current_page' | 'panel_when_not_current_page' }, + "individaul_cast_page_indicator/panel_when_current_page": { type: T.PANEL, children: 'panel_with_padding' }, + "individaul_cast_page_indicator/panel_when_current_page/panel_with_padding": { type: T.PANEL, children: 'cast_dot' }, + "individaul_cast_page_indicator/panel_when_current_page/panel_with_padding/cast_dot": { type: T.IMAGE, children: string }, + "individaul_cast_page_indicator/panel_when_not_current_page": { type: T.PANEL, children: 'panel_with_padding' }, + "individaul_cast_page_indicator/panel_when_not_current_page/panel_with_padding": { type: T.PANEL, children: 'cast_dot' }, + "individaul_cast_page_indicator/panel_when_not_current_page/panel_with_padding/cast_dot": { type: T.IMAGE, children: string }, + "how_to_section": { type: T.STACK_PANEL, children: 'how_to_image' | 'how_to_label_section' }, + "how_to_section/how_to_image": { type: T.IMAGE, children: string }, + "how_to_section/how_to_label_section": { type: T.PANEL, children: 'how_to_label' }, + "how_to_section/how_to_label_section/how_to_label": { type: T.LABEL, children: string }, + "cast_preview_page_two_inner_section": { type: T.IMAGE, children: 'how_to_section_stack' }, + "cast_preview_page_two_inner_section/how_to_section_stack": { type: T.STACK_PANEL, children: 'how_to_section_left' | 'divider_panel' | 'how_to_section_right' }, + "cast_preview_page_two_inner_section/how_to_section_stack/how_to_section_left": { type: T.STACK_PANEL, children: string }, + "cast_preview_page_two_inner_section/how_to_section_stack/divider_panel": { type: T.PANEL, children: 'divider' }, + "cast_preview_page_two_inner_section/how_to_section_stack/divider_panel/divider": { type: T.IMAGE, children: string }, + "cast_preview_page_two_inner_section/how_to_section_stack/how_to_section_right": { type: T.STACK_PANEL, children: string }, } 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": { type: T.IMAGE, children: string }, + "mashup_world": { type: T.IMAGE, children: string }, + "mashup_hangar": { type: T.IMAGE, children: string }, + "mashup_paintbrush": { type: T.IMAGE, children: string }, + "info_bulb_icon": { type: T.IMAGE, children: string }, + "green_checkmark_icon": { type: T.IMAGE, children: string }, + "persona_screen_background_content": { type: T.IMAGE, children: string }, + "loading_icon": { type: T.IMAGE, children: string }, + "focus_border": { type: T.IMAGE, children: string }, + "selected_border": { type: T.IMAGE, children: string }, + "equipped_border": { type: T.IMAGE, children: string }, + "progress_loading": { type: T.IMAGE, children: 'progress_loading' }, + "progress_loading/progress_loading": { type: T.PANEL, children: string }, + "title_rarity_positionable_title": { type: T.LABEL, children: string }, + "generic_title_panel": { type: T.IMAGE, children: 'title_label' }, + "generic_title_panel/title_label": { type: T.LABEL, children: string }, + "rarity_bar": { type: T.IMAGE, children: string }, + "item_rarity_color_background": { type: T.IMAGE, children: string }, + "piece_item_display": { type: T.PANEL, children: 'item_renderer' | 'loading_progress_spinner' }, + "piece_item_display/item_renderer": { type: T.PANEL, children: 'background' | 'item_image' | 'rarity_bar_panel' | 'extra_control' }, + "piece_item_display/item_renderer/background": { type: T.IMAGE, children: string }, + "piece_item_display/item_renderer/item_image": { type: T.IMAGE, children: string }, + "piece_item_display/item_renderer/rarity_bar_panel": { type: T.IMAGE, children: string }, + "piece_item_display/item_renderer/extra_control": { type: T.PANEL, children: 'control_instance' }, + "piece_item_display/item_renderer/extra_control/control_instance": { type: T.UNKNOWN, children: string }, + "piece_item_display/loading_progress_spinner": { type: T.IMAGE, children: string }, + "wheel_state": { type: T.IMAGE, children: string }, + "emote_label": { type: T.LABEL, children: string }, + "touch_name_label": { type: T.LABEL, children: string }, + "emote_image": { type: T.PANEL, children: 'empty' | 'emote_preview' }, + "emote_image/empty": { type: T.IMAGE, children: string }, + "emote_image/emote_preview": { type: T.PANEL, children: 'valid' | 'valid_no_image' }, + "emote_image/emote_preview/valid": { type: T.IMAGE, children: string }, + "emote_image/emote_preview/valid_no_image": { type: T.PANEL, children: 'valid_text' }, + "emote_image/emote_preview/valid_no_image/valid_text": { type: T.LABEL, children: string }, + "keyboard_hotkey_helpers": { type: T.PANEL, children: 'keyboard_1' | 'keyboard_2' | 'keyboard_3' | 'keyboard_4' }, + "keyboard_hotkey_helpers/keyboard_1": { type: T.STACK_PANEL, children: string }, + "keyboard_hotkey_helpers/keyboard_2": { type: T.STACK_PANEL, children: string }, + "keyboard_hotkey_helpers/keyboard_3": { type: T.STACK_PANEL, children: string }, + "keyboard_hotkey_helpers/keyboard_4": { type: T.STACK_PANEL, children: string }, + "gamepad_hotkey_helpers": { type: T.PANEL, children: 'quick_select_gamepad_helpers' | 'analog_select_gamepad_helper_panel' }, + "gamepad_hotkey_helpers/quick_select_gamepad_helpers": { type: T.PANEL, children: 'gamepad_y' | 'gamepad_b' | 'gamepad_a' | 'gamepad_x' }, + "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_y": { type: T.STACK_PANEL, children: string }, + "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_b": { type: T.UNKNOWN, children: string }, + "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_a": { type: T.UNKNOWN, children: string }, + "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_x": { type: T.STACK_PANEL, children: string }, + "gamepad_hotkey_helpers/analog_select_gamepad_helper_panel": { type: T.PANEL, children: 'analog_select_gamepad_helper' }, + "gamepad_hotkey_helpers/analog_select_gamepad_helper_panel/analog_select_gamepad_helper": { type: T.STACK_PANEL, children: string }, + "emote_wheel_slot_content": { type: T.PANEL, children: 'image_0' | 'touch_label_0' }, + "emote_wheel_slot_content/image_0": { type: T.PANEL, children: string }, + "emote_wheel_slot_content/touch_label_0": { type: T.LABEL, children: string }, + "selection_wheel": { type: T.SELECTION_WHEEL, children: string }, + "emote_selection_wheel": { type: T.SELECTION_WHEEL, children: 'default_state' | 'emote_slot_0_content' | 'emote_slot_1_content' | 'emote_slot_2_content' | 'emote_slot_3_content' }, + "emote_selection_wheel/default_state": { type: T.IMAGE, children: string }, + "emote_selection_wheel/emote_slot_0_content": { type: T.PANEL, children: string }, + "emote_selection_wheel/emote_slot_1_content": { type: T.PANEL, children: string }, + "emote_selection_wheel/emote_slot_2_content": { type: T.PANEL, children: string }, + "emote_selection_wheel/emote_slot_3_content": { type: T.PANEL, children: string }, + "emote_wheel_panel": { type: T.PANEL, children: 'emote_name' | 'emote_wheel_content_panel' }, + "emote_wheel_panel/emote_name": { type: T.LABEL, children: string }, + "emote_wheel_panel/emote_wheel_content_panel": { type: T.PANEL, children: 'gamepad_helpers' | 'keyboard_helpers' | 'emote_wheel' }, + "emote_wheel_panel/emote_wheel_content_panel/gamepad_helpers": { type: T.PANEL, children: string }, + "emote_wheel_panel/emote_wheel_content_panel/keyboard_helpers": { type: T.PANEL, children: string }, + "emote_wheel_panel/emote_wheel_content_panel/emote_wheel": { type: T.SELECTION_WHEEL, children: string }, } 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": { type: T.PANEL, children: string }, + "common_image": { type: T.IMAGE, children: string }, + "common_icon": { type: T.IMAGE, children: string }, + "create_persona_choice_checked_image": { type: T.IMAGE, children: string }, + "create_persona_choice_unchecked_image": { type: T.IMAGE, children: string }, + "modal_window_input_blocker": { type: T.IMAGE, children: string }, + "modal_popup_background": { type: T.IMAGE, children: string }, + "general_text_field": { type: T.LABEL, children: string }, + "title_text": { type: T.LABEL, children: string }, + "popup_title": { type: T.LABEL, children: string }, + "popup_content": { type: T.PANEL, children: string }, + "popup_ok_button": { type: T.BUTTON, children: string }, + "popup_frame": { type: T.IMAGE, children: 'title_label' | 'close_button' | 'content' | 'ok_button' }, + "popup_frame/title_label": { type: T.LABEL, children: string }, + "popup_frame/close_button": { type: T.BUTTON, children: string }, + "popup_frame/content": { type: T.PANEL, children: string }, + "popup_frame/ok_button": { type: T.BUTTON, children: string }, + "popup_info_panel": { type: T.PANEL, children: 'background' | 'frame' }, + "popup_info_panel/background": { type: T.IMAGE, children: string }, + "popup_info_panel/frame": { type: T.IMAGE, children: string }, + "common_dialog": { type: T.INPUT_PANEL, children: 'background' | 'panel' }, + "common_dialog/background": { type: T.IMAGE, children: string }, + "common_dialog/panel": { type: T.PANEL, children: string }, + "popup_dialog_bg": { type: T.IMAGE, children: 'background_image' | 'title_panel' | 'popup_content' }, + "popup_dialog_bg/background_image": { type: T.IMAGE, children: string }, + "popup_dialog_bg/title_panel": { type: T.PANEL, children: 'title' }, + "popup_dialog_bg/title_panel/title": { type: T.LABEL, children: string }, + "popup_dialog_bg/popup_content": { type: T.UNKNOWN, children: string }, + "icon_title_bar": { type: T.STACK_PANEL, children: 'icon' | 'padding' | 'text_title_panel' }, + "icon_title_bar/icon": { type: T.IMAGE, children: string }, + "icon_title_bar/padding": { type: T.PANEL, children: string }, + "icon_title_bar/text_title_panel": { type: T.LABEL, children: string }, + "popup_common": { type: T.INPUT_PANEL, children: 'background' }, + "popup_common/background": { type: T.IMAGE, children: 'text_stack_panel' }, + "popup_common/background/text_stack_panel": { type: T.LABEL, children: string }, + "popup_dialog__difference_information": { type: T.INPUT_PANEL, children: string }, + "differences_left_details": { type: T.LABEL, children: string }, + "differences_left_section": { type: T.STACK_PANEL, children: 'title_bar' | 'padding_1' | 'details' }, + "differences_left_section/title_bar": { type: T.STACK_PANEL, children: string }, + "differences_left_section/padding_1": { type: T.PANEL, children: string }, + "differences_left_section/details": { type: T.LABEL, children: string }, + "differences_detail_image": { type: T.IMAGE, children: string }, + "differences_title_card_display": { type: T.STACK_PANEL, children: 'left' | 'padding_1' | 'right' }, + "differences_title_card_display/left": { type: T.STACK_PANEL, children: string }, + "differences_title_card_display/padding_1": { type: T.PANEL, children: string }, + "differences_title_card_display/right": { type: T.IMAGE, children: string }, + "differences_persona_detail_section": { type: T.STACK_PANEL, children: string }, + "differences_classic_skin_detail_section": { type: T.STACK_PANEL, children: string }, + "different_info_panel_contents": { type: T.STACK_PANEL, children: 'character_display' | 'item_1_padding' | 'divider' | 'item_2_padding' | 'classic_skin_display' }, + "different_info_panel_contents/character_display": { type: T.STACK_PANEL, children: string }, + "different_info_panel_contents/item_1_padding": { type: T.PANEL, children: string }, + "different_info_panel_contents/divider": { type: T.PANEL, children: string }, + "different_info_panel_contents/item_2_padding": { type: T.PANEL, children: string }, + "different_info_panel_contents/classic_skin_display": { type: T.STACK_PANEL, children: string }, + "popup_dialog__preview_difference_information": { type: T.INPUT_PANEL, children: string }, + "popup_dialog__delete_persona": { type: T.INPUT_PANEL, children: 'popup_dialog_bg' }, + "popup_dialog__delete_persona/popup_dialog_bg": { type: T.IMAGE, children: string }, + "popup_dialog_delete_persona_content": { type: T.PANEL, children: 'image' | 'message' | 'buttons' }, + "popup_dialog_delete_persona_content/image": { type: T.IMAGE, children: string }, + "popup_dialog_delete_persona_content/message": { type: T.LABEL, children: string }, + "popup_dialog_delete_persona_content/buttons": { type: T.STACK_PANEL, children: string }, + "alex_warning": { type: T.IMAGE, children: string }, + "delete_popup_dialog_message": { type: T.LABEL, children: string }, + "delete_persona_button_stack": { type: T.STACK_PANEL, children: 'left_button' | 'padding' | 'right_button' }, + "delete_persona_button_stack/left_button": { type: T.BUTTON, children: string }, + "delete_persona_button_stack/padding": { type: T.PANEL, children: string }, + "delete_persona_button_stack/right_button": { type: T.BUTTON, children: string }, + "delete_persona_left_button": { type: T.BUTTON, children: string }, + "delete_persona_right_button": { type: T.BUTTON, children: string }, + "popup_dialog__create_persona": { type: T.INPUT_PANEL, children: string }, + "create_persona_display": { type: T.STACK_PANEL, children: 'vertical_padding_2px' | 'stack_content' }, + "create_persona_display/vertical_padding_2px": { type: T.PANEL, children: string }, + "create_persona_display/stack_content": { type: T.STACK_PANEL, children: string }, + "create_persona_choice_stack": { type: T.STACK_PANEL, children: 'background1' | 'background2' }, + "create_persona_choice_stack/background1": { type: T.PANEL, children: string }, + "create_persona_choice_stack/background2": { type: T.PANEL, children: string }, + "create_persona_choice_character": { type: T.PANEL, children: 'create_persona_choice_character' }, + "create_persona_choice_character/create_persona_choice_character": { type: T.PANEL, children: string }, + "select_default_character_button_vertical_panel": { type: T.STACK_PANEL, children: 'padding' | 'select_default_character_button_panel' }, + "select_default_character_button_vertical_panel/padding": { type: T.PANEL, children: string }, + "select_default_character_button_vertical_panel/select_default_character_button_panel": { type: T.PANEL, children: 'select_default_character_button' }, + "select_default_character_button_vertical_panel/select_default_character_button_panel/select_default_character_button": { type: T.BUTTON, children: string }, + "select_default_character_button": { type: T.BUTTON, children: string }, + "create_persona_choice_classic_skin": { type: T.PANEL, children: string }, + "create_persona_choice_button": { type: T.PANEL, children: 'choice_toggle' }, + "create_persona_choice_button/choice_toggle": { type: T.PANEL, children: string }, + "create_persona_choice_background": { type: T.STACK_PANEL, children: 'choice_title_bar' | 'choice_details_body' | 'choice_bottom_content' }, + "create_persona_choice_background/choice_title_bar": { type: T.STACK_PANEL, children: string }, + "create_persona_choice_background/choice_details_body": { type: T.STACK_PANEL, children: string }, + "create_persona_choice_background/choice_bottom_content": { type: T.UNKNOWN, children: string }, + "create_persona_choice_title_bar": { type: T.STACK_PANEL, children: 'checkbox' | 'spacing' | 'icon_title' }, + "create_persona_choice_title_bar/checkbox": { type: T.PANEL, children: string }, + "create_persona_choice_title_bar/spacing": { type: T.PANEL, children: string }, + "create_persona_choice_title_bar/icon_title": { type: T.STACK_PANEL, children: string }, + "create_persona_choice_check_positioning": { type: T.PANEL, children: 'toggle_image' }, + "create_persona_choice_check_positioning/toggle_image": { type: T.UNKNOWN, children: string }, + "create_persona_choice_icon_title": { type: T.STACK_PANEL, children: string }, + "create_persona_choice_detail_panel": { type: T.STACK_PANEL, children: 'spacing' | 'choice_details_body' }, + "create_persona_choice_detail_panel/spacing": { type: T.PANEL, children: string }, + "create_persona_choice_detail_panel/choice_details_body": { type: T.LABEL, children: string }, + "create_persona_choice_detail": { type: T.LABEL, children: string }, + "popup_dialog__invalid_custom_skin": { type: T.INPUT_PANEL, children: 'popup_dialog_bg' }, + "popup_dialog__invalid_custom_skin/popup_dialog_bg": { type: T.IMAGE, children: string }, + "popup_dialog_invalid_custom_skin_content": { type: T.PANEL, children: 'popup_dialog_message' | 'popup_dialog_middle_button' }, + "popup_dialog_invalid_custom_skin_content/popup_dialog_message": { type: T.LABEL, children: string }, + "popup_dialog_invalid_custom_skin_content/popup_dialog_middle_button": { type: T.BUTTON, children: string }, + "popup_dialog__upsell_without_store": { type: T.INPUT_PANEL, children: string }, + "popup_dialog__choose_skin_type": { type: T.INPUT_PANEL, children: 'popup_dialog_bg' }, + "popup_dialog__choose_skin_type/popup_dialog_bg": { type: T.IMAGE, children: string }, + "popup_dialog_choose_skin_type_content": { type: T.PANEL, children: 'popup_dialog_message' | 'left' | 'right' }, + "popup_dialog_choose_skin_type_content/popup_dialog_message": { type: T.LABEL, children: string }, + "popup_dialog_choose_skin_type_content/left": { type: T.PANEL, children: string }, + "popup_dialog_choose_skin_type_content/right": { type: T.PANEL, children: string }, + "popup_dialog_choose_skin_type_panel": { type: T.PANEL, children: 'choose_skin_type_button' }, + "popup_dialog_choose_skin_type_panel/choose_skin_type_button": { type: T.BUTTON, children: string }, + "popup_dialog_skin_model": { type: T.PANEL, children: 'paper_doll' }, + "popup_dialog_skin_model/paper_doll": { type: T.CUSTOM, children: string }, + "popup_dialog__custom_skin_info": { type: T.INPUT_PANEL, children: 'background_image' | 'popup_dialog_bg' }, + "popup_dialog__custom_skin_info/background_image": { type: T.IMAGE, children: string }, + "popup_dialog__custom_skin_info/popup_dialog_bg": { type: T.IMAGE, children: string }, + "custom_skin_info_panel_text": { type: T.LABEL, children: string }, + "custom_skin_info_panel": { type: T.PANEL, children: 'message' | 'button_group' }, + "custom_skin_info_panel/message": { type: T.LABEL, children: string }, + "custom_skin_info_panel/button_group": { type: T.STACK_PANEL, children: string }, + "custom_skin_info_button_collection": { type: T.STACK_PANEL, children: 'settings' | 'vertical_4_padding' | 'close' }, + "custom_skin_info_button_collection/settings": { type: T.BUTTON, children: string }, + "custom_skin_info_button_collection/vertical_4_padding": { type: T.PANEL, children: string }, + "custom_skin_info_button_collection/close": { type: T.BUTTON, children: string }, + "popup_dialog_close_button": { type: T.BUTTON, children: string }, + "usage_limited_settings_profile_button": { type: T.BUTTON, children: string }, + "custom_skin_popup_dialog_bg": { type: T.IMAGE, children: 'background_image' | 'vertical_align_title' | 'popup_content' }, + "custom_skin_popup_dialog_bg/background_image": { type: T.IMAGE, children: string }, + "custom_skin_popup_dialog_bg/vertical_align_title": { type: T.PANEL, children: 'title' }, + "custom_skin_popup_dialog_bg/vertical_align_title/title": { type: T.LABEL, children: string }, + "custom_skin_popup_dialog_bg/popup_content": { type: T.UNKNOWN, children: string }, + "popup_dialog__emote_equip_slot_editor": { type: T.INPUT_PANEL, children: 'background_image' | 'popup_emote_wheel_dialog' }, + "popup_dialog__emote_equip_slot_editor/background_image": { type: T.IMAGE, children: string }, + "popup_dialog__emote_equip_slot_editor/popup_emote_wheel_dialog": { type: T.PANEL, children: string }, + "popup_emote_wheel_dialog": { type: T.PANEL, children: 'popup_background' }, + "popup_emote_wheel_dialog/popup_background": { type: T.IMAGE, children: string }, + "emote_equip_slot_content": { type: T.PANEL, children: 'close' | 'emote_wheel_content_panel' }, + "emote_equip_slot_content/close": { type: T.BUTTON, children: string }, + "emote_equip_slot_content/emote_wheel_content_panel": { type: T.PANEL, children: 'cancel' | 'emote_wheel_prompt_content' }, + "emote_equip_slot_content/emote_wheel_content_panel/cancel": { type: T.PANEL, children: string }, + "emote_equip_slot_content/emote_wheel_content_panel/emote_wheel_prompt_content": { type: T.PANEL, children: string }, + "close_emote_popup_controller": { type: T.PANEL, children: 'close_ui' }, + "close_emote_popup_controller/close_ui": { type: T.STACK_PANEL, children: string }, + "emote_wheel_content": { type: T.PANEL, children: string }, + "popup_dialog__realms_plus_extra_info": { type: T.INPUT_PANEL, children: 'background_image' | 'dialog_bg' }, + "popup_dialog__realms_plus_extra_info/background_image": { type: T.IMAGE, children: string }, + "popup_dialog__realms_plus_extra_info/dialog_bg": { type: T.IMAGE, children: string }, + "realms_plus_extra_info_popup_dialog_bg": { type: T.IMAGE, children: 'background_image' | 'title' | 'popup_content' }, + "realms_plus_extra_info_popup_dialog_bg/background_image": { type: T.IMAGE, children: string }, + "realms_plus_extra_info_popup_dialog_bg/title": { type: T.LABEL, children: string }, + "realms_plus_extra_info_popup_dialog_bg/popup_content": { type: T.UNKNOWN, children: string }, + "realms_extra_info_panel_text": { type: T.LABEL, children: string }, + "realms_extra_info_panel": { type: T.PANEL, children: 'realms_extra' | 'button_group' }, + "realms_extra_info_panel/realms_extra": { type: T.PANEL, children: string }, + "realms_extra_info_panel/button_group": { type: T.STACK_PANEL, children: string }, + "realms_extra_info_button_collection": { type: T.STACK_PANEL, children: 'close' }, + "realms_extra_info_button_collection/close": { type: T.BUTTON, children: string }, + "realms_extra_info_content": { type: T.PANEL, children: 'the_spread' }, + "realms_extra_info_content/the_spread": { type: T.STACK_PANEL, children: 'pack_image' | 'horizontal_6_padding' | 'the_info_stack' }, + "realms_extra_info_content/the_spread/pack_image": { type: T.IMAGE, children: string }, + "realms_extra_info_content/the_spread/horizontal_6_padding": { type: T.PANEL, children: string }, + "realms_extra_info_content/the_spread/the_info_stack": { type: T.STACK_PANEL, children: 'skins_and_world' | 'padding' | 'textures_and_usage' }, + "realms_extra_info_content/the_spread/the_info_stack/skins_and_world": { type: T.STACK_PANEL, children: string }, + "realms_extra_info_content/the_spread/the_info_stack/padding": { type: T.PANEL, children: string }, + "realms_extra_info_content/the_spread/the_info_stack/textures_and_usage": { type: T.STACK_PANEL, children: string }, + "pack_information_textures_and_usage_tooltip": { type: T.STACK_PANEL, children: 'textures' | 'mid_padding' | 'appearance_status' }, + "pack_information_textures_and_usage_tooltip/textures": { type: T.PANEL, children: string }, + "pack_information_textures_and_usage_tooltip/mid_padding": { type: T.PANEL, children: string }, + "pack_information_textures_and_usage_tooltip/appearance_status": { type: T.INPUT_PANEL, children: string }, + "roamable_status_notification_panel": { type: T.INPUT_PANEL, children: 'appearance_status_notification' | 'roamable_status' }, + "roamable_status_notification_panel/appearance_status_notification": { type: T.BUTTON, children: string }, + "roamable_status_notification_panel/roamable_status": { type: T.PANEL, children: string }, + "appearance_status_image_panel": { type: T.PANEL, children: 'usage_limited' | 'usage_not_limited' }, + "appearance_status_image_panel/usage_limited": { type: T.IMAGE, children: string }, + "appearance_status_image_panel/usage_not_limited": { type: T.IMAGE, children: string }, + "pack_information_skins_and_world": { type: T.STACK_PANEL, children: 'skins' | 'mid_padding' | 'worlds' }, + "pack_information_skins_and_world/skins": { type: T.PANEL, children: string }, + "pack_information_skins_and_world/mid_padding": { type: T.PANEL, children: string }, + "pack_information_skins_and_world/worlds": { type: T.PANEL, children: string }, + "skin_info_label_and_image": { type: T.PANEL, children: 'content_stack' }, + "skin_info_label_and_image/content_stack": { type: T.STACK_PANEL, children: string }, + "skin_info_image_panel": { type: T.PANEL, children: 'image' }, + "skin_info_image_panel/image": { type: T.UNKNOWN, children: string }, + "skin_info_label_panel_label": { type: T.LABEL, children: string }, + "skin_info_label_panel": { type: T.PANEL, children: 'label' }, + "skin_info_label_panel/label": { type: T.LABEL, children: string }, + "skin_info_content_stack": { type: T.STACK_PANEL, children: 'image_panel' | 'horizontal_2_padding' | 'label_panel' }, + "skin_info_content_stack/image_panel": { type: T.PANEL, children: string }, + "skin_info_content_stack/horizontal_2_padding": { type: T.PANEL, children: string }, + "skin_info_content_stack/label_panel": { type: T.PANEL, children: string }, + "realms_extra_info_pack_info": { type: T.IMAGE, children: string }, + "popup_toast": { type: T.INPUT_PANEL, children: string }, } 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": { type: T.IMAGE, children: string }, + "dark_label_background": { type: T.IMAGE, children: string }, + "world_screenshot_base": { type: T.IMAGE, children: string }, + "collection_world_screenshot": { type: T.IMAGE, children: 'screenshot_picture' }, + "collection_world_screenshot/screenshot_picture": { type: T.IMAGE, children: 'gradient_container_stacked_panel' }, + "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel": { type: T.STACK_PANEL, children: 'gradient_image_realmsplus_expired' | 'solid_image_realmsplus_expired' }, + "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/gradient_image_realmsplus_expired": { type: T.IMAGE, children: string }, + "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/solid_image_realmsplus_expired": { type: T.IMAGE, children: 'exclamationmark' }, + "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/solid_image_realmsplus_expired/exclamationmark": { type: T.LABEL, children: string }, + "world_item_grid_base": { type: T.GRID, children: string }, + "edit_icon": { type: T.IMAGE, children: string }, + "realms_stories_icon": { type: T.IMAGE, children: string }, + "realms_stories_icon_animated": { type: T.IMAGE, children: string }, + "realms_slots_edit_icon": { type: T.IMAGE, children: string }, + "worlds_icon": { type: T.IMAGE, children: string }, + "realms_icon": { type: T.IMAGE, children: string }, + "realms_chevron": { type: T.IMAGE, children: string }, + "friends_icon_1": { type: T.IMAGE, children: string }, + "friends_icon_2": { type: T.IMAGE, children: string }, + "bell_icon": { type: T.IMAGE, children: string }, + "invite_icon": { type: T.IMAGE, children: string }, + "delete_icon": { type: T.IMAGE, children: string }, + "world_download_icon": { type: T.IMAGE, children: string }, + "third_party_servers_icon": { type: T.IMAGE, children: string }, + "lan_icon": { type: T.IMAGE, children: string }, + "friends_server_icon": { type: T.IMAGE, children: string }, + "cross_platform_friends_server_icon": { type: T.IMAGE, children: string }, + "realms_remove_icon": { type: T.IMAGE, children: string }, + "game_online_icon": { type: T.IMAGE, children: string }, + "game_offline_icon": { type: T.IMAGE, children: string }, + "game_unavailable_icon": { type: T.IMAGE, children: string }, + "import_icon": { type: T.IMAGE, children: string }, + "add_server_icon": { type: T.IMAGE, children: string }, + "server_tab_icon": { type: T.IMAGE, children: string }, + "realms_art_icon": { type: T.IMAGE, children: string }, + "realms_text_background": { type: T.IMAGE, children: string }, + "connected_storage": { type: T.IMAGE, children: string }, + "feedback_icon": { type: T.IMAGE, children: string }, + "local_only_storage": { type: T.IMAGE, children: string }, + "local_and_cloud_storage": { type: T.IMAGE, children: string }, + "cloud_only_storage": { type: T.IMAGE, children: string }, + "left_arrow_icon": { type: T.IMAGE, children: string }, + "right_arrow_icon": { type: T.IMAGE, children: string }, + "small_progress_panel": { type: T.IMAGE, children: string }, + "sign_in_realms_image": { type: T.PANEL, children: 'chevron' | 'portal' }, + "sign_in_realms_image/chevron": { type: T.IMAGE, children: string }, + "sign_in_realms_image/portal": { type: T.IMAGE, children: string }, + "realms_sign_in_prompt_label": { type: T.LABEL, children: string }, + "realms_sign_in_prompt": { type: T.PANEL, children: 'realms_sign_in_prompt_label' }, + "realms_sign_in_prompt/realms_sign_in_prompt_label": { type: T.LABEL, children: string }, + "realms_sign_in_prompt_friends": { type: T.PANEL, children: 'realms_sign_in_prompt_label_friends' }, + "realms_sign_in_prompt_friends/realms_sign_in_prompt_label_friends": { type: T.LABEL, children: string }, + "sign_in_to_view_realms_content_panel": { type: T.STACK_PANEL, children: 'sign_in_realms_image' | 'realms_sign_in_prompt' }, + "sign_in_to_view_realms_content_panel/sign_in_realms_image": { type: T.PANEL, children: string }, + "sign_in_to_view_realms_content_panel/realms_sign_in_prompt": { type: T.UNKNOWN, children: string }, + "sign_in_to_view_realms_content_panel_friends": { type: T.STACK_PANEL, children: string }, + "sign_in_to_view_realms_button": { type: T.BUTTON, children: string }, + "sign_in_to_view_realms_button_friends": { type: T.BUTTON, children: string }, + "realms_list_text": { type: T.LABEL, children: string }, + "realms_world_header": { type: T.LABEL, children: string }, + "realms_world_details": { type: T.LABEL, children: string }, + "realms_world_type": { type: T.LABEL, children: string }, + "realms_world_player_count": { type: T.LABEL, children: string }, + "realms_world_game_status_icon": { type: T.PANEL, children: 'game_online_icon' | 'game_unavailable_icon' | 'game_offline_icon' }, + "realms_world_game_status_icon/game_online_icon": { type: T.IMAGE, children: string }, + "realms_world_game_status_icon/game_unavailable_icon": { type: T.IMAGE, children: string }, + "realms_world_game_status_icon/game_offline_icon": { type: T.IMAGE, children: string }, + "realms_world_text_panel": { type: T.PANEL, children: 'realms_world_header' | 'realms_world_details' }, + "realms_world_text_panel/realms_world_header": { type: T.LABEL, children: string }, + "realms_world_text_panel/realms_world_details": { type: T.LABEL, children: string }, + "realms_world_trial_text_panel": { type: T.PANEL, children: 'realms_world_header_text' | 'realms_world_details' }, + "realms_world_trial_text_panel/realms_world_header_text": { type: T.LABEL, children: string }, + "realms_world_trial_text_panel/realms_world_details": { type: T.LABEL, children: string }, + "realms_world_content_text_area_panel": { type: T.PANEL, children: 'realms_world_text_panel' }, + "realms_world_content_text_area_panel/realms_world_text_panel": { type: T.PANEL, children: string }, + "realms_trial_content_text_area_panel": { type: T.PANEL, children: 'realms_world_trial_text_panel' }, + "realms_trial_content_text_area_panel/realms_world_trial_text_panel": { type: T.PANEL, children: string }, + "realms_world_content_status_area_panel": { type: T.STACK_PANEL, children: 'world_player_count_text_panel' | 'padding' | 'realms_world_game_status_icon' }, + "realms_world_content_status_area_panel/world_player_count_text_panel": { type: T.PANEL, children: 'realms_world_player_count' }, + "realms_world_content_status_area_panel/world_player_count_text_panel/realms_world_player_count": { type: T.LABEL, children: string }, + "realms_world_content_status_area_panel/padding": { type: T.PANEL, children: string }, + "realms_world_content_status_area_panel/realms_world_game_status_icon": { type: T.PANEL, children: string }, + "realms_world_content_status_area_panel_container": { type: T.STACK_PANEL, children: 'realms_world_status_panel' | 'realms_world_type' }, + "realms_world_content_status_area_panel_container/realms_world_status_panel": { type: T.PANEL, children: 'realms_world_content_status_area_panel' }, + "realms_world_content_status_area_panel_container/realms_world_status_panel/realms_world_content_status_area_panel": { type: T.STACK_PANEL, children: string }, + "realms_world_content_status_area_panel_container/realms_world_type": { type: T.LABEL, children: string }, + "realms_world_content_panel": { type: T.STACK_PANEL, children: 'realm_screenshot' | 'padding' | 'realms_world_content_text_area_panel' | 'realms_world_content_status_area_panel' }, + "realms_world_content_panel/realm_screenshot": { type: T.IMAGE, children: string }, + "realms_world_content_panel/padding": { type: T.PANEL, children: string }, + "realms_world_content_panel/realms_world_content_text_area_panel": { type: T.PANEL, children: string }, + "realms_world_content_panel/realms_world_content_status_area_panel": { type: T.PANEL, children: 'realms_world_content_status_area_panel_container' }, + "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_content_status_area_panel_container": { type: T.STACK_PANEL, children: string }, + "realms_trial_content_panel": { type: T.STACK_PANEL, children: 'realm_screenshot' | 'padding' | 'realms_trial_content_text_area_panel' }, + "realms_trial_content_panel/realm_screenshot": { type: T.IMAGE, children: string }, + "realms_trial_content_panel/padding": { type: T.PANEL, children: string }, + "realms_trial_content_panel/realms_trial_content_text_area_panel": { type: T.PANEL, children: string }, + "realms_world_item_button": { type: T.BUTTON, children: string }, + "realms_world_edit_button": { type: T.BUTTON, children: string }, + "realms_feed_button_content": { type: T.IMAGE, children: 'default_icon' | 'unread_icon_active' }, + "realms_feed_button_content/default_icon": { type: T.IMAGE, children: string }, + "realms_feed_button_content/unread_icon_active": { type: T.IMAGE, children: string }, + "persistent_realms_feed_button_control": { type: T.PANEL, children: string }, + "realms_feed_button": { type: T.BUTTON, children: string }, + "leave_friends_realm_button": { type: T.BUTTON, children: string }, + "unread_story_count_text": { type: T.LABEL, children: string }, + "unread_story_count_text_background": { type: T.IMAGE, children: string }, + "unread_story_count_panel": { type: T.PANEL, children: 'text' }, + "unread_story_count_panel/text": { type: T.LABEL, children: 'background' }, + "unread_story_count_panel/text/background": { type: T.IMAGE, children: string }, + "realms_world_item": { type: T.STACK_PANEL, children: 'realms_button_panel' | 'edit_panel' | 'feed_panel_with_unread_count' | 'leave_realm_panel' }, + "realms_world_item/realms_button_panel": { type: T.PANEL, children: 'realms_world_item_button' | 'tts_border' }, + "realms_world_item/realms_button_panel/realms_world_item_button": { type: T.BUTTON, children: string }, + "realms_world_item/realms_button_panel/tts_border": { type: T.BUTTON, children: string }, + "realms_world_item/edit_panel": { type: T.PANEL, children: 'realms_world_edit_button' | 'realms_world_expiry_notification_image' }, + "realms_world_item/edit_panel/realms_world_edit_button": { type: T.BUTTON, children: string }, + "realms_world_item/edit_panel/realms_world_expiry_notification_image": { type: T.IMAGE, children: string }, + "realms_world_item/feed_panel_with_unread_count": { type: T.PANEL, children: 'feed_panel' | 'unread_story_count' }, + "realms_world_item/feed_panel_with_unread_count/feed_panel": { type: T.PANEL, children: 'realms_feed_button' }, + "realms_world_item/feed_panel_with_unread_count/feed_panel/realms_feed_button": { type: T.BUTTON, children: string }, + "realms_world_item/feed_panel_with_unread_count/unread_story_count": { type: T.PANEL, children: string }, + "realms_world_item/leave_realm_panel": { type: T.PANEL, children: 'leave_friends_realm_button' }, + "realms_world_item/leave_realm_panel/leave_friends_realm_button": { type: T.BUTTON, children: string }, + "realms_world_item_grid": { type: T.GRID, children: string }, + "network_world_header": { type: T.STACK_PANEL, children: 'network_world_header_icon' | 'spacer' | 'header_panel' }, + "network_world_header/network_world_header_icon": { type: T.IMAGE, children: string }, + "network_world_header/spacer": { type: T.PANEL, children: string }, + "network_world_header/header_panel": { type: T.PANEL, children: 'network_world_header_text' }, + "network_world_header/header_panel/network_world_header_text": { type: T.LABEL, children: string }, + "network_world_details": { type: T.LABEL, children: string }, + "network_world_player_count": { type: T.PANEL, children: 'count' }, + "network_world_player_count/count": { type: T.LABEL, children: string }, + "network_world_game_status_icon": { type: T.PANEL, children: 'game_online_icon' | 'game_unavailable_icon' | 'game_offline_icon' }, + "network_world_game_status_icon/game_online_icon": { type: T.IMAGE, children: string }, + "network_world_game_status_icon/game_unavailable_icon": { type: T.IMAGE, children: string }, + "network_world_game_status_icon/game_offline_icon": { type: T.IMAGE, children: string }, + "network_world_text_panel": { type: T.PANEL, children: 'network_world_header' | 'network_world_details' }, + "network_world_text_panel/network_world_header": { type: T.STACK_PANEL, children: string }, + "network_world_text_panel/network_world_details": { type: T.LABEL, children: string }, + "network_world_content_text_area_panel": { type: T.PANEL, children: 'network_world_text_panel' }, + "network_world_content_text_area_panel/network_world_text_panel": { type: T.PANEL, children: string }, + "network_world_content_status_area_panel": { type: T.STACK_PANEL, children: 'network_player_count_text_panel' | 'padding' | 'network_world_game_status_icon' }, + "network_world_content_status_area_panel/network_player_count_text_panel": { type: T.PANEL, children: 'network_world_player_count' }, + "network_world_content_status_area_panel/network_player_count_text_panel/network_world_player_count": { type: T.PANEL, children: string }, + "network_world_content_status_area_panel/padding": { type: T.PANEL, children: string }, + "network_world_content_status_area_panel/network_world_game_status_icon": { type: T.PANEL, children: string }, + "network_world_content_status_area_panel_container": { type: T.STACK_PANEL, children: 'network_world_status_panel' | 'network_world_type' }, + "network_world_content_status_area_panel_container/network_world_status_panel": { type: T.PANEL, children: 'network_world_content_status_area_panel' }, + "network_world_content_status_area_panel_container/network_world_status_panel/network_world_content_status_area_panel": { type: T.STACK_PANEL, children: string }, + "network_world_content_status_area_panel_container/network_world_type": { type: T.PANEL, children: string }, + "network_world_type": { type: T.PANEL, children: 'type' }, + "network_world_type/type": { type: T.LABEL, children: string }, + "network_world_item_button_content": { type: T.STACK_PANEL, children: 'network_world_content_text_area_panel' | 'network_status_area_panel' | 'network_world_type_icon' }, + "network_world_item_button_content/network_world_content_text_area_panel": { type: T.PANEL, children: string }, + "network_world_item_button_content/network_status_area_panel": { type: T.PANEL, children: 'network_world_content_status_area_panel_container' }, + "network_world_item_button_content/network_status_area_panel/network_world_content_status_area_panel_container": { type: T.STACK_PANEL, children: string }, + "network_world_item_button_content/network_world_type_icon": { type: T.LABEL, children: 'padding' }, + "network_world_item_button_content/network_world_type_icon/padding": { type: T.PANEL, children: string }, + "network_world_item_button": { type: T.BUTTON, children: string }, + "network_server_world_edit_button": { type: T.BUTTON, children: string }, + "network_world_item": { type: T.PANEL, children: 'network_world_item_button' | 'tts_border' }, + "network_world_item/network_world_item_button": { type: T.BUTTON, children: string }, + "network_world_item/tts_border": { type: T.BUTTON, children: string }, + "network_world_item_grid": { type: T.GRID, children: string }, + "network_world_item_ignore_crossplay": { type: T.PANEL, children: 'network_world_item_button' }, + "network_world_item_ignore_crossplay/network_world_item_button": { type: T.BUTTON, children: string }, + "label_content_template": { type: T.STACK_PANEL, children: 'label_panel' | 'content' }, + "label_content_template/label_panel": { type: T.PANEL, children: 'label_panel_layout' }, + "label_content_template/label_panel/label_panel_layout": { type: T.PANEL, children: 'label' }, + "label_content_template/label_panel/label_panel_layout/label": { type: T.LABEL, children: string }, + "label_content_template/content": { type: T.UNKNOWN, children: string }, + "information_panel": { type: T.PANEL, children: 'background' | 'focus_button' }, + "information_panel/background": { type: T.IMAGE, children: 'label_panel_layout' }, + "information_panel/background/label_panel_layout": { type: T.PANEL, children: 'label' }, + "information_panel/background/label_panel_layout/label": { type: T.LABEL, children: string }, + "information_panel/focus_button": { type: T.BUTTON, children: string }, + "blocked_multiplayer_privileges_panel": { type: T.PANEL, children: 'background' }, + "blocked_multiplayer_privileges_panel/background": { type: T.IMAGE, children: 'label_panel_layout' }, + "blocked_multiplayer_privileges_panel/background/label_panel_layout": { type: T.PANEL, children: 'label' }, + "blocked_multiplayer_privileges_panel/background/label_panel_layout/label": { type: T.LABEL, children: string }, + "more_servers_grid": { type: T.GRID, children: string }, + "additional_server_toggle_content": { type: T.STACK_PANEL, children: 'network_world_content_text_area_panel' }, + "additional_server_toggle_content/network_world_content_text_area_panel": { type: T.PANEL, children: string }, + "more_servers_label_panel": { type: T.PANEL, children: 'list_label' }, + "more_servers_label_panel/list_label": { type: T.LABEL, children: string }, + "more_servers_world_item": { type: T.STACK_PANEL, children: 'additional_server_toggle_base' | 'network_server_world_edit_button' }, + "more_servers_world_item/additional_server_toggle_base": { type: T.PANEL, children: string }, + "more_servers_world_item/network_server_world_edit_button": { type: T.BUTTON, children: string }, + "additional_server_info_panel": { type: T.PANEL, children: 'server_info_stack_panel' }, + "additional_server_info_panel/server_info_stack_panel": { type: T.STACK_PANEL, children: 'padding_1' | 'server_name' | 'padding_2' | 'player_count' | 'padding_3' | 'ping' | 'padding_4' | 'join_server_button' }, + "additional_server_info_panel/server_info_stack_panel/padding_1": { type: T.PANEL, children: string }, + "additional_server_info_panel/server_info_stack_panel/server_name": { type: T.LABEL, children: string }, + "additional_server_info_panel/server_info_stack_panel/padding_2": { type: T.PANEL, children: string }, + "additional_server_info_panel/server_info_stack_panel/player_count": { type: T.STACK_PANEL, children: string }, + "additional_server_info_panel/server_info_stack_panel/padding_3": { type: T.PANEL, children: string }, + "additional_server_info_panel/server_info_stack_panel/ping": { type: T.STACK_PANEL, children: string }, + "additional_server_info_panel/server_info_stack_panel/padding_4": { type: T.PANEL, children: string }, + "additional_server_info_panel/server_info_stack_panel/join_server_button": { type: T.BUTTON, children: string }, + "ping_rate_icon": { type: T.IMAGE, children: string }, + "ping_rate_panel": { type: T.PANEL, children: 'concurrency_stack' }, + "ping_rate_panel/concurrency_stack": { type: T.STACK_PANEL, children: 'player_count' | 'padding_0' | 'ping_rate_icon' }, + "ping_rate_panel/concurrency_stack/player_count": { type: T.LABEL, children: string }, + "ping_rate_panel/concurrency_stack/padding_0": { type: T.PANEL, children: string }, + "ping_rate_panel/concurrency_stack/ping_rate_icon": { type: T.IMAGE, children: string }, + "add_server_info_panel": { type: T.PANEL, children: 'server_info_stack_panel' }, + "add_server_info_panel/server_info_stack_panel": { type: T.STACK_PANEL, children: 'padding_0' | 'add_server_title' | 'padding_1' | 'add_server_description' }, + "add_server_info_panel/server_info_stack_panel/padding_0": { type: T.PANEL, children: string }, + "add_server_info_panel/server_info_stack_panel/add_server_title": { type: T.LABEL, children: string }, + "add_server_info_panel/server_info_stack_panel/padding_1": { type: T.PANEL, children: string }, + "add_server_info_panel/server_info_stack_panel/add_server_description": { type: T.LABEL, children: string }, + "third_party_featured_server_grid": { type: T.GRID, children: string }, + "featured_server_world_item": { type: T.PANEL, children: 'server_button' }, + "featured_server_world_item/server_button": { type: T.PANEL, children: string }, + "server_button_content_panel": { type: T.STACK_PANEL, children: 'top_panel' | 'padding' | 'bottom_panel' }, + "server_button_content_panel/top_panel": { type: T.STACK_PANEL, children: 'third_party_server_screenshot' | 'padding_0' | 'title_panel' }, + "server_button_content_panel/top_panel/third_party_server_screenshot": { type: T.IMAGE, children: string }, + "server_button_content_panel/top_panel/padding_0": { type: T.PANEL, children: string }, + "server_button_content_panel/top_panel/title_panel": { type: T.PANEL, children: 'third_party_server_name' | 'progress' }, + "server_button_content_panel/top_panel/title_panel/third_party_server_name": { type: T.LABEL, children: string }, + "server_button_content_panel/top_panel/title_panel/progress": { type: T.IMAGE, children: string }, + "server_button_content_panel/padding": { type: T.PANEL, children: string }, + "server_button_content_panel/bottom_panel": { type: T.PANEL, children: 'third_party_server_message' }, + "server_button_content_panel/bottom_panel/third_party_server_message": { type: T.LABEL, children: string }, + "third_party_server_content_panel": { type: T.STACK_PANEL, children: 'ping_rate_panel' }, + "third_party_server_content_panel/ping_rate_panel": { type: T.PANEL, children: string }, + "loading_featured_servers_panel": { type: T.PANEL, children: 'load_bars' }, + "loading_featured_servers_panel/load_bars": { type: T.PANEL, children: 'progress_loading_bars' }, + "loading_featured_servers_panel/load_bars/progress_loading_bars": { type: T.IMAGE, children: string }, + "third_party_server_screenshot": { type: T.IMAGE, children: 'picture' }, + "third_party_server_screenshot/picture": { type: T.IMAGE, children: string }, + "third_party_server_info_panel": { type: T.PANEL, children: 'server_info_stack_panel' | 'progress' }, + "third_party_server_info_panel/server_info_stack_panel": { type: T.STACK_PANEL, children: 'padding_0' | 'server_screenshot' | 'padding_1' | 'server_name' | 'padding_2' | 'player_count' | 'padding_3' | 'ping' | 'padding_4' | 'join_server_button' | 'view_offers_button' | 'padding_5' | 'screenshots_section' | 'description_section' | 'games_section' | 'news_section' }, + "third_party_server_info_panel/server_info_stack_panel/padding_0": { type: T.PANEL, children: string }, + "third_party_server_info_panel/server_info_stack_panel/server_screenshot": { type: T.IMAGE, children: string }, + "third_party_server_info_panel/server_info_stack_panel/padding_1": { type: T.PANEL, children: string }, + "third_party_server_info_panel/server_info_stack_panel/server_name": { type: T.LABEL, children: string }, + "third_party_server_info_panel/server_info_stack_panel/padding_2": { type: T.PANEL, children: string }, + "third_party_server_info_panel/server_info_stack_panel/player_count": { type: T.STACK_PANEL, children: string }, + "third_party_server_info_panel/server_info_stack_panel/padding_3": { type: T.PANEL, children: string }, + "third_party_server_info_panel/server_info_stack_panel/ping": { type: T.STACK_PANEL, children: string }, + "third_party_server_info_panel/server_info_stack_panel/padding_4": { type: T.PANEL, children: string }, + "third_party_server_info_panel/server_info_stack_panel/join_server_button": { type: T.BUTTON, children: string }, + "third_party_server_info_panel/server_info_stack_panel/view_offers_button": { type: T.BUTTON, children: string }, + "third_party_server_info_panel/server_info_stack_panel/padding_5": { type: T.PANEL, children: string }, + "third_party_server_info_panel/server_info_stack_panel/screenshots_section": { type: T.STACK_PANEL, children: string }, + "third_party_server_info_panel/server_info_stack_panel/description_section": { type: T.STACK_PANEL, children: string }, + "third_party_server_info_panel/server_info_stack_panel/games_section": { type: T.STACK_PANEL, children: string }, + "third_party_server_info_panel/server_info_stack_panel/news_section": { type: T.STACK_PANEL, children: string }, + "third_party_server_info_panel/progress": { type: T.IMAGE, children: string }, + "text_icon_number_panel": { type: T.STACK_PANEL, children: 'text' | 'padding_0' | 'stack_panel' }, + "text_icon_number_panel/text": { type: T.LABEL, children: string }, + "text_icon_number_panel/padding_0": { type: T.PANEL, children: string }, + "text_icon_number_panel/stack_panel": { type: T.STACK_PANEL, children: 'icon_panel' | 'padding_1' | 'number' }, + "text_icon_number_panel/stack_panel/icon_panel": { type: T.PANEL, children: 'icon' }, + "text_icon_number_panel/stack_panel/icon_panel/icon": { type: T.IMAGE, children: string }, + "text_icon_number_panel/stack_panel/padding_1": { type: T.PANEL, children: string }, + "text_icon_number_panel/stack_panel/number": { type: T.LABEL, children: string }, + "grey_bar_panel": { type: T.STACK_PANEL, children: 'grey_bar' | 'green_bar' | 'padding' }, + "grey_bar_panel/grey_bar": { type: T.IMAGE, children: string }, + "grey_bar_panel/green_bar": { type: T.IMAGE, children: string }, + "grey_bar_panel/padding": { type: T.PANEL, children: string }, + "screenshots_section_panel": { type: T.STACK_PANEL, children: 'divider_0' | 'padding_0' | 'screenshots_label' | 'padding_1' | 'screenshots' | 'padding_2' | 'navigation_panel' | 'padding_3' }, + "screenshots_section_panel/divider_0": { type: T.PANEL, children: string }, + "screenshots_section_panel/padding_0": { type: T.PANEL, children: string }, + "screenshots_section_panel/screenshots_label": { type: T.LABEL, children: string }, + "screenshots_section_panel/padding_1": { type: T.PANEL, children: string }, + "screenshots_section_panel/screenshots": { type: T.IMAGE, children: string }, + "screenshots_section_panel/padding_2": { type: T.PANEL, children: string }, + "screenshots_section_panel/navigation_panel": { type: T.STACK_PANEL, children: 'left_arrow_button' | 'padding_0' | 'navigation_bar' | 'padding_1' | 'right_arrow_button' }, + "screenshots_section_panel/navigation_panel/left_arrow_button": { type: T.BUTTON, children: string }, + "screenshots_section_panel/navigation_panel/padding_0": { type: T.PANEL, children: string }, + "screenshots_section_panel/navigation_panel/navigation_bar": { type: T.PANEL, children: 'grey_bar' }, + "screenshots_section_panel/navigation_panel/navigation_bar/grey_bar": { type: T.IMAGE, children: 'grey_bar_factory_panel' }, + "screenshots_section_panel/navigation_panel/navigation_bar/grey_bar/grey_bar_factory_panel": { type: T.STACK_PANEL, children: string }, + "screenshots_section_panel/navigation_panel/padding_1": { type: T.PANEL, children: string }, + "screenshots_section_panel/navigation_panel/right_arrow_button": { type: T.BUTTON, children: string }, + "screenshots_section_panel/padding_3": { type: T.PANEL, children: string }, + "description_text_panel": { type: T.PANEL, children: 'contents_description' }, + "description_text_panel/contents_description": { type: T.LABEL, children: string }, + "description_section_panel": { type: T.STACK_PANEL, children: 'divider_0' | 'padding_0' | 'description_label' | 'padding_1' | 'read_more_panel' | 'padding_3' }, + "description_section_panel/divider_0": { type: T.PANEL, children: string }, + "description_section_panel/padding_0": { type: T.PANEL, children: string }, + "description_section_panel/description_label": { type: T.LABEL, children: string }, + "description_section_panel/padding_1": { type: T.PANEL, children: string }, + "description_section_panel/read_more_panel": { type: T.IMAGE, children: 'description_text_small' | 'description_text_full' | 'description_read_more_button_panel' | 'description_read_less_button_panel' }, + "description_section_panel/read_more_panel/description_text_small": { type: T.PANEL, children: string }, + "description_section_panel/read_more_panel/description_text_full": { type: T.PANEL, children: string }, + "description_section_panel/read_more_panel/description_read_more_button_panel": { type: T.PANEL, children: string }, + "description_section_panel/read_more_panel/description_read_less_button_panel": { type: T.PANEL, children: string }, + "description_section_panel/padding_3": { type: T.PANEL, children: string }, + "games_factory_object": { type: T.STACK_PANEL, children: 'games_factory_panel' | 'padding' }, + "games_factory_object/games_factory_panel": { type: T.IMAGE, children: 'top_panel' | 'bottom_panel' }, + "games_factory_object/games_factory_panel/top_panel": { type: T.STACK_PANEL, children: 'game_image_panel' | 'padding' | 'game_title_panel' }, + "games_factory_object/games_factory_panel/top_panel/game_image_panel": { type: T.PANEL, children: 'game_image' }, + "games_factory_object/games_factory_panel/top_panel/game_image_panel/game_image": { type: T.IMAGE, children: string }, + "games_factory_object/games_factory_panel/top_panel/padding": { type: T.PANEL, children: string }, + "games_factory_object/games_factory_panel/top_panel/game_title_panel": { type: T.STACK_PANEL, children: 'game_title' | 'game_subtitle' }, + "games_factory_object/games_factory_panel/top_panel/game_title_panel/game_title": { type: T.LABEL, children: string }, + "games_factory_object/games_factory_panel/top_panel/game_title_panel/game_subtitle": { type: T.LABEL, children: string }, + "games_factory_object/games_factory_panel/bottom_panel": { type: T.PANEL, children: 'bottom_panel' }, + "games_factory_object/games_factory_panel/bottom_panel/bottom_panel": { type: T.LABEL, children: string }, + "games_factory_object/padding": { type: T.PANEL, children: string }, + "games_section_panel": { type: T.STACK_PANEL, children: 'divider_0' | 'padding_0' | 'description_label' | 'padding_1' | 'games_factory_panel' | 'padding_3' }, + "games_section_panel/divider_0": { type: T.PANEL, children: string }, + "games_section_panel/padding_0": { type: T.PANEL, children: string }, + "games_section_panel/description_label": { type: T.LABEL, children: string }, + "games_section_panel/padding_1": { type: T.PANEL, children: string }, + "games_section_panel/games_factory_panel": { type: T.STACK_PANEL, children: string }, + "games_section_panel/padding_3": { type: T.PANEL, children: string }, + "news_text_panel": { type: T.PANEL, children: 'contents_news' }, + "news_text_panel/contents_news": { type: T.LABEL, children: string }, + "news_section_panel": { type: T.STACK_PANEL, children: 'divider_0' | 'padding_0' | 'news_label' | 'padding_1' | 'read_more_panel' | 'padding_3' }, + "news_section_panel/divider_0": { type: T.PANEL, children: string }, + "news_section_panel/padding_0": { type: T.PANEL, children: string }, + "news_section_panel/news_label": { type: T.LABEL, children: string }, + "news_section_panel/padding_1": { type: T.PANEL, children: string }, + "news_section_panel/read_more_panel": { type: T.IMAGE, children: 'text_stack_panel' | 'news_read_more_button_panel' | 'news_read_less_button_panel' }, + "news_section_panel/read_more_panel/text_stack_panel": { type: T.STACK_PANEL, children: 'news_title_text' | 'divider_panel' | 'news_text_small' | 'news_text_full' }, + "news_section_panel/read_more_panel/text_stack_panel/news_title_text": { type: T.LABEL, children: string }, + "news_section_panel/read_more_panel/text_stack_panel/divider_panel": { type: T.PANEL, children: 'divider_0' }, + "news_section_panel/read_more_panel/text_stack_panel/divider_panel/divider_0": { type: T.PANEL, children: string }, + "news_section_panel/read_more_panel/text_stack_panel/news_text_small": { type: T.PANEL, children: string }, + "news_section_panel/read_more_panel/text_stack_panel/news_text_full": { type: T.PANEL, children: string }, + "news_section_panel/read_more_panel/news_read_more_button_panel": { type: T.PANEL, children: string }, + "news_section_panel/read_more_panel/news_read_less_button_panel": { type: T.PANEL, children: string }, + "news_section_panel/padding_3": { type: T.PANEL, children: string }, + "divider": { type: T.IMAGE, children: string }, + "blue_diskspace_bar": { type: T.IMAGE, children: string }, + "green_diskspace_bar": { type: T.IMAGE, children: string }, + "empty_diskspace_bar": { type: T.IMAGE, children: string }, + "legacy_world_content_status_area_panel": { type: T.PANEL, children: 'world_storage_content_panel' }, + "legacy_world_content_status_area_panel/world_storage_content_panel": { type: T.PANEL, children: 'world_storage_separator' | 'world_storage_information' }, + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_separator": { type: T.IMAGE, children: string }, + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information": { type: T.STACK_PANEL, children: 'legacy_world_label' | 'padding' | 'legacy_world_bar' }, + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_label": { type: T.LABEL, children: string }, + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/padding": { type: T.PANEL, children: string }, + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar": { type: T.PANEL, children: 'local_diskspace_bar' | 'legacy_diskspace_bar' | 'empty_diskspace_bar' }, + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/local_diskspace_bar": { type: T.IMAGE, children: string }, + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/legacy_diskspace_bar": { type: T.IMAGE, children: string }, + "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/empty_diskspace_bar": { type: T.IMAGE, children: string }, + "world_list_text": { type: T.LABEL, children: string }, + "realm_screenshot": { type: T.IMAGE, children: 'picture' }, + "realm_screenshot/picture": { type: T.IMAGE, children: string }, + "local_world_name": { type: T.LABEL, children: string }, + "legacy_world_name": { type: T.LABEL, children: string }, + "world_lock": { type: T.IMAGE, children: string }, + "local_world_game_mode": { type: T.LABEL, children: string }, + "legacy_world_game_mode": { type: T.LABEL, children: string }, + "local_world_date": { type: T.LABEL, children: string }, + "legacy_world_date": { type: T.LABEL, children: string }, + "local_world_filesize": { type: T.LABEL, children: string }, + "legacy_world_filesize": { type: T.LABEL, children: string }, + "local_world_connected_storage": { type: T.PANEL, children: 'local_and_cloud' | 'local_only' | 'cloud_only' }, + "local_world_connected_storage/local_and_cloud": { type: T.IMAGE, children: string }, + "local_world_connected_storage/local_only": { type: T.IMAGE, children: string }, + "local_world_connected_storage/cloud_only": { type: T.IMAGE, children: string }, + "local_world_lock_panel": { type: T.PANEL, children: 'lock' }, + "local_world_lock_panel/lock": { type: T.IMAGE, children: string }, + "realms_plus_banner": { type: T.PANEL, children: 'realms_banner' }, + "realms_plus_banner/realms_banner": { type: T.STACK_PANEL, children: string }, + "local_world_text_panel": { type: T.PANEL, children: 'text_indent' }, + "local_world_text_panel/text_indent": { type: T.PANEL, children: 'top_side' | 'bottom_side' }, + "local_world_text_panel/text_indent/top_side": { type: T.STACK_PANEL, children: 'local_world_name' | 'lock_1' | 'local_world_date' }, + "local_world_text_panel/text_indent/top_side/local_world_name": { type: T.LABEL, children: string }, + "local_world_text_panel/text_indent/top_side/lock_1": { type: T.PANEL, children: string }, + "local_world_text_panel/text_indent/top_side/local_world_date": { type: T.LABEL, children: string }, + "local_world_text_panel/text_indent/bottom_side": { type: T.STACK_PANEL, children: 'realms_plus_icon' | 'pad' | 'local_world_game_mode' | 'local_world_connected_storage' | 'local_world_filesize' }, + "local_world_text_panel/text_indent/bottom_side/realms_plus_icon": { type: T.PANEL, children: string }, + "local_world_text_panel/text_indent/bottom_side/pad": { type: T.PANEL, children: string }, + "local_world_text_panel/text_indent/bottom_side/local_world_game_mode": { type: T.LABEL, children: string }, + "local_world_text_panel/text_indent/bottom_side/local_world_connected_storage": { type: T.PANEL, children: string }, + "local_world_text_panel/text_indent/bottom_side/local_world_filesize": { type: T.LABEL, children: string }, + "legacy_world_text_panel": { type: T.PANEL, children: 'text_indent' }, + "legacy_world_text_panel/text_indent": { type: T.PANEL, children: 'top_side' | 'bottom_side' }, + "legacy_world_text_panel/text_indent/top_side": { type: T.STACK_PANEL, children: 'legacy_world_name' | 'legacy_world_date' }, + "legacy_world_text_panel/text_indent/top_side/legacy_world_name": { type: T.LABEL, children: string }, + "legacy_world_text_panel/text_indent/top_side/legacy_world_date": { type: T.LABEL, children: string }, + "legacy_world_text_panel/text_indent/bottom_side": { type: T.STACK_PANEL, children: 'legacy_world_game_mode' | 'legacy_world_filesize' }, + "legacy_world_text_panel/text_indent/bottom_side/legacy_world_game_mode": { type: T.LABEL, children: string }, + "legacy_world_text_panel/text_indent/bottom_side/legacy_world_filesize": { type: T.LABEL, children: string }, + "beta_retail_world_text_panel": { type: T.PANEL, children: 'text_indent' }, + "beta_retail_world_text_panel/text_indent": { type: T.PANEL, children: 'top_side' | 'bottom_side' }, + "beta_retail_world_text_panel/text_indent/top_side": { type: T.STACK_PANEL, children: 'beta_retail_world_name' | 'beta_retail_world_date' }, + "beta_retail_world_text_panel/text_indent/top_side/beta_retail_world_name": { type: T.LABEL, children: string }, + "beta_retail_world_text_panel/text_indent/top_side/beta_retail_world_date": { type: T.LABEL, children: string }, + "beta_retail_world_text_panel/text_indent/bottom_side": { type: T.STACK_PANEL, children: 'beta_retail_world_game_mode' | 'beta_retail_world_filesize' }, + "beta_retail_world_text_panel/text_indent/bottom_side/beta_retail_world_game_mode": { type: T.LABEL, children: string }, + "beta_retail_world_text_panel/text_indent/bottom_side/beta_retail_world_filesize": { type: T.LABEL, children: string }, + "world_content_panel": { type: T.STACK_PANEL, children: 'world_screenshot' | 'world_text_panel' }, + "world_content_panel/world_screenshot": { type: T.IMAGE, children: string }, + "world_content_panel/world_text_panel": { type: T.UNKNOWN, children: string }, + "ownership_verification_in_progress_content": { type: T.STACK_PANEL, children: 'top_padding' | 'loading_bar_panel' | 'mid_padding' | 'loading_label' | 'bottom_padding' }, + "ownership_verification_in_progress_content/top_padding": { type: T.PANEL, children: string }, + "ownership_verification_in_progress_content/loading_bar_panel": { type: T.PANEL, children: 'loading_bar_animation' }, + "ownership_verification_in_progress_content/loading_bar_panel/loading_bar_animation": { type: T.IMAGE, children: string }, + "ownership_verification_in_progress_content/mid_padding": { type: T.PANEL, children: string }, + "ownership_verification_in_progress_content/loading_label": { type: T.LABEL, children: string }, + "ownership_verification_in_progress_content/bottom_padding": { type: T.PANEL, children: string }, + "ownership_verification_in_progress_panel": { type: T.IMAGE, children: 'ownership_verification_in_progress_content' }, + "ownership_verification_in_progress_panel/ownership_verification_in_progress_content": { type: T.STACK_PANEL, children: string }, + "local_world_item_button": { type: T.BUTTON, children: string }, + "legacy_world_item_button": { type: T.BUTTON, children: string }, + "beta_retail_world_item_button": { type: T.BUTTON, children: string }, + "local_world_edit_button": { type: T.BUTTON, children: string }, + "legacy_world_delete_button": { type: T.BUTTON, children: string }, + "legacy_world_migrate_button": { type: T.BUTTON, children: string }, + "local_world_item": { type: T.PANEL, children: 'header_button_panel' | 'signin_in_progress_panel' }, + "local_world_item/header_button_panel": { type: T.PANEL, children: string }, + "local_world_item/signin_in_progress_panel": { type: T.IMAGE, children: string }, + "legacy_world_item": { type: T.STACK_PANEL, children: 'header_button_panel_with_delete' | 'header_button_panel_with_migrate' | 'header_button_panel_no_delete' }, + "legacy_world_item/header_button_panel_with_delete": { type: T.PANEL, children: string }, + "legacy_world_item/header_button_panel_with_migrate": { type: T.PANEL, children: string }, + "legacy_world_item/header_button_panel_no_delete": { type: T.PANEL, children: string }, + "beta_retail_world_item": { type: T.PANEL, children: string }, + "local_world_item_grid": { type: T.GRID, children: string }, + "legacy_world_item_grid": { type: T.GRID, children: string }, + "beta_retail_local_world_item_grid": { type: T.GRID, children: string }, + "beta_retail_legacy_world_item_grid": { type: T.GRID, children: string }, + "common_button_template": { type: T.BUTTON, children: string }, + "common_button_text": { type: T.LABEL, children: string }, + "add_friend_and_invite_panel": { type: T.STACK_PANEL, children: 'add_friend_button' | 'padding_1' | 'join_by_code_button' | 'padding_2' | 'notification_button_panel' }, + "add_friend_and_invite_panel/add_friend_button": { type: T.BUTTON, children: string }, + "add_friend_and_invite_panel/padding_1": { type: T.PANEL, children: string }, + "add_friend_and_invite_panel/join_by_code_button": { type: T.BUTTON, children: string }, + "add_friend_and_invite_panel/padding_2": { type: T.PANEL, children: string }, + "add_friend_and_invite_panel/notification_button_panel": { type: T.PANEL, children: 'notification_button' }, + "add_friend_and_invite_panel/notification_button_panel/notification_button": { type: T.BUTTON, children: string }, + "add_friend_button": { type: T.BUTTON, children: string }, + "join_by_code_button": { type: T.BUTTON, children: string }, + "add_server_toggle_button": { type: T.PANEL, children: string }, + "server_toggle_base": { type: T.PANEL, children: string }, + "quick_play_button": { type: T.BUTTON, children: string }, + "create_new_world_button": { type: T.BUTTON, children: string }, + "create_on_realms_button_panel": { type: T.PANEL, children: 'create_on_realms_button' }, + "create_on_realms_button_panel/create_on_realms_button": { type: T.BUTTON, children: string }, + "import_world_button": { type: T.BUTTON, children: string }, + "sync_legacy_worlds_button": { type: T.BUTTON, children: string }, + "notification_button_text_layout": { type: T.PANEL, children: 'image1' | 'image2' | 'count' }, + "notification_button_text_layout/image1": { type: T.IMAGE, children: string }, + "notification_button_text_layout/image2": { type: T.IMAGE, children: string }, + "notification_button_text_layout/count": { type: T.PANEL, children: string }, + "notification_button_label_panel": { type: T.PANEL, children: 'notification_button_label' }, + "notification_button_label_panel/notification_button_label": { type: T.LABEL, children: string }, + "notification_content": { type: T.PANEL, children: string }, + "notification_button": { type: T.BUTTON, children: string }, + "header_button_panel": { type: T.PANEL, children: 'buttons' }, + "header_button_panel/buttons": { type: T.STACK_PANEL, children: 'primary_panel' | 'secondary' }, + "header_button_panel/buttons/primary_panel": { type: T.PANEL, children: 'primary' }, + "header_button_panel/buttons/primary_panel/primary": { type: T.UNKNOWN, children: string }, + "header_button_panel/buttons/secondary": { type: T.UNKNOWN, children: string }, + "header_button_panel_opt_in": { type: T.PANEL, children: 'buttons' }, + "header_button_panel_opt_in/buttons": { type: T.STACK_PANEL, children: 'primary_panel' | 'secondary' | 'ternary' }, + "header_button_panel_opt_in/buttons/primary_panel": { type: T.PANEL, children: 'primary' }, + "header_button_panel_opt_in/buttons/primary_panel/primary": { type: T.UNKNOWN, children: string }, + "header_button_panel_opt_in/buttons/secondary": { type: T.UNKNOWN, children: string }, + "header_button_panel_opt_in/buttons/ternary": { type: T.UNKNOWN, children: string }, + "header_single_button_panel": { type: T.PANEL, children: 'buttons' }, + "header_single_button_panel/buttons": { type: T.STACK_PANEL, children: 'primary' }, + "header_single_button_panel/buttons/primary": { type: T.UNKNOWN, children: string }, + "open_account_setting_button_gamecore": { type: T.BUTTON, children: string }, + "common_scroll_pane": { type: T.PANEL, children: string }, + "worlds_scroll_panel": { type: T.PANEL, children: 'worlds_list_stack_panel' }, + "worlds_scroll_panel/worlds_list_stack_panel": { type: T.STACK_PANEL, children: string }, + "game_tip_item_panel": { type: T.STACK_PANEL, children: 'info_bulb' | 'padding_1' | 'label_panel' | 'more_info_button' }, + "game_tip_item_panel/info_bulb": { type: T.IMAGE, children: string }, + "game_tip_item_panel/padding_1": { type: T.PANEL, children: string }, + "game_tip_item_panel/label_panel": { type: T.STACK_PANEL, children: 'padding_vertical' | 'realms_warning_text' | 'padding_vertical_1' }, + "game_tip_item_panel/label_panel/padding_vertical": { type: T.PANEL, children: string }, + "game_tip_item_panel/label_panel/realms_warning_text": { type: T.LABEL, children: string }, + "game_tip_item_panel/label_panel/padding_vertical_1": { type: T.PANEL, children: string }, + "game_tip_item_panel/more_info_button": { type: T.BUTTON, children: string }, + "realm_warning_tip": { type: T.IMAGE, children: 'padding_vertical' | 'info_panel' }, + "realm_warning_tip/padding_vertical": { type: T.PANEL, children: string }, + "realm_warning_tip/info_panel": { type: T.STACK_PANEL, children: string }, + "new_ui_switch_button_options_panel": { type: T.STACK_PANEL, children: 'unlock_template_options_button' }, + "new_ui_switch_button_options_panel/unlock_template_options_button": { type: T.BUTTON, children: string }, + "new_ui_servers_switch_button_options_panel": { type: T.STACK_PANEL, children: 'unlock_template_options_button' | 'padding_0' }, + "new_ui_servers_switch_button_options_panel/unlock_template_options_button": { type: T.BUTTON, children: string }, + "new_ui_servers_switch_button_options_panel/padding_0": { type: T.PANEL, children: string }, + "worlds_stack_panel": { type: T.STACK_PANEL, children: 'padding_0' | 'play_screen_warning' | 'header_button' | 'worlds_crossplatform_disabled_panel' | 'worlds_crossplatform_disable_spacer' | 'realms_panel' | 'realms_multiplayer_blocked_panel' | 'worlds_label' | 'grid' | 'no_local_worlds_label' | 'no_local_worlds_switch_setting' | 'beta_retail_local_padding' | 'beta_retail_local_worlds_label' | 'beta_retail_local_grid' | 'loading_legacy_worlds_panel_padding' | 'legacy_worlds_button' | 'loading_legacy_worlds_panel' | 'padding_2' | 'upgrade_legacy_worlds_label' | 'legacy_world_item_grid' | 'beta_retail_legacy_padding' | 'beta_retail_legacy_worlds_label' | 'beta_retail_legacy_grid' | 'pad_hack_panel' }, + "worlds_stack_panel/padding_0": { type: T.PANEL, children: string }, + "worlds_stack_panel/play_screen_warning": { type: T.IMAGE, children: string }, + "worlds_stack_panel/header_button": { type: T.STACK_PANEL, children: 'quick_play' | 'buttons' }, + "worlds_stack_panel/header_button/quick_play": { type: T.BUTTON, children: string }, + "worlds_stack_panel/header_button/buttons": { type: T.PANEL, children: string }, + "worlds_stack_panel/worlds_crossplatform_disabled_panel": { type: T.PANEL, children: string }, + "worlds_stack_panel/worlds_crossplatform_disable_spacer": { type: T.PANEL, children: string }, + "worlds_stack_panel/realms_panel": { type: T.STACK_PANEL, children: 'realms_label' | 'sign_in_to_view_realms_button' | 'realms_previews_panel' | 'create_on_realms_button_panel' | 'personal_realms' | 'placeholder_personal_realms_panel' | 'realms_trial_panel' | 'realms_nintendo_first_realm_purchase_panel' | 'padding_1' }, + "worlds_stack_panel/realms_panel/realms_label": { type: T.PANEL, children: string }, + "worlds_stack_panel/realms_panel/sign_in_to_view_realms_button": { type: T.BUTTON, children: string }, + "worlds_stack_panel/realms_panel/realms_previews_panel": { type: T.PANEL, children: 'new_offers_icon' | 'realms_world_item_button' }, + "worlds_stack_panel/realms_panel/realms_previews_panel/new_offers_icon": { type: T.IMAGE, children: string }, + "worlds_stack_panel/realms_panel/realms_previews_panel/realms_world_item_button": { type: T.BUTTON, children: string }, + "worlds_stack_panel/realms_panel/create_on_realms_button_panel": { type: T.PANEL, children: string }, + "worlds_stack_panel/realms_panel/personal_realms": { type: T.GRID, children: string }, + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel": { type: T.IMAGE, children: 'placeholder_loading_personal_realms' | 'loading_friends_realms_label' | 'padding' | 'progress_loading_bars' }, + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/placeholder_loading_personal_realms": { type: T.GRID, children: string }, + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/loading_friends_realms_label": { type: T.LABEL, children: string }, + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/padding": { type: T.PANEL, children: string }, + "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/progress_loading_bars": { type: T.IMAGE, children: string }, + "worlds_stack_panel/realms_panel/realms_trial_panel": { type: T.PANEL, children: 'realms_world_item_button' }, + "worlds_stack_panel/realms_panel/realms_trial_panel/realms_world_item_button": { type: T.BUTTON, children: string }, + "worlds_stack_panel/realms_panel/realms_nintendo_first_realm_purchase_panel": { type: T.PANEL, children: 'realms_world_item_button' }, + "worlds_stack_panel/realms_panel/realms_nintendo_first_realm_purchase_panel/realms_world_item_button": { type: T.BUTTON, children: string }, + "worlds_stack_panel/realms_panel/padding_1": { type: T.PANEL, children: string }, + "worlds_stack_panel/realms_multiplayer_blocked_panel": { type: T.STACK_PANEL, children: 'text_panel' | 'open_uri_button' | 'open_account_setting_button_gamecore' }, + "worlds_stack_panel/realms_multiplayer_blocked_panel/text_panel": { type: T.STACK_PANEL, children: string }, + "worlds_stack_panel/realms_multiplayer_blocked_panel/open_uri_button": { type: T.BUTTON, children: string }, + "worlds_stack_panel/realms_multiplayer_blocked_panel/open_account_setting_button_gamecore": { type: T.BUTTON, children: string }, + "worlds_stack_panel/worlds_label": { type: T.STACK_PANEL, children: string }, + "worlds_stack_panel/grid": { type: T.GRID, children: string }, + "worlds_stack_panel/no_local_worlds_label": { type: T.STACK_PANEL, children: string }, + "worlds_stack_panel/no_local_worlds_switch_setting": { type: T.PANEL, children: string }, + "worlds_stack_panel/beta_retail_local_padding": { type: T.PANEL, children: string }, + "worlds_stack_panel/beta_retail_local_worlds_label": { type: T.PANEL, children: string }, + "worlds_stack_panel/beta_retail_local_grid": { type: T.GRID, children: string }, + "worlds_stack_panel/loading_legacy_worlds_panel_padding": { type: T.PANEL, children: string }, + "worlds_stack_panel/legacy_worlds_button": { type: T.STACK_PANEL, children: 'legacy_worlds_label' | 'sync_legacy_worlds_button_panel' }, + "worlds_stack_panel/legacy_worlds_button/legacy_worlds_label": { type: T.PANEL, children: string }, + "worlds_stack_panel/legacy_worlds_button/sync_legacy_worlds_button_panel": { type: T.PANEL, children: 'button' }, + "worlds_stack_panel/legacy_worlds_button/sync_legacy_worlds_button_panel/button": { type: T.BUTTON, children: string }, + "worlds_stack_panel/loading_legacy_worlds_panel": { type: T.IMAGE, children: 'loading_legacy_worlds_label' | 'padding' | 'progress_loading_bars' }, + "worlds_stack_panel/loading_legacy_worlds_panel/loading_legacy_worlds_label": { type: T.LABEL, children: string }, + "worlds_stack_panel/loading_legacy_worlds_panel/padding": { type: T.PANEL, children: string }, + "worlds_stack_panel/loading_legacy_worlds_panel/progress_loading_bars": { type: T.IMAGE, children: string }, + "worlds_stack_panel/padding_2": { type: T.PANEL, children: string }, + "worlds_stack_panel/upgrade_legacy_worlds_label": { type: T.STACK_PANEL, children: string }, + "worlds_stack_panel/legacy_world_item_grid": { type: T.GRID, children: string }, + "worlds_stack_panel/beta_retail_legacy_padding": { type: T.PANEL, children: string }, + "worlds_stack_panel/beta_retail_legacy_worlds_label": { type: T.PANEL, children: string }, + "worlds_stack_panel/beta_retail_legacy_grid": { type: T.GRID, children: string }, + "worlds_stack_panel/pad_hack_panel": { type: T.PANEL, children: string }, + "no_local_worlds_switch_setting": { type: T.PANEL, children: 'bg' }, + "no_local_worlds_switch_setting/bg": { type: T.IMAGE, children: 'no_local_worlds_switch_setting' | 'no_local_worlds_get_help' }, + "no_local_worlds_switch_setting/bg/no_local_worlds_switch_setting": { type: T.STACK_PANEL, children: string }, + "no_local_worlds_switch_setting/bg/no_local_worlds_get_help": { type: T.STACK_PANEL, children: string }, + "no_local_worlds_launch_help": { type: T.BUTTON, children: string }, + "storage_location_dropdown_panel": { type: T.STACK_PANEL, children: 'padding1' | 'storage_location_dropdown' }, + "storage_location_dropdown_panel/padding1": { type: T.PANEL, children: string }, + "storage_location_dropdown_panel/storage_location_dropdown": { type: T.PANEL, children: string }, + "storage_location_dropdown": { type: T.PANEL, children: string }, + "switch_storage_type_content": { type: T.PANEL, children: string }, + "light_centered_loading_label": { type: T.LABEL, children: string }, + "light_loading_label": { type: T.LABEL, children: string }, + "loading_label": { type: T.LABEL, children: string }, + "progress_loading_bars": { type: T.IMAGE, children: string }, + "world_list_label_panel": { type: T.PANEL, children: 'list_label' }, + "world_list_label_panel/list_label": { type: T.LABEL, children: string }, + "world_list_label_with_color_panel": { type: T.STACK_PANEL, children: 'colored_square_sizer' | 'padding' | 'list_label' }, + "world_list_label_with_color_panel/colored_square_sizer": { type: T.PANEL, children: 'colored_square' }, + "world_list_label_with_color_panel/colored_square_sizer/colored_square": { type: T.IMAGE, children: string }, + "world_list_label_with_color_panel/padding": { type: T.PANEL, children: string }, + "world_list_label_with_color_panel/list_label": { type: T.LABEL, children: string }, + "empty_panel": { type: T.PANEL, children: string }, + "empty_grid": { type: T.PANEL, children: string }, + "lan_servers_scroll_content": { type: T.STACK_PANEL, children: string }, + "friends_scroll_panel": { type: T.PANEL, children: 'stack_panel' }, + "friends_scroll_panel/stack_panel": { type: T.STACK_PANEL, children: 'padding_0' | 'friends_screen_warning' | 'header_button' | 'friends_crossplatform_disabled_panel' | 'friends_crossplatform_disable_spacer' | 'joinable_realms_panel' | 'friends_grid' | 'pad_hack_panel' | 'no_friends_grid_message' | 'switch_find_cross_platform_friend_button' | 'add_friend_button_padding' | 'cross_platform_friends_grid' | 'no_cross_platform_friends_grid_message' | 'general_no_multiplayer_grid_message' | 'lan_grid' | 'open_account_setting_button_gamecore' }, + "friends_scroll_panel/stack_panel/padding_0": { type: T.PANEL, children: string }, + "friends_scroll_panel/stack_panel/friends_screen_warning": { type: T.IMAGE, children: string }, + "friends_scroll_panel/stack_panel/header_button": { type: T.STACK_PANEL, children: 'add_friend_and_invite_panel' }, + "friends_scroll_panel/stack_panel/header_button/add_friend_and_invite_panel": { type: T.STACK_PANEL, children: string }, + "friends_scroll_panel/stack_panel/friends_crossplatform_disabled_panel": { type: T.PANEL, children: string }, + "friends_scroll_panel/stack_panel/friends_crossplatform_disable_spacer": { type: T.PANEL, children: string }, + "friends_scroll_panel/stack_panel/joinable_realms_panel": { type: T.STACK_PANEL, children: 'friends_realms_label' | 'sign_in_to_view_realms_button_friends' | 'friends_realms' | 'placeholder_loading_friends_panel' | 'get_offline_authcode_message_panel' | 'no_realms_grid' | 'padding_1' }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/friends_realms_label": { type: T.PANEL, children: string }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/sign_in_to_view_realms_button_friends": { type: T.BUTTON, children: string }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/friends_realms": { type: T.GRID, children: string }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel": { type: T.IMAGE, children: 'placeholder_loading_friends_realms' | 'loading_friends_realms_label' | 'padding' | 'progress_loading_bars' }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/placeholder_loading_friends_realms": { type: T.GRID, children: string }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/loading_friends_realms_label": { type: T.LABEL, children: string }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/padding": { type: T.PANEL, children: string }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/progress_loading_bars": { type: T.IMAGE, children: string }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel": { type: T.IMAGE, children: 'content_stack' | 'focus_border' }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack": { type: T.STACK_PANEL, children: 'message_panel' | 'image_panel' }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/message_panel": { type: T.PANEL, children: 'message_label' }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/message_panel/message_label": { type: T.LABEL, children: string }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/image_panel": { type: T.PANEL, children: 'link_image' }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/image_panel/link_image": { type: T.IMAGE, children: string }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border": { type: T.BUTTON, children: 'hover' | 'pressed' }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border/hover": { type: T.IMAGE, children: string }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border/pressed": { type: T.IMAGE, children: string }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/no_realms_grid": { type: T.STACK_PANEL, children: string }, + "friends_scroll_panel/stack_panel/joinable_realms_panel/padding_1": { type: T.PANEL, children: string }, + "friends_scroll_panel/stack_panel/friends_grid": { type: T.STACK_PANEL, children: string }, + "friends_scroll_panel/stack_panel/pad_hack_panel": { type: T.PANEL, children: string }, + "friends_scroll_panel/stack_panel/no_friends_grid_message": { type: T.STACK_PANEL, children: string }, + "friends_scroll_panel/stack_panel/switch_find_cross_platform_friend_button": { type: T.BUTTON, children: string }, + "friends_scroll_panel/stack_panel/add_friend_button_padding": { type: T.PANEL, children: string }, + "friends_scroll_panel/stack_panel/cross_platform_friends_grid": { type: T.STACK_PANEL, children: string }, + "friends_scroll_panel/stack_panel/no_cross_platform_friends_grid_message": { type: T.STACK_PANEL, children: string }, + "friends_scroll_panel/stack_panel/general_no_multiplayer_grid_message": { type: T.STACK_PANEL, children: string }, + "friends_scroll_panel/stack_panel/lan_grid": { type: T.STACK_PANEL, children: string }, + "friends_scroll_panel/stack_panel/open_account_setting_button_gamecore": { type: T.BUTTON, children: string }, + "manually_added_servers_scrolling_content": { type: T.STACK_PANEL, children: 'padding_0' | 'more_servers_label' | 'padding_1' | 'more_servers_grid' | 'padding_3' }, + "manually_added_servers_scrolling_content/padding_0": { type: T.PANEL, children: string }, + "manually_added_servers_scrolling_content/more_servers_label": { type: T.LABEL, children: string }, + "manually_added_servers_scrolling_content/padding_1": { type: T.PANEL, children: string }, + "manually_added_servers_scrolling_content/more_servers_grid": { type: T.GRID, children: string }, + "manually_added_servers_scrolling_content/padding_3": { type: T.PANEL, children: string }, + "servers_content_panel": { type: T.STACK_PANEL, children: 'new_ui_servers_switch_button_options_panel' | 'featured_servers_panel' | 'more_servers_divider' | 'more_servers_panel' }, + "servers_content_panel/new_ui_servers_switch_button_options_panel": { type: T.STACK_PANEL, children: string }, + "servers_content_panel/featured_servers_panel": { type: T.STACK_PANEL, children: 'loading_featured_panel' | 'padding_1' | 'featured_servers_label' | 'padding_2' | 'third_party_featured_grid' | 'padding_3' }, + "servers_content_panel/featured_servers_panel/loading_featured_panel": { type: T.IMAGE, children: 'loading_friends_realms_label' | 'loading_featured_servers_panel' }, + "servers_content_panel/featured_servers_panel/loading_featured_panel/loading_friends_realms_label": { type: T.LABEL, children: string }, + "servers_content_panel/featured_servers_panel/loading_featured_panel/loading_featured_servers_panel": { type: T.PANEL, children: string }, + "servers_content_panel/featured_servers_panel/padding_1": { type: T.PANEL, children: string }, + "servers_content_panel/featured_servers_panel/featured_servers_label": { type: T.LABEL, children: string }, + "servers_content_panel/featured_servers_panel/padding_2": { type: T.PANEL, children: string }, + "servers_content_panel/featured_servers_panel/third_party_featured_grid": { type: T.GRID, children: string }, + "servers_content_panel/featured_servers_panel/padding_3": { type: T.PANEL, children: string }, + "servers_content_panel/more_servers_divider": { type: T.PANEL, children: string }, + "servers_content_panel/more_servers_panel": { type: T.STACK_PANEL, children: string }, + "server_scroll_panel": { type: T.PANEL, children: 'stack_panel' }, + "server_scroll_panel/stack_panel": { type: T.STACK_PANEL, children: 'padding_0' | 'servers_crossplatform_disabled_panel' | 'no_featured_server_connection' | 'more_servers_blocked_panel' | 'padding_1' | 'server_content' | 'add_server_button' }, + "server_scroll_panel/stack_panel/padding_0": { type: T.PANEL, children: string }, + "server_scroll_panel/stack_panel/servers_crossplatform_disabled_panel": { type: T.PANEL, children: string }, + "server_scroll_panel/stack_panel/no_featured_server_connection": { type: T.PANEL, children: string }, + "server_scroll_panel/stack_panel/more_servers_blocked_panel": { type: T.STACK_PANEL, children: 'server_multiplayer_privileges_blocked' | 'open_uri_button' }, + "server_scroll_panel/stack_panel/more_servers_blocked_panel/server_multiplayer_privileges_blocked": { type: T.PANEL, children: string }, + "server_scroll_panel/stack_panel/more_servers_blocked_panel/open_uri_button": { type: T.BUTTON, children: string }, + "server_scroll_panel/stack_panel/padding_1": { type: T.PANEL, children: string }, + "server_scroll_panel/stack_panel/server_content": { type: T.UNKNOWN, children: string }, + "server_scroll_panel/stack_panel/add_server_button": { type: T.PANEL, children: string }, + "crossplatform_disabled_panel": { type: T.PANEL, children: string }, + "crossplatform_disable_spacer": { type: T.PANEL, children: string }, + "common_scrolling_panel": { type: T.PANEL, children: string }, + "common_content": { type: T.INPUT_PANEL, children: string }, + "scrolling_offsets": { type: T.PANEL, children: string }, + "worlds_scroll_content": { type: T.INPUT_PANEL, children: 'worlds_stack_panel' }, + "worlds_scroll_content/worlds_stack_panel": { type: T.STACK_PANEL, children: 'scrolling_panel_sizer' | 'scrolling_panel_legacy_storage_sizer' }, + "worlds_scroll_content/worlds_stack_panel/scrolling_panel_sizer": { type: T.PANEL, children: 'scrolling_panel' }, + "worlds_scroll_content/worlds_stack_panel/scrolling_panel_sizer/scrolling_panel": { type: T.PANEL, children: string }, + "worlds_scroll_content/worlds_stack_panel/scrolling_panel_legacy_storage_sizer": { type: T.PANEL, children: 'scrolling_panel' }, + "worlds_scroll_content/worlds_stack_panel/scrolling_panel_legacy_storage_sizer/scrolling_panel": { type: T.PANEL, children: string }, + "friends_scroll_content": { type: T.INPUT_PANEL, children: 'scrolling_panel' }, + "friends_scroll_content/scrolling_panel": { type: T.PANEL, children: string }, + "show_servers_panel": { type: T.STACK_PANEL, children: 'left_panel' | 'divider_panel' | 'right_panel' }, + "show_servers_panel/left_panel": { type: T.PANEL, children: 'scrolling_panel' }, + "show_servers_panel/left_panel/scrolling_panel": { type: T.PANEL, children: string }, + "show_servers_panel/divider_panel": { type: T.PANEL, children: 'main_divider' }, + "show_servers_panel/divider_panel/main_divider": { type: T.IMAGE, children: string }, + "show_servers_panel/right_panel": { type: T.PANEL, children: string }, + "server_scroll_content": { type: T.INPUT_PANEL, children: 'severs_panel' | 'feature_server_message_panel' }, + "server_scroll_content/severs_panel": { type: T.STACK_PANEL, children: 'offset_panel' | 'show_servers_panel' }, + "server_scroll_content/severs_panel/offset_panel": { type: T.PANEL, children: 'servers_sunsetting_warning' }, + "server_scroll_content/severs_panel/offset_panel/servers_sunsetting_warning": { type: T.IMAGE, children: string }, + "server_scroll_content/severs_panel/show_servers_panel": { type: T.STACK_PANEL, children: string }, + "server_scroll_content/feature_server_message_panel": { type: T.STACK_PANEL, children: 'featured_servers_label' | 'pad' | 'feature_server_message_panel' | 'open_account_setting_button_gamecore' }, + "server_scroll_content/feature_server_message_panel/featured_servers_label": { type: T.LABEL, children: string }, + "server_scroll_content/feature_server_message_panel/pad": { type: T.PANEL, children: string }, + "server_scroll_content/feature_server_message_panel/feature_server_message_panel": { type: T.IMAGE, children: 'label_panel_layout' }, + "server_scroll_content/feature_server_message_panel/feature_server_message_panel/label_panel_layout": { type: T.PANEL, children: 'label' }, + "server_scroll_content/feature_server_message_panel/feature_server_message_panel/label_panel_layout/label": { type: T.LABEL, children: string }, + "server_scroll_content/feature_server_message_panel/open_account_setting_button_gamecore": { type: T.BUTTON, children: string }, + "server_content_area": { type: T.PANEL, children: 'third_party_scrolling_panel' | 'additional_server_scrolling_panel' | 'add_server_pane' }, + "server_content_area/third_party_scrolling_panel": { type: T.PANEL, children: string }, + "server_content_area/additional_server_scrolling_panel": { type: T.PANEL, children: string }, + "server_content_area/add_server_pane": { type: T.PANEL, children: string }, + "tab_front": { type: T.IMAGE, children: string }, + "tab_front_middle": { type: T.IMAGE, children: string }, + "tab_back": { type: T.IMAGE, children: string }, + "X_tab_back": { type: T.IMAGE, children: string }, + "tab_text_stack_panel": { type: T.STACK_PANEL, children: 'padding' | 'text_section' | 'count_section' }, + "tab_text_stack_panel/padding": { type: T.PANEL, children: string }, + "tab_text_stack_panel/text_section": { type: T.PANEL, children: 'text' }, + "tab_text_stack_panel/text_section/text": { type: T.LABEL, children: string }, + "tab_text_stack_panel/count_section": { type: T.PANEL, children: 'count_background_image' }, + "tab_text_stack_panel/count_section/count_background_image": { type: T.IMAGE, children: 'count' }, + "tab_text_stack_panel/count_section/count_background_image/count": { type: T.LABEL, children: string }, + "common_navigation_tab_content": { type: T.STACK_PANEL, children: 'padding_0' | 'icon_section' | 'padding_1' | 'count_text' }, + "common_navigation_tab_content/padding_0": { type: T.PANEL, children: string }, + "common_navigation_tab_content/icon_section": { type: T.PANEL, children: 'icon' }, + "common_navigation_tab_content/icon_section/icon": { type: T.UNKNOWN, children: string }, + "common_navigation_tab_content/padding_1": { type: T.PANEL, children: string }, + "common_navigation_tab_content/count_text": { type: T.STACK_PANEL, children: string }, + "friends_navigation_tab_content": { type: T.STACK_PANEL, children: 'padding' | 'icon_section' | 'icon_section_2' | 'icon_section_nobounce' | 'icon_section_nobounce_2' | 'icon_section_notification' | 'count_text' }, + "friends_navigation_tab_content/padding": { type: T.PANEL, children: string }, + "friends_navigation_tab_content/icon_section": { type: T.PANEL, children: 'icon' }, + "friends_navigation_tab_content/icon_section/icon": { type: T.UNKNOWN, children: string }, + "friends_navigation_tab_content/icon_section_2": { type: T.PANEL, children: 'icon' }, + "friends_navigation_tab_content/icon_section_2/icon": { type: T.UNKNOWN, children: string }, + "friends_navigation_tab_content/icon_section_nobounce": { type: T.PANEL, children: 'icon' }, + "friends_navigation_tab_content/icon_section_nobounce/icon": { type: T.UNKNOWN, children: string }, + "friends_navigation_tab_content/icon_section_nobounce_2": { type: T.PANEL, children: 'icon' }, + "friends_navigation_tab_content/icon_section_nobounce_2/icon": { type: T.UNKNOWN, children: string }, + "friends_navigation_tab_content/icon_section_notification": { type: T.PANEL, children: 'icon1' | 'icon2' }, + "friends_navigation_tab_content/icon_section_notification/icon1": { type: T.IMAGE, children: string }, + "friends_navigation_tab_content/icon_section_notification/icon2": { type: T.IMAGE, children: string }, + "friends_navigation_tab_content/count_text": { type: T.STACK_PANEL, children: string }, + "top_tab": { type: T.PANEL, children: string }, + "world_navigation_tab": { type: T.PANEL, children: string }, + "friends_navigation_tab": { type: T.PANEL, children: string }, + "server_navigation_tab": { type: T.PANEL, children: string }, + "close_navigation_tab": { type: T.PANEL, children: 'background' | 'x_image' }, + "close_navigation_tab/background": { type: T.IMAGE, children: string }, + "close_navigation_tab/x_image": { type: T.BUTTON, children: string }, + "common_tab_content_panel": { type: T.PANEL, children: 'background' | 'content' }, + "common_tab_content_panel/background": { type: T.PANEL, children: string }, + "common_tab_content_panel/content": { type: T.UNKNOWN, children: string }, + "worlds_tab_content_panel": { type: T.PANEL, children: string }, + "friends_tab_content_panel": { type: T.PANEL, children: string }, + "server_tab_content_panel": { type: T.PANEL, children: string }, + "common_tab_content_panel_type": { type: T.INPUT_PANEL, children: string }, + "edu_tab_content_panel_layout": { type: T.INPUT_PANEL, children: 'worlds_tab_content' | 'friends_tab_content' | 'server_tab_content_panel' }, + "edu_tab_content_panel_layout/worlds_tab_content": { type: T.PANEL, children: string }, + "edu_tab_content_panel_layout/friends_tab_content": { type: T.PANEL, children: string }, + "edu_tab_content_panel_layout/server_tab_content_panel": { type: T.PANEL, children: string }, + "trial_tab_content_panel_layout": { type: T.INPUT_PANEL, children: 'worlds_tab_content' }, + "trial_tab_content_panel_layout/worlds_tab_content": { type: T.PANEL, children: string }, + "default_tab_content_panel_layout": { type: T.INPUT_PANEL, children: 'worlds_tab_content' | 'friends_tab_content' | 'server_tab_content_panel' }, + "default_tab_content_panel_layout/worlds_tab_content": { type: T.PANEL, children: string }, + "default_tab_content_panel_layout/friends_tab_content": { type: T.PANEL, children: string }, + "default_tab_content_panel_layout/server_tab_content_panel": { type: T.PANEL, children: string }, + "tab_navigation_panel_layout": { type: T.STACK_PANEL, children: 'navigation_tabs' | 'close_navigation_tab' }, + "tab_navigation_panel_layout/navigation_tabs": { type: T.PANEL, children: 'content' }, + "tab_navigation_panel_layout/navigation_tabs/content": { type: T.UNKNOWN, children: string }, + "tab_navigation_panel_layout/close_navigation_tab": { type: T.PANEL, children: 'close_button' }, + "tab_navigation_panel_layout/close_navigation_tab/close_button": { type: T.UNKNOWN, children: string }, + "common_tab_navigation_panel_layout": { type: T.STACK_PANEL, children: string }, + "edu_tab_navigation_panel_layout": { type: T.STACK_PANEL, children: 'world_navigation_tab' | 'friends_navigation_tab' | 'server_navigation_tab' }, + "edu_tab_navigation_panel_layout/world_navigation_tab": { type: T.PANEL, children: string }, + "edu_tab_navigation_panel_layout/friends_navigation_tab": { type: T.PANEL, children: string }, + "edu_tab_navigation_panel_layout/server_navigation_tab": { type: T.PANEL, children: string }, + "trial_tab_navigation_panel_layout": { type: T.STACK_PANEL, children: 'world_navigation_tab' }, + "trial_tab_navigation_panel_layout/world_navigation_tab": { type: T.PANEL, children: string }, + "default_tab_navigation_panel_layout": { type: T.STACK_PANEL, children: 'world_navigation_tab' | 'friends_navigation_tab' | 'server_navigation_tab' }, + "default_tab_navigation_panel_layout/world_navigation_tab": { type: T.PANEL, children: string }, + "default_tab_navigation_panel_layout/friends_navigation_tab": { type: T.PANEL, children: string }, + "default_tab_navigation_panel_layout/server_navigation_tab": { type: T.PANEL, children: string }, + "common_play_screen_panel": { type: T.PANEL, children: string }, + "play_screen_panel": { type: T.PANEL, children: 'tab_navigation_panel' | 'tab_content_panel' | 'gamepad_helper_left_bumper' | 'gamepad_helper_right_bumper' | 'keyboard_helper_left_bracket' | 'keyboard_helper_right_bracket' }, + "play_screen_panel/tab_navigation_panel": { type: T.STACK_PANEL, children: string }, + "play_screen_panel/tab_content_panel": { type: T.UNKNOWN, children: string }, + "play_screen_panel/gamepad_helper_left_bumper": { type: T.STACK_PANEL, children: string }, + "play_screen_panel/gamepad_helper_right_bumper": { type: T.STACK_PANEL, children: string }, + "play_screen_panel/keyboard_helper_left_bracket": { type: T.STACK_PANEL, children: string }, + "play_screen_panel/keyboard_helper_right_bracket": { type: T.STACK_PANEL, children: string }, + "default_play_screen_panel": { type: T.PANEL, children: string }, + "trial_play_screen_panel": { type: T.PANEL, children: string }, + "edu_play_screen_panel": { type: T.PANEL, children: string }, + "play_screen": { type: T.SCREEN, children: string }, + "play_screen_content": { type: T.PANEL, children: 'main_control' | 'editor_text_panel' | 'popup_dialog_factory' }, + "play_screen_content/main_control": { type: T.UNKNOWN, children: string }, + "play_screen_content/editor_text_panel": { type: T.PANEL, children: string }, + "play_screen_content/popup_dialog_factory": { type: T.FACTORY, children: string }, + "popup_dialog_join_by_code": { type: T.INPUT_PANEL, children: 'join_by_code_popup_background' | 'join_by_code_popup_content' | 'gamepad_helpers' }, + "popup_dialog_join_by_code/join_by_code_popup_background": { type: T.IMAGE, children: string }, + "popup_dialog_join_by_code/join_by_code_popup_content": { type: T.PANEL, children: string }, + "popup_dialog_join_by_code/gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "join_by_code_popup_background": { type: T.IMAGE, children: string }, + "join_by_code_popup_content": { type: T.PANEL, children: 'popup_dialog_bg' | 'popup_stack_panel' }, + "join_by_code_popup_content/popup_dialog_bg": { type: T.IMAGE, children: string }, + "join_by_code_popup_content/popup_stack_panel": { type: T.STACK_PANEL, children: 'join_by_code_popup_dialog_header' | 'spacing_1' | 'join_by_code_popup_dialog_upper_body' | 'spacing_2' | 'join_by_code_popup_dialog_lower_body' }, + "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_header": { type: T.PANEL, children: string }, + "join_by_code_popup_content/popup_stack_panel/spacing_1": { type: T.PANEL, children: string }, + "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_upper_body": { type: T.STACK_PANEL, children: string }, + "join_by_code_popup_content/popup_stack_panel/spacing_2": { type: T.PANEL, children: string }, + "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_lower_body": { type: T.PANEL, children: string }, + "join_by_code_popup_dialog_header": { type: T.PANEL, children: 'join_by_code_popup_header_text' | 'close_button' }, + "join_by_code_popup_dialog_header/join_by_code_popup_header_text": { type: T.LABEL, children: string }, + "join_by_code_popup_dialog_header/close_button": { type: T.BUTTON, children: string }, + "join_by_code_popup_header_text": { type: T.LABEL, children: string }, + "join_by_code_popup_dialog_upper_body": { type: T.STACK_PANEL, children: 'margin1' | 'join_by_code_popup_code_text_field' | 'spacing' | 'join_by_code_popup_join_button' | 'margin2' }, + "join_by_code_popup_dialog_upper_body/margin1": { type: T.PANEL, children: string }, + "join_by_code_popup_dialog_upper_body/join_by_code_popup_code_text_field": { type: T.EDIT_BOX, children: string }, + "join_by_code_popup_dialog_upper_body/spacing": { type: T.PANEL, children: string }, + "join_by_code_popup_dialog_upper_body/join_by_code_popup_join_button": { type: T.BUTTON, children: string }, + "join_by_code_popup_dialog_upper_body/margin2": { type: T.PANEL, children: string }, + "join_by_code_popup_code_text_field": { type: T.EDIT_BOX, children: string }, + "join_by_code_popup_join_button": { type: T.BUTTON, children: string }, + "join_by_code_popup_help_text": { type: T.LABEL, children: string }, + "lower_body_default_content": { type: T.PANEL, children: 'info_text' }, + "lower_body_default_content/info_text": { type: T.LABEL, children: string }, + "join_by_code_popup_dialog_lower_body": { type: T.PANEL, children: 'default' }, + "join_by_code_popup_dialog_lower_body/default": { type: T.PANEL, children: string }, + "open_account_setting_button": { type: T.BUTTON, children: string }, + "popup_dialog_high_ping": { type: T.INPUT_PANEL, children: 'high_ping_popup_background' | 'high_ping_popup_content' | 'gamepad_helpers' }, + "popup_dialog_high_ping/high_ping_popup_background": { type: T.IMAGE, children: string }, + "popup_dialog_high_ping/high_ping_popup_content": { type: T.PANEL, children: string }, + "popup_dialog_high_ping/gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "popup_two_buttons": { type: T.PANEL, children: 'common_panel' | 'title_label' | 'panel_indent' | 'button_panel' }, + "popup_two_buttons/common_panel": { type: T.PANEL, children: string }, + "popup_two_buttons/title_label": { type: T.PANEL, children: string }, + "popup_two_buttons/panel_indent": { type: T.PANEL, children: 'inside_header_panel' }, + "popup_two_buttons/panel_indent/inside_header_panel": { type: T.UNKNOWN, children: string }, + "popup_two_buttons/button_panel": { type: T.STACK_PANEL, children: 'left_button_panel' | 'pad' | 'right_button_panel' }, + "popup_two_buttons/button_panel/left_button_panel": { type: T.BUTTON, children: string }, + "popup_two_buttons/button_panel/pad": { type: T.PANEL, children: string }, + "popup_two_buttons/button_panel/right_button_panel": { type: T.BUTTON, children: string }, + "high_ping_popup_content_stack_panel": { type: T.STACK_PANEL, children: 'pad_0' | 'ping_images_panel' | 'pad_1' | 'text_line_1' | 'pad_2' | 'text_line_2' | 'pad_3' }, + "high_ping_popup_content_stack_panel/pad_0": { type: T.PANEL, children: string }, + "high_ping_popup_content_stack_panel/ping_images_panel": { type: T.PANEL, children: 'ping_images_stack_panel' }, + "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel": { type: T.STACK_PANEL, children: 'medium_connection' | 'pad' | 'low_connection' }, + "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/medium_connection": { type: T.IMAGE, children: string }, + "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/pad": { type: T.PANEL, children: string }, + "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/low_connection": { type: T.IMAGE, children: string }, + "high_ping_popup_content_stack_panel/pad_1": { type: T.PANEL, children: string }, + "high_ping_popup_content_stack_panel/text_line_1": { type: T.LABEL, children: string }, + "high_ping_popup_content_stack_panel/pad_2": { type: T.PANEL, children: string }, + "high_ping_popup_content_stack_panel/text_line_2": { type: T.LABEL, children: string }, + "high_ping_popup_content_stack_panel/pad_3": { type: T.PANEL, children: string }, + "high_ping_popup_join_button": { type: T.BUTTON, children: string }, + "high_ping_popup_cancel_button": { type: T.BUTTON, children: string }, + "copyright": { type: T.LABEL, children: string }, + "development_version": { type: T.LABEL, children: string }, + "version": { type: T.LABEL, children: string }, + "editor_text_panel": { type: T.PANEL, children: 'copyright' | 'development_version' | 'version' }, + "editor_text_panel/copyright": { type: T.LABEL, children: string }, + "editor_text_panel/development_version": { type: T.LABEL, children: string }, + "editor_text_panel/version": { type: T.LABEL, children: string }, + "editor_settings_image_content": { type: T.IMAGE, children: string }, + "editor_settings_menu_button": { type: T.BUTTON, children: string }, + "editor_server_content_panel": { type: T.STACK_PANEL, children: 'more_servers_panel' }, + "editor_server_content_panel/more_servers_panel": { type: T.STACK_PANEL, children: string }, + "editor_tab_content_panel_layout": { type: T.INPUT_PANEL, children: 'worlds_tab_content' | 'friends_tab_content' | 'server_tab_content_panel' }, + "editor_tab_content_panel_layout/worlds_tab_content": { type: T.PANEL, children: string }, + "editor_tab_content_panel_layout/friends_tab_content": { type: T.PANEL, children: string }, + "editor_tab_content_panel_layout/server_tab_content_panel": { type: T.PANEL, children: string }, + "editor_play_screen_panel": { type: T.PANEL, children: string }, } 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": { type: T.PANEL, children: 'perf_turtle_background' | 'stack_panel' }, + "perf_turtle_panel/perf_turtle_background": { type: T.IMAGE, children: string }, + "perf_turtle_panel/stack_panel": { type: T.STACK_PANEL, children: 'turtle' | 'turtle_text' }, + "perf_turtle_panel/stack_panel/turtle": { type: T.IMAGE, children: string }, + "perf_turtle_panel/stack_panel/turtle_text": { type: T.LABEL, children: string }, } 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": { type: T.LABEL, children: string }, + "header_panel": { type: T.PANEL, children: 'header_background' | 'title_label' }, + "header_panel/header_background": { type: T.IMAGE, children: string }, + "header_panel/title_label": { type: T.LABEL, children: string }, + "header_area": { type: T.PANEL, children: 'x' | 'inventory_header' | 'container_header' }, + "header_area/x": { type: T.BUTTON, children: string }, + "header_area/inventory_header": { type: T.PANEL, children: string }, + "header_area/container_header": { type: T.PANEL, children: string }, + "dark_bg": { type: T.IMAGE, children: string }, + "panel_outline": { type: T.IMAGE, children: string }, + "background_panel": { type: T.IMAGE, children: string }, + "inventory_grid": { type: T.GRID, children: string }, + "inventory_panel": { type: T.PANEL, children: 'scrolling_panel' }, + "inventory_panel/scrolling_panel": { type: T.PANEL, children: string }, + "half_screen": { type: T.PANEL, children: 'inventory_panel' }, + "half_screen/inventory_panel": { type: T.PANEL, children: string }, + "panel": { type: T.PANEL, children: 'container_gamepad_helpers' | 'header' | 'bg' | 'inventory' | 'container' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'gamepad_cursor' | 'inventory_selected_icon_button' | 'hold_icon' | 'flying_item_renderer' }, + "panel/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "panel/header": { type: T.PANEL, children: string }, + "panel/bg": { type: T.IMAGE, children: string }, + "panel/inventory": { type: T.PANEL, children: string }, + "panel/container": { type: T.PANEL, children: string }, + "panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "panel/gamepad_cursor": { type: T.BUTTON, children: string }, + "panel/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "panel/hold_icon": { type: T.BUTTON, children: string }, + "panel/flying_item_renderer": { type: T.CUSTOM, children: string }, + "small_chest_panel": { type: T.PANEL, children: string }, + "large_chest_panel": { type: T.PANEL, children: string }, + "hopper_panel": { type: T.PANEL, children: string }, + "dispenser_panel": { type: T.PANEL, children: string }, + "dropper_panel": { type: T.PANEL, children: string }, + "ender_chest_panel": { type: T.PANEL, children: string }, + "shulker_box_panel": { type: T.PANEL, children: string }, + "barrel_panel": { type: T.PANEL, children: string }, } 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": { type: T.IMAGE, children: string }, + "popup_dialog_message": { type: T.LABEL, children: string }, + "popup_dialog_button": { type: T.BUTTON, children: string }, + "popup_dialog_button_with_binding": { type: T.BUTTON, children: string }, + "popup_dialog_left_button": { type: T.BUTTON, children: string }, + "popup_dialog_middle_button": { type: T.BUTTON, children: string }, + "popup_dialog_right_button": { type: T.BUTTON, children: string }, + "popup_dialog": { type: T.INPUT_PANEL, children: string }, + "modal_background_image": { type: T.IMAGE, children: string }, + "black_tint_image": { type: T.IMAGE, children: string }, + "modal_title_text": { type: T.LABEL, children: string }, + "modal_label_text": { type: T.STACK_PANEL, children: 'padding' | 'text' }, + "modal_label_text/padding": { type: T.PANEL, children: string }, + "modal_label_text/text": { type: T.LABEL, children: string }, + "modal_checkbox_button": { type: T.TOGGLE, children: 'header_description_stack_panel' }, + "modal_checkbox_button/header_description_stack_panel": { type: T.STACK_PANEL, children: 'checkbox_visuals' | 'buffer_panel' | 'padding_panel' }, + "modal_checkbox_button/header_description_stack_panel/checkbox_visuals": { type: T.PANEL, children: string }, + "modal_checkbox_button/header_description_stack_panel/buffer_panel": { type: T.PANEL, children: 'label' }, + "modal_checkbox_button/header_description_stack_panel/buffer_panel/label": { type: T.LABEL, children: string }, + "modal_checkbox_button/header_description_stack_panel/padding_panel": { type: T.PANEL, children: string }, + "dialog_text_wrapper": { type: T.PANEL, children: string }, + "modal_label_panel": { type: T.PANEL, children: string }, + "modal_left_button": { type: T.BUTTON, children: string }, + "modal_middle_button": { type: T.BUTTON, children: string }, + "modal_rightcancel_button": { type: T.BUTTON, children: string }, + "three_buttons_panel": { type: T.PANEL, children: 'left' | 'middle' | 'right' }, + "three_buttons_panel/left": { type: T.BUTTON, children: string }, + "three_buttons_panel/middle": { type: T.BUTTON, children: string }, + "three_buttons_panel/right": { type: T.BUTTON, children: string }, + "two_buttons_checkbox_panel": { type: T.PANEL, children: 'left' | 'middle' | 'checkbox' }, + "two_buttons_checkbox_panel/left": { type: T.BUTTON, children: string }, + "two_buttons_checkbox_panel/middle": { type: T.BUTTON, children: string }, + "two_buttons_checkbox_panel/checkbox": { type: T.TOGGLE, children: string }, + "destructive_three_buttons_panel": { type: T.PANEL, children: 'left' | 'middle' | 'right' }, + "destructive_three_buttons_panel/left": { type: T.BUTTON, children: string }, + "destructive_three_buttons_panel/middle": { type: T.BUTTON, children: string }, + "destructive_three_buttons_panel/right": { type: T.BUTTON, children: string }, + "two_buttons_panel": { type: T.PANEL, children: 'left' | 'right' }, + "two_buttons_panel/left": { type: T.BUTTON, children: string }, + "two_buttons_panel/right": { type: T.BUTTON, children: string }, + "destructive_two_buttons_panel": { type: T.PANEL, children: 'left' | 'right' }, + "destructive_two_buttons_panel/left": { type: T.BUTTON, children: string }, + "destructive_two_buttons_panel/right": { type: T.BUTTON, children: string }, + "single_button_panel": { type: T.PANEL, children: 'left' }, + "single_button_panel/left": { type: T.BUTTON, children: string }, + "single_button_checkbox_panel": { type: T.PANEL, children: 'left' | 'checkbox' }, + "single_button_checkbox_panel/left": { type: T.BUTTON, children: string }, + "single_button_checkbox_panel/checkbox": { type: T.TOGGLE, children: string }, + "modal_dialog_base": { type: T.UNKNOWN, children: string }, + "modal_dialog_with_buttons": { type: T.PANEL, children: 'background_with_buttons' | 'title' | 'text' | 'button_panel' }, + "modal_dialog_with_buttons/background_with_buttons": { type: T.PANEL, children: string }, + "modal_dialog_with_buttons/title": { type: T.LABEL, children: string }, + "modal_dialog_with_buttons/text": { type: T.PANEL, children: string }, + "modal_dialog_with_buttons/button_panel": { type: T.UNKNOWN, children: string }, + "modal_input_panel": { type: T.INPUT_PANEL, children: 'black_tint_image' }, + "modal_input_panel/black_tint_image": { type: T.IMAGE, children: string }, + "modal_dialog_popup": { type: T.PANEL, children: 'modal_input' }, + "modal_dialog_popup/modal_input": { type: T.INPUT_PANEL, children: 'modal_bg_buttons' | 'black_background' }, + "modal_dialog_popup/modal_input/modal_bg_buttons": { type: T.PANEL, children: string }, + "modal_dialog_popup/modal_input/black_background": { type: T.IMAGE, children: string }, + "hollow_2_bottom_button_panel": { type: T.PANEL, children: 'lower_button_controls' }, + "hollow_2_bottom_button_panel/lower_button_controls": { type: T.UNKNOWN, children: string }, + "form_fit_screen_with_title_and_close_and_bottom_buttons": { type: T.PANEL, children: string }, + "form_fit_screen_with_title_and_close": { type: T.PANEL, children: 'panel_background' | 'panel_content' }, + "form_fit_screen_with_title_and_close/panel_background": { type: T.UNKNOWN, children: string }, + "form_fit_screen_with_title_and_close/panel_content": { type: T.PANEL, children: 'header' | 'close_button_panel' | 'contents' | 'lower_contents' }, + "form_fit_screen_with_title_and_close/panel_content/header": { type: T.PANEL, children: 'header_content' }, + "form_fit_screen_with_title_and_close/panel_content/header/header_content": { type: T.LABEL, children: string }, + "form_fit_screen_with_title_and_close/panel_content/close_button_panel": { type: T.PANEL, children: 'close' }, + "form_fit_screen_with_title_and_close/panel_content/close_button_panel/close": { type: T.BUTTON, children: string }, + "form_fit_screen_with_title_and_close/panel_content/contents": { type: T.PANEL, children: 'contents' | 'content_padding' }, + "form_fit_screen_with_title_and_close/panel_content/contents/contents": { type: T.UNKNOWN, children: string }, + "form_fit_screen_with_title_and_close/panel_content/contents/content_padding": { type: T.PANEL, children: string }, + "form_fit_screen_with_title_and_close/panel_content/lower_contents": { type: T.PANEL, children: 'contents' }, + "form_fit_screen_with_title_and_close/panel_content/lower_contents/contents": { type: T.UNKNOWN, children: string }, + "form_fit_modal_dialog_popup": { type: T.INPUT_PANEL, children: 'background' | 'content' }, + "form_fit_modal_dialog_popup/background": { type: T.UNKNOWN, children: string }, + "form_fit_modal_dialog_popup/content": { type: T.UNKNOWN, children: string }, + "progress_dialog_popup": { type: T.PANEL, children: 'background' | 'title' | 'progress_content' | 'button' }, + "progress_dialog_popup/background": { type: T.PANEL, children: string }, + "progress_dialog_popup/title": { type: T.LABEL, children: string }, + "progress_dialog_popup/progress_content": { type: T.STACK_PANEL, children: string }, + "progress_dialog_popup/button": { type: T.PANEL, children: string }, + "progress_content": { type: T.STACK_PANEL, children: 'progress_titles' | 'progress_bar' }, + "progress_content/progress_titles": { type: T.PANEL, children: 'current_progress_label' | 'total_progress_label' }, + "progress_content/progress_titles/current_progress_label": { type: T.LABEL, children: string }, + "progress_content/progress_titles/total_progress_label": { type: T.LABEL, children: string }, + "progress_content/progress_bar": { type: T.PANEL, children: string }, + "progress_label": { type: T.LABEL, children: string }, + "current_progress_label": { type: T.LABEL, children: string }, + "total_progress_label": { type: T.LABEL, children: string }, + "progress_bar_icon": { type: T.PANEL, children: 'full_progress_bar_icon' | 'empty_progress_bar_icon' | 'progress_bar_nub' }, + "progress_bar_icon/full_progress_bar_icon": { type: T.IMAGE, children: string }, + "progress_bar_icon/empty_progress_bar_icon": { type: T.IMAGE, children: string }, + "progress_bar_icon/progress_bar_nub": { type: T.IMAGE, children: string }, + "empty_progress_bar_icon": { type: T.IMAGE, children: string }, + "full_progress_bar_icon": { type: T.IMAGE, children: string }, + "progress_bar_nub": { type: T.IMAGE, children: string }, } 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": { type: T.IMAGE, children: string }, + "screenshot_frame": { type: T.IMAGE, children: string }, + "trash_default": { type: T.IMAGE, children: string }, + "trash_hover": { type: T.IMAGE, children: string }, + "trash_pressed": { type: T.IMAGE, children: string }, + "photo_trash_button_left": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "photo_trash_button_left/default": { type: T.IMAGE, children: string }, + "photo_trash_button_left/hover": { type: T.IMAGE, children: string }, + "photo_trash_button_left/pressed": { type: T.IMAGE, children: string }, + "photo_trash_button_right": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "photo_trash_button_right/default": { type: T.IMAGE, children: string }, + "photo_trash_button_right/hover": { type: T.IMAGE, children: string }, + "photo_trash_button_right/pressed": { type: T.IMAGE, children: string }, + "photo_number": { type: T.LABEL, children: string }, + "photo_number_left": { type: T.LABEL, children: string }, + "photo_number_right": { type: T.LABEL, children: string }, + "photo_corner_bl": { type: T.IMAGE, children: string }, + "photo_corner_br": { type: T.IMAGE, children: string }, + "photo_corner_tr": { type: T.IMAGE, children: string }, + "photo_corner_tl": { type: T.IMAGE, children: string }, + "page_photo": { type: T.PANEL, children: 'screenshot' | 'screenshot_frame' | 'photo_corner_bl' | 'photo_corner_br' | 'photo_corner_tl' | 'photo_corner_tr' }, + "page_photo/screenshot": { type: T.IMAGE, children: string }, + "page_photo/screenshot_frame": { type: T.IMAGE, children: string }, + "page_photo/photo_corner_bl": { type: T.IMAGE, children: string }, + "page_photo/photo_corner_br": { type: T.IMAGE, children: string }, + "page_photo/photo_corner_tl": { type: T.IMAGE, children: string }, + "page_photo/photo_corner_tr": { type: T.IMAGE, children: string }, + "pick_item": { type: T.PANEL, children: 'photo' | 'button' }, + "pick_item/photo": { type: T.PANEL, children: string }, + "pick_item/button": { type: T.BUTTON, children: string }, + "header": { type: T.LABEL, children: string }, + "screenshot_grid": { type: T.STACK_PANEL, children: string }, + "text_centering_panel": { type: T.PANEL, children: 'header' }, + "text_centering_panel/header": { type: T.LABEL, children: string }, + "pick_scrolling_content": { type: T.STACK_PANEL, children: 'header' | 'portfolio_grid' }, + "pick_scrolling_content/header": { type: T.PANEL, children: string }, + "pick_scrolling_content/portfolio_grid": { type: T.STACK_PANEL, children: string }, + "no_pick_photos_alert_label": { type: T.LABEL, children: string }, + "pick_panel": { type: T.IMAGE, children: 'scroll' | 'close_button' | 'no_pick_photos_alert_label' }, + "pick_panel/scroll": { type: T.PANEL, children: string }, + "pick_panel/close_button": { type: T.BUTTON, children: string }, + "pick_panel/no_pick_photos_alert_label": { type: T.LABEL, children: string }, + "text_edit_box_default_indent": { type: T.PANEL, children: string }, + "text_edit_box_hover_indent": { type: T.PANEL, children: 'focus_border_white' }, + "text_edit_box_hover_indent/focus_border_white": { type: T.IMAGE, children: string }, + "text_edit_control": { type: T.EDIT_BOX, children: 'clipper_panel' | 'locked' | 'default' | 'hover' | 'pressed' }, + "text_edit_control/clipper_panel": { type: T.PANEL, children: 'display_text' | 'place_holder_control' }, + "text_edit_control/clipper_panel/display_text": { type: T.LABEL, children: string }, + "text_edit_control/clipper_panel/place_holder_control": { type: T.UNKNOWN, children: string }, + "text_edit_control/locked": { type: T.PANEL, children: 'edit_box_indent' }, + "text_edit_control/locked/edit_box_indent": { type: T.IMAGE, children: string }, + "text_edit_control/default": { type: T.PANEL, children: string }, + "text_edit_control/hover": { type: T.PANEL, children: string }, + "text_edit_control/pressed": { type: T.PANEL, children: string }, + "photo_item": { type: T.PANEL, children: 'screenshot' | 'screenshot_frame' | 'text_edit_control' | 'photo_corner_bl' | 'photo_corner_br' | 'photo_corner_tl' | 'photo_corner_tr' }, + "photo_item/screenshot": { type: T.IMAGE, children: string }, + "photo_item/screenshot_frame": { type: T.IMAGE, children: string }, + "photo_item/text_edit_control": { type: T.EDIT_BOX, children: string }, + "photo_item/photo_corner_bl": { type: T.IMAGE, children: string }, + "photo_item/photo_corner_br": { type: T.IMAGE, children: string }, + "photo_item/photo_corner_tl": { type: T.IMAGE, children: string }, + "photo_item/photo_corner_tr": { type: T.IMAGE, children: string }, + "photo_grid_item": { type: T.PANEL, children: 'photo_item' }, + "photo_grid_item/photo_item": { type: T.PANEL, children: string }, + "photo_list_grid": { type: T.GRID, children: string }, + "prev_button_default": { type: T.IMAGE, children: string }, + "prev_button_hover": { type: T.IMAGE, children: string }, + "prev_button_pressed": { type: T.IMAGE, children: string }, + "photo_page_prev_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "photo_page_prev_button/default": { type: T.IMAGE, children: string }, + "photo_page_prev_button/hover": { type: T.IMAGE, children: string }, + "photo_page_prev_button/pressed": { type: T.IMAGE, children: string }, + "next_button_default": { type: T.IMAGE, children: string }, + "next_button_hover": { type: T.IMAGE, children: string }, + "next_button_pressed": { type: T.IMAGE, children: string }, + "photo_page_next_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "photo_page_next_button/default": { type: T.IMAGE, children: string }, + "photo_page_next_button/hover": { type: T.IMAGE, children: string }, + "photo_page_next_button/pressed": { type: T.IMAGE, children: string }, + "convert_button_default": { type: T.IMAGE, children: string }, + "convert_button_hover": { type: T.IMAGE, children: string }, + "convert_button_pressed": { type: T.IMAGE, children: string }, + "photo_convert_left_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "photo_convert_left_button/default": { type: T.IMAGE, children: string }, + "photo_convert_left_button/hover": { type: T.IMAGE, children: string }, + "photo_convert_left_button/pressed": { type: T.IMAGE, children: string }, + "photo_convert_right_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "photo_convert_right_button/default": { type: T.IMAGE, children: string }, + "photo_convert_right_button/hover": { type: T.IMAGE, children: string }, + "photo_convert_right_button/pressed": { type: T.IMAGE, children: string }, + "bottom_button_panel": { type: T.PANEL, children: 'export_button' | 'im_content_button' | 'add_photo_button' }, + "bottom_button_panel/export_button": { type: T.BUTTON, children: string }, + "bottom_button_panel/im_content_button": { type: T.BUTTON, children: string }, + "bottom_button_panel/add_photo_button": { type: T.BUTTON, children: string }, + "im_content_button": { type: T.BUTTON, children: string }, + "export_button": { type: T.BUTTON, children: string }, + "add_photo_button": { type: T.BUTTON, children: string }, + "book_binding": { type: T.IMAGE, children: string }, + "book_spine": { type: T.IMAGE, children: string }, + "book_background": { type: T.IMAGE, children: 'book_binding' | 'top_spine' | 'bottom_spine' }, + "book_background/book_binding": { type: T.IMAGE, children: string }, + "book_background/top_spine": { type: T.IMAGE, children: string }, + "book_background/bottom_spine": { type: T.IMAGE, children: string }, + "header_panel": { type: T.PANEL, children: 'header_background' }, + "header_panel/header_background": { type: T.IMAGE, children: string }, + "close_button_default": { type: T.IMAGE, children: string }, + "close_button_hover": { type: T.IMAGE, children: string }, + "close_button_pressed": { type: T.IMAGE, children: string }, + "close_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "close_button/default": { type: T.IMAGE, children: string }, + "close_button/hover": { type: T.IMAGE, children: string }, + "close_button/pressed": { type: T.IMAGE, children: string }, + "no_photos_alert_label": { type: T.LABEL, children: string }, + "book_and_buttons_panel": { type: T.PANEL, children: 'book_panel' | 'bottom_button_panel' }, + "book_and_buttons_panel/book_panel": { type: T.PANEL, children: 'book_background' | 'close_button' | 'photo_list_grid' | 'photo_number_left' | 'photo_number_right' | 'photo_trash_button_left' | 'photo_trash_button_right' | 'photo_page_prev_button' | 'photo_page_next_button' | 'photo_convert_left_button' | 'photo_convert_right_button' | 'no_photos_alert_label' }, + "book_and_buttons_panel/book_panel/book_background": { type: T.IMAGE, children: string }, + "book_and_buttons_panel/book_panel/close_button": { type: T.BUTTON, children: string }, + "book_and_buttons_panel/book_panel/photo_list_grid": { type: T.GRID, children: string }, + "book_and_buttons_panel/book_panel/photo_number_left": { type: T.LABEL, children: string }, + "book_and_buttons_panel/book_panel/photo_number_right": { type: T.LABEL, children: string }, + "book_and_buttons_panel/book_panel/photo_trash_button_left": { type: T.BUTTON, children: string }, + "book_and_buttons_panel/book_panel/photo_trash_button_right": { type: T.BUTTON, children: string }, + "book_and_buttons_panel/book_panel/photo_page_prev_button": { type: T.BUTTON, children: string }, + "book_and_buttons_panel/book_panel/photo_page_next_button": { type: T.BUTTON, children: string }, + "book_and_buttons_panel/book_panel/photo_convert_left_button": { type: T.BUTTON, children: string }, + "book_and_buttons_panel/book_panel/photo_convert_right_button": { type: T.BUTTON, children: string }, + "book_and_buttons_panel/book_panel/no_photos_alert_label": { type: T.LABEL, children: string }, + "book_and_buttons_panel/bottom_button_panel": { type: T.PANEL, children: string }, + "root_panel": { type: T.PANEL, children: string }, + "portfolio_screen": { type: T.SCREEN, children: string }, + "portfolio_screen_content": { type: T.PANEL, children: 'root_panel' }, + "portfolio_screen_content/root_panel": { type: T.PANEL, children: 'book_and_buttons_panel' | 'pick_panel' }, + "portfolio_screen_content/root_panel/book_and_buttons_panel": { type: T.PANEL, children: string }, + "portfolio_screen_content/root_panel/pick_panel": { type: T.IMAGE, children: string }, } 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": { type: T.INPUT_PANEL, children: 'background' | 'scrolling_panel' | 'totalSelected' | 'totalSelectedSize' | 'left' | 'right' }, + "popup_dialog_base/background": { type: T.IMAGE, children: string }, + "popup_dialog_base/scrolling_panel": { type: T.PANEL, children: string }, + "popup_dialog_base/totalSelected": { type: T.LABEL, children: string }, + "popup_dialog_base/totalSelectedSize": { type: T.LABEL, children: string }, + "popup_dialog_base/left": { type: T.BUTTON, children: string }, + "popup_dialog_base/right": { type: T.BUTTON, children: string }, + "checkbox_visual": { type: T.PANEL, children: 'control' }, + "checkbox_visual/control": { type: T.LABEL, children: string }, + "checkbox_visuals_unchecked": { type: T.PANEL, children: string }, + "checkbox_visuals_checked": { type: T.PANEL, children: string }, + "checkbox_visuals_unchecked_locked": { type: T.PANEL, children: string }, + "checkbox_visuals_checked_locked": { type: T.PANEL, children: string }, + "checkbox_visuals_unchecked_hover": { type: T.PANEL, children: string }, + "checkbox_visuals_checked_hover": { type: T.PANEL, children: string }, + "checkbox_with_label_core": { type: T.TOGGLE, children: string }, + "checkbox_with_label": { type: T.PANEL, children: 'checkbox_with_label_core' }, + "checkbox_with_label/checkbox_with_label_core": { type: T.TOGGLE, children: string }, + "resource_pack_grid_item": { type: T.PANEL, children: string }, + "resource_pack_section": { type: T.STACK_PANEL, children: 'required_resource_pack_list_grid' | 'optional_resource_pack_list_grid' }, + "resource_pack_section/required_resource_pack_list_grid": { type: T.GRID, children: string }, + "resource_pack_section/optional_resource_pack_list_grid": { type: T.GRID, children: string }, + "simple_popup_dialog_base": { type: T.INPUT_PANEL, children: 'dialog_background_hollow_3' }, + "simple_popup_dialog_base/dialog_background_hollow_3": { type: T.IMAGE, children: 'control' }, + "simple_popup_dialog_base/dialog_background_hollow_3/control": { type: T.IMAGE, children: 'content_panel' }, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel": { type: T.STACK_PANEL, children: 'padding_0' | 'title' | 'padding_1' | 'description' | 'padding_2' | 'description2' | 'padding_3' | 'top_optional_button' | 'padding_4' | 'middle_button' | 'padding_5' | 'bottom_button' }, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_0": { type: T.PANEL, children: string }, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/title": { type: T.LABEL, children: string }, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_1": { type: T.PANEL, children: string }, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/description": { type: T.LABEL, children: string }, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_2": { type: T.PANEL, children: string }, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/description2": { type: T.LABEL, children: string }, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_3": { type: T.PANEL, children: string }, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/top_optional_button": { type: T.BUTTON, children: string }, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_4": { type: T.PANEL, children: string }, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/middle_button": { type: T.BUTTON, children: string }, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_5": { type: T.PANEL, children: string }, + "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/bottom_button": { type: T.BUTTON, children: string }, + "resource_pack_download_popup_base": { type: T.INPUT_PANEL, children: string }, + "resource_pack_download_server_required": { type: T.INPUT_PANEL, children: string }, + "resource_pack_download_optional_and_required": { type: T.INPUT_PANEL, children: string }, + "resource_pack_download_optional": { type: T.INPUT_PANEL, children: string }, + "resource_pack_download_required": { type: T.INPUT_PANEL, children: string }, + "normal_stroke_button": { type: T.IMAGE, children: string }, + "progress_screen_text": { type: T.LABEL, children: string }, + "progress_title_text": { type: T.LABEL, children: string }, + "progress_bar_text": { type: T.LABEL, children: string }, + "code_text": { type: T.LABEL, children: string }, + "code_number": { type: T.LABEL, children: string }, + "progress_loading_bars": { type: T.IMAGE, children: string }, + "progress_loading_spinner": { type: T.IMAGE, children: string }, + "fancy_progress_loading_bars": { type: T.PANEL, children: 'full_progress_bar_icon' | 'empty_progress_bar_icon' | 'progress_bar_nub' }, + "fancy_progress_loading_bars/full_progress_bar_icon": { type: T.IMAGE, children: string }, + "fancy_progress_loading_bars/empty_progress_bar_icon": { type: T.IMAGE, children: string }, + "fancy_progress_loading_bars/progress_bar_nub": { type: T.IMAGE, children: string }, + "progress_bar": { type: T.CUSTOM, children: string }, + "progress_bar_nub": { type: T.IMAGE, children: string }, + "thick_progress_bar_icon_base": { type: T.IMAGE, children: string }, + "thick_progress_bar_icon_empty": { type: T.IMAGE, children: string }, + "thick_progress_bar": { type: T.PANEL, children: 'full_progress_bar_icon' | 'empty_progress_bar_icon' }, + "thick_progress_bar/full_progress_bar_icon": { type: T.IMAGE, children: string }, + "thick_progress_bar/empty_progress_bar_icon": { type: T.IMAGE, children: string }, + "edu_cloud_upload_progress_bar": { type: T.PANEL, children: 'waveform_loading_bar' | 'determinate_loading_bar' }, + "edu_cloud_upload_progress_bar/waveform_loading_bar": { type: T.IMAGE, children: string }, + "edu_cloud_upload_progress_bar/determinate_loading_bar": { type: T.PANEL, children: string }, + "cancel_button": { type: T.BUTTON, children: string }, + "retry_button": { type: T.BUTTON, children: string }, + "abort_button": { type: T.BUTTON, children: string }, + "ok_button": { type: T.BUTTON, children: string }, + "title_panel": { type: T.PANEL, children: 'progress_title_text' | 'progress_bar_text' | 'progress_bar' }, + "title_panel/progress_title_text": { type: T.LABEL, children: string }, + "title_panel/progress_bar_text": { type: T.LABEL, children: string }, + "title_panel/progress_bar": { type: T.CUSTOM, children: string }, + "button_panel": { type: T.PANEL, children: 'cancel_button' }, + "button_panel/cancel_button": { type: T.BUTTON, children: string }, + "modal_button_panel": { type: T.PANEL, children: 'cancel_button' }, + "modal_button_panel/cancel_button": { type: T.BUTTON, children: string }, + "modal_button_panel_with_retry": { type: T.PANEL, children: 'abort_button' | 'cancel_button' | 'retry_button' }, + "modal_button_panel_with_retry/abort_button": { type: T.BUTTON, children: string }, + "modal_button_panel_with_retry/cancel_button": { type: T.BUTTON, children: string }, + "modal_button_panel_with_retry/retry_button": { type: T.BUTTON, children: string }, + "modal_ok_button_panel": { type: T.PANEL, children: 'ok_button' }, + "modal_ok_button_panel/ok_button": { type: T.BUTTON, children: string }, + "gamepad_helpers": { type: T.PANEL, children: 'gamepad_helper_a' }, + "gamepad_helpers/gamepad_helper_a": { type: T.STACK_PANEL, children: string }, + "world_image": { type: T.IMAGE, children: string }, + "cloud_image": { type: T.IMAGE, children: string }, + "server_image": { type: T.IMAGE, children: string }, + "edu_cloud_upload_image": { type: T.STACK_PANEL, children: 'world_image_wrapper' | 'arrow_image_wrapper' | 'cloud_image_wrapper' }, + "edu_cloud_upload_image/world_image_wrapper": { type: T.PANEL, children: 'fetch_world_image' }, + "edu_cloud_upload_image/world_image_wrapper/fetch_world_image": { type: T.IMAGE, children: string }, + "edu_cloud_upload_image/arrow_image_wrapper": { type: T.PANEL, children: 'arrow_image' }, + "edu_cloud_upload_image/arrow_image_wrapper/arrow_image": { type: T.IMAGE, children: string }, + "edu_cloud_upload_image/cloud_image_wrapper": { type: T.PANEL, children: 'upload_cloud_image' }, + "edu_cloud_upload_image/cloud_image_wrapper/upload_cloud_image": { type: T.IMAGE, children: string }, + "edu_cloud_fetch_image": { type: T.STACK_PANEL, children: 'cloud_image_wrapper' | 'spyglass_image_wrapper' | 'world_image_wrapper' }, + "edu_cloud_fetch_image/cloud_image_wrapper": { type: T.PANEL, children: 'fetch_cloud_image' }, + "edu_cloud_fetch_image/cloud_image_wrapper/fetch_cloud_image": { type: T.IMAGE, children: string }, + "edu_cloud_fetch_image/spyglass_image_wrapper": { type: T.PANEL, children: 'spyglass_image' }, + "edu_cloud_fetch_image/spyglass_image_wrapper/spyglass_image": { type: T.IMAGE, children: string }, + "edu_cloud_fetch_image/world_image_wrapper": { type: T.PANEL, children: 'fetch_world_image' }, + "edu_cloud_fetch_image/world_image_wrapper/fetch_world_image": { type: T.IMAGE, children: string }, + "edu_cloud_download_image": { type: T.STACK_PANEL, children: 'cloud_image_wrapper' | 'arrow_image_wrapper' | 'world_image_wrapper' }, + "edu_cloud_download_image/cloud_image_wrapper": { type: T.PANEL, children: 'download_cloud_image' }, + "edu_cloud_download_image/cloud_image_wrapper/download_cloud_image": { type: T.IMAGE, children: string }, + "edu_cloud_download_image/arrow_image_wrapper": { type: T.PANEL, children: 'arrow_image' }, + "edu_cloud_download_image/arrow_image_wrapper/arrow_image": { type: T.IMAGE, children: string }, + "edu_cloud_download_image/world_image_wrapper": { type: T.PANEL, children: 'download_world_image' }, + "edu_cloud_download_image/world_image_wrapper/download_world_image": { type: T.IMAGE, children: string }, + "edu_server_fetch_image": { type: T.STACK_PANEL, children: 'server_image_wrapper_left' | 'spyglass_image_wrapper' | 'server_image_wrapper_right' }, + "edu_server_fetch_image/server_image_wrapper_left": { type: T.PANEL, children: 'server_image' }, + "edu_server_fetch_image/server_image_wrapper_left/server_image": { type: T.IMAGE, children: string }, + "edu_server_fetch_image/spyglass_image_wrapper": { type: T.PANEL, children: 'spyglass_image' }, + "edu_server_fetch_image/spyglass_image_wrapper/spyglass_image": { type: T.IMAGE, children: string }, + "edu_server_fetch_image/server_image_wrapper_right": { type: T.PANEL, children: 'server_image' }, + "edu_server_fetch_image/server_image_wrapper_right/server_image": { type: T.IMAGE, children: string }, + "modal_progress_panel_no_cancel": { type: T.PANEL, children: 'common_panel' | 'content' }, + "modal_progress_panel_no_cancel/common_panel": { type: T.PANEL, children: string }, + "modal_progress_panel_no_cancel/content": { type: T.PANEL, children: 'title_panel' | 'progress_loading_bars' }, + "modal_progress_panel_no_cancel/content/title_panel": { type: T.PANEL, children: string }, + "modal_progress_panel_no_cancel/content/progress_loading_bars": { type: T.IMAGE, children: string }, + "modal_progress_panel_with_cancel": { type: T.PANEL, children: 'common_panel' | 'content' | 'modal_button_panel' }, + "modal_progress_panel_with_cancel/common_panel": { type: T.PANEL, children: string }, + "modal_progress_panel_with_cancel/content": { type: T.PANEL, children: 'title_panel' | 'progress_loading_bars' }, + "modal_progress_panel_with_cancel/content/title_panel": { type: T.PANEL, children: string }, + "modal_progress_panel_with_cancel/content/progress_loading_bars": { type: T.IMAGE, children: string }, + "modal_progress_panel_with_cancel/modal_button_panel": { type: T.PANEL, children: string }, + "progress_panel": { type: T.PANEL, children: 'progress_loading_bars' | 'title_panel' | 'button_panel' }, + "progress_panel/progress_loading_bars": { type: T.IMAGE, children: string }, + "progress_panel/title_panel": { type: T.PANEL, children: string }, + "progress_panel/button_panel": { type: T.PANEL, children: string }, + "modal_progress_screen": { type: T.SCREEN, children: string }, + "delete_progress_screen": { type: T.SCREEN, children: string }, + "realms_loading_background": { type: T.PANEL, children: 'solid_blue' }, + "realms_loading_background/solid_blue": { type: T.IMAGE, children: 'gradient' }, + "realms_loading_background/solid_blue/gradient": { type: T.IMAGE, children: string }, + "realms_stories_loading_progress_screen": { type: T.SCREEN, children: string }, + "world_loading_progress_screen": { type: T.SCREEN, children: string }, + "world_loading_screen_background": { type: T.IMAGE, children: string }, + "overworld_loading_background": { type: T.IMAGE, children: 'background_gradient' }, + "overworld_loading_background/background_gradient": { type: T.CUSTOM, children: string }, + "overworld_loading_progress_screen": { type: T.SCREEN, children: string }, + "nether_loading_background": { type: T.IMAGE, children: 'background_gradient' }, + "nether_loading_background/background_gradient": { type: T.CUSTOM, children: string }, + "nether_loading_progress_screen": { type: T.SCREEN, children: string }, + "theend_loading_background": { type: T.IMAGE, children: 'background_gradient' }, + "theend_loading_background/background_gradient": { type: T.CUSTOM, children: string }, + "theend_loading_progress_screen": { type: T.SCREEN, children: string }, + "world_saving_progress_screen": { type: T.SCREEN, children: string }, + "fetching_edu_cloud_worlds": { type: T.SCREEN, children: string }, + "edu_cloud_download_progress_screen": { type: T.SCREEN, children: string }, + "fetching_edu_servers": { type: T.SCREEN, children: string }, + "world_convert_modal_progress_screen": { type: T.SCREEN, children: string }, + "progress_screen": { type: T.SCREEN, children: string }, + "popup_dialog_factory": { type: T.FACTORY, children: string }, + "progress_screen_content": { type: T.PANEL, children: 'progress_content_panel' | 'popup_dialog_factory' }, + "progress_screen_content/progress_content_panel": { type: T.PANEL, children: string }, + "progress_screen_content/popup_dialog_factory": { type: T.FACTORY, children: string }, + "progress_content_panel": { type: T.PANEL, children: 'progress_panel' | 'gamepad_helpers' }, + "progress_content_panel/progress_panel": { type: T.PANEL, children: string }, + "progress_content_panel/gamepad_helpers": { type: T.PANEL, children: string }, + "modal_screen_content": { type: T.PANEL, children: 'modal_progress_panel' }, + "modal_screen_content/modal_progress_panel": { type: T.PANEL, children: string }, + "world_modal_progress_panel": { type: T.PANEL, children: 'common_panel' | 'base_content' | 'inside_content' }, + "world_modal_progress_panel/common_panel": { type: T.PANEL, children: string }, + "world_modal_progress_panel/base_content": { type: T.PANEL, children: 'progress_title_text' | 'progress_bar_text' }, + "world_modal_progress_panel/base_content/progress_title_text": { type: T.LABEL, children: string }, + "world_modal_progress_panel/base_content/progress_bar_text": { type: T.LABEL, children: string }, + "world_modal_progress_panel/inside_content": { type: T.STACK_PANEL, children: 'loading_bar_panel' | 'vertical_padding' | 'modal_button_panel' | 'vertical_padding_2' }, + "world_modal_progress_panel/inside_content/loading_bar_panel": { type: T.PANEL, children: 'fancy_progress_loading_bars' | 'progress_loading_bars' }, + "world_modal_progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars": { type: T.PANEL, children: string }, + "world_modal_progress_panel/inside_content/loading_bar_panel/progress_loading_bars": { type: T.IMAGE, children: string }, + "world_modal_progress_panel/inside_content/vertical_padding": { type: T.PANEL, children: string }, + "world_modal_progress_panel/inside_content/modal_button_panel": { type: T.UNKNOWN, children: string }, + "world_modal_progress_panel/inside_content/vertical_padding_2": { type: T.PANEL, children: string }, + "cloud_upload_panel": { type: T.PANEL, children: 'common_panel' | 'base_content' }, + "cloud_upload_panel/common_panel": { type: T.PANEL, children: string }, + "cloud_upload_panel/base_content": { type: T.PANEL, children: 'progress_title_text' | 'progress_text' | 'edu_cloud_upload_image' | 'loading_bar_panel' }, + "cloud_upload_panel/base_content/progress_title_text": { type: T.LABEL, children: string }, + "cloud_upload_panel/base_content/progress_text": { type: T.LABEL, children: string }, + "cloud_upload_panel/base_content/edu_cloud_upload_image": { type: T.STACK_PANEL, children: string }, + "cloud_upload_panel/base_content/loading_bar_panel": { type: T.PANEL, children: 'progress_loading_bars' }, + "cloud_upload_panel/base_content/loading_bar_panel/progress_loading_bars": { type: T.PANEL, children: string }, + "cloud_error_panel": { type: T.PANEL, children: 'common_panel' | 'content_wrapper' }, + "cloud_error_panel/common_panel": { type: T.PANEL, children: string }, + "cloud_error_panel/content_wrapper": { type: T.PANEL, children: 'title_wrapper' | 'error_text_tts_wrapper' | 'button_content' | 'error_button_content' }, + "cloud_error_panel/content_wrapper/title_wrapper": { type: T.PANEL, children: 'progress_title_text' }, + "cloud_error_panel/content_wrapper/title_wrapper/progress_title_text": { type: T.LABEL, children: string }, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper": { type: T.PANEL, children: 'tts_border' | 'edu_cloud_error_text_wrapper' }, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/tts_border": { type: T.BUTTON, children: string }, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper": { type: T.STACK_PANEL, children: 'edu_cloud_error_text' | 'vertical_padding' | 'error_code' | 'vertical_padding_2' | 'cloud_support_link' }, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/edu_cloud_error_text": { type: T.LABEL, children: string }, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/vertical_padding": { type: T.PANEL, children: string }, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code": { type: T.STACK_PANEL, children: 'code_text' | 'code_number' }, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code/code_text": { type: T.LABEL, children: string }, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code/code_number": { type: T.LABEL, children: string }, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/vertical_padding_2": { type: T.PANEL, children: string }, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link": { type: T.STACK_PANEL, children: 'cloud_support_hypertext' | 'padded_icon' }, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/cloud_support_hypertext": { type: T.BUTTON, children: string }, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/padded_icon": { type: T.PANEL, children: 'icon' }, + "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/padded_icon/icon": { type: T.IMAGE, children: string }, + "cloud_error_panel/content_wrapper/button_content": { type: T.STACK_PANEL, children: 'modal_button_panel' }, + "cloud_error_panel/content_wrapper/button_content/modal_button_panel": { type: T.UNKNOWN, children: string }, + "cloud_error_panel/content_wrapper/error_button_content": { type: T.STACK_PANEL, children: 'download_ok_button' | 'download_cancel_button' }, + "cloud_error_panel/content_wrapper/error_button_content/download_ok_button": { type: T.BUTTON, children: string }, + "cloud_error_panel/content_wrapper/error_button_content/download_cancel_button": { type: T.BUTTON, children: string }, + "cloud_fetch_panel": { type: T.PANEL, children: 'common_panel' | 'base_content' }, + "cloud_fetch_panel/common_panel": { type: T.PANEL, children: string }, + "cloud_fetch_panel/base_content": { type: T.PANEL, children: 'progress_title_text' | 'progress_text' | 'edu_cloud_fetch_image' | 'loading_bar_panel' }, + "cloud_fetch_panel/base_content/progress_title_text": { type: T.LABEL, children: string }, + "cloud_fetch_panel/base_content/progress_text": { type: T.LABEL, children: string }, + "cloud_fetch_panel/base_content/edu_cloud_fetch_image": { type: T.STACK_PANEL, children: string }, + "cloud_fetch_panel/base_content/loading_bar_panel": { type: T.PANEL, children: 'progress_loading_bars' }, + "cloud_fetch_panel/base_content/loading_bar_panel/progress_loading_bars": { type: T.IMAGE, children: string }, + "server_fetch_panel": { type: T.PANEL, children: 'common_panel' | 'base_content' }, + "server_fetch_panel/common_panel": { type: T.PANEL, children: string }, + "server_fetch_panel/base_content": { type: T.PANEL, children: 'progress_title_text' | 'progress_text' | 'edu_server_fetch_image' | 'loading_bar_panel' }, + "server_fetch_panel/base_content/progress_title_text": { type: T.LABEL, children: string }, + "server_fetch_panel/base_content/progress_text": { type: T.LABEL, children: string }, + "server_fetch_panel/base_content/edu_server_fetch_image": { type: T.STACK_PANEL, children: string }, + "server_fetch_panel/base_content/loading_bar_panel": { type: T.PANEL, children: 'progress_loading_bars' }, + "server_fetch_panel/base_content/loading_bar_panel/progress_loading_bars": { type: T.IMAGE, children: string }, + "cloud_download_panel": { type: T.PANEL, children: 'common_panel' | 'base_content' | 'loading_bar_panel' }, + "cloud_download_panel/common_panel": { type: T.PANEL, children: string }, + "cloud_download_panel/base_content": { type: T.PANEL, children: 'progress_title_text' | 'progress_bar_text' | 'edu_cloud_download_image' }, + "cloud_download_panel/base_content/progress_title_text": { type: T.LABEL, children: string }, + "cloud_download_panel/base_content/progress_bar_text": { type: T.LABEL, children: string }, + "cloud_download_panel/base_content/edu_cloud_download_image": { type: T.STACK_PANEL, children: string }, + "cloud_download_panel/loading_bar_panel": { type: T.PANEL, children: 'progress_loading_bars' }, + "cloud_download_panel/loading_bar_panel/progress_loading_bars": { type: T.IMAGE, children: string }, + "world_convert_modal_progress_screen_content": { type: T.PANEL, children: 'mobile_data_icon' | 'title_panel_content' | 'world_modal_progress_panel' | 'popup_dialog_factory' }, + "world_convert_modal_progress_screen_content/mobile_data_icon": { type: T.PANEL, children: string }, + "world_convert_modal_progress_screen_content/title_panel_content": { type: T.PANEL, children: string }, + "world_convert_modal_progress_screen_content/world_modal_progress_panel": { type: T.PANEL, children: string }, + "world_convert_modal_progress_screen_content/popup_dialog_factory": { type: T.FACTORY, children: string }, + "realms_loading_world_modal_progress_screen_content": { type: T.PANEL, children: 'mobile_data_icon' | 'realms_title_image' | 'world_modal_progress_panel' | 'popup_dialog_factory' | 'server_region_connected' }, + "realms_loading_world_modal_progress_screen_content/mobile_data_icon": { type: T.PANEL, children: string }, + "realms_loading_world_modal_progress_screen_content/realms_title_image": { type: T.IMAGE, children: string }, + "realms_loading_world_modal_progress_screen_content/world_modal_progress_panel": { type: T.PANEL, children: string }, + "realms_loading_world_modal_progress_screen_content/popup_dialog_factory": { type: T.FACTORY, children: string }, + "realms_loading_world_modal_progress_screen_content/server_region_connected": { type: T.STACK_PANEL, children: 'server_region_label' | 'server_region_connected_text' | 'padding' | 'server_region_ping_icon' }, + "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_label": { type: T.LABEL, children: string }, + "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_connected_text": { type: T.LABEL, children: string }, + "realms_loading_world_modal_progress_screen_content/server_region_connected/padding": { type: T.PANEL, children: string }, + "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_ping_icon": { type: T.IMAGE, children: string }, + "world_save_modal_progress_screen_content": { type: T.PANEL, children: 'title_panel_content' | 'world_modal_progress_panel' | 'save_icon' | 'popup_dialog_factory' }, + "world_save_modal_progress_screen_content/title_panel_content": { type: T.PANEL, children: string }, + "world_save_modal_progress_screen_content/world_modal_progress_panel": { type: T.PANEL, children: string }, + "world_save_modal_progress_screen_content/save_icon": { type: T.IMAGE, children: string }, + "world_save_modal_progress_screen_content/popup_dialog_factory": { type: T.FACTORY, children: string }, + "cloud_upload_screen_content": { type: T.PANEL, children: 'title_panel_content' | 'cloud_upload_panel' | 'cloud_upload_error_panel' | 'popup_dialog_factory' | 'cloud_conflict_resolution_popup_factory' }, + "cloud_upload_screen_content/title_panel_content": { type: T.PANEL, children: string }, + "cloud_upload_screen_content/cloud_upload_panel": { type: T.PANEL, children: string }, + "cloud_upload_screen_content/cloud_upload_error_panel": { type: T.PANEL, children: string }, + "cloud_upload_screen_content/popup_dialog_factory": { type: T.FACTORY, children: string }, + "cloud_upload_screen_content/cloud_conflict_resolution_popup_factory": { type: T.FACTORY, children: string }, + "edu_cloud_fetch_screen_content": { type: T.PANEL, children: 'cloud_fetch_panel' | 'popup_dialog_factory' }, + "edu_cloud_fetch_screen_content/cloud_fetch_panel": { type: T.PANEL, children: string }, + "edu_cloud_fetch_screen_content/popup_dialog_factory": { type: T.FACTORY, children: string }, + "edu_server_fetch_screen_content": { type: T.PANEL, children: 'server_fetch_panel' | 'popup_dialog_factory' }, + "edu_server_fetch_screen_content/server_fetch_panel": { type: T.PANEL, children: string }, + "edu_server_fetch_screen_content/popup_dialog_factory": { type: T.FACTORY, children: string }, + "cloud_download_screen_content": { type: T.PANEL, children: 'background' | 'cloud_download_panel' | 'cloud_download_error_panel' | 'popup_dialog_factory' }, + "cloud_download_screen_content/background": { type: T.IMAGE, children: string }, + "cloud_download_screen_content/cloud_download_panel": { type: T.PANEL, children: string }, + "cloud_download_screen_content/cloud_download_error_panel": { type: T.PANEL, children: string }, + "cloud_download_screen_content/popup_dialog_factory": { type: T.FACTORY, children: string }, + "auto_save": { type: T.IMAGE, children: string }, + "mobile_data_ios_icon": { type: T.IMAGE, children: string }, + "mobile_data_android_icon": { type: T.IMAGE, children: string }, + "mobile_data_icon_text": { type: T.LABEL, children: string }, + "mobile_data_icon": { type: T.PANEL, children: 'icon_android' | 'icon_ios' | 'text' }, + "mobile_data_icon/icon_android": { type: T.IMAGE, children: string }, + "mobile_data_icon/icon_ios": { type: T.IMAGE, children: string }, + "mobile_data_icon/text": { type: T.LABEL, children: string }, } 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": { type: T.PANEL, children: string }, + "padding_vertical": { type: T.PANEL, children: string }, + "rating_prompt_yes_label": { type: T.PANEL, children: 'button_label' }, + "rating_prompt_yes_label/button_label": { type: T.LABEL, children: string }, + "rating_prompt_no_label": { type: T.PANEL, children: 'button_label' }, + "rating_prompt_no_label/button_label": { type: T.LABEL, children: string }, + "rating_prompt_yes_button": { type: T.BUTTON, children: string }, + "rating_prompt_no_button": { type: T.BUTTON, children: string }, + "dialog_image": { type: T.IMAGE, children: string }, + "dialog_image_with_border": { type: T.IMAGE, children: 'dialog_image' }, + "dialog_image_with_border/dialog_image": { type: T.IMAGE, children: string }, + "button_panel": { type: T.STACK_PANEL, children: 'padding_3' | 'yes_button' | 'no_button' }, + "button_panel/padding_3": { type: T.PANEL, children: string }, + "button_panel/yes_button": { type: T.BUTTON, children: string }, + "button_panel/no_button": { type: T.BUTTON, children: string }, + "image_panel": { type: T.STACK_PANEL, children: 'padding_2' | 'dialog_image_with_border' }, + "image_panel/padding_2": { type: T.PANEL, children: string }, + "image_panel/dialog_image_with_border": { type: T.IMAGE, children: string }, + "main_panel": { type: T.STACK_PANEL, children: 'padding_0' | 'image_panel' | 'padding_1' | 'button_panel' }, + "main_panel/padding_0": { type: T.PANEL, children: string }, + "main_panel/image_panel": { type: T.STACK_PANEL, children: string }, + "main_panel/padding_1": { type: T.PANEL, children: string }, + "main_panel/button_panel": { type: T.STACK_PANEL, children: string }, + "rating_prompt_screen": { type: T.SCREEN, children: string }, + "rating_prompt_screen_content": { type: T.PANEL, children: string }, } 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": { type: T.IMAGE, children: string }, + "dark_banner": { type: T.IMAGE, children: string }, + "dark_banner_hover": { type: T.IMAGE, children: string }, + "legacy_banner": { type: T.IMAGE, children: string }, + "main_banner": { type: T.IMAGE, children: string }, + "hollow_banner": { type: T.IMAGE, children: string }, + "popup_dialog_bg": { type: T.IMAGE, children: string }, + "popup_dialog__play_on_realm": { type: T.INPUT_PANEL, children: 'play_on_realm_popup_background' | 'gamepad_helpers' | 'play_on_realm_popup_content' }, + "popup_dialog__play_on_realm/play_on_realm_popup_background": { type: T.IMAGE, children: string }, + "popup_dialog__play_on_realm/gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "popup_dialog__play_on_realm/play_on_realm_popup_content": { type: T.PANEL, children: string }, + "play_on_realm_popup_background": { type: T.IMAGE, children: string }, + "play_on_realm_popup_content": { type: T.PANEL, children: 'popup_dialog_bg' | 'play_on_realm_popup_dialog_header' | 'play_on_realm_popup_dialog_upper_body' | 'play_on_realm_popup_dialog_lower_body' }, + "play_on_realm_popup_content/popup_dialog_bg": { type: T.IMAGE, children: string }, + "play_on_realm_popup_content/play_on_realm_popup_dialog_header": { type: T.PANEL, children: string }, + "play_on_realm_popup_content/play_on_realm_popup_dialog_upper_body": { type: T.PANEL, children: string }, + "play_on_realm_popup_content/play_on_realm_popup_dialog_lower_body": { type: T.PANEL, children: string }, + "play_on_realm_popup_dialog_header": { type: T.PANEL, children: 'play_on_realm_popup_dialog_header_text' | 'close_button' }, + "play_on_realm_popup_dialog_header/play_on_realm_popup_dialog_header_text": { type: T.LABEL, children: string }, + "play_on_realm_popup_dialog_header/close_button": { type: T.BUTTON, children: string }, + "play_on_realm_popup_dialog_header_text": { type: T.LABEL, children: string }, + "play_on_realm_popup_dialog_upper_body": { type: T.PANEL, children: 'play_on_realm_banner' | 'play_on_realm_panel' | 'background_panel' }, + "play_on_realm_popup_dialog_upper_body/play_on_realm_banner": { type: T.IMAGE, children: string }, + "play_on_realm_popup_dialog_upper_body/play_on_realm_panel": { type: T.PANEL, children: string }, + "play_on_realm_popup_dialog_upper_body/background_panel": { type: T.PANEL, children: 'black_background' }, + "play_on_realm_popup_dialog_upper_body/background_panel/black_background": { type: T.IMAGE, children: string }, + "play_on_realm_panel": { type: T.PANEL, children: 'play_on_realm_content_panel' }, + "play_on_realm_panel/play_on_realm_content_panel": { type: T.STACK_PANEL, children: 'play_image_panel' | 'play_text_panel' }, + "play_on_realm_panel/play_on_realm_content_panel/play_image_panel": { type: T.STACK_PANEL, children: 'spacing_gap_image' | 'realms_image' }, + "play_on_realm_panel/play_on_realm_content_panel/play_image_panel/spacing_gap_image": { type: T.PANEL, children: string }, + "play_on_realm_panel/play_on_realm_content_panel/play_image_panel/realms_image": { type: T.IMAGE, children: string }, + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel": { type: T.STACK_PANEL, children: 'spacing_gap_text_1' | 'play_on_realm_text_1' | 'spacing_gap_text_2' | 'play_on_realm_text_2' }, + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/spacing_gap_text_1": { type: T.PANEL, children: string }, + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/play_on_realm_text_1": { type: T.LABEL, children: string }, + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/spacing_gap_text_2": { type: T.PANEL, children: string }, + "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/play_on_realm_text_2": { type: T.LABEL, children: string }, + "play_on_realm_popup_dialog_lower_body": { type: T.PANEL, children: 'button_panel' }, + "play_on_realm_popup_dialog_lower_body/button_panel": { type: T.STACK_PANEL, children: 'play_with_friends_button' | 'spacing_gap1' | 'play_solo_button' | 'spacing_gap2' | 'go_back_button' }, + "play_on_realm_popup_dialog_lower_body/button_panel/play_with_friends_button": { type: T.BUTTON, children: string }, + "play_on_realm_popup_dialog_lower_body/button_panel/spacing_gap1": { type: T.PANEL, children: string }, + "play_on_realm_popup_dialog_lower_body/button_panel/play_solo_button": { type: T.BUTTON, children: string }, + "play_on_realm_popup_dialog_lower_body/button_panel/spacing_gap2": { type: T.PANEL, children: string }, + "play_on_realm_popup_dialog_lower_body/button_panel/go_back_button": { type: T.BUTTON, children: string }, } 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": { type: T.LABEL, children: string }, + "label": { type: T.LABEL, children: string }, + "enter_name_panel": { type: T.PANEL, children: 'name_label_0' | 'name_edit' }, + "enter_name_panel/name_label_0": { type: T.LABEL, children: string }, + "enter_name_panel/name_edit": { type: T.EDIT_BOX, children: string }, + "selected_option_checkbox": { type: T.IMAGE, children: string }, + "selected_option_checkbox_empty": { type: T.IMAGE, children: string }, + "selected_option_checkbox_filled": { type: T.IMAGE, children: string }, + "checkbox_panel": { type: T.PANEL, children: 'selected_option_checkbox_empty' | 'selected_option_checkbox_filled' | 'button_label' }, + "checkbox_panel/selected_option_checkbox_empty": { type: T.IMAGE, children: string }, + "checkbox_panel/selected_option_checkbox_filled": { type: T.IMAGE, children: string }, + "checkbox_panel/button_label": { type: T.LABEL, children: string }, + "realms_option_button": { type: T.BUTTON, children: string }, + "choose_duration_panel": { type: T.PANEL, children: 'name_label' | 'choose_duration_stack_panel' }, + "choose_duration_panel/name_label": { type: T.LABEL, children: string }, + "choose_duration_panel/choose_duration_stack_panel": { type: T.INPUT_PANEL, children: 'short' | 'long' }, + "choose_duration_panel/choose_duration_stack_panel/short": { type: T.BUTTON, children: string }, + "choose_duration_panel/choose_duration_stack_panel/long": { type: T.BUTTON, children: string }, + "choose_tier_panel": { type: T.PANEL, children: 'name_label' | 'choose_tier_stack_panel' }, + "choose_tier_panel/name_label": { type: T.LABEL, children: string }, + "choose_tier_panel/choose_tier_stack_panel": { type: T.INPUT_PANEL, children: 'player_count_2' }, + "choose_tier_panel/choose_tier_stack_panel/player_count_2": { type: T.BUTTON, children: string }, + "view_terms_button": { type: T.BUTTON, children: string }, + "privacy_policy_button": { type: T.BUTTON, children: string }, + "terms_and_conditions_panel": { type: T.PANEL, children: 'name_label' | 'terms_string_panel' }, + "terms_and_conditions_panel/name_label": { type: T.LABEL, children: string }, + "terms_and_conditions_panel/terms_string_panel": { type: T.PANEL, children: 'banner_fill' | 'buttons_stack_panel' }, + "terms_and_conditions_panel/terms_string_panel/banner_fill": { type: T.IMAGE, children: string }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": { type: T.STACK_PANEL, children: 'agree_panel' | 'view_terms_button' | 'privacy_policy_button' }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": { type: T.PANEL, children: 'checkbox_control' }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": { type: T.TOGGLE, children: string }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": { type: T.BUTTON, children: string }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": { type: T.BUTTON, children: string }, + "confirmation_panel": { type: T.PANEL, children: 'create_realms_button' }, + "confirmation_panel/create_realms_button": { type: T.BUTTON, children: string }, + "create_realms_stack_panel": { type: T.STACK_PANEL, children: 'padding_0' | 'create_realms_text_panel' }, + "create_realms_stack_panel/padding_0": { type: T.PANEL, children: string }, + "create_realms_stack_panel/create_realms_text_panel": { type: T.PANEL, children: string }, + "create_realms_text_panel": { type: T.PANEL, children: 'create' }, + "create_realms_text_panel/create": { type: T.LABEL, children: string }, + "stack_item": { type: T.PANEL, children: string }, + "scroll_stack_panel": { type: T.STACK_PANEL, children: 'name' | 'padding_0' | 'duration' | 'tier' | 'toc' | 'padding_1' | 'realms_terms_info' | 'realms_switch_nso_info' }, + "scroll_stack_panel/name": { type: T.PANEL, children: 'enter_name_panel' }, + "scroll_stack_panel/name/enter_name_panel": { type: T.PANEL, children: string }, + "scroll_stack_panel/padding_0": { type: T.PANEL, children: string }, + "scroll_stack_panel/duration": { type: T.PANEL, children: 'choose_duration_panel' }, + "scroll_stack_panel/duration/choose_duration_panel": { type: T.PANEL, children: string }, + "scroll_stack_panel/tier": { type: T.PANEL, children: 'choose_tier_panel' }, + "scroll_stack_panel/tier/choose_tier_panel": { type: T.PANEL, children: string }, + "scroll_stack_panel/toc": { type: T.PANEL, children: 'terms_and_conditions_panel' }, + "scroll_stack_panel/toc/terms_and_conditions_panel": { type: T.PANEL, children: string }, + "scroll_stack_panel/padding_1": { type: T.PANEL, children: string }, + "scroll_stack_panel/realms_terms_info": { type: T.IMAGE, children: 'label_panel' }, + "scroll_stack_panel/realms_terms_info/label_panel": { type: T.STACK_PANEL, children: 'padding_1' | 'text_description_wrapper' | 'text_description_wrapper_extra' | 'padding_2' }, + "scroll_stack_panel/realms_terms_info/label_panel/padding_1": { type: T.PANEL, children: string }, + "scroll_stack_panel/realms_terms_info/label_panel/text_description_wrapper": { type: T.PANEL, children: string }, + "scroll_stack_panel/realms_terms_info/label_panel/text_description_wrapper_extra": { type: T.PANEL, children: string }, + "scroll_stack_panel/realms_terms_info/label_panel/padding_2": { type: T.PANEL, children: string }, + "scroll_stack_panel/realms_switch_nso_info": { type: T.PANEL, children: string }, + "terms_section": { type: T.PANEL, children: 'terms_section_label' }, + "terms_section/terms_section_label": { type: T.LABEL, children: string }, + "terms_section_extra": { type: T.PANEL, children: 'terms_section_label' }, + "terms_section_extra/terms_section_label": { type: T.LABEL, children: string }, + "main_panel": { type: T.STACK_PANEL, children: 'scrolling_panel' | 'padding_0' | 'confirmation_panel' | 'padding_1' }, + "main_panel/scrolling_panel": { type: T.PANEL, children: string }, + "main_panel/padding_0": { type: T.PANEL, children: string }, + "main_panel/confirmation_panel": { type: T.PANEL, children: string }, + "main_panel/padding_1": { type: T.PANEL, children: string }, + "content": { type: T.PANEL, children: 'main_panel' }, + "content/main_panel": { type: T.STACK_PANEL, children: string }, + "realms_create_screen": { type: T.SCREEN, children: string }, + "realms_create_content_and_factory": { type: T.PANEL, children: 'realms_create_content' | 'popup_dialog_factory' }, + "realms_create_content_and_factory/realms_create_content": { type: T.PANEL, children: string }, + "realms_create_content_and_factory/popup_dialog_factory": { type: T.FACTORY, children: string }, } 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": { type: T.LABEL, children: string }, + "banner_panel_base": { type: T.PANEL, children: 'background' | 'indent_panel' }, + "banner_panel_base/background": { type: T.UNKNOWN, children: string }, + "banner_panel_base/indent_panel": { type: T.PANEL, children: 'content' }, + "banner_panel_base/indent_panel/content": { type: T.UNKNOWN, children: string }, + "banner_panel": { type: T.PANEL, children: string }, + "banner_panel_hover": { type: T.PANEL, children: string }, + "realm_invite_button": { type: T.BUTTON, children: string }, + "realm_name_label": { type: T.LABEL, children: string }, + "realm_owner_label": { type: T.LABEL, children: string }, + "tts_gamertag_item_info_wrapper": { type: T.PANEL, children: string }, + "gamertag_item_info": { type: T.PANEL, children: 'rnl' | 'rol' }, + "gamertag_item_info/rnl": { type: T.LABEL, children: string }, + "gamertag_item_info/rol": { type: T.LABEL, children: string }, + "accept_button_content": { type: T.IMAGE, children: string }, + "decline_button_content": { type: T.IMAGE, children: string }, + "realm_accept_button": { type: T.BUTTON, children: string }, + "realm_decline_button": { type: T.BUTTON, children: string }, + "realm_accepted_panel": { type: T.LABEL, children: string }, + "gamertag_item_content": { type: T.PANEL, children: 'lb' | 'a' | 'd' | 'ap' }, + "gamertag_item_content/lb": { type: T.PANEL, children: string }, + "gamertag_item_content/a": { type: T.BUTTON, children: string }, + "gamertag_item_content/d": { type: T.BUTTON, children: string }, + "gamertag_item_content/ap": { type: T.LABEL, children: string }, + "gamertag_item": { type: T.PANEL, children: string }, + "gamertag_item_grid": { type: T.GRID, children: string }, + "show_friends_only_toggle_state_content": { type: T.STACK_PANEL, children: 'checkbox_holding_panel' | 'hide_invites_text_panel' }, + "show_friends_only_toggle_state_content/checkbox_holding_panel": { type: T.PANEL, children: 'hide_invites' }, + "show_friends_only_toggle_state_content/checkbox_holding_panel/hide_invites": { type: T.UNKNOWN, children: string }, + "show_friends_only_toggle_state_content/hide_invites_text_panel": { type: T.PANEL, children: 'hide_invites_text' }, + "show_friends_only_toggle_state_content/hide_invites_text_panel/hide_invites_text": { type: T.LABEL, children: string }, + "show_friends_only_toggle_on_state_content": { type: T.STACK_PANEL, children: string }, + "show_friends_only_toggle_on_state": { type: T.PANEL, children: string }, + "show_friends_only_toggle_off_state_content": { type: T.STACK_PANEL, children: string }, + "show_friends_only_toggle_off_state": { type: T.PANEL, children: string }, + "show_friends_only_toggle_on_hover_state_content": { type: T.STACK_PANEL, children: string }, + "show_friends_only_toggle_on_hover_state": { type: T.PANEL, children: string }, + "show_friends_only_toggle_off_hover_state_content": { type: T.STACK_PANEL, children: string }, + "show_friends_only_toggle_off_hover_state": { type: T.PANEL, children: string }, + "show_friends_only_toggle_on_locked_state_content": { type: T.STACK_PANEL, children: string }, + "show_friends_only_toggle_on_locked_state": { type: T.PANEL, children: string }, + "show_friends_only_toggle_off_locked_state_content": { type: T.STACK_PANEL, children: string }, + "show_friends_only_toggle_off_locked_state": { type: T.PANEL, children: string }, + "show_friends_only_toggle": { type: T.TOGGLE, children: string }, + "gamepad_helpers": { type: T.PANEL, children: 'a' | 'b' }, + "gamepad_helpers/a": { type: T.STACK_PANEL, children: string }, + "gamepad_helpers/b": { type: T.STACK_PANEL, children: string }, + "no_invites_label_wrapper": { type: T.PANEL, children: string }, + "no_invites_label": { type: T.PANEL, children: 'label' }, + "no_invites_label/label": { type: T.LABEL, children: string }, + "realms_pending_invitation_list": { type: T.STACK_PANEL, children: 'upper_padding' | 'sfop' | 'gig' | 'lower_padding' | 'nil' }, + "realms_pending_invitation_list/upper_padding": { type: T.PANEL, children: string }, + "realms_pending_invitation_list/sfop": { type: T.TOGGLE, children: string }, + "realms_pending_invitation_list/gig": { type: T.GRID, children: string }, + "realms_pending_invitation_list/lower_padding": { type: T.PANEL, children: string }, + "realms_pending_invitation_list/nil": { type: T.PANEL, children: string }, + "content_panel": { type: T.PANEL, children: string }, + "realms_pending_invitations_screen": { type: T.SCREEN, children: string }, + "realms_invitation_screen_content": { type: T.PANEL, children: 'root_panel' }, + "realms_invitation_screen_content/root_panel": { type: T.INPUT_PANEL, children: 'main_panel' | 'sgh' }, + "realms_invitation_screen_content/root_panel/main_panel": { type: T.PANEL, children: string }, + "realms_invitation_screen_content/root_panel/sgh": { type: T.PANEL, children: string }, } 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": { type: T.PANEL, children: string }, + "horizontal_padding": { type: T.PANEL, children: string }, + "horizontal_padding_sibling_height": { type: T.PANEL, children: string }, + "realms_background": { type: T.PANEL, children: 'gradient' | 'particle_1' | 'particle_2' }, + "realms_background/gradient": { type: T.IMAGE, children: string }, + "realms_background/particle_1": { type: T.IMAGE, children: string }, + "realms_background/particle_2": { type: T.IMAGE, children: string }, + "plus": { type: T.IMAGE, children: string }, + "check": { type: T.IMAGE, children: string }, + "world_thumbnail": { type: T.IMAGE, children: string }, + "realms_stories_icon_glyph": { type: T.IMAGE, children: 'realms_stories_icon' }, + "realms_stories_icon_glyph/realms_stories_icon": { type: T.IMAGE, children: string }, + "play_button": { type: T.BUTTON, children: string }, + "edit_realm_button": { type: T.BUTTON, children: string }, + "realms_feed_button": { type: T.BUTTON, children: string }, + "unread_story_count_text": { type: T.LABEL, children: string }, + "unread_story_count_text_background": { type: T.IMAGE, children: string }, + "unread_story_count_panel": { type: T.PANEL, children: 'text' }, + "unread_story_count_panel/text": { type: T.LABEL, children: 'background' }, + "unread_story_count_panel/text/background": { type: T.IMAGE, children: string }, + "edit_world_button_panel": { type: T.STACK_PANEL, children: 'edit_world_button' | 'padding' | 'activate_world_button' }, + "edit_world_button_panel/edit_world_button": { type: T.BUTTON, children: string }, + "edit_world_button_panel/padding": { type: T.PANEL, children: string }, + "edit_world_button_panel/activate_world_button": { type: T.BUTTON, children: string }, + "world_slot_button": { type: T.BUTTON, children: string }, + "world_slot_button_content": { type: T.STACK_PANEL, children: 'world_slot_top' | 'world_slot_bottom' }, + "world_slot_button_content/world_slot_top": { type: T.PANEL, children: 'background' | 'add_world_image_panel' | 'world_thumbnail_image_panel' | 'edit_world_button_panel' | 'foreground' | 'check_image' }, + "world_slot_button_content/world_slot_top/background": { type: T.IMAGE, children: string }, + "world_slot_button_content/world_slot_top/add_world_image_panel": { type: T.PANEL, children: 'plus_image' }, + "world_slot_button_content/world_slot_top/add_world_image_panel/plus_image": { type: T.IMAGE, children: string }, + "world_slot_button_content/world_slot_top/world_thumbnail_image_panel": { type: T.PANEL, children: 'world_thumbnail' }, + "world_slot_button_content/world_slot_top/world_thumbnail_image_panel/world_thumbnail": { type: T.IMAGE, children: string }, + "world_slot_button_content/world_slot_top/edit_world_button_panel": { type: T.STACK_PANEL, children: string }, + "world_slot_button_content/world_slot_top/foreground": { type: T.IMAGE, children: string }, + "world_slot_button_content/world_slot_top/check_image": { type: T.IMAGE, children: string }, + "world_slot_button_content/world_slot_bottom": { type: T.PANEL, children: 'divider_line_black' | 'divider_line_white' | 'add_world_text_panel' | 'world_info_panel' }, + "world_slot_button_content/world_slot_bottom/divider_line_black": { type: T.IMAGE, children: string }, + "world_slot_button_content/world_slot_bottom/divider_line_white": { type: T.IMAGE, children: string }, + "world_slot_button_content/world_slot_bottom/add_world_text_panel": { type: T.PANEL, children: 'background_grey' | 'background_green' | 'add_world_text' }, + "world_slot_button_content/world_slot_bottom/add_world_text_panel/background_grey": { type: T.IMAGE, children: string }, + "world_slot_button_content/world_slot_bottom/add_world_text_panel/background_green": { type: T.IMAGE, children: string }, + "world_slot_button_content/world_slot_bottom/add_world_text_panel/add_world_text": { type: T.LABEL, children: string }, + "world_slot_button_content/world_slot_bottom/world_info_panel": { type: T.PANEL, children: 'background' | 'background_green' | 'world_info_stack_panel' }, + "world_slot_button_content/world_slot_bottom/world_info_panel/background": { type: T.IMAGE, children: string }, + "world_slot_button_content/world_slot_bottom/world_info_panel/background_green": { type: T.IMAGE, children: string }, + "world_slot_button_content/world_slot_bottom/world_info_panel/world_info_stack_panel": { type: T.STACK_PANEL, children: string }, + "world_info_stack_panel": { type: T.STACK_PANEL, children: 'world_name_panel' | 'world_type_panel' | 'bottom_padding' }, + "world_info_stack_panel/world_name_panel": { type: T.PANEL, children: 'world_name' }, + "world_info_stack_panel/world_name_panel/world_name": { type: T.LABEL, children: string }, + "world_info_stack_panel/world_type_panel": { type: T.PANEL, children: 'world_type' }, + "world_info_stack_panel/world_type_panel/world_type": { type: T.LABEL, children: string }, + "world_info_stack_panel/bottom_padding": { type: T.PANEL, children: string }, + "main_stack_panel": { type: T.STACK_PANEL, children: 'padding_0' | 'button_panel' | 'padding_1' | 'text_panel_0' | 'padding_2' | 'worlds_panel' | 'padding_3' | 'text_panel_1' }, + "main_stack_panel/padding_0": { type: T.PANEL, children: string }, + "main_stack_panel/button_panel": { type: T.STACK_PANEL, children: 'play_button' | 'left_padding' | 'edit_realm_button' | 'right_padding' | 'feed_panel_with_unread_count' }, + "main_stack_panel/button_panel/play_button": { type: T.BUTTON, children: string }, + "main_stack_panel/button_panel/left_padding": { type: T.PANEL, children: string }, + "main_stack_panel/button_panel/edit_realm_button": { type: T.BUTTON, children: string }, + "main_stack_panel/button_panel/right_padding": { type: T.PANEL, children: string }, + "main_stack_panel/button_panel/feed_panel_with_unread_count": { type: T.PANEL, children: 'feed_panel' | 'unread_story_count' }, + "main_stack_panel/button_panel/feed_panel_with_unread_count/feed_panel": { type: T.PANEL, children: 'realms_feed_button' }, + "main_stack_panel/button_panel/feed_panel_with_unread_count/feed_panel/realms_feed_button": { type: T.BUTTON, children: string }, + "main_stack_panel/button_panel/feed_panel_with_unread_count/unread_story_count": { type: T.PANEL, children: string }, + "main_stack_panel/padding_1": { type: T.PANEL, children: string }, + "main_stack_panel/text_panel_0": { type: T.PANEL, children: 'text' }, + "main_stack_panel/text_panel_0/text": { type: T.LABEL, children: string }, + "main_stack_panel/padding_2": { type: T.PANEL, children: string }, + "main_stack_panel/worlds_panel": { type: T.STACK_PANEL, children: 'world_slot_1' | 'padding_0' | 'world_slot_2' | 'padding_1' | 'world_slot_3' }, + "main_stack_panel/worlds_panel/world_slot_1": { type: T.BUTTON, children: string }, + "main_stack_panel/worlds_panel/padding_0": { type: T.PANEL, children: string }, + "main_stack_panel/worlds_panel/world_slot_2": { type: T.BUTTON, children: string }, + "main_stack_panel/worlds_panel/padding_1": { type: T.PANEL, children: string }, + "main_stack_panel/worlds_panel/world_slot_3": { type: T.BUTTON, children: string }, + "main_stack_panel/padding_3": { type: T.PANEL, children: string }, + "main_stack_panel/text_panel_1": { type: T.PANEL, children: 'text' }, + "main_stack_panel/text_panel_1/text": { type: T.LABEL, children: string }, + "realms_slots_screen": { type: T.SCREEN, children: string }, + "realms_slots_screen_content": { type: T.PANEL, children: 'background' }, + "realms_slots_screen_content/background": { type: T.STACK_PANEL, children: string }, + "realms_slots_screen_content_panel": { type: T.PANEL, children: 'main_scroll_panel' }, + "realms_slots_screen_content_panel/main_scroll_panel": { type: T.PANEL, children: string }, } 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": { type: T.SCREEN, children: string }, + "generic_section": { type: T.STACK_PANEL, children: string }, + "generic_section_wrapper": { type: T.PANEL, children: 'generic_section' }, + "generic_section_wrapper/generic_section": { type: T.STACK_PANEL, children: string }, + "checkbox_image": { type: T.IMAGE, children: string }, + "checkbox_unchecked_state": { type: T.IMAGE, children: string }, + "checkbox_checked_state": { type: T.IMAGE, children: string }, + "checkbox_unchecked_hover_state": { type: T.IMAGE, children: string }, + "checkbox_checked_hover_state": { type: T.IMAGE, children: string }, + "checkbox_unchecked_locked_state": { type: T.IMAGE, children: string }, + "checkbox_checked_locked_state": { type: T.IMAGE, children: string }, + "player_count_label": { type: T.PANEL, children: string }, + "realm_duration_label": { type: T.PANEL, children: string }, + "realm_subscription_origin_label": { type: T.IMAGE, children: string }, + "realm_consumable_to_subscription_info_label": { type: T.PANEL, children: string }, + "manage_subscriptions_button": { type: T.BUTTON, children: string }, + "delete_realm_button": { type: T.BUTTON, children: string }, + "open_realm_button": { type: T.BUTTON, children: string }, + "close_realm_button": { type: T.BUTTON, children: string }, + "subscriptions_section": { type: T.PANEL, children: 'loading_view' | 'loading_failed_view' | 'loaded_view' }, + "subscriptions_section/loading_view": { type: T.LABEL, children: string }, + "subscriptions_section/loading_failed_view": { type: T.LABEL, children: string }, + "subscriptions_section/loaded_view": { type: T.STACK_PANEL, children: 'player_count_label' | 'realm_duration_label' | 'possible_store_mismatch' | 'realm_subscription_origin_label' | 'realm_consumable_to_subscription_info_label' | '_0' | 'delete_realm_button' | 'open_realm_button' | 'close_realm_button' | '_1' | 'manage_subscriptions_button' }, + "subscriptions_section/loaded_view/player_count_label": { type: T.PANEL, children: string }, + "subscriptions_section/loaded_view/realm_duration_label": { type: T.PANEL, children: string }, + "subscriptions_section/loaded_view/possible_store_mismatch": { type: T.PANEL, children: string }, + "subscriptions_section/loaded_view/realm_subscription_origin_label": { type: T.IMAGE, children: string }, + "subscriptions_section/loaded_view/realm_consumable_to_subscription_info_label": { type: T.PANEL, children: string }, + "subscriptions_section/loaded_view/_0": { type: T.PANEL, children: string }, + "subscriptions_section/loaded_view/delete_realm_button": { type: T.BUTTON, children: string }, + "subscriptions_section/loaded_view/open_realm_button": { type: T.BUTTON, children: string }, + "subscriptions_section/loaded_view/close_realm_button": { type: T.BUTTON, children: string }, + "subscriptions_section/loaded_view/_1": { type: T.PANEL, children: string }, + "subscriptions_section/loaded_view/manage_subscriptions_button": { type: T.BUTTON, children: string }, + "invite_link_item_content": { type: T.STACK_PANEL, children: 'invite_link_item_name_and_expiry_text' | 'invite_link_item_state_text' | 'spacing_gap' }, + "invite_link_item_content/invite_link_item_name_and_expiry_text": { type: T.STACK_PANEL, children: 'name_text' | 'spacing_gap' | 'expiry_text' }, + "invite_link_item_content/invite_link_item_name_and_expiry_text/name_text": { type: T.LABEL, children: string }, + "invite_link_item_content/invite_link_item_name_and_expiry_text/spacing_gap": { type: T.PANEL, children: string }, + "invite_link_item_content/invite_link_item_name_and_expiry_text/expiry_text": { type: T.LABEL, children: string }, + "invite_link_item_content/invite_link_item_state_text": { type: T.PANEL, children: 'state_text' }, + "invite_link_item_content/invite_link_item_state_text/state_text": { type: T.LABEL, children: string }, + "invite_link_item_content/spacing_gap": { type: T.PANEL, children: string }, + "invite_link_item_template": { type: T.PANEL, children: 'invite_link_item_button' }, + "invite_link_item_template/invite_link_item_button": { type: T.BUTTON, children: string }, + "invite_links_section": { type: T.PANEL, children: 'loading_view' | 'loading_failed_view' | 'loaded_view' }, + "invite_links_section/loading_view": { type: T.LABEL, children: string }, + "invite_links_section/loading_failed_view": { type: T.LABEL, children: string }, + "invite_links_section/loaded_view": { type: T.STACK_PANEL, children: 'spacing_gap_0' | 'invite_links_info' | 'invite_links_grid' | 'spacing_gap_1' | 'add_invite_link_button' }, + "invite_links_section/loaded_view/spacing_gap_0": { type: T.PANEL, children: string }, + "invite_links_section/loaded_view/invite_links_info": { type: T.PANEL, children: string }, + "invite_links_section/loaded_view/invite_links_grid": { type: T.STACK_PANEL, children: string }, + "invite_links_section/loaded_view/spacing_gap_1": { type: T.PANEL, children: string }, + "invite_links_section/loaded_view/add_invite_link_button": { type: T.BUTTON, children: string }, + "advanced_section": { type: T.PANEL, children: 'loading_view' | 'loading_failed_view' | 'loaded_view' }, + "advanced_section/loading_view": { type: T.LABEL, children: string }, + "advanced_section/loading_failed_view": { type: T.LABEL, children: string }, + "advanced_section/loaded_view": { type: T.STACK_PANEL, children: 'spacing_gap_0' | 'server_preference' | 'set_region_content' | 'changes_not_applied_panel' | 'spacing_gap_1' | 'region_help_button' }, + "advanced_section/loaded_view/spacing_gap_0": { type: T.PANEL, children: string }, + "advanced_section/loaded_view/server_preference": { type: T.PANEL, children: string }, + "advanced_section/loaded_view/set_region_content": { type: T.PANEL, children: string }, + "advanced_section/loaded_view/changes_not_applied_panel": { type: T.STACK_PANEL, children: 'changes_not_applied_label' }, + "advanced_section/loaded_view/changes_not_applied_panel/changes_not_applied_label": { type: T.LABEL, children: string }, + "advanced_section/loaded_view/spacing_gap_1": { type: T.PANEL, children: string }, + "advanced_section/loaded_view/region_help_button": { type: T.BUTTON, children: string }, + "set_region_dropdown": { type: T.PANEL, children: string }, + "region_dropdown_content": { type: T.PANEL, children: string }, + "region_dropdown_radio": { type: T.PANEL, children: string }, + "region_help_button_content": { type: T.STACK_PANEL, children: 'external_link_icon' | 'spacing_gap_1' | 'help_text' }, + "region_help_button_content/external_link_icon": { type: T.IMAGE, children: string }, + "region_help_button_content/spacing_gap_1": { type: T.PANEL, children: string }, + "region_help_button_content/help_text": { type: T.LABEL, children: string }, + "tts_focus_border": { type: T.BUTTON, children: string }, + "saves_section": { type: T.STACK_PANEL, children: 'padding_saves_section_top' | 'loaded_view' | 'loading_indicator' | 'loading_failed_panel' }, + "saves_section/padding_saves_section_top": { type: T.PANEL, children: string }, + "saves_section/loaded_view": { type: T.STACK_PANEL, children: 'storage_bar_header_panel' | 'padding3' | 'save_active_world_button' | 'padding4' | 'active_world_info' | 'padding5' | 'storage_warning' | 'padding6' | 'save_list_container' | 'padding_loaded_view_bottom' | 'restore_info' | 'saves_help_panel' }, + "saves_section/loaded_view/storage_bar_header_panel": { type: T.PANEL, children: 'storage_bar_with_header' | 'focus_border' }, + "saves_section/loaded_view/storage_bar_header_panel/storage_bar_with_header": { type: T.STACK_PANEL, children: string }, + "saves_section/loaded_view/storage_bar_header_panel/focus_border": { type: T.BUTTON, children: string }, + "saves_section/loaded_view/padding3": { type: T.PANEL, children: string }, + "saves_section/loaded_view/save_active_world_button": { type: T.BUTTON, children: string }, + "saves_section/loaded_view/padding4": { type: T.PANEL, children: string }, + "saves_section/loaded_view/active_world_info": { type: T.PANEL, children: string }, + "saves_section/loaded_view/padding5": { type: T.PANEL, children: string }, + "saves_section/loaded_view/storage_warning": { type: T.PANEL, children: 'warning_text_panel' | 'focus_border' }, + "saves_section/loaded_view/storage_warning/warning_text_panel": { type: T.STACK_PANEL, children: string }, + "saves_section/loaded_view/storage_warning/focus_border": { type: T.BUTTON, children: string }, + "saves_section/loaded_view/padding6": { type: T.PANEL, children: string }, + "saves_section/loaded_view/save_list_container": { type: T.PANEL, children: 'tab_buttons' | 'tab_content_panel' }, + "saves_section/loaded_view/save_list_container/tab_buttons": { type: T.STACK_PANEL, children: string }, + "saves_section/loaded_view/save_list_container/tab_content_panel": { type: T.IMAGE, children: string }, + "saves_section/loaded_view/padding_loaded_view_bottom": { type: T.PANEL, children: string }, + "saves_section/loaded_view/restore_info": { type: T.PANEL, children: string }, + "saves_section/loaded_view/saves_help_panel": { type: T.STACK_PANEL, children: string }, + "saves_section/loading_indicator": { type: T.STACK_PANEL, children: 'restore_info' | 'loading_text_panel' | 'loading_bars' }, + "saves_section/loading_indicator/restore_info": { type: T.PANEL, children: string }, + "saves_section/loading_indicator/loading_text_panel": { type: T.PANEL, children: 'loading_text' | 'loading_text_padding' }, + "saves_section/loading_indicator/loading_text_panel/loading_text": { type: T.LABEL, children: string }, + "saves_section/loading_indicator/loading_text_panel/loading_text_padding": { type: T.PANEL, children: string }, + "saves_section/loading_indicator/loading_bars": { type: T.PANEL, children: 'progress_loading_bars' }, + "saves_section/loading_indicator/loading_bars/progress_loading_bars": { type: T.IMAGE, children: string }, + "saves_section/loading_failed_panel": { type: T.STACK_PANEL, children: 'restore_info' | 'saves_help_panel' | 'loading_failed_message' }, + "saves_section/loading_failed_panel/restore_info": { type: T.PANEL, children: string }, + "saves_section/loading_failed_panel/saves_help_panel": { type: T.STACK_PANEL, children: string }, + "saves_section/loading_failed_panel/loading_failed_message": { type: T.PANEL, children: string }, + "saves_help_panel": { type: T.STACK_PANEL, children: 'padding_help_button_top' | 'saves_help_button' | 'padding_help_button_bottom' }, + "saves_help_panel/padding_help_button_top": { type: T.PANEL, children: string }, + "saves_help_panel/saves_help_button": { type: T.BUTTON, children: string }, + "saves_help_panel/padding_help_button_bottom": { type: T.PANEL, children: string }, + "saves_help_button_content": { type: T.STACK_PANEL, children: 'external_link_icon' | 'spacing_gap_1' | 'help_text' }, + "saves_help_button_content/external_link_icon": { type: T.IMAGE, children: string }, + "saves_help_button_content/spacing_gap_1": { type: T.PANEL, children: string }, + "saves_help_button_content/help_text": { type: T.LABEL, children: string }, + "storage_bar_label_stack_panel": { type: T.STACK_PANEL, children: 'text_left' | 'padding' | 'text_right' }, + "storage_bar_label_stack_panel/text_left": { type: T.LABEL, children: string }, + "storage_bar_label_stack_panel/padding": { type: T.PANEL, children: string }, + "storage_bar_label_stack_panel/text_right": { type: T.LABEL, children: string }, + "storage_bar_panel_with_header": { type: T.STACK_PANEL, children: 'label_panel' | 'padding2' | 'storage_bar_panel' }, + "storage_bar_panel_with_header/label_panel": { type: T.PANEL, children: 'heading_label' }, + "storage_bar_panel_with_header/label_panel/heading_label": { type: T.UNKNOWN, children: string }, + "storage_bar_panel_with_header/padding2": { type: T.PANEL, children: string }, + "storage_bar_panel_with_header/storage_bar_panel": { type: T.STACK_PANEL, children: string }, + "realm_storage_heading_label": { type: T.LABEL, children: string }, + "storage_bar_panel": { type: T.STACK_PANEL, children: 'storage_bar_label' | 'padding' | 'storage_bar' }, + "storage_bar_panel/storage_bar_label": { type: T.STACK_PANEL, children: string }, + "storage_bar_panel/padding": { type: T.PANEL, children: string }, + "storage_bar_panel/storage_bar": { type: T.PANEL, children: string }, + "storage_bar_panel_with_tts_focus_border": { type: T.PANEL, children: 'storage_bar_panel' | 'focus_border' }, + "storage_bar_panel_with_tts_focus_border/storage_bar_panel": { type: T.STACK_PANEL, children: string }, + "storage_bar_panel_with_tts_focus_border/focus_border": { type: T.BUTTON, children: string }, + "storage_bar": { type: T.PANEL, children: 'empty_progress_bar_beveled' | 'storage_fill' | 'storage_bar_beveled_overlay' }, + "storage_bar/empty_progress_bar_beveled": { type: T.IMAGE, children: string }, + "storage_bar/storage_fill": { type: T.IMAGE, children: string }, + "storage_bar/storage_bar_beveled_overlay": { type: T.IMAGE, children: string }, + "active_world_info_panel": { type: T.PANEL, children: 'active_world_info_label_stack_panel' | 'focus_border' }, + "active_world_info_panel/active_world_info_label_stack_panel": { type: T.STACK_PANEL, children: 'active_world_name_label' | 'active_world_size_label' }, + "active_world_info_panel/active_world_info_label_stack_panel/active_world_name_label": { type: T.LABEL, children: string }, + "active_world_info_panel/active_world_info_label_stack_panel/active_world_size_label": { type: T.LABEL, children: string }, + "active_world_info_panel/focus_border": { type: T.BUTTON, children: string }, + "warning_text_panel": { type: T.STACK_PANEL, children: 'warning_panel' | 'padding1' | 'text_label' }, + "warning_text_panel/warning_panel": { type: T.STACK_PANEL, children: 'padding1' | 'warning_image' | 'padding2' }, + "warning_text_panel/warning_panel/padding1": { type: T.PANEL, children: string }, + "warning_text_panel/warning_panel/warning_image": { type: T.IMAGE, children: string }, + "warning_text_panel/warning_panel/padding2": { type: T.PANEL, children: string }, + "warning_text_panel/padding1": { type: T.PANEL, children: string }, + "warning_text_panel/text_label": { type: T.LABEL, children: string }, + "popup_dialog_background": { type: T.IMAGE, children: string }, + "popup_dialog_label": { type: T.LABEL, children: string }, + "delete_selected_saves_button": { type: T.BUTTON, children: string }, + "cancel_popup_button": { type: T.BUTTON, children: string }, + "free_up_space_popup_content": { type: T.PANEL, children: 'common_panel' | 'title_label' | 'panel_indent' | 'button_panel' }, + "free_up_space_popup_content/common_panel": { type: T.PANEL, children: string }, + "free_up_space_popup_content/title_label": { type: T.PANEL, children: string }, + "free_up_space_popup_content/panel_indent": { type: T.PANEL, children: 'inside_header_panel' }, + "free_up_space_popup_content/panel_indent/inside_header_panel": { type: T.UNKNOWN, children: string }, + "free_up_space_popup_content/button_panel": { type: T.STACK_PANEL, children: 'left_button_panel' | 'pad' | 'right_button_panel' }, + "free_up_space_popup_content/button_panel/left_button_panel": { type: T.BUTTON, children: string }, + "free_up_space_popup_content/button_panel/pad": { type: T.PANEL, children: string }, + "free_up_space_popup_content/button_panel/right_button_panel": { type: T.BUTTON, children: string }, + "free_up_space_popup_scrolling_panel": { type: T.PANEL, children: string }, + "free_up_space_text_description": { type: T.LABEL, children: string }, + "free_up_space_popup_content_stack_panel": { type: T.STACK_PANEL, children: 'free_up_space_storage_bar_header_panel' | 'padding_1' | 'free_up_space_manual_save_list_stack_panel' }, + "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel": { type: T.PANEL, children: 'free_up_space_storage_bar_panel' | 'focus_border' }, + "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel/free_up_space_storage_bar_panel": { type: T.STACK_PANEL, children: string }, + "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel/focus_border": { type: T.BUTTON, children: string }, + "free_up_space_popup_content_stack_panel/padding_1": { type: T.PANEL, children: string }, + "free_up_space_popup_content_stack_panel/free_up_space_manual_save_list_stack_panel": { type: T.STACK_PANEL, children: string }, + "popup_dialog__free_up_space": { type: T.INPUT_PANEL, children: 'free_up_space_popup_background' | 'free_up_space_popup_content' }, + "popup_dialog__free_up_space/free_up_space_popup_background": { type: T.IMAGE, children: string }, + "popup_dialog__free_up_space/free_up_space_popup_content": { type: T.PANEL, children: string }, + "top_tab": { type: T.PANEL, children: string }, + "tab_content": { type: T.PANEL, children: 'text' }, + "tab_content/text": { type: T.LABEL, children: string }, + "manual_navigation_tab": { type: T.PANEL, children: string }, + "automatic_navigation_tab": { type: T.PANEL, children: string }, + "tab_navigation_panel_layout": { type: T.PANEL, children: 'content' }, + "tab_navigation_panel_layout/content": { type: T.UNKNOWN, children: string }, + "button_tabs_container": { type: T.STACK_PANEL, children: 'manual_navigation_tab' | 'automatic_navigation_tab' }, + "button_tabs_container/manual_navigation_tab": { type: T.PANEL, children: string }, + "button_tabs_container/automatic_navigation_tab": { type: T.PANEL, children: string }, + "tab_content_panel": { type: T.IMAGE, children: 'background' }, + "tab_content_panel/background": { type: T.IMAGE, children: 'manual_save_list' | 'automatic_save_list' }, + "tab_content_panel/background/manual_save_list": { type: T.PANEL, children: string }, + "tab_content_panel/background/automatic_save_list": { type: T.PANEL, children: string }, + "save_list_panel": { type: T.PANEL, children: 'save_list' }, + "save_list_panel/save_list": { type: T.UNKNOWN, children: string }, + "manual_save_list_panel": { type: T.PANEL, children: string }, + "manual_tab_info_panel": { type: T.PANEL, children: 'info_label' }, + "manual_tab_info_panel/info_label": { type: T.LABEL, children: string }, + "manual_save_list_stack_panel": { type: T.STACK_PANEL, children: 'padding1' | 'save_tab_info_label' | 'padding2' | 'stack_panel' | 'padding3' }, + "manual_save_list_stack_panel/padding1": { type: T.PANEL, children: string }, + "manual_save_list_stack_panel/save_tab_info_label": { type: T.PANEL, children: string }, + "manual_save_list_stack_panel/padding2": { type: T.PANEL, children: string }, + "manual_save_list_stack_panel/stack_panel": { type: T.STACK_PANEL, children: string }, + "manual_save_list_stack_panel/padding3": { type: T.PANEL, children: string }, + "automatic_save_list_panel": { type: T.PANEL, children: string }, + "automatic_tab_info_panel": { type: T.PANEL, children: 'info_label' }, + "automatic_tab_info_panel/info_label": { type: T.LABEL, children: string }, + "automatic_save_list_stack_panel": { type: T.STACK_PANEL, children: 'padding1' | 'save_tab_info_label' | 'padding2' | 'stack_panel' | 'padding3' }, + "automatic_save_list_stack_panel/padding1": { type: T.PANEL, children: string }, + "automatic_save_list_stack_panel/save_tab_info_label": { type: T.PANEL, children: string }, + "automatic_save_list_stack_panel/padding2": { type: T.PANEL, children: string }, + "automatic_save_list_stack_panel/stack_panel": { type: T.STACK_PANEL, children: string }, + "automatic_save_list_stack_panel/padding3": { type: T.PANEL, children: string }, + "options_icon": { type: T.IMAGE, children: string }, + "saves_info_accordian": { type: T.STACK_PANEL, children: 'main_content_panel' | 'sub_content_panel' }, + "saves_info_accordian/main_content_panel": { type: T.STACK_PANEL, children: 'checkbox_button' | 'main_item_toggle' | 'options_button' }, + "saves_info_accordian/main_content_panel/checkbox_button": { type: T.BUTTON, children: string }, + "saves_info_accordian/main_content_panel/main_item_toggle": { type: T.PANEL, children: string }, + "saves_info_accordian/main_content_panel/options_button": { type: T.BUTTON, children: string }, + "saves_info_accordian/sub_content_panel": { type: T.PANEL, children: 'saves_content' }, + "saves_info_accordian/sub_content_panel/saves_content": { type: T.PANEL, children: string }, + "saves_info_accordion_checkbox": { type: T.PANEL, children: 'unchecked_control' | 'checked_control' | 'unchecked_hover_control' | 'checked__hover_control' }, + "saves_info_accordion_checkbox/unchecked_control": { type: T.UNKNOWN, children: string }, + "saves_info_accordion_checkbox/checked_control": { type: T.UNKNOWN, children: string }, + "saves_info_accordion_checkbox/unchecked_hover_control": { type: T.UNKNOWN, children: string }, + "saves_info_accordion_checkbox/checked__hover_control": { type: T.UNKNOWN, children: string }, + "main_item_content": { type: T.STACK_PANEL, children: 'date_and_name' | 'time_and_size' | 'padding_left_down_icon' | 'down_icon' | 'padding_right_down_icon' }, + "main_item_content/date_and_name": { type: T.PANEL, children: 'date_saved_label' | 'world_name_label' }, + "main_item_content/date_and_name/date_saved_label": { type: T.LABEL, children: string }, + "main_item_content/date_and_name/world_name_label": { type: T.LABEL, children: string }, + "main_item_content/time_and_size": { type: T.PANEL, children: 'save_data_time_label' | 'save_data_size_label' }, + "main_item_content/time_and_size/save_data_time_label": { type: T.LABEL, children: string }, + "main_item_content/time_and_size/save_data_size_label": { type: T.LABEL, children: string }, + "main_item_content/padding_left_down_icon": { type: T.PANEL, children: string }, + "main_item_content/down_icon": { type: T.PANEL, children: 'options_icon' }, + "main_item_content/down_icon/options_icon": { type: T.IMAGE, children: string }, + "main_item_content/padding_right_down_icon": { type: T.PANEL, children: string }, + "option_saves_info_label": { type: T.PANEL, children: string }, + "saves_info_container": { type: T.IMAGE, children: 'saves_info_content' }, + "saves_info_container/saves_info_content": { type: T.STACK_PANEL, children: string }, + "saves_info_content": { type: T.STACK_PANEL, children: 'version_panel' | 'pack_header_panel' | 'world_packs_label' }, + "saves_info_content/version_panel": { type: T.PANEL, children: string }, + "saves_info_content/pack_header_panel": { type: T.PANEL, children: string }, + "saves_info_content/world_packs_label": { type: T.LABEL, children: string }, + "version_panel": { type: T.PANEL, children: 'left_content' }, + "version_panel/left_content": { type: T.STACK_PANEL, children: 'save_version_label' }, + "version_panel/left_content/save_version_label": { type: T.LABEL, children: string }, + "pack_header_panel": { type: T.PANEL, children: 'left_content' }, + "pack_header_panel/left_content": { type: T.STACK_PANEL, children: 'packs_label' }, + "pack_header_panel/left_content/packs_label": { type: T.LABEL, children: string }, + "label_text": { type: T.LABEL, children: string }, + "branch_grid_item_content": { type: T.STACK_PANEL, children: 'branch_text' | 'commit_text' }, + "branch_grid_item_content/branch_text": { type: T.LABEL, children: string }, + "branch_grid_item_content/commit_text": { type: T.LABEL, children: string }, + "matching_item_button_content": { type: T.STACK_PANEL, children: 'branch_text' | 'commit_text' }, + "matching_item_button_content/branch_text": { type: T.LABEL, children: string }, + "matching_item_button_content/commit_text": { type: T.LABEL, children: string }, + "branch_item_template": { type: T.PANEL, children: 'branch_item_button' }, + "branch_item_template/branch_item_button": { type: T.BUTTON, children: string }, + "branches_grid": { type: T.GRID, children: string }, + "branch_set_panel": { type: T.STACK_PANEL, children: 'set_branch_id_label' }, + "branch_set_panel/set_branch_id_label": { type: T.LABEL, children: string }, + "version_filter_text_box": { type: T.EDIT_BOX, children: string }, + "branch_page_panel": { type: T.PANEL, children: 'prev_button' | 'page_text' | 'next_button' }, + "branch_page_panel/prev_button": { type: T.BUTTON, children: string }, + "branch_page_panel/page_text": { type: T.LABEL, children: string }, + "branch_page_panel/next_button": { type: T.BUTTON, children: string }, + "branches_panel": { type: T.STACK_PANEL, children: 'branch_label' | 'spacing_gap_1' | 'set_branch_version_label' | 'branch_set_panel' | 'spacing_gap_2' | 'matching_version_label' | 'matching_item_button' | 'spacing_gap_3' | 'all_commits_label' | 'version_filter_text_box' | 'branches_grid' | 'spacing_gap' | 'branch_page_panel' }, + "branches_panel/branch_label": { type: T.LABEL, children: string }, + "branches_panel/spacing_gap_1": { type: T.PANEL, children: string }, + "branches_panel/set_branch_version_label": { type: T.LABEL, children: string }, + "branches_panel/branch_set_panel": { type: T.STACK_PANEL, children: string }, + "branches_panel/spacing_gap_2": { type: T.PANEL, children: string }, + "branches_panel/matching_version_label": { type: T.LABEL, children: string }, + "branches_panel/matching_item_button": { type: T.BUTTON, children: string }, + "branches_panel/spacing_gap_3": { type: T.PANEL, children: string }, + "branches_panel/all_commits_label": { type: T.LABEL, children: string }, + "branches_panel/version_filter_text_box": { type: T.EDIT_BOX, children: string }, + "branches_panel/branches_grid": { type: T.GRID, children: string }, + "branches_panel/spacing_gap": { type: T.PANEL, children: string }, + "branches_panel/branch_page_panel": { type: T.PANEL, children: string }, + "branch_section": { type: T.STACK_PANEL, children: 'branches_panel' }, + "branch_section/branches_panel": { type: T.STACK_PANEL, children: string }, + "popup_dialog__backups": { type: T.INPUT_PANEL, children: 'transparent_close_button' | 'backup_restore_popup_content' }, + "popup_dialog__backups/transparent_close_button": { type: T.BUTTON, children: string }, + "popup_dialog__backups/backup_restore_popup_content": { type: T.PANEL, children: string }, + "backup_restore_popup_content": { type: T.PANEL, children: 'popup_dialog_bg' | 'backup_restore_popup_dialog_header' | 'backup_restore_popup_dialog_body' }, + "backup_restore_popup_content/popup_dialog_bg": { type: T.IMAGE, children: string }, + "backup_restore_popup_content/backup_restore_popup_dialog_header": { type: T.PANEL, children: string }, + "backup_restore_popup_content/backup_restore_popup_dialog_body": { type: T.PANEL, children: string }, + "backup_restore_popup_dialog_header": { type: T.PANEL, children: 'backup_restore_popup_dialog_header_text' }, + "backup_restore_popup_dialog_header/backup_restore_popup_dialog_header_text": { type: T.LABEL, children: string }, + "backup_restore_popup_dialog_header_text": { type: T.LABEL, children: string }, + "backup_restore_popup_dialog_body": { type: T.PANEL, children: 'backup_restore_loading_panel' }, + "backup_restore_popup_dialog_body/backup_restore_loading_panel": { type: T.IMAGE, children: string }, + "backup_restore_loading_panel": { type: T.IMAGE, children: 'backup_restore_loading_stack_panel' }, + "backup_restore_loading_panel/backup_restore_loading_stack_panel": { type: T.STACK_PANEL, children: string }, + "backup_restore_loading_stack_panel": { type: T.STACK_PANEL, children: 'padding' | 'backup_restore_text_panel' | 'backup_restore_loading_bar_panel' | 'padding2' }, + "backup_restore_loading_stack_panel/padding": { type: T.PANEL, children: string }, + "backup_restore_loading_stack_panel/backup_restore_text_panel": { type: T.PANEL, children: string }, + "backup_restore_loading_stack_panel/backup_restore_loading_bar_panel": { type: T.PANEL, children: string }, + "backup_restore_loading_stack_panel/padding2": { type: T.PANEL, children: string }, + "backup_restore_text_panel": { type: T.PANEL, children: 'loading_text' }, + "backup_restore_text_panel/loading_text": { type: T.LABEL, children: string }, + "backup_restore_loading_bar_panel": { type: T.PANEL, children: 'progress_loading_bars' }, + "backup_restore_loading_bar_panel/progress_loading_bars": { type: T.IMAGE, children: string }, + "backup_replace_icon": { type: T.IMAGE, children: string }, + "backup_download_icon": { type: T.IMAGE, children: string }, + "backup_grid_item_content": { type: T.STACK_PANEL, children: 'backup_grid_item_icon_panel' | 'backup_grid_item_name_and_time_since' | 'backup_grid_item_date_and_time' | 'spacing_gap' }, + "backup_grid_item_content/backup_grid_item_icon_panel": { type: T.PANEL, children: string }, + "backup_grid_item_content/backup_grid_item_name_and_time_since": { type: T.STACK_PANEL, children: string }, + "backup_grid_item_content/backup_grid_item_date_and_time": { type: T.STACK_PANEL, children: string }, + "backup_grid_item_content/spacing_gap": { type: T.PANEL, children: string }, + "backup_grid_item_name_and_time_since": { type: T.STACK_PANEL, children: 'date_text' | 'spacing_gap' | 'version_text' }, + "backup_grid_item_name_and_time_since/date_text": { type: T.LABEL, children: string }, + "backup_grid_item_name_and_time_since/spacing_gap": { type: T.PANEL, children: string }, + "backup_grid_item_name_and_time_since/version_text": { type: T.LABEL, children: string }, + "backup_grid_item_date_and_time": { type: T.STACK_PANEL, children: 'time_text' | 'spacing_gap' | 'size_text' }, + "backup_grid_item_date_and_time/time_text": { type: T.LABEL, children: string }, + "backup_grid_item_date_and_time/spacing_gap": { type: T.PANEL, children: string }, + "backup_grid_item_date_and_time/size_text": { type: T.LABEL, children: string }, + "backup_grid_item_icon_panel": { type: T.PANEL, children: 'backup_replace_icon' }, + "backup_grid_item_icon_panel/backup_replace_icon": { type: T.IMAGE, children: string }, + "backup_item_template": { type: T.STACK_PANEL, children: 'backup_item_button' | 'download_backup_panel' }, + "backup_item_template/backup_item_button": { type: T.BUTTON, children: string }, + "backup_item_template/download_backup_panel": { type: T.PANEL, children: 'download_backup_button' }, + "backup_item_template/download_backup_panel/download_backup_button": { type: T.BUTTON, children: string }, + "download_backup_button": { type: T.BUTTON, children: string }, + "backup_grid": { type: T.GRID, children: string }, + "backup_section": { type: T.STACK_PANEL, children: 'backup_panel' }, + "backup_section/backup_panel": { type: T.STACK_PANEL, children: string }, + "backup_info_label": { type: T.PANEL, children: string }, + "backup_network_error_label": { type: T.PANEL, children: string }, + "backup_panel": { type: T.STACK_PANEL, children: 'spacing_gap' | 'backup_info_label' | 'spacing_gap2' | 'progress_panel' | 'backup_grid' | 'backup_network_error_label' }, + "backup_panel/spacing_gap": { type: T.PANEL, children: string }, + "backup_panel/backup_info_label": { type: T.PANEL, children: string }, + "backup_panel/spacing_gap2": { type: T.PANEL, children: string }, + "backup_panel/progress_panel": { type: T.PANEL, children: 'progress_loading_bars' }, + "backup_panel/progress_panel/progress_loading_bars": { type: T.IMAGE, children: string }, + "backup_panel/backup_grid": { type: T.GRID, children: string }, + "backup_panel/backup_network_error_label": { type: T.PANEL, children: string }, + "test_content": { type: T.PANEL, children: 'realms_allowlist_content_panel' | 'gamepad_helpers' }, + "test_content/realms_allowlist_content_panel": { type: T.PANEL, children: string }, + "test_content/gamepad_helpers": { type: T.UNKNOWN, children: string }, + "selector_panel": { type: T.STACK_PANEL, children: 'play_button' | 'disabled_play_button' | 'expired_play_button' | 'padding' | 'selector_group_label' | 'world_button' | 'members_button' | 'saves_button' | 'subscription_button' | 'backup_button' | 'dev_options_button' | 'invite_links_button' | 'advanced_button' }, + "selector_panel/play_button": { type: T.BUTTON, children: string }, + "selector_panel/disabled_play_button": { type: T.BUTTON, children: string }, + "selector_panel/expired_play_button": { type: T.BUTTON, children: string }, + "selector_panel/padding": { type: T.PANEL, children: string }, + "selector_panel/selector_group_label": { type: T.LABEL, children: string }, + "selector_panel/world_button": { type: T.PANEL, children: string }, + "selector_panel/members_button": { type: T.PANEL, children: string }, + "selector_panel/saves_button": { type: T.PANEL, children: string }, + "selector_panel/subscription_button": { type: T.PANEL, children: string }, + "selector_panel/backup_button": { type: T.PANEL, children: string }, + "selector_panel/dev_options_button": { type: T.PANEL, children: string }, + "selector_panel/invite_links_button": { type: T.PANEL, children: string }, + "selector_panel/advanced_button": { type: T.PANEL, children: string }, + "section_content_panels": { type: T.PANEL, children: 'world_section' | 'players_section' | 'subscription_section' | 'invite_links_section' | 'advanced_section' | 'dev_options_section' | 'backup_section' | 'saves_section' }, + "section_content_panels/world_section": { type: T.PANEL, children: string }, + "section_content_panels/players_section": { type: T.PANEL, children: string }, + "section_content_panels/subscription_section": { type: T.PANEL, children: string }, + "section_content_panels/invite_links_section": { type: T.PANEL, children: string }, + "section_content_panels/advanced_section": { type: T.PANEL, children: string }, + "section_content_panels/dev_options_section": { type: T.PANEL, children: string }, + "section_content_panels/backup_section": { type: T.PANEL, children: string }, + "section_content_panels/saves_section": { type: T.PANEL, children: string }, + "popup_dialog__save_options": { type: T.INPUT_PANEL, children: string }, + "save_options_popup_content": { type: T.STACK_PANEL, children: 'restore_button' | 'spacing_1' | 'download_button' | 'spacing_2' | 'save_button_container' | 'delete_button_container' }, + "save_options_popup_content/restore_button": { type: T.BUTTON, children: string }, + "save_options_popup_content/spacing_1": { type: T.PANEL, children: string }, + "save_options_popup_content/download_button": { type: T.BUTTON, children: string }, + "save_options_popup_content/spacing_2": { type: T.PANEL, children: string }, + "save_options_popup_content/save_button_container": { type: T.STACK_PANEL, children: 'save_button' | 'spacing_3' }, + "save_options_popup_content/save_button_container/save_button": { type: T.BUTTON, children: string }, + "save_options_popup_content/save_button_container/spacing_3": { type: T.PANEL, children: string }, + "save_options_popup_content/delete_button_container": { type: T.STACK_PANEL, children: 'delete_button' }, + "save_options_popup_content/delete_button_container/delete_button": { type: T.BUTTON, children: string }, + "standalone_dialog_title": { type: T.STACK_PANEL, children: 'left_padding' | 'dialog_title_label' | 'right_padding' }, + "standalone_dialog_title/left_padding": { type: T.PANEL, children: string }, + "standalone_dialog_title/dialog_title_label": { type: T.LABEL, children: string }, + "standalone_dialog_title/right_padding": { type: T.PANEL, children: string }, + "standalone_dialog_content": { type: T.PANEL, children: 'dialog_title' | 'content_area' }, + "standalone_dialog_content/dialog_title": { type: T.STACK_PANEL, children: string }, + "standalone_dialog_content/content_area": { type: T.PANEL, children: string }, + "standalone_content_area": { type: T.PANEL, children: 'control' }, + "standalone_content_area/control": { type: T.STACK_PANEL, children: 'scrolling_panel' }, + "standalone_content_area/control/scrolling_panel": { type: T.PANEL, children: string }, + "realms_settings_screen_base_no_selector_area": { type: T.SCREEN, children: string }, + "screen_realm_hub_manage_members": { type: T.SCREEN, children: string }, + "screen_realm_hub_invite_links": { type: T.SCREEN, children: string }, } 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": { type: T.PANEL, children: string }, + "friends_containing_panel": { type: T.PANEL, children: 'friends_panel' }, + "friends_containing_panel/friends_panel": { type: T.STACK_PANEL, children: string }, + "friends_panel": { type: T.STACK_PANEL, children: 'add_friends_and_invite_link_panel' | 'option_dropdown_permissions' | 'player_filter_label' | 'player_filter_text_box' | 'spacing_gap_members_top' | 'lists' | 'loading_friends' }, + "friends_panel/add_friends_and_invite_link_panel": { type: T.PANEL, children: string }, + "friends_panel/option_dropdown_permissions": { type: T.PANEL, children: string }, + "friends_panel/player_filter_label": { type: T.PANEL, children: string }, + "friends_panel/player_filter_text_box": { type: T.EDIT_BOX, children: string }, + "friends_panel/spacing_gap_members_top": { type: T.PANEL, children: string }, + "friends_panel/lists": { type: T.STACK_PANEL, children: 'members_label' | 'members_stack' | 'spacing_gap_members_bottom' | 'members_page_panel' | 'invited_friends_label' | 'invited_stack' | 'spacing_gap_invited_friends' | 'invited_friends_page_panel' | 'uninvited_friends_label' | 'uninvited_stack' | 'spacing_gap_uninvited_friends' | 'uninvited_friends_page_panel' | 'blocked_players_label' | 'blocked_players_stack' | 'spacing_gap_blocked_players' | 'blocked_players_page_panel' | 'no_invites_label' }, + "friends_panel/lists/members_label": { type: T.STACK_PANEL, children: string }, + "friends_panel/lists/members_stack": { type: T.STACK_PANEL, children: string }, + "friends_panel/lists/spacing_gap_members_bottom": { type: T.PANEL, children: string }, + "friends_panel/lists/members_page_panel": { type: T.PANEL, children: string }, + "friends_panel/lists/invited_friends_label": { type: T.PANEL, children: string }, + "friends_panel/lists/invited_stack": { type: T.STACK_PANEL, children: string }, + "friends_panel/lists/spacing_gap_invited_friends": { type: T.PANEL, children: string }, + "friends_panel/lists/invited_friends_page_panel": { type: T.PANEL, children: string }, + "friends_panel/lists/uninvited_friends_label": { type: T.PANEL, children: string }, + "friends_panel/lists/uninvited_stack": { type: T.STACK_PANEL, children: string }, + "friends_panel/lists/spacing_gap_uninvited_friends": { type: T.PANEL, children: string }, + "friends_panel/lists/uninvited_friends_page_panel": { type: T.PANEL, children: string }, + "friends_panel/lists/blocked_players_label": { type: T.PANEL, children: string }, + "friends_panel/lists/blocked_players_stack": { type: T.STACK_PANEL, children: string }, + "friends_panel/lists/spacing_gap_blocked_players": { type: T.PANEL, children: string }, + "friends_panel/lists/blocked_players_page_panel": { type: T.PANEL, children: string }, + "friends_panel/lists/no_invites_label": { type: T.LABEL, children: string }, + "friends_panel/loading_friends": { type: T.LABEL, children: string }, + "add_friends_and_invite_link_panel": { type: T.PANEL, children: 'allowlist_stack_panel' }, + "add_friends_and_invite_link_panel/allowlist_stack_panel": { type: T.STACK_PANEL, children: 'find_friends_button_panel' | 'spacing_1' | 'invite_links_panel' | 'spacing_2' | 'options_panel' }, + "add_friends_and_invite_link_panel/allowlist_stack_panel/find_friends_button_panel": { type: T.PANEL, children: string }, + "add_friends_and_invite_link_panel/allowlist_stack_panel/spacing_1": { type: T.PANEL, children: string }, + "add_friends_and_invite_link_panel/allowlist_stack_panel/invite_links_panel": { type: T.PANEL, children: 'invite_links_button' }, + "add_friends_and_invite_link_panel/allowlist_stack_panel/invite_links_panel/invite_links_button": { type: T.BUTTON, children: string }, + "add_friends_and_invite_link_panel/allowlist_stack_panel/spacing_2": { type: T.PANEL, children: string }, + "add_friends_and_invite_link_panel/allowlist_stack_panel/options_panel": { type: T.PANEL, children: 'clear_members_button' }, + "add_friends_and_invite_link_panel/allowlist_stack_panel/options_panel/clear_members_button": { type: T.BUTTON, children: string }, + "options_icon": { type: T.IMAGE, children: string }, + "account_link_image": { type: T.IMAGE, children: string }, + "account_link_icon": { type: T.STACK_PANEL, children: 'space_01' | 'account_link_image' | 'space_03' }, + "account_link_icon/space_01": { type: T.PANEL, children: string }, + "account_link_icon/account_link_image": { type: T.IMAGE, children: string }, + "account_link_icon/space_03": { type: T.PANEL, children: string }, + "find_friends_button_panel": { type: T.PANEL, children: 'find_friends_button' }, + "find_friends_button_panel/find_friends_button": { type: T.BUTTON, children: string }, + "invited_friends_label": { type: T.PANEL, children: 'friend_title' }, + "invited_friends_label/friend_title": { type: T.LABEL, children: string }, + "player_filter_label": { type: T.PANEL, children: 'player_filter_title' }, + "player_filter_label/player_filter_title": { type: T.LABEL, children: string }, + "members_label": { type: T.STACK_PANEL, children: 'friend_title' | 'padding_panel' | 'loading_text' }, + "members_label/friend_title": { type: T.LABEL, children: string }, + "members_label/padding_panel": { type: T.PANEL, children: string }, + "members_label/loading_text": { type: T.LABEL, children: string }, + "blocked_players_label": { type: T.PANEL, children: 'friend_title' }, + "blocked_players_label/friend_title": { type: T.LABEL, children: string }, + "uninvited_friends_label": { type: T.PANEL, children: 'friend_title' }, + "uninvited_friends_label/friend_title": { type: T.LABEL, children: string }, + "no_invites_label": { type: T.LABEL, children: string }, + "loading_friends": { type: T.LABEL, children: string }, + "blocked_grid_item": { type: T.PANEL, children: 'blocked_panel' }, + "blocked_grid_item/blocked_panel": { type: T.IMAGE, children: string }, + "factory_stack": { type: T.STACK_PANEL, children: string }, + "member_factory_xbl_profile": { type: T.STACK_PANEL, children: string }, + "member_factory_linked_account": { type: T.STACK_PANEL, children: string }, + "invited_factory_xbl_profile": { type: T.STACK_PANEL, children: string }, + "invited_factory_linked_account": { type: T.STACK_PANEL, children: string }, + "uninvited_factory_xbl_profile": { type: T.STACK_PANEL, children: string }, + "uninvited_factory_linked_account": { type: T.STACK_PANEL, children: string }, + "blocked_factory_xbl_profile": { type: T.STACK_PANEL, children: string }, + "blocked_factory_linked_account": { type: T.STACK_PANEL, children: string }, + "xbl_profile_panel_factory": { type: T.STACK_PANEL, children: string }, + "xbl_profile_blocked_panel_factory": { type: T.STACK_PANEL, children: string }, + "linked_account_panel_factory": { type: T.STACK_PANEL, children: string }, + "linked_account_blocked_panel_factory": { type: T.STACK_PANEL, children: string }, + "xbl_profile_panel": { type: T.IMAGE, children: 'player_status_panel' | 'xbl_user_panel' | 'right_controls_panel' | 'progress' }, + "xbl_profile_panel/player_status_panel": { type: T.PANEL, children: string }, + "xbl_profile_panel/xbl_user_panel": { type: T.STACK_PANEL, children: string }, + "xbl_profile_panel/right_controls_panel": { type: T.PANEL, children: string }, + "xbl_profile_panel/progress": { type: T.IMAGE, children: string }, + "factory_gap_template": { type: T.STACK_PANEL, children: 'gapped_control' | 'spacing1' }, + "factory_gap_template/gapped_control": { type: T.UNKNOWN, children: string }, + "factory_gap_template/spacing1": { type: T.PANEL, children: string }, + "gapped_xbl_profile_panel": { type: T.STACK_PANEL, children: string }, + "gapped_linked_account_panel": { type: T.STACK_PANEL, children: string }, + "gapped_blocked_xbl_profile_panel": { type: T.STACK_PANEL, children: string }, + "gapped_blocked_linked_account_panel": { type: T.STACK_PANEL, children: string }, + "blocked_panel": { type: T.IMAGE, children: 'xbl_user_panel' | 'unblock_button' }, + "blocked_panel/xbl_user_panel": { type: T.STACK_PANEL, children: string }, + "blocked_panel/unblock_button": { type: T.BUTTON, children: string }, + "linked_account_panel": { type: T.IMAGE, children: 'linked_account_positioning_panel' | 'right_controls_panel' | 'progress' }, + "linked_account_panel/linked_account_positioning_panel": { type: T.STACK_PANEL, children: string }, + "linked_account_panel/right_controls_panel": { type: T.PANEL, children: string }, + "linked_account_panel/progress": { type: T.IMAGE, children: string }, + "linked_account_blocked_panel": { type: T.IMAGE, children: 'linked_account_positioning_panel' | 'unblock_button' | 'progress' }, + "linked_account_blocked_panel/linked_account_positioning_panel": { type: T.STACK_PANEL, children: string }, + "linked_account_blocked_panel/unblock_button": { type: T.BUTTON, children: string }, + "linked_account_blocked_panel/progress": { type: T.IMAGE, children: string }, + "xbl_user_panel": { type: T.STACK_PANEL, children: 'spacing1' | 'platform_icon_positioner' | 'gamerpic_panel' | 'spacing2' | 'gamertag_label_panel' }, + "xbl_user_panel/spacing1": { type: T.PANEL, children: string }, + "xbl_user_panel/platform_icon_positioner": { type: T.PANEL, children: string }, + "xbl_user_panel/gamerpic_panel": { type: T.PANEL, children: string }, + "xbl_user_panel/spacing2": { type: T.PANEL, children: string }, + "xbl_user_panel/gamertag_label_panel": { type: T.PANEL, children: string }, + "third_party_user_panel": { type: T.STACK_PANEL, children: 'spacing1' | 'profile_picture' | 'spacing2' | 'third_party_profile_label' }, + "third_party_user_panel/spacing1": { type: T.PANEL, children: string }, + "third_party_user_panel/profile_picture": { type: T.PANEL, children: string }, + "third_party_user_panel/spacing2": { type: T.PANEL, children: string }, + "third_party_user_panel/third_party_profile_label": { type: T.PANEL, children: string }, + "linked_profile_pictures_panel": { type: T.STACK_PANEL, children: 'pp2' | 'account_link' | 'pp1' }, + "linked_profile_pictures_panel/pp2": { type: T.PANEL, children: string }, + "linked_profile_pictures_panel/account_link": { type: T.STACK_PANEL, children: string }, + "linked_profile_pictures_panel/pp1": { type: T.PANEL, children: string }, + "platform_profile_names": { type: T.STACK_PANEL, children: 'friend_grid_third_party_tag' | 'spacer_02' | 'friend_grid_xbl_gamertag' | 'spacer_03' }, + "platform_profile_names/friend_grid_third_party_tag": { type: T.PANEL, children: string }, + "platform_profile_names/spacer_02": { type: T.PANEL, children: string }, + "platform_profile_names/friend_grid_xbl_gamertag": { type: T.PANEL, children: string }, + "platform_profile_names/spacer_03": { type: T.PANEL, children: string }, + "linked_user_stack_panel": { type: T.STACK_PANEL, children: 'allow_offset_control' | 'platform_icon_positioner' | 'spacing1' | 'profile_picture' | 'spacing2' | 'platform_names_label' | 'spacing3' }, + "linked_user_stack_panel/allow_offset_control": { type: T.PANEL, children: 'player_status_panel' }, + "linked_user_stack_panel/allow_offset_control/player_status_panel": { type: T.PANEL, children: string }, + "linked_user_stack_panel/platform_icon_positioner": { type: T.PANEL, children: 'platform_icon' }, + "linked_user_stack_panel/platform_icon_positioner/platform_icon": { type: T.PANEL, children: string }, + "linked_user_stack_panel/spacing1": { type: T.PANEL, children: string }, + "linked_user_stack_panel/profile_picture": { type: T.STACK_PANEL, children: string }, + "linked_user_stack_panel/spacing2": { type: T.PANEL, children: string }, + "linked_user_stack_panel/platform_names_label": { type: T.STACK_PANEL, children: string }, + "linked_user_stack_panel/spacing3": { type: T.PANEL, children: string }, + "horizontal_indent": { type: T.PANEL, children: string }, + "vertical_indent": { type: T.PANEL, children: string }, + "gamerpic_panel": { type: T.PANEL, children: 'black_border' | 'gamer_pic' }, + "gamerpic_panel/black_border": { type: T.IMAGE, children: string }, + "gamerpic_panel/gamer_pic": { type: T.CUSTOM, children: string }, + "third_party_profile_pic_panel": { type: T.PANEL, children: 'black_border' | 'third_party_profile_picture' }, + "third_party_profile_pic_panel/black_border": { type: T.IMAGE, children: string }, + "third_party_profile_pic_panel/third_party_profile_picture": { type: T.IMAGE, children: string }, + "gamertag_label_panel": { type: T.PANEL, children: 'gamertag_label' | 'real_name_label' }, + "gamertag_label_panel/gamertag_label": { type: T.LABEL, children: string }, + "gamertag_label_panel/real_name_label": { type: T.LABEL, children: string }, + "third_party_profile_label": { type: T.PANEL, children: 'profile_name_label' }, + "third_party_profile_label/profile_name_label": { type: T.LABEL, children: string }, + "panel_text": { type: T.LABEL, children: string }, + "gamertag_label": { type: T.LABEL, children: string }, + "third_party_profile_name_label": { type: T.LABEL, children: string }, + "real_name_label": { type: T.LABEL, children: string }, + "right_settings_panel": { type: T.STACK_PANEL, children: 'member_settings' }, + "right_settings_panel/member_settings": { type: T.STACK_PANEL, children: string }, + "member_settings": { type: T.STACK_PANEL, children: 'minus_button' | 'horizontal_space' | 'member_permissions' | 'op_deop_button' }, + "member_settings/minus_button": { type: T.BUTTON, children: string }, + "member_settings/horizontal_space": { type: T.PANEL, children: string }, + "member_settings/member_permissions": { type: T.STACK_PANEL, children: string }, + "member_settings/op_deop_button": { type: T.PANEL, children: string }, + "right_controls_panel": { type: T.PANEL, children: 'right_settings_panel' | 'uninvited_friends_invite_button' }, + "right_controls_panel/right_settings_panel": { type: T.STACK_PANEL, children: string }, + "right_controls_panel/uninvited_friends_invite_button": { type: T.BUTTON, children: string }, + "player_status_panel": { type: T.PANEL, children: 'player_online_icon' | 'player_offline_icon' }, + "player_status_panel/player_online_icon": { type: T.IMAGE, children: string }, + "player_status_panel/player_offline_icon": { type: T.IMAGE, children: string }, + "permissions_dropdown": { type: T.STACK_PANEL, children: 'vertical_space' | 'option_dropdown_permissions' }, + "permissions_dropdown/vertical_space": { type: T.PANEL, children: string }, + "permissions_dropdown/option_dropdown_permissions": { type: T.PANEL, children: string }, + "invite_button": { type: T.BUTTON, children: string }, + "minus_button": { type: T.BUTTON, children: string }, + "unblock_label": { type: T.LABEL, children: string }, + "unblock_button": { type: T.BUTTON, children: string }, + "op_deop_button": { type: T.PANEL, children: string }, + "find_friends_button": { type: T.BUTTON, children: string }, + "black_border": { type: T.IMAGE, children: string }, + "gamer_pic": { type: T.CUSTOM, children: string }, + "third_party_profile_picture": { type: T.IMAGE, children: string }, + "player_online_icon": { type: T.IMAGE, children: string }, + "player_offline_icon": { type: T.IMAGE, children: string }, + "plus_icon": { type: T.IMAGE, children: string }, + "more_icon": { type: T.IMAGE, children: string }, + "share_icon": { type: T.IMAGE, children: string }, + "minus_icon": { type: T.IMAGE, children: string }, + "op_icon": { type: T.IMAGE, children: string }, + "deop_icon": { type: T.IMAGE, children: string }, + "player_filter_text_box": { type: T.EDIT_BOX, children: string }, + "page_panel": { type: T.PANEL, children: 'prev_button' | 'page_text' | 'next_button' }, + "page_panel/prev_button": { type: T.BUTTON, children: string }, + "page_panel/page_text": { type: T.LABEL, children: string }, + "page_panel/next_button": { type: T.BUTTON, children: string }, + "realms_allowlist_panel_content": { type: T.PANEL, children: string }, + "realms_allowlist_content_panel": { type: T.PANEL, children: string }, + "realms_allowlist_content_panel_children": { type: T.PANEL, children: 'realms_allowlist_panel_content' | 'done_button' }, + "realms_allowlist_content_panel_children/realms_allowlist_panel_content": { type: T.PANEL, children: string }, + "realms_allowlist_content_panel_children/done_button": { type: T.BUTTON, children: string }, + "realms_allowlist_screen": { type: T.SCREEN, children: string }, + "realms_allowlist_content": { type: T.PANEL, children: 'root_panel' }, + "realms_allowlist_content/root_panel": { type: T.INPUT_PANEL, children: 'realms_allowlist_content_panel' }, + "realms_allowlist_content/root_panel/realms_allowlist_content_panel": { type: T.PANEL, children: string }, + "transparent_close_button": { type: T.BUTTON, children: string }, } 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": { type: T.PANEL, children: 'generic_section' }, + "generic_section_wrapper/generic_section": { type: T.STACK_PANEL, children: string }, + "link_banner": { type: T.IMAGE, children: string }, + "clipboard_icon": { type: T.IMAGE, children: string }, + "description_wrap": { type: T.PANEL, children: 'description' }, + "description_wrap/description": { type: T.LABEL, children: string }, + "invite_link_url": { type: T.LABEL, children: string }, + "link_panel": { type: T.IMAGE, children: 'invite_link_url_wrapper' | 'link_copy_container' }, + "link_panel/invite_link_url_wrapper": { type: T.PANEL, children: string }, + "link_panel/link_copy_container": { type: T.PANEL, children: 'link_copy' }, + "link_panel/link_copy_container/link_copy": { type: T.BUTTON, children: string }, + "general_content": { type: T.STACK_PANEL, children: 'spacing_gap_0' | 'invite_link_title' | 'invite_link_description' | 'spacing_gap_1' | 'link_panel' | 'spacing_gap_2' | 'activate_link_toggle' | 'activate_link_description' | 'spacing_gap_3' | 'infinite_link_toggle' | 'spacing_gap_4' | 'share_link_title' | 'share_link_description' | 'spacing_gap_5' | 'share_link_button' | 'spacing_gap_6' | 'remove_link_title' | 'remove_invite_link_button' }, + "general_content/spacing_gap_0": { type: T.PANEL, children: string }, + "general_content/invite_link_title": { type: T.LABEL, children: string }, + "general_content/invite_link_description": { type: T.PANEL, children: string }, + "general_content/spacing_gap_1": { type: T.PANEL, children: string }, + "general_content/link_panel": { type: T.IMAGE, children: string }, + "general_content/spacing_gap_2": { type: T.PANEL, children: string }, + "general_content/activate_link_toggle": { type: T.PANEL, children: string }, + "general_content/activate_link_description": { type: T.PANEL, children: string }, + "general_content/spacing_gap_3": { type: T.PANEL, children: string }, + "general_content/infinite_link_toggle": { type: T.PANEL, children: string }, + "general_content/spacing_gap_4": { type: T.PANEL, children: string }, + "general_content/share_link_title": { type: T.LABEL, children: string }, + "general_content/share_link_description": { type: T.PANEL, children: string }, + "general_content/spacing_gap_5": { type: T.PANEL, children: string }, + "general_content/share_link_button": { type: T.BUTTON, children: string }, + "general_content/spacing_gap_6": { type: T.PANEL, children: string }, + "general_content/remove_link_title": { type: T.LABEL, children: string }, + "general_content/remove_invite_link_button": { type: T.BUTTON, children: string }, + "invite_link_expiration": { type: T.LABEL, children: string }, + "advanced_content": { type: T.STACK_PANEL, children: 'spacing_gap_0' | 'expiry_title' | 'spacing_gap_1' | 'expiration_description' | 'spacing_gap_2' | 'expiration_panel' | 'expiration_dropdown' }, + "advanced_content/spacing_gap_0": { type: T.PANEL, children: string }, + "advanced_content/expiry_title": { type: T.LABEL, children: string }, + "advanced_content/spacing_gap_1": { type: T.PANEL, children: string }, + "advanced_content/expiration_description": { type: T.PANEL, children: string }, + "advanced_content/spacing_gap_2": { type: T.PANEL, children: string }, + "advanced_content/expiration_panel": { type: T.IMAGE, children: 'invite_link_expiration_wrapper' }, + "advanced_content/expiration_panel/invite_link_expiration_wrapper": { type: T.PANEL, children: string }, + "advanced_content/expiration_dropdown": { type: T.PANEL, children: string }, + "expiration_dropdown_content": { type: T.PANEL, children: string }, + "selector_panel": { type: T.STACK_PANEL, children: 'spacing_gap_0' | 'general_button' | 'advanced_button' }, + "selector_panel/spacing_gap_0": { type: T.PANEL, children: string }, + "selector_panel/general_button": { type: T.PANEL, children: string }, + "selector_panel/advanced_button": { type: T.PANEL, children: string }, + "section_content_panels": { type: T.PANEL, children: 'general_section' | 'advanced_section' }, + "section_content_panels/general_section": { type: T.PANEL, children: string }, + "section_content_panels/advanced_section": { type: T.PANEL, children: string }, } 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": { type: T.SCREEN, children: string }, + "subscription_ended_screen_content": { type: T.PANEL, children: 'root_panel' }, + "subscription_ended_screen_content/root_panel": { type: T.PANEL, children: 'gamepad_helpers' | 'main_panel' }, + "subscription_ended_screen_content/root_panel/gamepad_helpers": { type: T.PANEL, children: string }, + "subscription_ended_screen_content/root_panel/main_panel": { type: T.INPUT_PANEL, children: string }, + "main_panel": { type: T.INPUT_PANEL, children: 'dialog' }, + "main_panel/dialog": { type: T.PANEL, children: string }, + "gamepad_helpers": { type: T.PANEL, children: 'gamepad_helper_a' }, + "gamepad_helpers/gamepad_helper_a": { type: T.STACK_PANEL, children: string }, + "content_stack_panel": { type: T.STACK_PANEL, children: 'pad_0' | 'main_content' | 'pad_1' | 'button_center_panel' | 'pad_2' }, + "content_stack_panel/pad_0": { type: T.PANEL, children: string }, + "content_stack_panel/main_content": { type: T.PANEL, children: string }, + "content_stack_panel/pad_1": { type: T.PANEL, children: string }, + "content_stack_panel/button_center_panel": { type: T.PANEL, children: 'buttons' }, + "content_stack_panel/button_center_panel/buttons": { type: T.STACK_PANEL, children: string }, + "content_stack_panel/pad_2": { type: T.PANEL, children: string }, + "main_content_panel": { type: T.PANEL, children: 'main_content_stack_panel' }, + "main_content_panel/main_content_stack_panel": { type: T.STACK_PANEL, children: 'image_panel' | 'pad' | 'text_panel' }, + "main_content_panel/main_content_stack_panel/image_panel": { type: T.PANEL, children: string }, + "main_content_panel/main_content_stack_panel/pad": { type: T.PANEL, children: string }, + "main_content_panel/main_content_stack_panel/text_panel": { type: T.PANEL, children: 'text' }, + "main_content_panel/main_content_stack_panel/text_panel/text": { type: T.LABEL, children: string }, + "buttons_panel": { type: T.STACK_PANEL, children: 'more_info_button' | 'pad' | 'renew_subscription_button' }, + "buttons_panel/more_info_button": { type: T.BUTTON, children: string }, + "buttons_panel/pad": { type: T.PANEL, children: string }, + "buttons_panel/renew_subscription_button": { type: T.BUTTON, children: string }, } 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": { type: T.SCREEN, children: string }, + "realms_plus_upgrade_notice_screen": { type: T.SCREEN, children: string }, + "purple_background": { type: T.IMAGE, children: 'bottom_left_particles' | 'top_right_particles' }, + "purple_background/bottom_left_particles": { type: T.IMAGE, children: string }, + "purple_background/top_right_particles": { type: T.IMAGE, children: string }, + "main_background": { type: T.PANEL, children: 'dark_blue' | 'grey_gradient' }, + "main_background/dark_blue": { type: T.IMAGE, children: string }, + "main_background/grey_gradient": { type: T.IMAGE, children: string }, + "dark_blue_background": { type: T.IMAGE, children: string }, + "gradient_image_stack": { type: T.STACK_PANEL, children: 'solid_pink' | 'gradient' }, + "gradient_image_stack/solid_pink": { type: T.IMAGE, children: string }, + "gradient_image_stack/gradient": { type: T.IMAGE, children: string }, + "gradient_content_panel": { type: T.PANEL, children: 'gradient' | 'content_panel' }, + "gradient_content_panel/gradient": { type: T.STACK_PANEL, children: string }, + "gradient_content_panel/content_panel": { type: T.UNKNOWN, children: string }, + "realmsPlus_screen_main_panel": { type: T.INPUT_PANEL, children: string }, + "realmsPlus_main_panel": { type: T.PANEL, children: 'root_panel' | 'popup_dialog_factory' }, + "realmsPlus_main_panel/root_panel": { type: T.PANEL, children: 'main_panel' }, + "realmsPlus_main_panel/root_panel/main_panel": { type: T.STACK_PANEL, children: string }, + "realmsPlus_main_panel/popup_dialog_factory": { type: T.FACTORY, children: string }, + "dialog_content": { type: T.PANEL, children: 'selector_area' | 'content_area' | 'left_right_pane_divider' }, + "dialog_content/selector_area": { type: T.PANEL, children: string }, + "dialog_content/content_area": { type: T.PANEL, children: string }, + "dialog_content/left_right_pane_divider": { type: T.IMAGE, children: string }, + "selector_area": { type: T.PANEL, children: 'scrolling_panel' }, + "selector_area/scrolling_panel": { type: T.PANEL, children: string }, + "scrollable_selector_area_content": { type: T.STACK_PANEL, children: 'realmsPlus_toggle' | 'content_toggle' | 'faq_toggle' | 'toggle_section_divider' | 'buy_now_toggle' | 'xbl_btn_panel' | 'focus_reset_input_panel' }, + "scrollable_selector_area_content/realmsPlus_toggle": { type: T.STACK_PANEL, children: string }, + "scrollable_selector_area_content/content_toggle": { type: T.STACK_PANEL, children: string }, + "scrollable_selector_area_content/faq_toggle": { type: T.STACK_PANEL, children: string }, + "scrollable_selector_area_content/toggle_section_divider": { type: T.STACK_PANEL, children: string }, + "scrollable_selector_area_content/buy_now_toggle": { type: T.STACK_PANEL, children: string }, + "scrollable_selector_area_content/xbl_btn_panel": { type: T.PANEL, children: 'xbl_btn' }, + "scrollable_selector_area_content/xbl_btn_panel/xbl_btn": { type: T.BUTTON, children: string }, + "scrollable_selector_area_content/focus_reset_input_panel": { type: T.INPUT_PANEL, children: string }, + "section_toggle_base": { type: T.PANEL, children: string }, + "tab_button_text": { type: T.LABEL, children: string }, + "toggle_base": { type: T.STACK_PANEL, children: 'toggle' | 'padding' }, + "toggle_base/toggle": { type: T.PANEL, children: string }, + "toggle_base/padding": { type: T.PANEL, children: string }, + "realmsPlus_toggle": { type: T.STACK_PANEL, children: string }, + "content_toggle": { type: T.STACK_PANEL, children: string }, + "faq_toggle": { type: T.STACK_PANEL, children: string }, + "buy_now_toggle": { type: T.STACK_PANEL, children: string }, + "left_right_pane_divider": { type: T.IMAGE, children: string }, + "content_area": { type: T.PANEL, children: 'control' }, + "content_area/control": { type: T.STACK_PANEL, children: 'scrolling_panel' }, + "content_area/control/scrolling_panel": { type: T.PANEL, children: string }, + "section_content_panels": { type: T.STACK_PANEL, children: string }, + "content_section_top_padding": { type: T.PANEL, children: string }, + "section_base": { type: T.STACK_PANEL, children: string }, + "buy_now_content_section": { type: T.STACK_PANEL, children: 'content_section_top_padding' | 'content' }, + "buy_now_content_section/content_section_top_padding": { type: T.PANEL, children: string }, + "buy_now_content_section/content": { type: T.STACK_PANEL, children: string }, + "markdown_background_animated": { type: T.PANEL, children: 'realms_banner' | 'realms_plus_normal' | 'realms_plus_hover' }, + "markdown_background_animated/realms_banner": { type: T.STACK_PANEL, children: string }, + "markdown_background_animated/realms_plus_normal": { type: T.IMAGE, children: string }, + "markdown_background_animated/realms_plus_hover": { type: T.IMAGE, children: string }, + "markdown_background": { type: T.STACK_PANEL, children: 'banner_panel' | 'triangle_panel' }, + "markdown_background/banner_panel": { type: T.PANEL, children: 'banner' }, + "markdown_background/banner_panel/banner": { type: T.IMAGE, children: 'banner_stack_panel' }, + "markdown_background/banner_panel/banner/banner_stack_panel": { type: T.STACK_PANEL, children: '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' }, + "markdown_background/banner_panel/banner/banner_stack_panel/0": { type: T.UNKNOWN, children: string }, + "markdown_background/triangle_panel": { type: T.PANEL, children: 'triangle' }, + "markdown_background/triangle_panel/triangle": { type: T.IMAGE, children: string }, + "empty_label": { type: T.PANEL, children: string }, + "full_width_section_divider": { type: T.STACK_PANEL, children: string }, } 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": { type: T.STACK_PANEL, children: 'content_section_top_padding' | 'content_sections' | 'content_section_bottom_padding' }, + "realmsPlus_content_section/content_section_top_padding": { type: T.PANEL, children: string }, + "realmsPlus_content_section/content_sections": { type: T.STACK_PANEL, children: string }, + "realmsPlus_content_section/content_section_bottom_padding": { type: T.PANEL, children: string }, + "content_pack_types_section": { type: T.STACK_PANEL, children: 'includes_marketplace_pass_wrapper' | 'padding_contentSub' | 'pack_types_wrapper' }, + "content_pack_types_section/includes_marketplace_pass_wrapper": { type: T.PANEL, children: string }, + "content_pack_types_section/padding_contentSub": { type: T.PANEL, children: string }, + "content_pack_types_section/pack_types_wrapper": { type: T.PANEL, children: string }, + "content_packs_included_section": { type: T.STACK_PANEL, children: 'popular_packs' | 'section_divider' }, + "content_packs_included_section/popular_packs": { type: T.STACK_PANEL, children: string }, + "content_packs_included_section/section_divider": { type: T.STACK_PANEL, children: string }, + "persona_row": { type: T.PANEL, children: 'persona' }, + "persona_row/persona": { type: T.STACK_PANEL, children: string }, + "worlds_row": { type: T.STACK_PANEL, children: string }, + "pack_types": { type: T.STACK_PANEL, children: 'middle_row' | 'bottom_row' | 'bottom_contentSub' }, + "pack_types/middle_row": { type: T.PANEL, children: 'worlds_contentSub' | 'textures' }, + "pack_types/middle_row/worlds_contentSub": { type: T.STACK_PANEL, children: string }, + "pack_types/middle_row/textures": { type: T.STACK_PANEL, children: string }, + "pack_types/bottom_row": { type: T.PANEL, children: 'skins_persona_contentSub' | 'mashups' }, + "pack_types/bottom_row/skins_persona_contentSub": { type: T.STACK_PANEL, children: string }, + "pack_types/bottom_row/mashups": { type: T.STACK_PANEL, children: string }, + "pack_types/bottom_contentSub": { type: T.PANEL, children: string }, + "skins": { type: T.STACK_PANEL, children: string }, + "friends_get_access": { type: T.LABEL, children: string }, + "pack_type_row_panel": { type: T.PANEL, children: string }, + "pack_type_description": { type: T.STACK_PANEL, children: 'image_nesting_panel' | 'padding_0' | 'description_nesting_panel' }, + "pack_type_description/image_nesting_panel": { type: T.PANEL, children: 'texture' }, + "pack_type_description/image_nesting_panel/texture": { type: T.UNKNOWN, children: string }, + "pack_type_description/padding_0": { type: T.PANEL, children: string }, + "pack_type_description/description_nesting_panel": { type: T.PANEL, children: 'description_label' }, + "pack_type_description/description_nesting_panel/description_label": { type: T.LABEL, children: string }, + "popular_packs": { type: T.STACK_PANEL, children: 'padding_0' | 'pack_grid' | 'view_all_packs_panel' | 'padding_1' | 'view_character_creator_items_button' | 'padding_2' }, + "popular_packs/padding_0": { type: T.PANEL, children: string }, + "popular_packs/pack_grid": { type: T.STACK_PANEL, children: string }, + "popular_packs/view_all_packs_panel": { type: T.PANEL, children: 'view_all_packs_button' }, + "popular_packs/view_all_packs_panel/view_all_packs_button": { type: T.BUTTON, children: string }, + "popular_packs/padding_1": { type: T.PANEL, children: string }, + "popular_packs/view_character_creator_items_button": { type: T.BUTTON, children: string }, + "popular_packs/padding_2": { type: T.PANEL, children: string }, + "popular_packs_label": { type: T.LABEL, children: string }, + "includes_marketplace_pass": { type: T.PANEL, children: string }, + "includes_marketplace_pass_label": { type: T.LABEL, children: string }, + "packs_collection": { type: T.STACK_PANEL, children: 'row_1' | 'padding_1' | 'row_2' | 'padding_2' }, + "packs_collection/row_1": { type: T.STACK_PANEL, children: 'pack_image_grid_item_0' | 'padding' | 'pack_image_grid_item_1' }, + "packs_collection/row_1/pack_image_grid_item_0": { type: T.PANEL, children: string }, + "packs_collection/row_1/padding": { type: T.PANEL, children: string }, + "packs_collection/row_1/pack_image_grid_item_1": { type: T.PANEL, children: string }, + "packs_collection/padding_1": { type: T.PANEL, children: string }, + "packs_collection/row_2": { type: T.STACK_PANEL, children: 'pack_image_grid_item_0' | 'padding' | 'pack_image_grid_item_1' }, + "packs_collection/row_2/pack_image_grid_item_0": { type: T.PANEL, children: string }, + "packs_collection/row_2/padding": { type: T.PANEL, children: string }, + "packs_collection/row_2/pack_image_grid_item_1": { type: T.PANEL, children: string }, + "packs_collection/padding_2": { type: T.PANEL, children: string }, + "pack_image_grid_item": { type: T.PANEL, children: 'bg' | 'offer_button' }, + "pack_image_grid_item/bg": { type: T.IMAGE, children: 'featured_key_art' | 'progress_loading' }, + "pack_image_grid_item/bg/featured_key_art": { type: T.IMAGE, children: string }, + "pack_image_grid_item/bg/progress_loading": { type: T.PANEL, children: string }, + "pack_image_grid_item/offer_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "pack_image_grid_item/offer_button/default": { type: T.IMAGE, children: string }, + "pack_image_grid_item/offer_button/hover": { type: T.IMAGE, children: string }, + "pack_image_grid_item/offer_button/pressed": { type: T.IMAGE, children: string }, } 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": { type: T.PANEL, children: string }, + "faq_image_local": { type: T.IMAGE, children: string }, + "faq_image_type": { type: T.PANEL, children: '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' }, + "faq_image_type/0": { type: T.UNKNOWN, children: string }, + "faq_text_section_body": { type: T.STACK_PANEL, children: string }, + "faq_text_question": { type: T.LABEL, children: string }, + "faq_text_section": { type: T.STACK_PANEL, children: 'faq_text_question' | 'faq_text_answer' }, + "faq_text_section/faq_text_question": { type: T.LABEL, children: string }, + "faq_text_section/faq_text_answer": { type: T.LABEL, children: string }, + "faq_price_bound_text_section": { type: T.STACK_PANEL, children: 'faq_text_question' | 'faq_text_answer' }, + "faq_price_bound_text_section/faq_text_question": { type: T.LABEL, children: string }, + "faq_price_bound_text_section/faq_text_answer": { type: T.LABEL, children: string }, + "faq_question_body": { type: T.STACK_PANEL, children: '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' }, + "faq_question_body/0": { type: T.UNKNOWN, children: string }, + "faq_question_body_stack": { type: T.STACK_PANEL, children: string }, + "faq_question_body_horz_padding": { type: T.PANEL, children: string }, + "image_left_faq_question_body": { type: T.BUTTON, children: string }, + "image_right_faq_question_body": { type: T.BUTTON, children: string }, + "image_left_faq_question_body_flip": { type: T.PANEL, children: 'faq_question_left' }, + "image_left_faq_question_body_flip/faq_question_left": { type: T.BUTTON, children: string }, + "image_right_faq_question_body_flip": { type: T.PANEL, children: 'faq_question_right' }, + "image_right_faq_question_body_flip/faq_question_right": { type: T.BUTTON, children: string }, + "image_left_faq_price_bound": { type: T.BUTTON, children: string }, + "faq_section_header_space": { type: T.PANEL, children: string }, + "faq_section_divider": { type: T.STACK_PANEL, children: string }, + "faq_content_section": { type: T.STACK_PANEL, children: 'content_section_top_padding_1' | 'faq_header' | 'content_section_top_padding_2' | 'faq_question_1' | 'faq_question_1_divider' | 'faq_question_2' | 'faq_question_2_divider' | 'faq_question_3' | 'faq_question_3_divider' | 'faq_question_4' | 'faq_question_4_divider' | 'faq_question_5' | 'faq_question_5_divider' | 'faq_question_6' | 'faq_question_6_divider' | 'faq_question_7' | 'faq_question_7_divider' | 'faq_question_8' | 'faq_question_8_divider' | 'faq_question_9' | 'faq_question_9_divider' | 'faq_question_10' | 'faq_question_10_divider' | 'faq_question_11' | 'content_section_top_padding_3' }, + "faq_content_section/content_section_top_padding_1": { type: T.PANEL, children: string }, + "faq_content_section/faq_header": { type: T.LABEL, children: string }, + "faq_content_section/content_section_top_padding_2": { type: T.PANEL, children: string }, + "faq_content_section/faq_question_1": { type: T.BUTTON, children: string }, + "faq_content_section/faq_question_1_divider": { type: T.STACK_PANEL, children: string }, + "faq_content_section/faq_question_2": { type: T.BUTTON, children: string }, + "faq_content_section/faq_question_2_divider": { type: T.STACK_PANEL, children: string }, + "faq_content_section/faq_question_3": { type: T.BUTTON, children: string }, + "faq_content_section/faq_question_3_divider": { type: T.STACK_PANEL, children: string }, + "faq_content_section/faq_question_4": { type: T.BUTTON, children: string }, + "faq_content_section/faq_question_4_divider": { type: T.STACK_PANEL, children: string }, + "faq_content_section/faq_question_5": { type: T.PANEL, children: string }, + "faq_content_section/faq_question_5_divider": { type: T.STACK_PANEL, children: string }, + "faq_content_section/faq_question_6": { type: T.PANEL, children: string }, + "faq_content_section/faq_question_6_divider": { type: T.STACK_PANEL, children: string }, + "faq_content_section/faq_question_7": { type: T.PANEL, children: string }, + "faq_content_section/faq_question_7_divider": { type: T.STACK_PANEL, children: string }, + "faq_content_section/faq_question_8": { type: T.PANEL, children: string }, + "faq_content_section/faq_question_8_divider": { type: T.STACK_PANEL, children: string }, + "faq_content_section/faq_question_9": { type: T.PANEL, children: string }, + "faq_content_section/faq_question_9_divider": { type: T.STACK_PANEL, children: string }, + "faq_content_section/faq_question_10": { type: T.PANEL, children: string }, + "faq_content_section/faq_question_10_divider": { type: T.STACK_PANEL, children: string }, + "faq_content_section/faq_question_11": { type: T.PANEL, children: string }, + "faq_content_section/content_section_top_padding_3": { type: T.PANEL, children: string }, } 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": { type: T.STACK_PANEL, children: 'landing_content' }, + "landing_content_section/landing_content": { type: T.STACK_PANEL, children: 'title_stack' | 'vertical_small_spacer_0' | 'divider_panel' | 'vertical_small_spacer_1' | 'info_stack' | 'vertical_small_spacer_2' }, + "landing_content_section/landing_content/title_stack": { type: T.STACK_PANEL, children: string }, + "landing_content_section/landing_content/vertical_small_spacer_0": { type: T.PANEL, children: string }, + "landing_content_section/landing_content/divider_panel": { type: T.PANEL, children: 'section_divider' }, + "landing_content_section/landing_content/divider_panel/section_divider": { type: T.STACK_PANEL, children: string }, + "landing_content_section/landing_content/vertical_small_spacer_1": { type: T.PANEL, children: string }, + "landing_content_section/landing_content/info_stack": { type: T.STACK_PANEL, children: string }, + "landing_content_section/landing_content/vertical_small_spacer_2": { type: T.PANEL, children: string }, + "horizontal_small_spacer": { type: T.PANEL, children: string }, + "vertical_small_spacer": { type: T.PANEL, children: string }, + "vertical_med_spacer": { type: T.PANEL, children: string }, + "vertical_large_spacer": { type: T.PANEL, children: string }, + "title_stack": { type: T.STACK_PANEL, children: 'title_image_panel' | 'gradient_panel' | 'vertical_space' | 'action_button' | 'sign_in_button' | 'vertical_space2' }, + "title_stack/title_image_panel": { type: T.PANEL, children: string }, + "title_stack/gradient_panel": { type: T.PANEL, children: 'label_with_gradient_wrapper' }, + "title_stack/gradient_panel/label_with_gradient_wrapper": { type: T.PANEL, children: string }, + "title_stack/vertical_space": { type: T.PANEL, children: string }, + "title_stack/action_button": { type: T.PANEL, children: string }, + "title_stack/sign_in_button": { type: T.PANEL, children: string }, + "title_stack/vertical_space2": { type: T.PANEL, children: string }, + "label_with_gradient": { type: T.PANEL, children: string }, + "free_trial_text": { type: T.LABEL, children: string }, + "title_image_panel": { type: T.PANEL, children: 'title_image_container' | 'title_image_pre_release_container' }, + "title_image_panel/title_image_container": { type: T.STACK_PANEL, children: 'title_image' | 'title_art_image' }, + "title_image_panel/title_image_container/title_image": { type: T.IMAGE, children: string }, + "title_image_panel/title_image_container/title_art_image": { type: T.IMAGE, children: string }, + "title_image_panel/title_image_pre_release_container": { type: T.PANEL, children: 'title_image_pre_release' }, + "title_image_panel/title_image_pre_release_container/title_image_pre_release": { type: T.IMAGE, children: string }, + "info_stack": { type: T.STACK_PANEL, children: 'info_stack' }, + "info_stack/info_stack": { type: T.PANEL, children: 'info_description_stack_retail' | 'info_description_stack_preview' }, + "info_stack/info_stack/info_description_stack_retail": { type: T.STACK_PANEL, children: string }, + "info_stack/info_stack/info_description_stack_preview": { type: T.PANEL, children: string }, + "info_description_stack_retail": { type: T.STACK_PANEL, children: 'info_section_stack_1' | 'vertical_med_spacer0' | 'divider_centering_panel' | 'vertical_med_spacer1' | 'info_section_stack_recently_added' | 'vertical_med_spacer2' | 'divider_centering_panel2' | 'vertical_med_spacer3' | 'info_section_stack_2' }, + "info_description_stack_retail/info_section_stack_1": { type: T.STACK_PANEL, children: 'horizontal_small_spacer' | 'info_section_text_1_wrapper' }, + "info_description_stack_retail/info_section_stack_1/horizontal_small_spacer": { type: T.PANEL, children: string }, + "info_description_stack_retail/info_section_stack_1/info_section_text_1_wrapper": { type: T.PANEL, children: string }, + "info_description_stack_retail/vertical_med_spacer0": { type: T.PANEL, children: string }, + "info_description_stack_retail/divider_centering_panel": { type: T.PANEL, children: 'divider' }, + "info_description_stack_retail/divider_centering_panel/divider": { type: T.STACK_PANEL, children: string }, + "info_description_stack_retail/vertical_med_spacer1": { type: T.PANEL, children: string }, + "info_description_stack_retail/info_section_stack_recently_added": { type: T.STACK_PANEL, children: 'horizontal_small_spacer' | 'info_section_text_recently_added_wrapper' }, + "info_description_stack_retail/info_section_stack_recently_added/horizontal_small_spacer": { type: T.PANEL, children: string }, + "info_description_stack_retail/info_section_stack_recently_added/info_section_text_recently_added_wrapper": { type: T.PANEL, children: string }, + "info_description_stack_retail/vertical_med_spacer2": { type: T.PANEL, children: string }, + "info_description_stack_retail/divider_centering_panel2": { type: T.PANEL, children: 'divider2' }, + "info_description_stack_retail/divider_centering_panel2/divider2": { type: T.STACK_PANEL, children: string }, + "info_description_stack_retail/vertical_med_spacer3": { type: T.PANEL, children: string }, + "info_description_stack_retail/info_section_stack_2": { type: T.STACK_PANEL, children: 'horizontal_small_spacer' | 'info_section_text_2_wrapper' }, + "info_description_stack_retail/info_section_stack_2/horizontal_small_spacer": { type: T.PANEL, children: string }, + "info_description_stack_retail/info_section_stack_2/info_section_text_2_wrapper": { type: T.PANEL, children: string }, + "info_description_stack_prerelease": { type: T.PANEL, children: 'info_section_stack' }, + "info_description_stack_prerelease/info_section_stack": { type: T.STACK_PANEL, children: 'horizontal_large_spacer' | 'info_section_text_3_wrapper' }, + "info_description_stack_prerelease/info_section_stack/horizontal_large_spacer": { type: T.PANEL, children: string }, + "info_description_stack_prerelease/info_section_stack/info_section_text_3_wrapper": { type: T.PANEL, children: string }, + "info_section_stack": { type: T.STACK_PANEL, children: string }, + "info_section_text_1": { type: T.STACK_PANEL, children: 'info_text_bullet_1' | 'vertical_small_spacer_0' | 'info_text_bullet_2' | 'vertical_small_spacer_1' | 'info_text_bullet_3' }, + "info_section_text_1/info_text_bullet_1": { type: T.STACK_PANEL, children: string }, + "info_section_text_1/vertical_small_spacer_0": { type: T.PANEL, children: string }, + "info_section_text_1/info_text_bullet_2": { type: T.STACK_PANEL, children: string }, + "info_section_text_1/vertical_small_spacer_1": { type: T.PANEL, children: string }, + "info_section_text_1/info_text_bullet_3": { type: T.STACK_PANEL, children: string }, + "info_section_text_recently_added": { type: T.STACK_PANEL, children: 'recently_added_header' | 'info_text_bullet_contentSub' | 'vertical_small_spacer_1' | 'info_text_bullet_1' | 'vertical_small_spacer_2' | 'info_text_bullet_2' }, + "info_section_text_recently_added/recently_added_header": { type: T.LABEL, children: string }, + "info_section_text_recently_added/info_text_bullet_contentSub": { type: T.STACK_PANEL, children: 'vertical_small_spacer_0' | 'info_text_bullet_0' }, + "info_section_text_recently_added/info_text_bullet_contentSub/vertical_small_spacer_0": { type: T.PANEL, children: string }, + "info_section_text_recently_added/info_text_bullet_contentSub/info_text_bullet_0": { type: T.STACK_PANEL, children: string }, + "info_section_text_recently_added/vertical_small_spacer_1": { type: T.PANEL, children: string }, + "info_section_text_recently_added/info_text_bullet_1": { type: T.STACK_PANEL, children: string }, + "info_section_text_recently_added/vertical_small_spacer_2": { type: T.PANEL, children: string }, + "info_section_text_recently_added/info_text_bullet_2": { type: T.STACK_PANEL, children: string }, + "info_section_text_2": { type: T.STACK_PANEL, children: 'info_text_bullet_2' | 'vertical_small_spacer_0' | 'info_text_bullet_3' | 'vertical_small_spacer_1' | 'info_text_bullet_4' | 'info_text_bullet_notFreeTrial' }, + "info_section_text_2/info_text_bullet_2": { type: T.STACK_PANEL, children: string }, + "info_section_text_2/vertical_small_spacer_0": { type: T.PANEL, children: string }, + "info_section_text_2/info_text_bullet_3": { type: T.STACK_PANEL, children: string }, + "info_section_text_2/vertical_small_spacer_1": { type: T.PANEL, children: string }, + "info_section_text_2/info_text_bullet_4": { type: T.STACK_PANEL, children: string }, + "info_section_text_2/info_text_bullet_notFreeTrial": { type: T.STACK_PANEL, children: 'vertical_small_spacer' | 'info_text_bullet_4' }, + "info_section_text_2/info_text_bullet_notFreeTrial/vertical_small_spacer": { type: T.PANEL, children: string }, + "info_section_text_2/info_text_bullet_notFreeTrial/info_text_bullet_4": { type: T.STACK_PANEL, children: string }, + "info_section_text_3": { type: T.STACK_PANEL, children: 'info_text_unbulletted_1' | 'vertical_large_spacer_0' | 'info_text_unbulletted_2' | 'vertical_large_spacer_1' | 'info_text_unbulletted_3' | 'vertical_large_spacer_2' | 'info_text_unbulletted_4' }, + "info_section_text_3/info_text_unbulletted_1": { type: T.PANEL, children: string }, + "info_section_text_3/vertical_large_spacer_0": { type: T.PANEL, children: string }, + "info_section_text_3/info_text_unbulletted_2": { type: T.PANEL, children: string }, + "info_section_text_3/vertical_large_spacer_1": { type: T.PANEL, children: string }, + "info_section_text_3/info_text_unbulletted_3": { type: T.PANEL, children: string }, + "info_section_text_3/vertical_large_spacer_2": { type: T.PANEL, children: string }, + "info_section_text_3/info_text_unbulletted_4": { type: T.PANEL, children: string }, + "info_section_text": { type: T.STACK_PANEL, children: string }, + "info_text_bullet": { type: T.STACK_PANEL, children: 'info_text_bullet_bullet' | 'info_text_bullet_body' }, + "info_text_bullet/info_text_bullet_bullet": { type: T.LABEL, children: string }, + "info_text_bullet/info_text_bullet_body": { type: T.LABEL, children: string }, + "info_text_unbulletted": { type: T.PANEL, children: 'info_text_bullet_body' }, + "info_text_unbulletted/info_text_bullet_body": { type: T.LABEL, children: string }, } 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": { type: T.STACK_PANEL, children: 'description_stack' | 'realm_name' | 'terms_and_conditions' | 'padding_2' | 'buy_button' | 'padding_3' | 'platform_terms_factory' }, + "buy_now_content/description_stack": { type: T.STACK_PANEL, children: string }, + "buy_now_content/realm_name": { type: T.STACK_PANEL, children: string }, + "buy_now_content/terms_and_conditions": { type: T.PANEL, children: string }, + "buy_now_content/padding_2": { type: T.PANEL, children: string }, + "buy_now_content/buy_button": { type: T.PANEL, children: string }, + "buy_now_content/padding_3": { type: T.PANEL, children: string }, + "buy_now_content/platform_terms_factory": { type: T.STACK_PANEL, children: string }, + "content_text_section": { type: T.STACK_PANEL, children: 'text_description_wrapper' | 'padding' }, + "content_text_section/text_description_wrapper": { type: T.PANEL, children: string }, + "content_text_section/padding": { type: T.PANEL, children: string }, + "content_description": { type: T.PANEL, children: 'content_description_label' }, + "content_description/content_description_label": { type: T.LABEL, children: string }, + "trial_image_and_description": { type: T.STACK_PANEL, children: 'realms_image' | 'padding' | 'description_text_wrapper' }, + "trial_image_and_description/realms_image": { type: T.IMAGE, children: string }, + "trial_image_and_description/padding": { type: T.PANEL, children: string }, + "trial_image_and_description/description_text_wrapper": { type: T.PANEL, children: string }, + "description_text": { type: T.LABEL, children: string }, + "title_text": { type: T.LABEL, children: string }, + "title_with_gradient": { type: T.PANEL, children: string }, + "description_stack": { type: T.STACK_PANEL, children: 'title_with_gradient_wrapper' | 'padding' | 'image_and_description' }, + "description_stack/title_with_gradient_wrapper": { type: T.PANEL, children: string }, + "description_stack/padding": { type: T.PANEL, children: string }, + "description_stack/image_and_description": { type: T.STACK_PANEL, children: string }, + "realm_name_stack": { type: T.STACK_PANEL, children: 'realm_name_label' | 'padding_0' | 'realm_name_text_box' }, + "realm_name_stack/realm_name_label": { type: T.LABEL, children: string }, + "realm_name_stack/padding_0": { type: T.PANEL, children: string }, + "realm_name_stack/realm_name_text_box": { type: T.EDIT_BOX, children: string }, + "terms_and_conditions": { type: T.PANEL, children: 'terms_panel' }, + "terms_and_conditions/terms_panel": { type: T.PANEL, children: string }, + "terms_and_conditions_panel": { type: T.PANEL, children: 'name_label' | 'terms_string_panel' }, + "terms_and_conditions_panel/name_label": { type: T.LABEL, children: string }, + "terms_and_conditions_panel/terms_string_panel": { type: T.PANEL, children: 'banner_fill' | 'buttons_stack_panel' }, + "terms_and_conditions_panel/terms_string_panel/banner_fill": { type: T.IMAGE, children: string }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": { type: T.STACK_PANEL, children: 'agree_panel' | 'view_terms_button' | 'privacy_policy_button' }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": { type: T.PANEL, children: 'checkbox_control' }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": { type: T.TOGGLE, children: string }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": { type: T.BUTTON, children: string }, + "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": { type: T.BUTTON, children: string }, + "button_text": { type: T.LABEL, children: string }, + "view_terms_button": { type: T.BUTTON, children: string }, + "privacy_policy_button": { type: T.BUTTON, children: string }, + "buy_button_panel": { type: T.PANEL, children: 'buy_button' }, + "buy_button_panel/buy_button": { type: T.BUTTON, children: string }, + "buy_button_content": { type: T.PANEL, children: 'button_chevron_panel' | 'button_text' }, + "buy_button_content/button_chevron_panel": { type: T.STACK_PANEL, children: 'buy_button_chevron' }, + "buy_button_content/button_chevron_panel/buy_button_chevron": { type: T.PANEL, children: string }, + "buy_button_content/button_text": { type: T.LABEL, children: string }, } 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": { type: T.SCREEN, children: string }, + "view_packs_screen_content": { type: T.PANEL, children: 'main_panel' }, + "view_packs_screen_content/main_panel": { type: T.STACK_PANEL, children: string }, + "realmsPlus_view_packs_screen_main_panel": { type: T.INPUT_PANEL, children: string }, + "main_panel": { type: T.INPUT_PANEL, children: 'offers' | 'progress_loading' }, + "main_panel/offers": { type: T.PANEL, children: string }, + "main_panel/progress_loading": { type: T.PANEL, children: string }, + "scrolling_content_stack": { type: T.STACK_PANEL, children: 'padding_0' | 'store_factory' }, + "scrolling_content_stack/padding_0": { type: T.PANEL, children: string }, + "scrolling_content_stack/store_factory": { type: T.STACK_PANEL, children: string }, } 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": { type: T.SCREEN, children: string }, + "purchase_warning_screen_content": { type: T.PANEL, children: 'main_panel' }, + "purchase_warning_screen_content/main_panel": { type: T.PANEL, children: string }, + "warning_modal_main_panel": { type: T.STACK_PANEL, children: 'art_panel' | 'padding' | 'text_panel' }, + "warning_modal_main_panel/art_panel": { type: T.PANEL, children: 'art' }, + "warning_modal_main_panel/art_panel/art": { type: T.IMAGE, children: string }, + "warning_modal_main_panel/padding": { type: T.PANEL, children: string }, + "warning_modal_main_panel/text_panel": { type: T.STACK_PANEL, children: 'description_panel' | 'padding' | 'checkbox_with_label_panel' }, + "warning_modal_main_panel/text_panel/description_panel": { type: T.PANEL, children: 'description_text' }, + "warning_modal_main_panel/text_panel/description_panel/description_text": { type: T.LABEL, children: string }, + "warning_modal_main_panel/text_panel/padding": { type: T.PANEL, children: string }, + "warning_modal_main_panel/text_panel/checkbox_with_label_panel": { type: T.STACK_PANEL, children: 'checkbox_panel' | 'padding' | 'label_panel' }, + "warning_modal_main_panel/text_panel/checkbox_with_label_panel/checkbox_panel": { type: T.TOGGLE, children: string }, + "warning_modal_main_panel/text_panel/checkbox_with_label_panel/padding": { type: T.PANEL, children: string }, + "warning_modal_main_panel/text_panel/checkbox_with_label_panel/label_panel": { type: T.PANEL, children: 'label_text' }, + "warning_modal_main_panel/text_panel/checkbox_with_label_panel/label_panel/label_text": { type: T.LABEL, children: string }, + "warning_modal_button_panel": { type: T.STACK_PANEL, children: 'back_button' | 'padding' | 'continue_button' }, + "warning_modal_button_panel/back_button": { type: T.BUTTON, children: string }, + "warning_modal_button_panel/padding": { type: T.PANEL, children: string }, + "warning_modal_button_panel/continue_button": { type: T.BUTTON, children: string }, } export type RealmsStoriesTransitionType = { - "realms_stories_transition_screen": T.SCREEN, + "realms_stories_transition_screen": { type: T.SCREEN, children: string }, } 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": { type: T.LABEL, children: string }, + "dispenser_label": { type: T.LABEL, children: string }, + "crafter_label": { type: T.LABEL, children: string }, + "dropper_label": { type: T.LABEL, children: string }, + "hopper_label": { type: T.LABEL, children: string }, + "redstone_input_grid": { type: T.GRID, children: string }, + "redstone_panel_top_half": { type: T.PANEL, children: 'redstone_input_grid' }, + "redstone_panel_top_half/redstone_input_grid": { type: T.GRID, children: string }, + "panel": { type: T.PANEL, children: 'container_gamepad_helpers' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'root_panel' | 'flying_item_renderer' }, + "panel/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "panel/root_panel": { type: T.INPUT_PANEL, children: 'common_panel' | 'redstone_screen_inventory' | 'red_icon' | 'gamepad_cursor' }, + "panel/root_panel/common_panel": { type: T.PANEL, children: string }, + "panel/root_panel/redstone_screen_inventory": { type: T.PANEL, children: 'red_panel' | 'red_bottom_half' | 'hotbar_grid' | 'red_hold_icon' }, + "panel/root_panel/redstone_screen_inventory/red_panel": { type: T.PANEL, children: string }, + "panel/root_panel/redstone_screen_inventory/red_bottom_half": { type: T.PANEL, children: string }, + "panel/root_panel/redstone_screen_inventory/hotbar_grid": { type: T.GRID, children: string }, + "panel/root_panel/redstone_screen_inventory/red_hold_icon": { type: T.BUTTON, children: string }, + "panel/root_panel/red_icon": { type: T.BUTTON, children: string }, + "panel/root_panel/gamepad_cursor": { type: T.BUTTON, children: string }, + "panel/flying_item_renderer": { type: T.CUSTOM, children: string }, + "crafter_input_grid": { type: T.GRID, children: string }, + "cell_image": { type: T.IMAGE, children: string }, + "crafter_highlight_slot": { type: T.IMAGE, children: string }, + "crafter_container_slot_button_prototype": { type: T.BUTTON, children: string }, + "crafter_highlight_slot_panel": { type: T.PANEL, children: 'highlight' | 'white_border' }, + "crafter_highlight_slot_panel/highlight": { type: T.IMAGE, children: 'hover_text' }, + "crafter_highlight_slot_panel/highlight/hover_text": { type: T.CUSTOM, children: string }, + "crafter_highlight_slot_panel/white_border": { type: T.IMAGE, children: string }, + "crafter_enabled_slot_template": { type: T.INPUT_PANEL, children: string }, + "crafter_disabled_slot": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "crafter_disabled_slot/default": { type: T.IMAGE, children: string }, + "crafter_disabled_slot/hover": { type: T.IMAGE, children: string }, + "crafter_disabled_slot/pressed": { type: T.IMAGE, children: string }, + "output_slot_hover_info": { type: T.BUTTON, children: 'hover' | 'output_slot' | 'output_slot_border' | 'output_count' }, + "output_slot_hover_info/hover": { type: T.CUSTOM, children: string }, + "output_slot_hover_info/output_slot": { type: T.CUSTOM, children: string }, + "output_slot_hover_info/output_slot_border": { type: T.IMAGE, children: string }, + "output_slot_hover_info/output_count": { type: T.LABEL, children: string }, + "panel_crafter": { type: T.PANEL, children: 'container_gamepad_helpers' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'root_panel' | 'flying_item_renderer' }, + "panel_crafter/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "panel_crafter/selected_item_details_factory": { type: T.FACTORY, children: string }, + "panel_crafter/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "panel_crafter/root_panel": { type: T.INPUT_PANEL, children: 'common_panel' | 'disabled_slot_0_button' | 'disabled_slot_1_button' | 'disabled_slot_2_button' | 'disabled_slot_3_button' | 'disabled_slot_4_button' | 'disabled_slot_5_button' | 'disabled_slot_6_button' | 'disabled_slot_7_button' | 'disabled_slot_8_button' | 'redstone_screen_inventory' | 'red_icon' | 'gamepad_cursor' }, + "panel_crafter/root_panel/common_panel": { type: T.PANEL, children: string }, + "panel_crafter/root_panel/disabled_slot_0_button": { type: T.BUTTON, children: string }, + "panel_crafter/root_panel/disabled_slot_1_button": { type: T.BUTTON, children: string }, + "panel_crafter/root_panel/disabled_slot_2_button": { type: T.BUTTON, children: string }, + "panel_crafter/root_panel/disabled_slot_3_button": { type: T.BUTTON, children: string }, + "panel_crafter/root_panel/disabled_slot_4_button": { type: T.BUTTON, children: string }, + "panel_crafter/root_panel/disabled_slot_5_button": { type: T.BUTTON, children: string }, + "panel_crafter/root_panel/disabled_slot_6_button": { type: T.BUTTON, children: string }, + "panel_crafter/root_panel/disabled_slot_7_button": { type: T.BUTTON, children: string }, + "panel_crafter/root_panel/disabled_slot_8_button": { type: T.BUTTON, children: string }, + "panel_crafter/root_panel/redstone_screen_inventory": { type: T.PANEL, children: 'crafting_grid' | 'red_bottom_half' | 'hotbar_grid' | 'red_hold_icon' | 'redstone_wire_line' | 'crafter_output' }, + "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid": { type: T.PANEL, children: 'crafter_input_grid' }, + "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid/crafter_input_grid": { type: T.GRID, children: string }, + "panel_crafter/root_panel/redstone_screen_inventory/red_bottom_half": { type: T.PANEL, children: string }, + "panel_crafter/root_panel/redstone_screen_inventory/hotbar_grid": { type: T.GRID, children: string }, + "panel_crafter/root_panel/redstone_screen_inventory/red_hold_icon": { type: T.BUTTON, children: string }, + "panel_crafter/root_panel/redstone_screen_inventory/redstone_wire_line": { type: T.IMAGE, children: string }, + "panel_crafter/root_panel/redstone_screen_inventory/crafter_output": { type: T.BUTTON, children: string }, + "panel_crafter/root_panel/red_icon": { type: T.BUTTON, children: string }, + "panel_crafter/root_panel/gamepad_cursor": { type: T.BUTTON, children: string }, + "panel_crafter/flying_item_renderer": { type: T.CUSTOM, children: string }, + "hopper_screen": { type: T.SCREEN, children: string }, + "dispenser_screen": { type: T.SCREEN, children: string }, + "crafter_screen": { type: T.SCREEN, children: string }, + "dropper_screen": { type: T.SCREEN, children: string }, } 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": { type: T.IMAGE, children: string }, + "gray_image": { type: T.IMAGE, children: string }, + "yellow_image": { type: T.IMAGE, children: string }, + "white_image": { type: T.PANEL, children: 'border' }, + "white_image/border": { type: T.IMAGE, children: string }, + "icon_image": { type: T.IMAGE, children: string }, + "resource_packs_toggle_button_control": { type: T.PANEL, children: 'icon_border' | 'cycling_icon' | 'tab_button_text' }, + "resource_packs_toggle_button_control/icon_border": { type: T.PANEL, children: string }, + "resource_packs_toggle_button_control/cycling_icon": { type: T.IMAGE, children: string }, + "resource_packs_toggle_button_control/tab_button_text": { type: T.LABEL, children: string }, + "resource_packs_section_toggle_base": { type: T.PANEL, children: string }, + "selected_icon_image": { type: T.IMAGE, children: string }, + "available_icon_image": { type: T.IMAGE, children: string }, + "realms_icon_image": { type: T.IMAGE, children: string }, + "unowned_icon_image": { type: T.IMAGE, children: string }, + "invalid_icon_image": { type: T.IMAGE, children: string }, + "minus_image": { type: T.IMAGE, children: string }, + "plus_image": { type: T.IMAGE, children: string }, + "minus_text": { type: T.LABEL, children: string }, + "plus_text": { type: T.LABEL, children: string }, + "store_text": { type: T.LABEL, children: string }, + "error_image": { type: T.IMAGE, children: string }, + "error_image_hover": { type: T.IMAGE, children: string }, + "error_image_panel": { type: T.PANEL, children: 'default' | 'hover' }, + "error_image_panel/default": { type: T.IMAGE, children: string }, + "error_image_panel/hover": { type: T.IMAGE, children: string }, + "warning_image": { type: T.IMAGE, children: string }, + "warning_image_hover": { type: T.IMAGE, children: string }, + "warning_panel": { type: T.PANEL, children: 'default' | 'hover' }, + "warning_panel/default": { type: T.IMAGE, children: string }, + "warning_panel/hover": { type: T.IMAGE, children: string }, + "no_error_image": { type: T.IMAGE, children: string }, + "no_error_image_hover": { type: T.IMAGE, children: string }, + "no_error_panel": { type: T.PANEL, children: 'default' | 'hover' }, + "no_error_panel/default": { type: T.IMAGE, children: string }, + "no_error_panel/hover": { type: T.IMAGE, children: string }, + "up_arrow_image": { type: T.IMAGE, children: string }, + "down_arrow_image": { type: T.IMAGE, children: string }, + "up_arrow_image_hover": { type: T.IMAGE, children: string }, + "down_arrow_image_hover": { type: T.IMAGE, children: string }, + "up_arrow_panel": { type: T.PANEL, children: 'default' | 'hover' }, + "up_arrow_panel/default": { type: T.IMAGE, children: string }, + "up_arrow_panel/hover": { type: T.IMAGE, children: string }, + "up_arrow_wrapper": { type: T.PANEL, children: 'down_arrow' | 'divider_right' }, + "up_arrow_wrapper/down_arrow": { type: T.PANEL, children: string }, + "up_arrow_wrapper/divider_right": { type: T.PANEL, children: string }, + "down_arrow_panel": { type: T.PANEL, children: 'default' | 'hover' }, + "down_arrow_panel/default": { type: T.IMAGE, children: string }, + "down_arrow_panel/hover": { type: T.IMAGE, children: string }, + "down_arrow_wrapper": { type: T.PANEL, children: 'down_arrow' | 'divider_right' }, + "down_arrow_wrapper/down_arrow": { type: T.PANEL, children: string }, + "down_arrow_wrapper/divider_right": { type: T.PANEL, children: string }, + "progress_loading_bars": { type: T.IMAGE, children: string }, + "warning_image_wrapper": { type: T.PANEL, children: 'error_image' | 'warning_image' | 'no_error_panel' | 'progress_loading_bars' }, + "warning_image_wrapper/error_image": { type: T.PANEL, children: string }, + "warning_image_wrapper/warning_image": { type: T.PANEL, children: string }, + "warning_image_wrapper/no_error_panel": { type: T.PANEL, children: string }, + "warning_image_wrapper/progress_loading_bars": { type: T.IMAGE, children: string }, + "tooltip_image_wrapper": { type: T.PANEL, children: 'error_image' | 'warning_image' }, + "tooltip_image_wrapper/error_image": { type: T.IMAGE, children: string }, + "tooltip_image_wrapper/warning_image": { type: T.IMAGE, children: string }, + "options_image": { type: T.IMAGE, children: string }, + "options_image_hover": { type: T.IMAGE, children: string }, + "options_image_panel": { type: T.PANEL, children: 'default' | 'hover' }, + "options_image_panel/default": { type: T.IMAGE, children: string }, + "options_image_panel/hover": { type: T.PANEL, children: 'image' | 'border' }, + "options_image_panel/hover/image": { type: T.IMAGE, children: string }, + "options_image_panel/hover/border": { type: T.IMAGE, children: string }, + "options_wrapper": { type: T.PANEL, children: 'options' | 'divider_right' }, + "options_wrapper/options": { type: T.PANEL, children: string }, + "options_wrapper/divider_right": { type: T.PANEL, children: string }, + "common_pack_button": { type: T.BUTTON, children: string }, + "available_text_panel": { type: T.STACK_PANEL, children: 'name_panel' | 'full_panel' }, + "available_text_panel/name_panel": { type: T.STACK_PANEL, children: 'available_pack_name_label' | 'available_file_size_label' }, + "available_text_panel/name_panel/available_pack_name_label": { type: T.LABEL, children: string }, + "available_text_panel/name_panel/available_file_size_label": { type: T.LABEL, children: string }, + "available_text_panel/full_panel": { type: T.STACK_PANEL, children: 'description_panel' }, + "available_text_panel/full_panel/description_panel": { type: T.PANEL, children: 'available_pack_description_label' }, + "available_text_panel/full_panel/description_panel/available_pack_description_label": { type: T.LABEL, children: string }, + "realms_text_panel": { type: T.STACK_PANEL, children: 'name_panel' | 'description_panel' }, + "realms_text_panel/name_panel": { type: T.STACK_PANEL, children: 'realms_pack_name_label' | 'realms_file_size_label' }, + "realms_text_panel/name_panel/realms_pack_name_label": { type: T.LABEL, children: string }, + "realms_text_panel/name_panel/realms_file_size_label": { type: T.LABEL, children: string }, + "realms_text_panel/description_panel": { type: T.PANEL, children: 'realms_pack_description_label' }, + "realms_text_panel/description_panel/realms_pack_description_label": { type: T.LABEL, children: string }, + "unowned_text_panel": { type: T.STACK_PANEL, children: 'name_panel' | 'description_panel' }, + "unowned_text_panel/name_panel": { type: T.STACK_PANEL, children: 'unowned_pack_name_label' | 'unowned_file_size_label' }, + "unowned_text_panel/name_panel/unowned_pack_name_label": { type: T.LABEL, children: string }, + "unowned_text_panel/name_panel/unowned_file_size_label": { type: T.LABEL, children: string }, + "unowned_text_panel/description_panel": { type: T.PANEL, children: 'unowned_pack_description_label' }, + "unowned_text_panel/description_panel/unowned_pack_description_label": { type: T.LABEL, children: string }, + "selected_text_panel": { type: T.STACK_PANEL, children: 'name_panel' | 'full_panel' }, + "selected_text_panel/name_panel": { type: T.STACK_PANEL, children: 'selected_pack_name_label' | 'selected_file_size_label' | 'active_dot_panel' }, + "selected_text_panel/name_panel/selected_pack_name_label": { type: T.LABEL, children: string }, + "selected_text_panel/name_panel/selected_file_size_label": { type: T.LABEL, children: string }, + "selected_text_panel/name_panel/active_dot_panel": { type: T.PANEL, children: 'active_dot' }, + "selected_text_panel/name_panel/active_dot_panel/active_dot": { type: T.IMAGE, children: string }, + "selected_text_panel/full_panel": { type: T.STACK_PANEL, children: 'warning_line' | 'error_line' | 'expired_line' | 'description_panel' }, + "selected_text_panel/full_panel/warning_line": { type: T.STACK_PANEL, children: 'warning_text' | 'warning_number' }, + "selected_text_panel/full_panel/warning_line/warning_text": { type: T.LABEL, children: string }, + "selected_text_panel/full_panel/warning_line/warning_number": { type: T.LABEL, children: string }, + "selected_text_panel/full_panel/error_line": { type: T.STACK_PANEL, children: 'error_text' | 'error_number' }, + "selected_text_panel/full_panel/error_line/error_text": { type: T.LABEL, children: string }, + "selected_text_panel/full_panel/error_line/error_number": { type: T.LABEL, children: string }, + "selected_text_panel/full_panel/expired_line": { type: T.PANEL, children: 'expired_text' }, + "selected_text_panel/full_panel/expired_line/expired_text": { type: T.LABEL, children: string }, + "selected_text_panel/full_panel/description_panel": { type: T.PANEL, children: 'selected_pack_description_label' }, + "selected_text_panel/full_panel/description_panel/selected_pack_description_label": { type: T.LABEL, children: string }, + "invalid_text_panel": { type: T.STACK_PANEL, children: 'full_panel' }, + "invalid_text_panel/full_panel": { type: T.STACK_PANEL, children: 'error_line' }, + "invalid_text_panel/full_panel/error_line": { type: T.STACK_PANEL, children: 'error_text' | 'error_number' }, + "invalid_text_panel/full_panel/error_line/error_text": { type: T.LABEL, children: string }, + "invalid_text_panel/full_panel/error_line/error_number": { type: T.LABEL, children: string }, + "available_pack_button_layout": { type: T.PANEL, children: 'available_icon_image' | 'text_panel_small' | 'text_panel_full' | 'read_more_button_panel' | 'read_less_button_panel' }, + "available_pack_button_layout/available_icon_image": { type: T.IMAGE, children: string }, + "available_pack_button_layout/text_panel_small": { type: T.STACK_PANEL, children: string }, + "available_pack_button_layout/text_panel_full": { type: T.STACK_PANEL, children: string }, + "available_pack_button_layout/read_more_button_panel": { type: T.PANEL, children: string }, + "available_pack_button_layout/read_less_button_panel": { type: T.PANEL, children: string }, + "available_pack_button_layout_hover": { type: T.PANEL, children: 'hover_small' | 'available_icon_image' | 'text_panel_small' | 'text_panel_full_hover' | 'read_more_button_panel' | 'read_less_button_panel' }, + "available_pack_button_layout_hover/hover_small": { type: T.IMAGE, children: string }, + "available_pack_button_layout_hover/available_icon_image": { type: T.IMAGE, children: string }, + "available_pack_button_layout_hover/text_panel_small": { type: T.STACK_PANEL, children: string }, + "available_pack_button_layout_hover/text_panel_full_hover": { type: T.PANEL, children: 'text_panel_full' }, + "available_pack_button_layout_hover/text_panel_full_hover/text_panel_full": { type: T.STACK_PANEL, children: string }, + "available_pack_button_layout_hover/read_more_button_panel": { type: T.PANEL, children: string }, + "available_pack_button_layout_hover/read_less_button_panel": { type: T.PANEL, children: string }, + "available_pack_button": { type: T.BUTTON, children: 'default' | 'pressed' | 'hover' }, + "available_pack_button/default": { type: T.PANEL, children: string }, + "available_pack_button/pressed": { type: T.PANEL, children: string }, + "available_pack_button/hover": { type: T.PANEL, children: string }, + "realms_pack_button_layout": { type: T.PANEL, children: 'realms_icon_image' | 'text_panel_small' | 'text_panel_full' | 'read_more_button_panel' | 'read_less_button_panel' }, + "realms_pack_button_layout/realms_icon_image": { type: T.IMAGE, children: string }, + "realms_pack_button_layout/text_panel_small": { type: T.STACK_PANEL, children: string }, + "realms_pack_button_layout/text_panel_full": { type: T.STACK_PANEL, children: string }, + "realms_pack_button_layout/read_more_button_panel": { type: T.PANEL, children: string }, + "realms_pack_button_layout/read_less_button_panel": { type: T.PANEL, children: string }, + "realms_pack_button_layout_hover": { type: T.PANEL, children: 'hover_small' | 'realms_icon_image' | 'text_panel_small' | 'text_panel_full_hover' | 'read_more_button_panel' | 'read_less_button_panel' }, + "realms_pack_button_layout_hover/hover_small": { type: T.IMAGE, children: string }, + "realms_pack_button_layout_hover/realms_icon_image": { type: T.IMAGE, children: string }, + "realms_pack_button_layout_hover/text_panel_small": { type: T.STACK_PANEL, children: string }, + "realms_pack_button_layout_hover/text_panel_full_hover": { type: T.PANEL, children: 'text_panel_full' }, + "realms_pack_button_layout_hover/text_panel_full_hover/text_panel_full": { type: T.STACK_PANEL, children: string }, + "realms_pack_button_layout_hover/read_more_button_panel": { type: T.PANEL, children: string }, + "realms_pack_button_layout_hover/read_less_button_panel": { type: T.PANEL, children: string }, + "realms_pack_button": { type: T.BUTTON, children: 'default' | 'pressed' | 'hover' }, + "realms_pack_button/default": { type: T.PANEL, children: string }, + "realms_pack_button/pressed": { type: T.PANEL, children: string }, + "realms_pack_button/hover": { type: T.PANEL, children: string }, + "unowned_pack_button_layout": { type: T.PANEL, children: 'unowned_icon_image' | 'text_panel_small' | 'text_panel_full' | 'read_more_button_panel' | 'read_less_button_panel' }, + "unowned_pack_button_layout/unowned_icon_image": { type: T.IMAGE, children: string }, + "unowned_pack_button_layout/text_panel_small": { type: T.STACK_PANEL, children: string }, + "unowned_pack_button_layout/text_panel_full": { type: T.STACK_PANEL, children: string }, + "unowned_pack_button_layout/read_more_button_panel": { type: T.PANEL, children: string }, + "unowned_pack_button_layout/read_less_button_panel": { type: T.PANEL, children: string }, + "unowned_pack_button_layout_hover": { type: T.PANEL, children: 'hover_small' | 'unowned_icon_image' | 'text_panel_small' | 'text_panel_full_hover' | 'read_more_button_panel' | 'read_less_button_panel' }, + "unowned_pack_button_layout_hover/hover_small": { type: T.IMAGE, children: string }, + "unowned_pack_button_layout_hover/unowned_icon_image": { type: T.IMAGE, children: string }, + "unowned_pack_button_layout_hover/text_panel_small": { type: T.STACK_PANEL, children: string }, + "unowned_pack_button_layout_hover/text_panel_full_hover": { type: T.PANEL, children: 'text_panel_full' }, + "unowned_pack_button_layout_hover/text_panel_full_hover/text_panel_full": { type: T.STACK_PANEL, children: string }, + "unowned_pack_button_layout_hover/read_more_button_panel": { type: T.PANEL, children: string }, + "unowned_pack_button_layout_hover/read_less_button_panel": { type: T.PANEL, children: string }, + "unowned_pack_button": { type: T.BUTTON, children: 'default' | 'pressed' | 'hover' }, + "unowned_pack_button/default": { type: T.PANEL, children: string }, + "unowned_pack_button/pressed": { type: T.PANEL, children: string }, + "unowned_pack_button/hover": { type: T.PANEL, children: string }, + "invalid_pack_button_layout": { type: T.PANEL, children: 'invalid_icon_image' | 'text_panel' }, + "invalid_pack_button_layout/invalid_icon_image": { type: T.IMAGE, children: string }, + "invalid_pack_button_layout/text_panel": { type: T.STACK_PANEL, children: string }, + "invalid_pack_button_layout_hover": { type: T.PANEL, children: 'hover_small' | 'invalid_icon_image' | 'text_panel_full_hover' }, + "invalid_pack_button_layout_hover/hover_small": { type: T.IMAGE, children: string }, + "invalid_pack_button_layout_hover/invalid_icon_image": { type: T.IMAGE, children: string }, + "invalid_pack_button_layout_hover/text_panel_full_hover": { type: T.PANEL, children: 'text_panel' }, + "invalid_pack_button_layout_hover/text_panel_full_hover/text_panel": { type: T.STACK_PANEL, children: string }, + "invalid_pack_button": { type: T.BUTTON, children: 'default' | 'pressed' | 'hover' }, + "invalid_pack_button/default": { type: T.PANEL, children: string }, + "invalid_pack_button/pressed": { type: T.PANEL, children: string }, + "invalid_pack_button/hover": { type: T.PANEL, children: string }, + "empty_resource_pack_button": { type: T.PANEL, children: string }, + "resource_pack_button_padding": { type: T.PANEL, children: string }, + "input_button_panel": { type: T.INPUT_PANEL, children: 'border_image' | 'background' }, + "input_button_panel/border_image": { type: T.IMAGE, children: 'button_panel' }, + "input_button_panel/border_image/button_panel": { type: T.STACK_PANEL, children: 'padding_0' | 'padding_1' | 'padding_2' | 'padding_3' | 'padding_4' }, + "input_button_panel/border_image/button_panel/padding_0": { type: T.PANEL, children: string }, + "input_button_panel/border_image/button_panel/padding_1": { type: T.PANEL, children: string }, + "input_button_panel/border_image/button_panel/padding_2": { type: T.PANEL, children: string }, + "input_button_panel/border_image/button_panel/padding_3": { type: T.PANEL, children: string }, + "input_button_panel/border_image/button_panel/padding_4": { type: T.PANEL, children: string }, + "input_button_panel/background": { type: T.IMAGE, children: string }, + "selected_pack_button_layout": { type: T.PANEL, children: 'selected_icon_image' | 'text_panel_small' | 'text_panel_full' | 'read_more_button_panel' | 'read_less_button_panel' }, + "selected_pack_button_layout/selected_icon_image": { type: T.IMAGE, children: string }, + "selected_pack_button_layout/text_panel_small": { type: T.STACK_PANEL, children: string }, + "selected_pack_button_layout/text_panel_full": { type: T.STACK_PANEL, children: string }, + "selected_pack_button_layout/read_more_button_panel": { type: T.PANEL, children: string }, + "selected_pack_button_layout/read_less_button_panel": { type: T.PANEL, children: string }, + "selected_pack_button_layout_hover": { type: T.PANEL, children: 'hover_small' | 'selected_icon_image' | 'text_panel_small' | 'text_panel_full_hover' | 'read_more_button_panel' | 'read_less_button_panel' }, + "selected_pack_button_layout_hover/hover_small": { type: T.IMAGE, children: string }, + "selected_pack_button_layout_hover/selected_icon_image": { type: T.IMAGE, children: string }, + "selected_pack_button_layout_hover/text_panel_small": { type: T.STACK_PANEL, children: string }, + "selected_pack_button_layout_hover/text_panel_full_hover": { type: T.PANEL, children: 'text_panel_full' }, + "selected_pack_button_layout_hover/text_panel_full_hover/text_panel_full": { type: T.STACK_PANEL, children: string }, + "selected_pack_button_layout_hover/read_more_button_panel": { type: T.PANEL, children: string }, + "selected_pack_button_layout_hover/read_less_button_panel": { type: T.PANEL, children: string }, + "selected_pack_button": { type: T.BUTTON, children: 'default' | 'pressed' | 'hover' }, + "selected_pack_button/default": { type: T.PANEL, children: string }, + "selected_pack_button/pressed": { type: T.PANEL, children: string }, + "selected_pack_button/hover": { type: T.PANEL, children: string }, + "selected_pack_movement_button": { type: T.BUTTON, children: string }, + "selected_pack_transparent_movement_button": { type: T.BUTTON, children: string }, + "selected_pack_minus_button": { type: T.BUTTON, children: string }, + "selected_pack_plus_button": { type: T.BUTTON, children: string }, + "selected_pack_store_button": { type: T.BUTTON, children: string }, + "selected_pack_store_button_fill": { type: T.BUTTON, children: string }, + "selected_pack_up_button": { type: T.BUTTON, children: string }, + "selected_pack_down_button": { type: T.BUTTON, children: string }, + "selected_pack_warning_button": { type: T.BUTTON, children: string }, + "selected_pack_options_button": { type: T.BUTTON, children: string }, + "white_label": { type: T.LABEL, children: string }, + "gray_label": { type: T.LABEL, children: string }, + "suggested_content_offers_title_label": { type: T.LABEL, children: string }, + "available_packs_title_content": { type: T.STACK_PANEL, children: string }, + "realms_packs_title_content": { type: T.STACK_PANEL, children: string }, + "unowned_packs_title_content": { type: T.STACK_PANEL, children: string }, + "selected_packs_title_content": { type: T.STACK_PANEL, children: 'selected_packs_title_label' | 'fill_pad' | 'icon_panel' | 'pad_0' | 'count' | 'pad_1' | 'plus_panel' | 'minus_panel' }, + "selected_packs_title_content/selected_packs_title_label": { type: T.LABEL, children: string }, + "selected_packs_title_content/fill_pad": { type: T.PANEL, children: string }, + "selected_packs_title_content/icon_panel": { type: T.PANEL, children: 'block_icon' }, + "selected_packs_title_content/icon_panel/block_icon": { type: T.IMAGE, children: string }, + "selected_packs_title_content/pad_0": { type: T.PANEL, children: string }, + "selected_packs_title_content/count": { type: T.LABEL, children: string }, + "selected_packs_title_content/pad_1": { type: T.PANEL, children: string }, + "selected_packs_title_content/plus_panel": { type: T.PANEL, children: 'plus' }, + "selected_packs_title_content/plus_panel/plus": { type: T.IMAGE, children: string }, + "selected_packs_title_content/minus_panel": { type: T.PANEL, children: 'minus' }, + "selected_packs_title_content/minus_panel/minus": { type: T.IMAGE, children: string }, + "available_packs_title_button": { type: T.BUTTON, children: string }, + "realms_packs_title_button": { type: T.BUTTON, children: string }, + "unowned_packs_title_button": { type: T.BUTTON, children: string }, + "selected_packs_title_button": { type: T.BUTTON, children: string }, + "name_label": { type: T.LABEL, children: string }, + "size_label": { type: T.LABEL, children: string }, + "description_label": { type: T.LABEL, children: string }, + "pack_label": { type: T.LABEL, children: string }, + "selected_pack_description_label": { type: T.LABEL, children: string }, + "available_pack_description_label": { type: T.LABEL, children: string }, + "realms_pack_description_label": { type: T.LABEL, children: string }, + "unowned_pack_description_label": { type: T.LABEL, children: string }, + "selected_pack_name_label": { type: T.LABEL, children: string }, + "selected_file_size_label": { type: T.LABEL, children: string }, + "available_pack_name_label": { type: T.LABEL, children: string }, + "available_file_size_label": { type: T.LABEL, children: string }, + "realms_pack_name_label": { type: T.LABEL, children: string }, + "realms_file_size_label": { type: T.LABEL, children: string }, + "unowned_pack_name_label": { type: T.LABEL, children: string }, + "unowned_file_size_label": { type: T.LABEL, children: string }, + "invalid_pack_name_label": { type: T.LABEL, children: string }, + "invalid_pack_description_label": { type: T.LABEL, children: string }, + "available_panel": { type: T.PANEL, children: 'selected_packs' }, + "available_panel/selected_packs": { type: T.PANEL, children: string }, + "checkbox_visuals": { type: T.PANEL, children: string }, + "header_control": { type: T.TOGGLE, children: 'header_description_stack_panel' }, + "header_control/header_description_stack_panel": { type: T.STACK_PANEL, children: 'checkbox_visuals' | 'buffer_panel' }, + "header_control/header_description_stack_panel/checkbox_visuals": { type: T.PANEL, children: string }, + "header_control/header_description_stack_panel/buffer_panel": { type: T.PANEL, children: 'label' }, + "header_control/header_description_stack_panel/buffer_panel/label": { type: T.LABEL, children: string }, + "addon_header_control": { type: T.PANEL, children: 'header_description_stack_panel' }, + "addon_header_control/header_description_stack_panel": { type: T.STACK_PANEL, children: 'padding_0' | 'description_center_panel' | 'padding_1' | 'link_center_panel' | 'padding_2' }, + "addon_header_control/header_description_stack_panel/padding_0": { type: T.PANEL, children: string }, + "addon_header_control/header_description_stack_panel/description_center_panel": { type: T.PANEL, children: 'label' }, + "addon_header_control/header_description_stack_panel/description_center_panel/label": { type: T.LABEL, children: string }, + "addon_header_control/header_description_stack_panel/padding_1": { type: T.PANEL, children: string }, + "addon_header_control/header_description_stack_panel/link_center_panel": { type: T.PANEL, children: 'addon_link_button' }, + "addon_header_control/header_description_stack_panel/link_center_panel/addon_link_button": { type: T.BUTTON, children: string }, + "addon_header_control/header_description_stack_panel/padding_2": { type: T.PANEL, children: string }, + "panel_bg": { type: T.PANEL, children: 'black_background' | 'gray' }, + "panel_bg/black_background": { type: T.IMAGE, children: string }, + "panel_bg/gray": { type: T.IMAGE, children: string }, + "addon_panel_bg": { type: T.PANEL, children: 'black_background' | 'yellow' }, + "addon_panel_bg/black_background": { type: T.IMAGE, children: string }, + "addon_panel_bg/yellow": { type: T.IMAGE, children: string }, + "error_panel": { type: T.PANEL, children: 'black_background' }, + "error_panel/black_background": { type: T.IMAGE, children: 'gray' }, + "error_panel/black_background/gray": { type: T.IMAGE, children: 'panel' }, + "error_panel/black_background/gray/panel": { type: T.PANEL, children: 'error_label' }, + "error_panel/black_background/gray/panel/error_label": { type: T.LABEL, children: string }, + "selected_stack_panel": { type: T.STACK_PANEL, children: 'world_template_option_lock_panel' | 'top_panel' | 'offset_0' | 'addon_stacking_warning_panel' | 'offset_1' | 'selected_packs_title_panel' | 'selected_pack_section' | 'offset_2' | 'available_packs_title_panel' | 'available_packs_section' | 'offset_3' | 'realms_packs_title_button' | 'realms_packs_section' | 'offset_4' | 'unowned_packs_title_button' | 'unowned_packs_section' }, + "selected_stack_panel/world_template_option_lock_panel": { type: T.PANEL, children: 'option_info_label' }, + "selected_stack_panel/world_template_option_lock_panel/option_info_label": { type: T.PANEL, children: string }, + "selected_stack_panel/top_panel": { type: T.PANEL, children: 'panel_bg' | 'header_control' }, + "selected_stack_panel/top_panel/panel_bg": { type: T.PANEL, children: string }, + "selected_stack_panel/top_panel/header_control": { type: T.TOGGLE, children: string }, + "selected_stack_panel/offset_0": { type: T.PANEL, children: string }, + "selected_stack_panel/addon_stacking_warning_panel": { type: T.PANEL, children: 'addon_panel_bg' | 'header_control' }, + "selected_stack_panel/addon_stacking_warning_panel/addon_panel_bg": { type: T.PANEL, children: string }, + "selected_stack_panel/addon_stacking_warning_panel/header_control": { type: T.PANEL, children: string }, + "selected_stack_panel/offset_1": { type: T.PANEL, children: string }, + "selected_stack_panel/selected_packs_title_panel": { type: T.STACK_PANEL, children: 'selected_packs_title_button' | 'tooltip' }, + "selected_stack_panel/selected_packs_title_panel/selected_packs_title_button": { type: T.BUTTON, children: string }, + "selected_stack_panel/selected_packs_title_panel/tooltip": { type: T.PANEL, children: 'button' }, + "selected_stack_panel/selected_packs_title_panel/tooltip/button": { type: T.BUTTON, children: string }, + "selected_stack_panel/selected_pack_section": { type: T.STACK_PANEL, children: 'offset' | 'selected_pack_grid' | 'default_item' | 'filler_panel' }, + "selected_stack_panel/selected_pack_section/offset": { type: T.PANEL, children: string }, + "selected_stack_panel/selected_pack_section/selected_pack_grid": { type: T.STACK_PANEL, children: string }, + "selected_stack_panel/selected_pack_section/default_item": { type: T.PANEL, children: 'icon_image' | 'name_panel' | 'description_panel' }, + "selected_stack_panel/selected_pack_section/default_item/icon_image": { type: T.IMAGE, children: string }, + "selected_stack_panel/selected_pack_section/default_item/name_panel": { type: T.PANEL, children: 'white_label' }, + "selected_stack_panel/selected_pack_section/default_item/name_panel/white_label": { type: T.LABEL, children: string }, + "selected_stack_panel/selected_pack_section/default_item/description_panel": { type: T.PANEL, children: 'white_label' }, + "selected_stack_panel/selected_pack_section/default_item/description_panel/white_label": { type: T.LABEL, children: string }, + "selected_stack_panel/selected_pack_section/filler_panel": { type: T.PANEL, children: 'description_label' }, + "selected_stack_panel/selected_pack_section/filler_panel/description_label": { type: T.LABEL, children: string }, + "selected_stack_panel/offset_2": { type: T.PANEL, children: string }, + "selected_stack_panel/available_packs_title_panel": { type: T.STACK_PANEL, children: 'available_packs_title_button' | 'tooltip' }, + "selected_stack_panel/available_packs_title_panel/available_packs_title_button": { type: T.BUTTON, children: string }, + "selected_stack_panel/available_packs_title_panel/tooltip": { type: T.PANEL, children: 'button' }, + "selected_stack_panel/available_packs_title_panel/tooltip/button": { type: T.BUTTON, children: string }, + "selected_stack_panel/available_packs_section": { type: T.STACK_PANEL, children: 'offset' | 'empty_panel' | 'available_pack_grid' | 'invalid_pack_grid' }, + "selected_stack_panel/available_packs_section/offset": { type: T.PANEL, children: string }, + "selected_stack_panel/available_packs_section/empty_panel": { type: T.STACK_PANEL, children: 'no_packs_panel' | 'to_store_button' }, + "selected_stack_panel/available_packs_section/empty_panel/no_packs_panel": { type: T.PANEL, children: 'no_packs_text' }, + "selected_stack_panel/available_packs_section/empty_panel/no_packs_panel/no_packs_text": { type: T.LABEL, children: string }, + "selected_stack_panel/available_packs_section/empty_panel/to_store_button": { type: T.BUTTON, children: string }, + "selected_stack_panel/available_packs_section/available_pack_grid": { type: T.STACK_PANEL, children: string }, + "selected_stack_panel/available_packs_section/invalid_pack_grid": { type: T.STACK_PANEL, children: string }, + "selected_stack_panel/offset_3": { type: T.PANEL, children: string }, + "selected_stack_panel/realms_packs_title_button": { type: T.BUTTON, children: string }, + "selected_stack_panel/realms_packs_section": { type: T.STACK_PANEL, children: 'offset' | 'realms_pack_grid' | 'offset_4' }, + "selected_stack_panel/realms_packs_section/offset": { type: T.PANEL, children: string }, + "selected_stack_panel/realms_packs_section/realms_pack_grid": { type: T.STACK_PANEL, children: string }, + "selected_stack_panel/realms_packs_section/offset_4": { type: T.PANEL, children: string }, + "selected_stack_panel/offset_4": { type: T.PANEL, children: string }, + "selected_stack_panel/unowned_packs_title_button": { type: T.BUTTON, children: string }, + "selected_stack_panel/unowned_packs_section": { type: T.STACK_PANEL, children: 'offset' | 'unowned_pack_grid' | 'to_store_button' | 'offset_4' }, + "selected_stack_panel/unowned_packs_section/offset": { type: T.PANEL, children: string }, + "selected_stack_panel/unowned_packs_section/unowned_pack_grid": { type: T.STACK_PANEL, children: string }, + "selected_stack_panel/unowned_packs_section/to_store_button": { type: T.BUTTON, children: string }, + "selected_stack_panel/unowned_packs_section/offset_4": { type: T.PANEL, children: string }, + "available_stack_panel": { type: T.STACK_PANEL, children: 'available_packs_title_button' | 'available_pack_grid' }, + "available_stack_panel/available_packs_title_button": { type: T.BUTTON, children: string }, + "available_stack_panel/available_pack_grid": { type: T.STACK_PANEL, children: string }, + "pack_background": { type: T.PANEL, children: 'white_image' | 'gray_image' }, + "pack_background/white_image": { type: T.PANEL, children: string }, + "pack_background/gray_image": { type: T.IMAGE, children: string }, + "selected_pack_panel": { type: T.STACK_PANEL, children: 'selected_pack_button' | 'pad_0' | 'center_panel' | 'divider' | 'pad_1' }, + "selected_pack_panel/selected_pack_button": { type: T.BUTTON, children: string }, + "selected_pack_panel/pad_0": { type: T.PANEL, children: string }, + "selected_pack_panel/center_panel": { type: T.PANEL, children: 'visibility_panel' }, + "selected_pack_panel/center_panel/visibility_panel": { type: T.PANEL, children: 'selected_pack_direction_buttons' }, + "selected_pack_panel/center_panel/visibility_panel/selected_pack_direction_buttons": { type: T.INPUT_PANEL, children: string }, + "selected_pack_panel/divider": { type: T.PANEL, children: string }, + "selected_pack_panel/pad_1": { type: T.PANEL, children: string }, + "available_pack_panel": { type: T.STACK_PANEL, children: 'available_pack_button' | 'pad_0' | 'center_panel' | 'divider' | 'pad_1' }, + "available_pack_panel/available_pack_button": { type: T.BUTTON, children: string }, + "available_pack_panel/pad_0": { type: T.PANEL, children: string }, + "available_pack_panel/center_panel": { type: T.PANEL, children: 'available_pack_direction_buttons' }, + "available_pack_panel/center_panel/available_pack_direction_buttons": { type: T.INPUT_PANEL, children: string }, + "available_pack_panel/divider": { type: T.PANEL, children: string }, + "available_pack_panel/pad_1": { type: T.PANEL, children: string }, + "realms_pack_panel": { type: T.STACK_PANEL, children: 'realms_pack_button' | 'pad_0' | 'center_panel' | 'divider' | 'pad_1' }, + "realms_pack_panel/realms_pack_button": { type: T.BUTTON, children: string }, + "realms_pack_panel/pad_0": { type: T.PANEL, children: string }, + "realms_pack_panel/center_panel": { type: T.PANEL, children: 'realms_pack_direction_buttons' }, + "realms_pack_panel/center_panel/realms_pack_direction_buttons": { type: T.INPUT_PANEL, children: string }, + "realms_pack_panel/divider": { type: T.PANEL, children: string }, + "realms_pack_panel/pad_1": { type: T.PANEL, children: string }, + "unowned_pack_panel": { type: T.STACK_PANEL, children: 'unowned_pack_button' | 'pad_0' | 'center_panel' | 'divider' | 'pad_1' }, + "unowned_pack_panel/unowned_pack_button": { type: T.BUTTON, children: string }, + "unowned_pack_panel/pad_0": { type: T.PANEL, children: string }, + "unowned_pack_panel/center_panel": { type: T.PANEL, children: 'realms_pack_direction_buttons' }, + "unowned_pack_panel/center_panel/realms_pack_direction_buttons": { type: T.INPUT_PANEL, children: string }, + "unowned_pack_panel/divider": { type: T.PANEL, children: string }, + "unowned_pack_panel/pad_1": { type: T.PANEL, children: string }, + "invalid_pack_panel": { type: T.STACK_PANEL, children: 'invalid_pack_button' | 'pad_0' | 'divider' | 'pad_1' }, + "invalid_pack_panel/invalid_pack_button": { type: T.BUTTON, children: string }, + "invalid_pack_panel/pad_0": { type: T.PANEL, children: string }, + "invalid_pack_panel/divider": { type: T.PANEL, children: string }, + "invalid_pack_panel/pad_1": { type: T.PANEL, children: string }, + "selected_pack_grid": { type: T.STACK_PANEL, children: string }, + "available_pack_grid": { type: T.STACK_PANEL, children: string }, + "realms_pack_grid": { type: T.STACK_PANEL, children: string }, + "unowned_pack_grid": { type: T.STACK_PANEL, children: string }, + "invalid_pack_grid": { type: T.STACK_PANEL, children: string }, } 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": { type: T.IMAGE, children: string }, + "corner_bl": { type: T.IMAGE, children: string }, + "corner_br": { type: T.IMAGE, children: string }, + "corner_tr": { type: T.IMAGE, children: string }, + "corner_tl": { type: T.IMAGE, children: string }, + "confirm_button": { type: T.BUTTON, children: string }, + "title_text": { type: T.LABEL, children: string }, + "instructions_text": { type: T.PANEL, children: 'inner_label' }, + "instructions_text/inner_label": { type: T.LABEL, children: string }, + "label_button": { type: T.BUTTON, children: string }, + "label_button_hover": { type: T.PANEL, children: 'hover' }, + "label_button_hover/hover": { type: T.IMAGE, children: 'button_hover_text' }, + "label_button_hover/hover/button_hover_text": { type: T.PANEL, children: string }, + "content_panel": { type: T.STACK_PANEL, children: 'safe_zone_slider_all' | 'safe_zone_slider_x' | 'safe_zone_slider_y' | 'screen_position_slider_x' | 'screen_position_slider_y' | 'instruction_text_button' }, + "content_panel/safe_zone_slider_all": { type: T.PANEL, children: string }, + "content_panel/safe_zone_slider_x": { type: T.PANEL, children: string }, + "content_panel/safe_zone_slider_y": { type: T.PANEL, children: string }, + "content_panel/screen_position_slider_x": { type: T.PANEL, children: string }, + "content_panel/screen_position_slider_y": { type: T.PANEL, children: string }, + "content_panel/instruction_text_button": { type: T.BUTTON, children: 'default' | 'pressed' | 'hover' }, + "content_panel/instruction_text_button/default": { type: T.PANEL, children: string }, + "content_panel/instruction_text_button/pressed": { type: T.PANEL, children: string }, + "content_panel/instruction_text_button/hover": { type: T.PANEL, children: string }, + "safe_zone_screen": { type: T.SCREEN, children: 'safe_zone_bounds_markers' | 'main_content_panel' }, + "safe_zone_screen/safe_zone_bounds_markers": { type: T.PANEL, children: 'top_left_marker' | 'top_right_marker' | 'bottom_left_marker' | 'bottom_right_marker' }, + "safe_zone_screen/safe_zone_bounds_markers/top_left_marker": { type: T.IMAGE, children: string }, + "safe_zone_screen/safe_zone_bounds_markers/top_right_marker": { type: T.IMAGE, children: string }, + "safe_zone_screen/safe_zone_bounds_markers/bottom_left_marker": { type: T.IMAGE, children: string }, + "safe_zone_screen/safe_zone_bounds_markers/bottom_right_marker": { type: T.IMAGE, children: string }, + "safe_zone_screen/main_content_panel": { type: T.PANEL, children: 'common_panel' | 'title_text' | 'scrolling_panel' | 'confirm_button' }, + "safe_zone_screen/main_content_panel/common_panel": { type: T.PANEL, children: string }, + "safe_zone_screen/main_content_panel/title_text": { type: T.LABEL, children: string }, + "safe_zone_screen/main_content_panel/scrolling_panel": { type: T.PANEL, children: string }, + "safe_zone_screen/main_content_panel/confirm_button": { type: T.BUTTON, children: string }, } 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": { type: T.PANEL, children: 'common_panel' | 'base_content' | 'inside_content' }, + "progress_panel/common_panel": { type: T.PANEL, children: string }, + "progress_panel/base_content": { type: T.PANEL, children: 'progress_title_text' | 'progress_bar_text' }, + "progress_panel/base_content/progress_title_text": { type: T.LABEL, children: string }, + "progress_panel/base_content/progress_bar_text": { type: T.LABEL, children: string }, + "progress_panel/inside_content": { type: T.STACK_PANEL, children: 'size_label' | 'padding_1' | 'loading_bar_panel' | 'padding_3' }, + "progress_panel/inside_content/size_label": { type: T.LABEL, children: string }, + "progress_panel/inside_content/padding_1": { type: T.PANEL, children: string }, + "progress_panel/inside_content/loading_bar_panel": { type: T.PANEL, children: 'fancy_progress_loading_bars' | 'progress_loading_bars' }, + "progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars": { type: T.PANEL, children: string }, + "progress_panel/inside_content/loading_bar_panel/progress_loading_bars": { type: T.IMAGE, children: string }, + "progress_panel/inside_content/padding_3": { type: T.PANEL, children: string }, + "label": { type: T.LABEL, children: string }, + "base_button": { type: T.BUTTON, children: string }, + "retry_button": { type: T.BUTTON, children: string }, + "go_to_faq_button": { type: T.BUTTON, children: string }, + "next_button": { type: T.BUTTON, children: string }, + "get_started_button": { type: T.BUTTON, children: string }, + "start_transfer_button": { type: T.BUTTON, children: string }, + "finished_main_menu_button": { type: T.BUTTON, children: string }, + "start_transfer_out_of_space_button": { type: T.BUTTON, children: string }, + "continue_out_of_space_button": { type: T.BUTTON, children: string }, + "resume_transfer_button": { type: T.BUTTON, children: string }, + "exit_button": { type: T.BUTTON, children: string }, + "retry_help_button_panel": { type: T.STACK_PANEL, children: 'retry' | 'padding' | 'help' }, + "retry_help_button_panel/retry": { type: T.BUTTON, children: string }, + "retry_help_button_panel/padding": { type: T.PANEL, children: string }, + "retry_help_button_panel/help": { type: T.BUTTON, children: string }, + "modal_no_buttons": { type: T.PANEL, children: string }, + "modal_one_button": { type: T.PANEL, children: string }, + "modal_two_buttons": { type: T.PANEL, children: string }, + "base_child_control": { type: T.PANEL, children: 'scrolling_panel' }, + "base_child_control/scrolling_panel": { type: T.PANEL, children: string }, + "file_size_description": { type: T.STACK_PANEL, children: 'description' | 'padding' | 'size_stack' | 'file_location' }, + "file_size_description/description": { type: T.LABEL, children: string }, + "file_size_description/padding": { type: T.PANEL, children: string }, + "file_size_description/size_stack": { type: T.STACK_PANEL, children: 'file_text' | 'padding_1' | 'file_size_total' | 'padding_2' | 'file_size_available' }, + "file_size_description/size_stack/file_text": { type: T.LABEL, children: string }, + "file_size_description/size_stack/padding_1": { type: T.PANEL, children: string }, + "file_size_description/size_stack/file_size_total": { type: T.LABEL, children: string }, + "file_size_description/size_stack/padding_2": { type: T.PANEL, children: string }, + "file_size_description/size_stack/file_size_available": { type: T.LABEL, children: string }, + "file_size_description/file_location": { type: T.LABEL, children: string }, + "error_icon_and_description": { type: T.STACK_PANEL, children: 'error_image' | 'description' }, + "error_icon_and_description/error_image": { type: T.IMAGE, children: string }, + "error_icon_and_description/description": { type: T.LABEL, children: string }, + "file_size_description_with_error": { type: T.STACK_PANEL, children: 'file_size' | 'padding' | 'error_icon_and_description' }, + "file_size_description_with_error/file_size": { type: T.STACK_PANEL, children: string }, + "file_size_description_with_error/padding": { type: T.PANEL, children: string }, + "file_size_description_with_error/error_icon_and_description": { type: T.STACK_PANEL, children: string }, + "start_transfer": { type: T.PANEL, children: string }, + "start_transfer_content": { type: T.STACK_PANEL, children: string }, + "resume_transfer": { type: T.PANEL, children: string }, + "resume_transfer_content": { type: T.STACK_PANEL, children: 'file_size' }, + "resume_transfer_content/file_size": { type: T.STACK_PANEL, children: string }, + "transfer_error_out_of_space": { type: T.PANEL, children: string }, + "transfer_error_out_of_space_content": { type: T.STACK_PANEL, children: string }, } 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": { type: T.SCREEN, children: string }, + "modal_screen_content": { type: T.PANEL, children: 'modal_progress_panel_no_cancel' | 'popup_dialog_factory' }, + "modal_screen_content/modal_progress_panel_no_cancel": { type: T.PANEL, children: string }, + "modal_screen_content/popup_dialog_factory": { type: T.FACTORY, children: string }, + "start_transfer": { type: T.PANEL, children: string }, + "start_transfer_out_of_space": { type: T.PANEL, children: string }, + "start_transfer_out_of_space_content": { type: T.STACK_PANEL, children: 'base_start_content' | 'padding' | 'error_icon_and_description' }, + "start_transfer_out_of_space_content/base_start_content": { type: T.STACK_PANEL, children: string }, + "start_transfer_out_of_space_content/padding": { type: T.PANEL, children: string }, + "start_transfer_out_of_space_content/error_icon_and_description": { type: T.STACK_PANEL, children: string }, + "finished": { type: T.PANEL, children: string }, + "finished_content": { type: T.STACK_PANEL, children: 'description' }, + "finished_content/description": { type: T.LABEL, children: string }, + "resume_transfer_out_of_space": { type: T.PANEL, children: string }, + "resume_transfer_out_of_space_content": { type: T.STACK_PANEL, children: string }, + "transfer_error": { type: T.PANEL, children: string }, + "transfer_error_content": { type: T.STACK_PANEL, children: 'description' }, + "transfer_error_content/description": { type: T.LABEL, children: string }, + "transfer_error_out_of_space": { type: T.PANEL, children: string }, } 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": { type: T.LABEL, children: string }, + "scoreboard_sidebar_player": { type: T.LABEL, children: string }, + "scoreboard_sidebar": { type: T.PANEL, children: 'main' | 'displayed_objective_background' }, + "scoreboard_sidebar/main": { type: T.IMAGE, children: 'displayed_objective' | 'lists' }, + "scoreboard_sidebar/main/displayed_objective": { type: T.LABEL, children: string }, + "scoreboard_sidebar/main/lists": { type: T.PANEL, children: 'players' | 'horizontal_padding' | 'scores' }, + "scoreboard_sidebar/main/lists/players": { type: T.STACK_PANEL, children: string }, + "scoreboard_sidebar/main/lists/horizontal_padding": { type: T.PANEL, children: string }, + "scoreboard_sidebar/main/lists/scores": { type: T.STACK_PANEL, children: string }, + "scoreboard_sidebar/displayed_objective_background": { type: T.IMAGE, children: string }, + "scoreboard_player_list": { type: T.STACK_PANEL, children: 'vertical_padding_0' | 'social_buttons_panel' | 'vertical_padding_1' | 'permissions_button' | 'vertical_padding_2' | 'players_label' | 'vertical_padding_3' | 'scored_players_grid_panel' | 'vertical_padding_4' | 'unscored_players_grid_panel' | 'vertical_padding_5' | 'invite_players_button_panel' | 'vertical_padding_6' | 'disconnected_from_multiplayer_label_panel' | 'vertical_padding_7' }, + "scoreboard_player_list/vertical_padding_0": { type: T.PANEL, children: string }, + "scoreboard_player_list/social_buttons_panel": { type: T.STACK_PANEL, children: string }, + "scoreboard_player_list/vertical_padding_1": { type: T.PANEL, children: string }, + "scoreboard_player_list/permissions_button": { type: T.BUTTON, children: string }, + "scoreboard_player_list/vertical_padding_2": { type: T.PANEL, children: string }, + "scoreboard_player_list/players_label": { type: T.LABEL, children: string }, + "scoreboard_player_list/vertical_padding_3": { type: T.PANEL, children: string }, + "scoreboard_player_list/scored_players_grid_panel": { type: T.STACK_PANEL, children: string }, + "scoreboard_player_list/vertical_padding_4": { type: T.PANEL, children: string }, + "scoreboard_player_list/unscored_players_grid_panel": { type: T.STACK_PANEL, children: string }, + "scoreboard_player_list/vertical_padding_5": { type: T.PANEL, children: string }, + "scoreboard_player_list/invite_players_button_panel": { type: T.PANEL, children: string }, + "scoreboard_player_list/vertical_padding_6": { type: T.PANEL, children: string }, + "scoreboard_player_list/disconnected_from_multiplayer_label_panel": { type: T.STACK_PANEL, children: string }, + "scoreboard_player_list/vertical_padding_7": { type: T.PANEL, children: string }, + "list_objective_label": { type: T.LABEL, children: string }, + "player_rank_panel": { type: T.PANEL, children: 'player_rank_bg' }, + "player_rank_panel/player_rank_bg": { type: T.IMAGE, children: 'player_rank' }, + "player_rank_panel/player_rank_bg/player_rank": { type: T.LABEL, children: string }, + "player_icon_panel": { type: T.PANEL, children: 'player_icon' | 'permission_icon' }, + "player_icon_panel/player_icon": { type: T.IMAGE, children: 'player_panel_black_border' }, + "player_icon_panel/player_icon/player_panel_black_border": { type: T.IMAGE, children: string }, + "player_icon_panel/permission_icon": { type: T.IMAGE, children: string }, + "player_name": { type: T.LABEL, children: string }, + "player_score": { type: T.LABEL, children: string }, + "player_details": { type: T.STACK_PANEL, children: 'name_panel' | 'score_panel' }, + "player_details/name_panel": { type: T.PANEL, children: 'name' }, + "player_details/name_panel/name": { type: T.LABEL, children: string }, + "player_details/score_panel": { type: T.PANEL, children: 'score' }, + "player_details/score_panel/score": { type: T.LABEL, children: string }, + "player_content": { type: T.STACK_PANEL, children: 'icon' | 'padding' | 'details' }, + "player_content/icon": { type: T.PANEL, children: string }, + "player_content/padding": { type: T.PANEL, children: string }, + "player_content/details": { type: T.STACK_PANEL, children: string }, + "base_player_button": { type: T.BUTTON, children: string }, + "player_panel": { type: T.STACK_PANEL, children: 'rank_base' | 'player_button' }, + "player_panel/rank_base": { type: T.PANEL, children: 'player_rank' }, + "player_panel/rank_base/player_rank": { type: T.PANEL, children: string }, + "player_panel/player_button": { type: T.BUTTON, children: string }, + "players_grid_list": { type: T.STACK_PANEL, children: string }, + "players_unscored_grid_list": { type: T.STACK_PANEL, children: string }, + "players_scored_grid_list": { type: T.STACK_PANEL, children: string }, } 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": { type: T.IMAGE, children: string }, + "screenshot_screen": { type: T.SCREEN, children: string }, + "screenshot_screen_content": { type: T.PANEL, children: 'transparent_background' | 'screenshot_flash' }, + "screenshot_screen_content/transparent_background": { type: T.IMAGE, children: string }, + "screenshot_screen_content/screenshot_flash": { type: T.IMAGE, children: string }, } 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": { type: T.INPUT_PANEL, children: string }, + "popup_dialog__add_on_common_no_buttons": { type: T.INPUT_PANEL, children: 'popup_dialog_bg' | 'popup_dialog_message' | 'close_button' | 'add_on_popup_content_panel' }, + "popup_dialog__add_on_common_no_buttons/popup_dialog_bg": { type: T.IMAGE, children: string }, + "popup_dialog__add_on_common_no_buttons/popup_dialog_message": { type: T.LABEL, children: string }, + "popup_dialog__add_on_common_no_buttons/close_button": { type: T.BUTTON, children: string }, + "popup_dialog__add_on_common_no_buttons/add_on_popup_content_panel": { type: T.PANEL, children: string }, + "popup_dialog__add_on_common_two_buttons": { type: T.INPUT_PANEL, children: 'popup_dialog_bg' | 'popup_dialog_message' | 'close_button' | 'add_on_popup_content_panel' | 'button_copy' | 'button_continue' }, + "popup_dialog__add_on_common_two_buttons/popup_dialog_bg": { type: T.IMAGE, children: string }, + "popup_dialog__add_on_common_two_buttons/popup_dialog_message": { type: T.LABEL, children: string }, + "popup_dialog__add_on_common_two_buttons/close_button": { type: T.BUTTON, children: string }, + "popup_dialog__add_on_common_two_buttons/add_on_popup_content_panel": { type: T.PANEL, children: string }, + "popup_dialog__add_on_common_two_buttons/button_copy": { type: T.BUTTON, children: string }, + "popup_dialog__add_on_common_two_buttons/button_continue": { type: T.BUTTON, children: string }, + "add_on_button_copy": { type: T.BUTTON, children: string }, + "add_on_button_continue": { type: T.BUTTON, children: string }, + "add_on_popup_content_panel": { type: T.PANEL, children: 'popup_content' }, + "add_on_popup_content_panel/popup_content": { type: T.UNKNOWN, children: string }, + "popup_dialog__activate_add_on": { type: T.INPUT_PANEL, children: string }, + "popup_dialog__activate_add_on_select_world": { type: T.INPUT_PANEL, children: string }, + "popup_dialog__copy_local_world": { type: T.INPUT_PANEL, children: string }, + "popup_dialog__copy_realms_world": { type: T.INPUT_PANEL, children: string }, + "copy_local_world_panel": { type: T.STACK_PANEL, children: 'padding_top' | 'text_box' | 'padding_middle' | 'text_box2' }, + "copy_local_world_panel/padding_top": { type: T.PANEL, children: string }, + "copy_local_world_panel/text_box": { type: T.LABEL, children: string }, + "copy_local_world_panel/padding_middle": { type: T.PANEL, children: string }, + "copy_local_world_panel/text_box2": { type: T.LABEL, children: string }, + "copy_realms_world_panel": { type: T.STACK_PANEL, children: 'padding_top' | 'text_box' | 'padding_middle' | 'text_box2' }, + "copy_realms_world_panel/padding_top": { type: T.PANEL, children: string }, + "copy_realms_world_panel/text_box": { type: T.LABEL, children: string }, + "copy_realms_world_panel/padding_middle": { type: T.PANEL, children: string }, + "copy_realms_world_panel/text_box2": { type: T.LABEL, children: string }, + "new_or_existing_world_panel": { type: T.STACK_PANEL, children: 'padding_left' | 'world_icon_existing' | 'padding_middle' | 'world_icon_new' | 'padding_right' }, + "new_or_existing_world_panel/padding_left": { type: T.PANEL, children: string }, + "new_or_existing_world_panel/world_icon_existing": { type: T.STACK_PANEL, children: string }, + "new_or_existing_world_panel/padding_middle": { type: T.PANEL, children: string }, + "new_or_existing_world_panel/world_icon_new": { type: T.STACK_PANEL, children: string }, + "new_or_existing_world_panel/padding_right": { type: T.PANEL, children: string }, + "world_icon_with_button": { type: T.STACK_PANEL, children: 'padding_top' | 'world_icon' | 'button' | 'padding_bottom' }, + "world_icon_with_button/padding_top": { type: T.PANEL, children: string }, + "world_icon_with_button/world_icon": { type: T.PANEL, children: string }, + "world_icon_with_button/button": { type: T.BUTTON, children: string }, + "world_icon_with_button/padding_bottom": { type: T.PANEL, children: string }, + "world_icon_new": { type: T.IMAGE, children: 'plus_button' }, + "world_icon_new/plus_button": { type: T.IMAGE, children: string }, + "world_icon_existing": { type: T.IMAGE, children: string }, + "select_world_panel": { type: T.PANEL, children: string }, + "select_world_list": { type: T.STACK_PANEL, children: 'realms_world_label' | 'realms_world_list' | 'padding_middle' | 'local_world_label' | 'local_world_list' | 'padding_end' }, + "select_world_list/realms_world_label": { type: T.LABEL, children: string }, + "select_world_list/realms_world_list": { type: T.GRID, children: string }, + "select_world_list/padding_middle": { type: T.PANEL, children: string }, + "select_world_list/local_world_label": { type: T.LABEL, children: string }, + "select_world_list/local_world_list": { type: T.GRID, children: string }, + "select_world_list/padding_end": { type: T.PANEL, children: string }, + "local_world_item_button": { type: T.BUTTON, children: string }, + "realms_world_item_button": { type: T.BUTTON, children: string }, + "select_world_screen_content": { type: T.PANEL, children: 'popup_dialog_factory' }, + "select_world_screen_content/popup_dialog_factory": { type: T.FACTORY, children: string }, + "select_world_popup_screen": { type: T.SCREEN, children: string }, } 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": { type: T.SCREEN, children: string }, + "main_screen_content": { type: T.PANEL, children: 'server_form_factory' }, + "main_screen_content/server_form_factory": { type: T.FACTORY, children: string }, + "long_form": { type: T.PANEL, children: string }, + "long_form_panel": { type: T.STACK_PANEL, children: 'scrolling_panel' }, + "long_form_panel/scrolling_panel": { type: T.PANEL, children: string }, + "long_form_scrolling_content": { type: T.STACK_PANEL, children: 'label_offset_panel' | 'padding' | 'wrapping_panel' }, + "long_form_scrolling_content/label_offset_panel": { type: T.PANEL, children: 'main_label' }, + "long_form_scrolling_content/label_offset_panel/main_label": { type: T.LABEL, children: string }, + "long_form_scrolling_content/padding": { type: T.PANEL, children: string }, + "long_form_scrolling_content/wrapping_panel": { type: T.PANEL, children: 'long_form_dynamic_buttons_panel' }, + "long_form_scrolling_content/wrapping_panel/long_form_dynamic_buttons_panel": { type: T.STACK_PANEL, children: string }, + "long_form_dynamic_buttons_panel": { type: T.STACK_PANEL, children: string }, + "dynamic_button": { type: T.STACK_PANEL, children: 'panel_name' | 'form_button' }, + "dynamic_button/panel_name": { type: T.PANEL, children: 'image' | 'progress' }, + "dynamic_button/panel_name/image": { type: T.IMAGE, children: string }, + "dynamic_button/panel_name/progress": { type: T.IMAGE, children: string }, + "dynamic_button/form_button": { type: T.BUTTON, children: string }, + "dynamic_label": { type: T.PANEL, children: string }, + "dynamic_header": { type: T.PANEL, children: string }, + "custom_form": { type: T.PANEL, children: string }, + "custom_form_panel": { type: T.PANEL, children: string }, + "generated_contents": { type: T.STACK_PANEL, children: string }, + "custom_form_scrolling_content": { type: T.STACK_PANEL, children: 'generated_form' | 'submit_button' }, + "custom_form_scrolling_content/generated_form": { type: T.STACK_PANEL, children: string }, + "custom_form_scrolling_content/submit_button": { type: T.BUTTON, children: string }, + "custom_label": { type: T.PANEL, children: string }, + "custom_header": { type: T.PANEL, children: string }, + "custom_toggle": { type: T.PANEL, children: string }, + "custom_slider": { type: T.PANEL, children: string }, + "custom_step_slider": { type: T.PANEL, children: string }, + "custom_dropdown": { type: T.PANEL, children: 'dropdown' }, + "custom_dropdown/dropdown": { type: T.PANEL, children: string }, + "custom_dropdown_content": { type: T.PANEL, children: string }, + "custom_dropdown_radio": { type: T.PANEL, children: string }, + "custom_input": { type: T.PANEL, children: string }, } 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": { type: T.SCREEN, children: string }, + "screen_world_create": { type: T.SCREEN, children: string }, + "screen_template_create": { type: T.SCREEN, children: string }, + "screen_world_edit": { type: T.SCREEN, children: string }, + "screen_controls_and_settings": { type: T.SCREEN, children: string }, + "screen_world_controls_and_settings": { type: T.SCREEN, children: string }, + "screen_realm_controls_and_settings": { type: T.SCREEN, children: string }, + "screen_realm_member_controls_and_settings": { type: T.SCREEN, children: string }, + "screen_realm_settings": { type: T.SCREEN, children: string }, + "screen_world_slot_edit": { type: T.SCREEN, children: string }, + "screen_realm_manage": { type: T.SCREEN, children: string }, + "screen_realm_invite_link_settings": { type: T.SCREEN, children: string }, + "selector_stack_panel": { type: T.STACK_PANEL, children: 'spacer_0' | 'accessibility_button' | 'spacer_1' | 'how_to_play_button' | 'spacer_01' | 'world_selector_pane' | 'realm_selector_pane' | 'controls_and_settings_selector_pane' | 'spacer_24' | 'addons_selector_panel' | 'realms_invite_link_settings_pane' }, + "selector_stack_panel/spacer_0": { type: T.PANEL, children: string }, + "selector_stack_panel/accessibility_button": { type: T.PANEL, children: string }, + "selector_stack_panel/spacer_1": { type: T.PANEL, children: string }, + "selector_stack_panel/how_to_play_button": { type: T.PANEL, children: string }, + "selector_stack_panel/spacer_01": { type: T.PANEL, children: string }, + "selector_stack_panel/world_selector_pane": { type: T.STACK_PANEL, children: string }, + "selector_stack_panel/realm_selector_pane": { type: T.STACK_PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane": { type: T.STACK_PANEL, children: 'spacer_1' | 'spacer_1_no_spatial' | 'selector_group_label_1' | 'keyboard_and_mouse_button' | 'spacer_01' | 'controller_button' | 'spacer_02' | 'switch_controller_button' | 'spacer_03' | 'touch_button' | 'spacer_04' | 'spacer_04_no_spatial' | 'selector_group_label_2' | 'party_button' | 'spacer_05' | 'spacer_05_no_spatial' | 'selector_group_label_3' | 'general_button' | 'spacer_06' | 'video_button' | 'spacer_07' | 'sound_button' | 'spacer_08' | 'account_button' | 'spacer_09' | 'view_subscriptions_button' | 'spacer_10' | 'global_texture_pack_button' | 'spacer_11' | 'storage_management_button' | 'spacer_12' | 'edu_cloud_storage_button' | 'spacer_13' | 'language_button' | 'spacer_14' | 'creator_button' | 'spacer_15' | 'preview_button' | 'spacer_4' | 'spacer_4_no_spatial' | 'selector_group_label_4' | 'debug_button' | 'spacer_16' | 'discovery_debug_button' | 'spacer_17' | 'ui_debug_button' | 'spacer_18' | 'edu_debug_button' | 'spacer_19' | 'marketplace_debug_button' | 'spacer_20' | 'gatherings_debug_button' | 'spacer_21' | 'flighting_debug_button' | 'spacer_22' | 'realms_debug_button' | 'spacer_23' | 'automation_button' }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_1": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_1_no_spatial": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_1": { type: T.LABEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/keyboard_and_mouse_button": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_01": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/controller_button": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_02": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/switch_controller_button": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_03": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/touch_button": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_04": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_04_no_spatial": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_2": { type: T.LABEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/party_button": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_05": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_05_no_spatial": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_3": { type: T.LABEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/general_button": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_06": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/video_button": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_07": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/sound_button": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_08": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/account_button": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_09": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/view_subscriptions_button": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_10": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/global_texture_pack_button": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_11": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/storage_management_button": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_12": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/edu_cloud_storage_button": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_13": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/language_button": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_14": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/creator_button": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_15": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/preview_button": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_4": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_4_no_spatial": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_4": { type: T.LABEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/debug_button": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_16": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/discovery_debug_button": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_17": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/ui_debug_button": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_18": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/edu_debug_button": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_19": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/marketplace_debug_button": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_20": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/gatherings_debug_button": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_21": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/flighting_debug_button": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_22": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/realms_debug_button": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/spacer_23": { type: T.PANEL, children: string }, + "selector_stack_panel/controls_and_settings_selector_pane/automation_button": { type: T.PANEL, children: string }, + "selector_stack_panel/spacer_24": { type: T.PANEL, children: string }, + "selector_stack_panel/addons_selector_panel": { type: T.STACK_PANEL, children: string }, + "selector_stack_panel/realms_invite_link_settings_pane": { type: T.STACK_PANEL, children: string }, + "section_content_panels": { type: T.PANEL, children: 'realm_invite_link_settings_content_panels' | 'world_sections' | 'packs_sections' | 'section_content_panels' | 'general_and_controls_sections' }, + "section_content_panels/realm_invite_link_settings_content_panels": { type: T.PANEL, children: string }, + "section_content_panels/world_sections": { type: T.STACK_PANEL, children: 'game_section' | 'classroom_section_panel' | 'server_section' | 'multiplayer_section' | 'edu_cloud_section' | 'debug_section' }, + "section_content_panels/world_sections/game_section": { type: T.STACK_PANEL, children: string }, + "section_content_panels/world_sections/classroom_section_panel": { type: T.PANEL, children: 'classroom_section' }, + "section_content_panels/world_sections/classroom_section_panel/classroom_section": { type: T.UNKNOWN, children: string }, + "section_content_panels/world_sections/server_section": { type: T.STACK_PANEL, children: string }, + "section_content_panels/world_sections/multiplayer_section": { type: T.STACK_PANEL, children: string }, + "section_content_panels/world_sections/edu_cloud_section": { type: T.STACK_PANEL, children: string }, + "section_content_panels/world_sections/debug_section": { type: T.STACK_PANEL, children: string }, + "section_content_panels/packs_sections": { type: T.STACK_PANEL, children: 'level_texture_pack_section' | 'addon_section' }, + "section_content_panels/packs_sections/level_texture_pack_section": { type: T.STACK_PANEL, children: string }, + "section_content_panels/packs_sections/addon_section": { type: T.STACK_PANEL, children: string }, + "section_content_panels/section_content_panels": { type: T.PANEL, children: string }, + "section_content_panels/general_and_controls_sections": { type: T.STACK_PANEL, children: 'accessibility_section' | 'accessibility_section_ore_ui' | 'keyboard_and_mouse_section' | 'keyboard_and_mouse_section_ore_ui' | 'controller_section' | 'touch_section' | 'party_section' | 'general_tab_section' | 'general_tab_section_ore_ui' | 'account_section' | 'account_section_ore_ui' | 'global_texture_pack_section' | 'storage_management_header' | 'storage_management_section' | 'edu_cloud_storage_section' | 'creator_section' | 'video_section' | 'video_section_ore_ui' | 'view_subscriptions_prerelease_section' | 'view_subscriptions_section' | 'sound_section' | 'sound_section_ore_ui' | 'language_section' | 'language_section_ore_ui' | 'preview_section' | 'debug_section' | 'ui_debug_section' | 'edu_debug_section' | 'marketplace_debug_section' | 'gatherings_debug_section' | 'flighting_debug_section' | 'realms_debug_section' | 'automation_section' | 'discovery_debug_section' | 'how_to_play_section' }, + "section_content_panels/general_and_controls_sections/accessibility_section": { type: T.STACK_PANEL, children: string }, + "section_content_panels/general_and_controls_sections/accessibility_section_ore_ui": { type: T.STACK_PANEL, children: string }, + "section_content_panels/general_and_controls_sections/keyboard_and_mouse_section": { type: T.STACK_PANEL, children: string }, + "section_content_panels/general_and_controls_sections/keyboard_and_mouse_section_ore_ui": { type: T.STACK_PANEL, children: string }, + "section_content_panels/general_and_controls_sections/controller_section": { type: T.STACK_PANEL, children: string }, + "section_content_panels/general_and_controls_sections/touch_section": { type: T.STACK_PANEL, children: string }, + "section_content_panels/general_and_controls_sections/party_section": { type: T.STACK_PANEL, children: string }, + "section_content_panels/general_and_controls_sections/general_tab_section": { type: T.STACK_PANEL, children: string }, + "section_content_panels/general_and_controls_sections/general_tab_section_ore_ui": { type: T.STACK_PANEL, children: string }, + "section_content_panels/general_and_controls_sections/account_section": { type: T.STACK_PANEL, children: string }, + "section_content_panels/general_and_controls_sections/account_section_ore_ui": { type: T.STACK_PANEL, children: string }, + "section_content_panels/general_and_controls_sections/global_texture_pack_section": { type: T.STACK_PANEL, children: string }, + "section_content_panels/general_and_controls_sections/storage_management_header": { type: T.PANEL, children: string }, + "section_content_panels/general_and_controls_sections/storage_management_section": { type: T.PANEL, children: string }, + "section_content_panels/general_and_controls_sections/edu_cloud_storage_section": { type: T.STACK_PANEL, children: string }, + "section_content_panels/general_and_controls_sections/creator_section": { type: T.STACK_PANEL, children: string }, + "section_content_panels/general_and_controls_sections/video_section": { type: T.STACK_PANEL, children: string }, + "section_content_panels/general_and_controls_sections/video_section_ore_ui": { type: T.STACK_PANEL, children: string }, + "section_content_panels/general_and_controls_sections/view_subscriptions_prerelease_section": { type: T.PANEL, children: string }, + "section_content_panels/general_and_controls_sections/view_subscriptions_section": { type: T.STACK_PANEL, children: string }, + "section_content_panels/general_and_controls_sections/sound_section": { type: T.STACK_PANEL, children: string }, + "section_content_panels/general_and_controls_sections/sound_section_ore_ui": { type: T.STACK_PANEL, children: string }, + "section_content_panels/general_and_controls_sections/language_section": { type: T.STACK_PANEL, children: string }, + "section_content_panels/general_and_controls_sections/language_section_ore_ui": { type: T.STACK_PANEL, children: string }, + "section_content_panels/general_and_controls_sections/preview_section": { type: T.STACK_PANEL, children: string }, + "section_content_panels/general_and_controls_sections/debug_section": { type: T.STACK_PANEL, children: string }, + "section_content_panels/general_and_controls_sections/ui_debug_section": { type: T.STACK_PANEL, children: string }, + "section_content_panels/general_and_controls_sections/edu_debug_section": { type: T.STACK_PANEL, children: string }, + "section_content_panels/general_and_controls_sections/marketplace_debug_section": { type: T.STACK_PANEL, children: string }, + "section_content_panels/general_and_controls_sections/gatherings_debug_section": { type: T.STACK_PANEL, children: string }, + "section_content_panels/general_and_controls_sections/flighting_debug_section": { type: T.STACK_PANEL, children: string }, + "section_content_panels/general_and_controls_sections/realms_debug_section": { type: T.STACK_PANEL, children: string }, + "section_content_panels/general_and_controls_sections/automation_section": { type: T.STACK_PANEL, children: string }, + "section_content_panels/general_and_controls_sections/discovery_debug_section": { type: T.STACK_PANEL, children: string }, + "section_content_panels/general_and_controls_sections/how_to_play_section": { type: T.STACK_PANEL, children: string }, + "section_header_panels": { type: T.PANEL, children: 'world_sections' | 'general_and_controls_sections' }, + "section_header_panels/world_sections": { type: T.STACK_PANEL, children: string }, + "section_header_panels/general_and_controls_sections": { type: T.STACK_PANEL, children: string }, + "section_footer_panels": { type: T.PANEL, children: 'world_sections' | 'general_and_controls_sections' }, + "section_footer_panels/world_sections": { type: T.STACK_PANEL, children: string }, + "section_footer_panels/general_and_controls_sections": { type: T.STACK_PANEL, children: 'storage_management_footer' }, + "section_footer_panels/general_and_controls_sections/storage_management_footer": { type: T.PANEL, children: string }, } 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": { type: T.BUTTON, children: string }, + "binding_button_content": { type: T.PANEL, children: 'default_label' }, + "binding_button_content/default_label": { type: T.LABEL, children: string }, + "image_binding_button": { type: T.BUTTON, children: string }, + "image_binding_button_content": { type: T.PANEL, children: 'base_icon_image' | 'default_label' }, + "image_binding_button_content/base_icon_image": { type: T.IMAGE, children: string }, + "image_binding_button_content/default_label": { type: T.LABEL, children: string }, + "arrow_reset": { type: T.IMAGE, children: string }, + "reset_binding_button": { type: T.BUTTON, children: string }, + "keymapping_item_parent": { type: T.STACK_PANEL, children: 'keymapping_row' }, + "keymapping_item_parent/keymapping_row": { type: T.STACK_PANEL, children: string }, + "keymapping_item": { type: T.STACK_PANEL, children: 'option_info_label_control' | 'keymapping_button_0' | 'keymapping_button_1' }, + "keymapping_item/option_info_label_control": { type: T.IMAGE, children: 'keymapping_label_control' }, + "keymapping_item/option_info_label_control/keymapping_label_control": { type: T.LABEL, children: string }, + "keymapping_item/keymapping_button_0": { type: T.BUTTON, children: string }, + "keymapping_item/keymapping_button_1": { type: T.BUTTON, children: string }, + "keymapping_grid": { type: T.GRID, children: string }, + "full_keymapping_grid": { type: T.GRID, children: string }, + "gamepad_mapping_item": { type: T.STACK_PANEL, children: 'option_info_label_control' | 'keymapping_button_0' | 'keymapping_button_1' }, + "gamepad_mapping_item/option_info_label_control": { type: T.IMAGE, children: 'keymapping_label_control' }, + "gamepad_mapping_item/option_info_label_control/keymapping_label_control": { type: T.LABEL, children: string }, + "gamepad_mapping_item/keymapping_button_0": { type: T.BUTTON, children: string }, + "gamepad_mapping_item/keymapping_button_1": { type: T.BUTTON, children: string }, + "gamepad_mapping_grid": { type: T.GRID, children: string }, + "keyboard_and_mouse_button": { type: T.PANEL, children: string }, + "keyboard_and_mouse_section_ore_ui": { type: T.STACK_PANEL, children: 'spacer_0' | 'generic_label' | 'spacer_1' | 'gamepad_helper_label' }, + "keyboard_and_mouse_section_ore_ui/spacer_0": { type: T.PANEL, children: string }, + "keyboard_and_mouse_section_ore_ui/generic_label": { type: T.LABEL, children: string }, + "keyboard_and_mouse_section_ore_ui/spacer_1": { type: T.PANEL, children: string }, + "keyboard_and_mouse_section_ore_ui/gamepad_helper_label": { type: T.LABEL, children: string }, + "keyboard_and_mouse_section": { type: T.STACK_PANEL, children: 'option_slider_0' | 'option_slider_damen' | 'option_toggle_0' | 'option_toggle_1' | 'option_toggle_2' | 'option_toggle_full_keyboard_gameplay' | 'option_toggle_show_keyboard_prompts' | 'option_toggle_show_learning_prompts' | 'keyboard_section' | 'full_keyboard_section' | 'reset_button' }, + "keyboard_and_mouse_section/option_slider_0": { type: T.PANEL, children: string }, + "keyboard_and_mouse_section/option_slider_damen": { type: T.PANEL, children: string }, + "keyboard_and_mouse_section/option_toggle_0": { type: T.PANEL, children: string }, + "keyboard_and_mouse_section/option_toggle_1": { type: T.PANEL, children: string }, + "keyboard_and_mouse_section/option_toggle_2": { type: T.PANEL, children: string }, + "keyboard_and_mouse_section/option_toggle_full_keyboard_gameplay": { type: T.PANEL, children: string }, + "keyboard_and_mouse_section/option_toggle_show_keyboard_prompts": { type: T.PANEL, children: string }, + "keyboard_and_mouse_section/option_toggle_show_learning_prompts": { type: T.PANEL, children: string }, + "keyboard_and_mouse_section/keyboard_section": { type: T.STACK_PANEL, children: 'option_group_label' | 'keyboard_keymapping_grid' | 'control_alt_chords_standard_keyboard_section' }, + "keyboard_and_mouse_section/keyboard_section/option_group_label": { type: T.PANEL, children: string }, + "keyboard_and_mouse_section/keyboard_section/keyboard_keymapping_grid": { type: T.GRID, children: string }, + "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section": { type: T.STACK_PANEL, children: 'option_group_label' | 'control_alt_chord_keymapping_grid' }, + "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/option_group_label": { type: T.PANEL, children: string }, + "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/control_alt_chord_keymapping_grid": { type: T.GRID, children: string }, + "keyboard_and_mouse_section/full_keyboard_section": { type: T.STACK_PANEL, children: 'option_slider_smooth_rotation_speed' | 'full_keyboard_label' | 'keyboard_full_keymapping_grid' | 'control_alt_chords_full_keyboard_section' }, + "keyboard_and_mouse_section/full_keyboard_section/option_slider_smooth_rotation_speed": { type: T.PANEL, children: string }, + "keyboard_and_mouse_section/full_keyboard_section/full_keyboard_label": { type: T.PANEL, children: string }, + "keyboard_and_mouse_section/full_keyboard_section/keyboard_full_keymapping_grid": { type: T.GRID, children: string }, + "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section": { type: T.STACK_PANEL, children: 'option_group_label' | 'control_alt_chord_keymapping_grid' }, + "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/option_group_label": { type: T.PANEL, children: string }, + "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/control_alt_chord_keymapping_grid": { type: T.GRID, children: string }, + "keyboard_and_mouse_section/reset_button": { type: T.BUTTON, children: string }, + "controller_button": { type: T.PANEL, children: string }, + "controller_section": { type: T.STACK_PANEL, children: 'option_slider_0' | 'option_slider_damen' | 'option_toggle_0' | 'option_toggle_1' | 'option_toggle9' | 'option_toggle10' | 'option_toggle_11' | 'gamepad_swap_ab' | 'gamepad_swap_xy' | 'gamepad_cursor_sensitivity_option_slider' | 'option_toggle_3' | 'option_toggle_4' | 'option_toggle_5' | 'option_group_label' | 'gamepad_keymapping_grid' | 'reset_button' }, + "controller_section/option_slider_0": { type: T.PANEL, children: string }, + "controller_section/option_slider_damen": { type: T.PANEL, children: string }, + "controller_section/option_toggle_0": { type: T.PANEL, children: string }, + "controller_section/option_toggle_1": { type: T.PANEL, children: string }, + "controller_section/option_toggle9": { type: T.PANEL, children: string }, + "controller_section/option_toggle10": { type: T.PANEL, children: string }, + "controller_section/option_toggle_11": { type: T.PANEL, children: string }, + "controller_section/gamepad_swap_ab": { type: T.PANEL, children: string }, + "controller_section/gamepad_swap_xy": { type: T.PANEL, children: string }, + "controller_section/gamepad_cursor_sensitivity_option_slider": { type: T.PANEL, children: string }, + "controller_section/option_toggle_3": { type: T.PANEL, children: string }, + "controller_section/option_toggle_4": { type: T.PANEL, children: string }, + "controller_section/option_toggle_5": { type: T.PANEL, children: string }, + "controller_section/option_group_label": { type: T.PANEL, children: string }, + "controller_section/gamepad_keymapping_grid": { type: T.GRID, children: string }, + "controller_section/reset_button": { type: T.BUTTON, children: string }, + "touch_button": { type: T.PANEL, children: string }, + "touch_section": { type: T.STACK_PANEL, children: 'common_touch_settings' | 'reset_button' }, + "touch_section/common_touch_settings": { type: T.STACK_PANEL, children: 'option_enable_new_touch_control_schemes_button' | 'control_scheme_section' | 'modify_control_layout_section' | 'option_slider_0' | 'option_slider_damen' | 'option_show_action_button' | 'option_show_block_select_button' | 'option_toggle_left_handed' | 'option_toggle_auto_jump' | 'option_bool_sprint_on_movement' | 'option_show_toggle_camera_perspective_button' | 'joystick_visibility_dropdown' | 'top_button_scale' | 'sneak_dropdown' | 'option_toggle_destroy_vibration' | 'option_toggle_split_vibration' | 'option_creative_delayed_block_breaking' | 'option_toggle_invert_y' | 'option_always_highlight_hovering_box_in_crosshair' | 'option_toggle_use_touchpad' | 'option_toggle_swap_jump_and_sneak' | 'hotbar_only_touch_toggle' }, + "touch_section/common_touch_settings/option_enable_new_touch_control_schemes_button": { type: T.PANEL, children: string }, + "touch_section/common_touch_settings/control_scheme_section": { type: T.STACK_PANEL, children: 'section_label' | 'padding_0' | 'image_and_button' | 'padding_1' | 'select_control_mode' | 'padding_2' }, + "touch_section/common_touch_settings/control_scheme_section/section_label": { type: T.LABEL, children: string }, + "touch_section/common_touch_settings/control_scheme_section/padding_0": { type: T.PANEL, children: string }, + "touch_section/common_touch_settings/control_scheme_section/image_and_button": { type: T.STACK_PANEL, children: 'images' | 'padding' | 'scheme_button_section' }, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/images": { type: T.PANEL, children: 'touch_image' | 'crosshair_image' | 'classic_image' }, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/touch_image": { type: T.IMAGE, children: string }, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/crosshair_image": { type: T.IMAGE, children: string }, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/classic_image": { type: T.IMAGE, children: string }, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/padding": { type: T.PANEL, children: string }, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section": { type: T.PANEL, children: 'caption' }, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption": { type: T.STACK_PANEL, children: 'selected_label' | 'selected_control' }, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption/selected_label": { type: T.LABEL, children: string }, + "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption/selected_control": { type: T.LABEL, children: string }, + "touch_section/common_touch_settings/control_scheme_section/padding_1": { type: T.PANEL, children: string }, + "touch_section/common_touch_settings/control_scheme_section/select_control_mode": { type: T.BUTTON, children: string }, + "touch_section/common_touch_settings/control_scheme_section/padding_2": { type: T.PANEL, children: string }, + "touch_section/common_touch_settings/modify_control_layout_section": { type: T.STACK_PANEL, children: 'modify_control_layout_button' | 'customize_tooltip_option' | 'padding' }, + "touch_section/common_touch_settings/modify_control_layout_section/modify_control_layout_button": { type: T.BUTTON, children: string }, + "touch_section/common_touch_settings/modify_control_layout_section/customize_tooltip_option": { type: T.PANEL, children: string }, + "touch_section/common_touch_settings/modify_control_layout_section/padding": { type: T.PANEL, children: string }, + "touch_section/common_touch_settings/option_slider_0": { type: T.PANEL, children: string }, + "touch_section/common_touch_settings/option_slider_damen": { type: T.PANEL, children: string }, + "touch_section/common_touch_settings/option_show_action_button": { type: T.PANEL, children: string }, + "touch_section/common_touch_settings/option_show_block_select_button": { type: T.PANEL, children: string }, + "touch_section/common_touch_settings/option_toggle_left_handed": { type: T.PANEL, children: string }, + "touch_section/common_touch_settings/option_toggle_auto_jump": { type: T.PANEL, children: string }, + "touch_section/common_touch_settings/option_bool_sprint_on_movement": { type: T.PANEL, children: string }, + "touch_section/common_touch_settings/option_show_toggle_camera_perspective_button": { type: T.PANEL, children: string }, + "touch_section/common_touch_settings/joystick_visibility_dropdown": { type: T.PANEL, children: string }, + "touch_section/common_touch_settings/top_button_scale": { type: T.PANEL, children: string }, + "touch_section/common_touch_settings/sneak_dropdown": { type: T.PANEL, children: string }, + "touch_section/common_touch_settings/option_toggle_destroy_vibration": { type: T.PANEL, children: string }, + "touch_section/common_touch_settings/option_toggle_split_vibration": { type: T.PANEL, children: string }, + "touch_section/common_touch_settings/option_creative_delayed_block_breaking": { type: T.PANEL, children: string }, + "touch_section/common_touch_settings/option_toggle_invert_y": { type: T.PANEL, children: string }, + "touch_section/common_touch_settings/option_always_highlight_hovering_box_in_crosshair": { type: T.PANEL, children: string }, + "touch_section/common_touch_settings/option_toggle_use_touchpad": { type: T.PANEL, children: string }, + "touch_section/common_touch_settings/option_toggle_swap_jump_and_sneak": { type: T.PANEL, children: string }, + "touch_section/common_touch_settings/hotbar_only_touch_toggle": { type: T.PANEL, children: string }, + "touch_section/reset_button": { type: T.BUTTON, children: string }, + "joystick_visibility_dropdown_content": { type: T.PANEL, children: string }, + "top_button_scale_dropdown_content": { type: T.PANEL, children: string }, + "sneak_dropdown_content": { type: T.PANEL, children: string }, + "customize_tooltip_option_image": { type: T.IMAGE, children: string }, + "customize_tooltip_option_popup": { type: T.IMAGE, children: string }, + "customize_tooltip_option": { type: T.PANEL, children: 'customize_tooltip_option_image' | 'customize_tooltip_option_popup' }, + "customize_tooltip_option/customize_tooltip_option_image": { type: T.IMAGE, children: 'hover_detection_input_panel' }, + "customize_tooltip_option/customize_tooltip_option_image/hover_detection_input_panel": { type: T.INPUT_PANEL, children: string }, + "customize_tooltip_option/customize_tooltip_option_popup": { type: T.IMAGE, children: string }, } 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": { type: T.PANEL, children: string }, + "general_tab_section_ore_ui": { type: T.STACK_PANEL, children: 'spacer_0' | 'generic_label' | 'spacer_1' | 'gamepad_helper_label' }, + "general_tab_section_ore_ui/spacer_0": { type: T.PANEL, children: string }, + "general_tab_section_ore_ui/generic_label": { type: T.LABEL, children: string }, + "general_tab_section_ore_ui/spacer_1": { type: T.PANEL, children: string }, + "general_tab_section_ore_ui/gamepad_helper_label": { type: T.LABEL, children: string }, + "general_tab_section": { type: T.STACK_PANEL, children: 'option_toggle_fail_realms_purchase_fulfillment' | 'network_label_header' | 'paddingCrossPlatform' | 'cross_platform_enabled_toggle' | 'paddingCellularData' | 'mobile_data_option_toggle' | 'paddingWebSockets' | 'websockets_enabled_toggle' | 'websocket_encryption_toggle' | 'paddingAutoUpdate' | 'auto_update_mode_dropdown' | 'paddingAutoUpdateToggle' | 'auto_update_enabled_toggle' | 'paddingGameTipsFeature' | 'tutorial_toggle' | 'tutorial_animation_toggle' | 'tutorial_restart_button' | 'paddingTrustedSkins' | 'only_allow_trusted_skins_toggle' | 'paddingFilterProfanity' | 'filter_profanity_toggle' | 'pause_label_header' | 'paddingPauseFeature' | 'pause_toggle' | 'paddingLinkEduSupport' | 'link_button' | 'paddingDividerSustainability' | 'ecomode_label_header' | 'paddingEcoMode' | 'ecomode_enabled_toggle' | 'paddingDividerTermsCreditsAttribution' | 'dividerTermsCreditsAttribution' | 'paddingDividerTermsCreditsAttributionAfter' | 'paddingTermsNConditions' | 'terms_and_conditions_link_button' | 'paddingCreditsButton' | 'credits_button' | 'paddingAttribution' | 'attribution_link_button' | 'paddingfeedback' | 'feedback_link_button' | 'paddingLicenses' | 'dividerLicenses' | 'paddingLicensesAfter' | 'paddingLicensesHeader' | 'licenses_label_header' | 'paddingLicensedContent' | 'licensed_content_link_button' | 'paddingFontLicense' | 'font_license_popup_button' | 'third_party_copyright_info_label_panel' | 'paddingSectionDividerContentLog' | 'build_info_label_panel' | 'paddingSectionDividerBuildInfo' | 'treatment_ids_label' }, + "general_tab_section/option_toggle_fail_realms_purchase_fulfillment": { type: T.PANEL, children: string }, + "general_tab_section/network_label_header": { type: T.LABEL, children: string }, + "general_tab_section/paddingCrossPlatform": { type: T.PANEL, children: string }, + "general_tab_section/cross_platform_enabled_toggle": { type: T.PANEL, children: string }, + "general_tab_section/paddingCellularData": { type: T.PANEL, children: string }, + "general_tab_section/mobile_data_option_toggle": { type: T.PANEL, children: string }, + "general_tab_section/paddingWebSockets": { type: T.PANEL, children: string }, + "general_tab_section/websockets_enabled_toggle": { type: T.PANEL, children: string }, + "general_tab_section/websocket_encryption_toggle": { type: T.PANEL, children: string }, + "general_tab_section/paddingAutoUpdate": { type: T.PANEL, children: string }, + "general_tab_section/auto_update_mode_dropdown": { type: T.PANEL, children: string }, + "general_tab_section/paddingAutoUpdateToggle": { type: T.PANEL, children: string }, + "general_tab_section/auto_update_enabled_toggle": { type: T.PANEL, children: string }, + "general_tab_section/paddingGameTipsFeature": { type: T.PANEL, children: string }, + "general_tab_section/tutorial_toggle": { type: T.PANEL, children: string }, + "general_tab_section/tutorial_animation_toggle": { type: T.PANEL, children: string }, + "general_tab_section/tutorial_restart_button": { type: T.BUTTON, children: string }, + "general_tab_section/paddingTrustedSkins": { type: T.PANEL, children: string }, + "general_tab_section/only_allow_trusted_skins_toggle": { type: T.PANEL, children: string }, + "general_tab_section/paddingFilterProfanity": { type: T.PANEL, children: string }, + "general_tab_section/filter_profanity_toggle": { type: T.PANEL, children: 'option_generic_core' }, + "general_tab_section/filter_profanity_toggle/option_generic_core": { type: T.STACK_PANEL, children: string }, + "general_tab_section/pause_label_header": { type: T.LABEL, children: string }, + "general_tab_section/paddingPauseFeature": { type: T.PANEL, children: string }, + "general_tab_section/pause_toggle": { type: T.PANEL, children: string }, + "general_tab_section/paddingLinkEduSupport": { type: T.PANEL, children: string }, + "general_tab_section/link_button": { type: T.BUTTON, children: string }, + "general_tab_section/paddingDividerSustainability": { type: T.PANEL, children: string }, + "general_tab_section/ecomode_label_header": { type: T.LABEL, children: string }, + "general_tab_section/paddingEcoMode": { type: T.PANEL, children: string }, + "general_tab_section/ecomode_enabled_toggle": { type: T.PANEL, children: string }, + "general_tab_section/paddingDividerTermsCreditsAttribution": { type: T.PANEL, children: string }, + "general_tab_section/dividerTermsCreditsAttribution": { type: T.PANEL, children: 'section_divider' }, + "general_tab_section/dividerTermsCreditsAttribution/section_divider": { type: T.IMAGE, children: string }, + "general_tab_section/paddingDividerTermsCreditsAttributionAfter": { type: T.PANEL, children: string }, + "general_tab_section/paddingTermsNConditions": { type: T.PANEL, children: string }, + "general_tab_section/terms_and_conditions_link_button": { type: T.BUTTON, children: string }, + "general_tab_section/paddingCreditsButton": { type: T.PANEL, children: string }, + "general_tab_section/credits_button": { type: T.BUTTON, children: string }, + "general_tab_section/paddingAttribution": { type: T.PANEL, children: string }, + "general_tab_section/attribution_link_button": { type: T.BUTTON, children: string }, + "general_tab_section/paddingfeedback": { type: T.PANEL, children: string }, + "general_tab_section/feedback_link_button": { type: T.BUTTON, children: string }, + "general_tab_section/paddingLicenses": { type: T.PANEL, children: string }, + "general_tab_section/dividerLicenses": { type: T.PANEL, children: 'section_divider' }, + "general_tab_section/dividerLicenses/section_divider": { type: T.IMAGE, children: string }, + "general_tab_section/paddingLicensesAfter": { type: T.PANEL, children: string }, + "general_tab_section/paddingLicensesHeader": { type: T.PANEL, children: string }, + "general_tab_section/licenses_label_header": { type: T.LABEL, children: string }, + "general_tab_section/paddingLicensedContent": { type: T.PANEL, children: string }, + "general_tab_section/licensed_content_link_button": { type: T.BUTTON, children: string }, + "general_tab_section/paddingFontLicense": { type: T.PANEL, children: string }, + "general_tab_section/font_license_popup_button": { type: T.BUTTON, children: string }, + "general_tab_section/third_party_copyright_info_label_panel": { type: T.STACK_PANEL, children: 'spacer_0' | 'copyright_label' | 'spacer_1' | 'copyright_icon' }, + "general_tab_section/third_party_copyright_info_label_panel/spacer_0": { type: T.PANEL, children: string }, + "general_tab_section/third_party_copyright_info_label_panel/copyright_label": { type: T.LABEL, children: string }, + "general_tab_section/third_party_copyright_info_label_panel/spacer_1": { type: T.PANEL, children: string }, + "general_tab_section/third_party_copyright_info_label_panel/copyright_icon": { type: T.IMAGE, children: string }, + "general_tab_section/paddingSectionDividerContentLog": { type: T.PANEL, children: string }, + "general_tab_section/build_info_label_panel": { type: T.BUTTON, children: 'build_info_label' }, + "general_tab_section/build_info_label_panel/build_info_label": { type: T.LABEL, children: string }, + "general_tab_section/paddingSectionDividerBuildInfo": { type: T.PANEL, children: string }, + "general_tab_section/treatment_ids_label": { type: T.LABEL, children: string }, + "account_section_ore_ui": { type: T.STACK_PANEL, children: 'spacer_0' | 'generic_label' | 'spacer_1' | 'gamepad_helper_label' }, + "account_section_ore_ui/spacer_0": { type: T.PANEL, children: string }, + "account_section_ore_ui/generic_label": { type: T.LABEL, children: string }, + "account_section_ore_ui/spacer_1": { type: T.PANEL, children: string }, + "account_section_ore_ui/gamepad_helper_label": { type: T.LABEL, children: string }, + "account_button": { type: T.PANEL, children: string }, + "view_account_errors_button_content": { type: T.LABEL, children: string }, + "switch_accounts_button_content": { type: T.STACK_PANEL, children: 'padded_icon' | 'padded_label' }, + "switch_accounts_button_content/padded_icon": { type: T.PANEL, children: 'icon' }, + "switch_accounts_button_content/padded_icon/icon": { type: T.IMAGE, children: string }, + "switch_accounts_button_content/padded_label": { type: T.PANEL, children: 'label' }, + "switch_accounts_button_content/padded_label/label": { type: T.LABEL, children: string }, + "sign_out_button_content": { type: T.STACK_PANEL, children: 'padded_label' }, + "sign_out_button_content/padded_label": { type: T.PANEL, children: 'label' }, + "sign_out_button_content/padded_label/label": { type: T.LABEL, children: string }, + "switch_accounts_panel": { type: T.STACK_PANEL, children: 'name_label' | 'paddingSwitchAccounts' | 'switch_accounts' }, + "switch_accounts_panel/name_label": { type: T.LABEL, children: string }, + "switch_accounts_panel/paddingSwitchAccounts": { type: T.PANEL, children: string }, + "switch_accounts_panel/switch_accounts": { type: T.BUTTON, children: string }, + "sign_out_panel": { type: T.STACK_PANEL, children: 'sign_out' }, + "sign_out_panel/sign_out": { type: T.BUTTON, children: string }, + "sign_out_fail_popup": { type: T.INPUT_PANEL, children: string }, + "sign_out_fail_body_panel": { type: T.PANEL, children: string }, + "sign_out_fail_body_content_stack": { type: T.STACK_PANEL, children: 'body_text_centering_panel1' | 'body_text_centering_panel2' | 'padding1' | 'learn_more_button' | 'padding2' | 'close_button' }, + "sign_out_fail_body_content_stack/body_text_centering_panel1": { type: T.PANEL, children: 'body_text1' }, + "sign_out_fail_body_content_stack/body_text_centering_panel1/body_text1": { type: T.LABEL, children: string }, + "sign_out_fail_body_content_stack/body_text_centering_panel2": { type: T.PANEL, children: 'body_text2' }, + "sign_out_fail_body_content_stack/body_text_centering_panel2/body_text2": { type: T.LABEL, children: string }, + "sign_out_fail_body_content_stack/padding1": { type: T.PANEL, children: string }, + "sign_out_fail_body_content_stack/learn_more_button": { type: T.BUTTON, children: string }, + "sign_out_fail_body_content_stack/padding2": { type: T.PANEL, children: string }, + "sign_out_fail_body_content_stack/close_button": { type: T.BUTTON, children: string }, + "account_section": { type: T.STACK_PANEL, children: 'use_edu_remember_me' | 'paddingUseSSO' | 'switch_accounts' | 'sign_out' | 'paddingNameControls' | 'name_controls' | 'paddingSignInControls' | 'signin_controls' | 'paddingGamerTagControls' | 'gamertag_controls' | 'paddingClearMSAToken' | 'clear_msa_token' | 'paddingUnlinkMSAAccount' | 'unlink_msa_account' | 'unlink_msa_account_nx' | 'paddingDeleteAccount' | 'delete_account' | 'paddingUseRemoteConnect' | 'remote_connect_toggle' | 'paddingInfoLabels' | 'account_info_buttom' }, + "account_section/use_edu_remember_me": { type: T.PANEL, children: string }, + "account_section/paddingUseSSO": { type: T.PANEL, children: string }, + "account_section/switch_accounts": { type: T.STACK_PANEL, children: string }, + "account_section/sign_out": { type: T.STACK_PANEL, children: string }, + "account_section/paddingNameControls": { type: T.PANEL, children: string }, + "account_section/name_controls": { type: T.PANEL, children: string }, + "account_section/paddingSignInControls": { type: T.PANEL, children: string }, + "account_section/signin_controls": { type: T.PANEL, children: string }, + "account_section/paddingGamerTagControls": { type: T.PANEL, children: string }, + "account_section/gamertag_controls": { type: T.PANEL, children: string }, + "account_section/paddingClearMSAToken": { type: T.PANEL, children: string }, + "account_section/clear_msa_token": { type: T.PANEL, children: 'clear_msa_token_button' }, + "account_section/clear_msa_token/clear_msa_token_button": { type: T.BUTTON, children: string }, + "account_section/paddingUnlinkMSAAccount": { type: T.PANEL, children: string }, + "account_section/unlink_msa_account": { type: T.BUTTON, children: string }, + "account_section/unlink_msa_account_nx": { type: T.BUTTON, children: string }, + "account_section/paddingDeleteAccount": { type: T.PANEL, children: string }, + "account_section/delete_account": { type: T.BUTTON, children: string }, + "account_section/paddingUseRemoteConnect": { type: T.PANEL, children: string }, + "account_section/remote_connect_toggle": { type: T.PANEL, children: string }, + "account_section/paddingInfoLabels": { type: T.PANEL, children: string }, + "account_section/account_info_buttom": { type: T.BUTTON, children: 'account_info_label' }, + "account_section/account_info_buttom/account_info_label": { type: T.LABEL, children: string }, + "name_controls": { type: T.STACK_PANEL, children: 'option_text_edit_control' }, + "name_controls/option_text_edit_control": { type: T.EDIT_BOX, children: string }, + "signin_controls": { type: T.STACK_PANEL, children: 'sign_in' }, + "signin_controls/sign_in": { type: T.PANEL, children: 'action_button' }, + "signin_controls/sign_in/action_button": { type: T.BUTTON, children: string }, + "signin_subscription": { type: T.STACK_PANEL, children: 'sign_in' }, + "signin_subscription/sign_in": { type: T.PANEL, children: 'please_signin_label' }, + "signin_subscription/sign_in/please_signin_label": { type: T.LABEL, children: string }, + "gamertag_controls": { type: T.STACK_PANEL, children: 'gamertag_label' | 'paddingXboxAccountButtons' | 'xboxlive_deep_link_buttons' | 'paddingSignOut' | 'realms_invites' | 'sign_out' | 'offline_token_authorization' }, + "gamertag_controls/gamertag_label": { type: T.STACK_PANEL, children: 'panel_descriptor' | 'spacer' | 'gamerpic' | 'spacer_2' | 'panel_gamertag' }, + "gamertag_controls/gamertag_label/panel_descriptor": { type: T.PANEL, children: 'label_descriptor' }, + "gamertag_controls/gamertag_label/panel_descriptor/label_descriptor": { type: T.LABEL, children: string }, + "gamertag_controls/gamertag_label/spacer": { type: T.PANEL, children: string }, + "gamertag_controls/gamertag_label/gamerpic": { type: T.CUSTOM, children: string }, + "gamertag_controls/gamertag_label/spacer_2": { type: T.PANEL, children: string }, + "gamertag_controls/gamertag_label/panel_gamertag": { type: T.PANEL, children: 'gamertag_label' }, + "gamertag_controls/gamertag_label/panel_gamertag/gamertag_label": { type: T.LABEL, children: string }, + "gamertag_controls/paddingXboxAccountButtons": { type: T.PANEL, children: string }, + "gamertag_controls/xboxlive_deep_link_buttons": { type: T.PANEL, children: 'change_gamertag_button' | 'change_gamertag_button_mobile' | 'manage_account_button' | 'manage_account_button_mobile' | 'paddingXboxSettingsPrivacyControl' | 'link_button' }, + "gamertag_controls/xboxlive_deep_link_buttons/change_gamertag_button": { type: T.BUTTON, children: string }, + "gamertag_controls/xboxlive_deep_link_buttons/change_gamertag_button_mobile": { type: T.BUTTON, children: string }, + "gamertag_controls/xboxlive_deep_link_buttons/manage_account_button": { type: T.BUTTON, children: string }, + "gamertag_controls/xboxlive_deep_link_buttons/manage_account_button_mobile": { type: T.BUTTON, children: string }, + "gamertag_controls/xboxlive_deep_link_buttons/paddingXboxSettingsPrivacyControl": { type: T.PANEL, children: string }, + "gamertag_controls/xboxlive_deep_link_buttons/link_button": { type: T.BUTTON, children: string }, + "gamertag_controls/paddingSignOut": { type: T.PANEL, children: string }, + "gamertag_controls/realms_invites": { type: T.PANEL, children: 'check_realms_invites_button' }, + "gamertag_controls/realms_invites/check_realms_invites_button": { type: T.BUTTON, children: string }, + "gamertag_controls/sign_out": { type: T.PANEL, children: 'action_button' }, + "gamertag_controls/sign_out/action_button": { type: T.BUTTON, children: string }, + "gamertag_controls/offline_token_authorization": { type: T.PANEL, children: 'request_psn_authorization_button' }, + "gamertag_controls/offline_token_authorization/request_psn_authorization_button": { type: T.BUTTON, children: string }, + "auto_update_mode_dropdown_content": { type: T.PANEL, children: string }, + "global_texture_pack_button": { type: T.PANEL, children: string }, + "global_texture_pack_section": { type: T.STACK_PANEL, children: string }, + "storage_management_button": { type: T.PANEL, children: string }, + "storage_management_section": { type: T.PANEL, children: string }, + "storage_management_header": { type: T.PANEL, children: string }, + "storage_management_footer": { type: T.PANEL, children: string }, + "edu_cloud_storage_button": { type: T.PANEL, children: string }, + "edu_cloud_storage_section": { type: T.STACK_PANEL, children: 'spacing1' | 'edu_cloud_backup_toggle' | 'spacing2' | 'body_wrapper_panel' | 'spacing3' | 'edu_cloud_onedrive_button' | 'spacing4' | 'edu_cloud_learn_more_wrapper_panel' }, + "edu_cloud_storage_section/spacing1": { type: T.PANEL, children: string }, + "edu_cloud_storage_section/edu_cloud_backup_toggle": { type: T.PANEL, children: string }, + "edu_cloud_storage_section/spacing2": { type: T.PANEL, children: string }, + "edu_cloud_storage_section/body_wrapper_panel": { type: T.PANEL, children: 'tts_border' | 'edu_cloud_storage_body_label' }, + "edu_cloud_storage_section/body_wrapper_panel/tts_border": { type: T.BUTTON, children: string }, + "edu_cloud_storage_section/body_wrapper_panel/edu_cloud_storage_body_label": { type: T.LABEL, children: string }, + "edu_cloud_storage_section/spacing3": { type: T.PANEL, children: string }, + "edu_cloud_storage_section/edu_cloud_onedrive_button": { type: T.BUTTON, children: string }, + "edu_cloud_storage_section/spacing4": { type: T.PANEL, children: string }, + "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel": { type: T.STACK_PANEL, children: 'learn_more_button' | 'padded_icon' }, + "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/learn_more_button": { type: T.BUTTON, children: string }, + "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/padded_icon": { type: T.PANEL, children: 'icon' }, + "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/padded_icon/icon": { type: T.IMAGE, children: string }, + "edu_cloud_onedrive_button_content": { type: T.STACK_PANEL, children: 'padded_label' | 'padded_icon' }, + "edu_cloud_onedrive_button_content/padded_label": { type: T.PANEL, children: 'label' }, + "edu_cloud_onedrive_button_content/padded_label/label": { type: T.LABEL, children: string }, + "edu_cloud_onedrive_button_content/padded_icon": { type: T.PANEL, children: 'icon' }, + "edu_cloud_onedrive_button_content/padded_icon/icon": { type: T.IMAGE, children: string }, + "edu_cloud_onedrive_error_popup": { type: T.INPUT_PANEL, children: string }, + "edu_cloud_onedrive_error_content": { type: T.STACK_PANEL, children: 'body_text_centering_panel2' | 'padding2' | 'learn_more_button' | 'padding3' | 'ok_button' }, + "edu_cloud_onedrive_error_content/body_text_centering_panel2": { type: T.PANEL, children: 'body_text2' }, + "edu_cloud_onedrive_error_content/body_text_centering_panel2/body_text2": { type: T.LABEL, children: string }, + "edu_cloud_onedrive_error_content/padding2": { type: T.PANEL, children: string }, + "edu_cloud_onedrive_error_content/learn_more_button": { type: T.BUTTON, children: string }, + "edu_cloud_onedrive_error_content/padding3": { type: T.PANEL, children: string }, + "edu_cloud_onedrive_error_content/ok_button": { type: T.BUTTON, children: string }, + "creator_button": { type: T.PANEL, children: string }, + "editor_toggle_panel": { type: T.STACK_PANEL, children: 'editor_confirmation_panel' | 'editor_toggle_spacer' | 'editor_image_panel' }, + "editor_toggle_panel/editor_confirmation_panel": { type: T.STACK_PANEL, children: 'editor_active_label' | 'toggle_spacer' | 'editor_confirmation_section_label' }, + "editor_toggle_panel/editor_confirmation_panel/editor_active_label": { type: T.LABEL, children: string }, + "editor_toggle_panel/editor_confirmation_panel/toggle_spacer": { type: T.PANEL, children: string }, + "editor_toggle_panel/editor_confirmation_panel/editor_confirmation_section_label": { type: T.LABEL, children: string }, + "editor_toggle_panel/editor_toggle_spacer": { type: T.PANEL, children: string }, + "editor_toggle_panel/editor_image_panel": { type: T.STACK_PANEL, children: 'editor_icon' }, + "editor_toggle_panel/editor_image_panel/editor_icon": { type: T.IMAGE, children: string }, + "creator_toggles_panel": { type: T.STACK_PANEL, children: 'section_panel_1' | 'copy_coordinate_section_stack_panel' | 'creator_setting_button' }, + "creator_toggles_panel/section_panel_1": { type: T.PANEL, children: 'section_divider' }, + "creator_toggles_panel/section_panel_1/section_divider": { type: T.IMAGE, children: string }, + "creator_toggles_panel/copy_coordinate_section_stack_panel": { type: T.STACK_PANEL, children: 'content_log_section_label' | 'content_log_section_label_spacer' | 'option_content_file_log' }, + "creator_toggles_panel/copy_coordinate_section_stack_panel/content_log_section_label": { type: T.LABEL, children: string }, + "creator_toggles_panel/copy_coordinate_section_stack_panel/content_log_section_label_spacer": { type: T.PANEL, children: string }, + "creator_toggles_panel/copy_coordinate_section_stack_panel/option_content_file_log": { type: T.PANEL, children: string }, + "creator_toggles_panel/creator_setting_button": { type: T.STACK_PANEL, children: 'go_to_keybinds' | 'creator_settings_section_label_spacer' }, + "creator_toggles_panel/creator_setting_button/go_to_keybinds": { type: T.BUTTON, children: string }, + "creator_toggles_panel/creator_setting_button/creator_settings_section_label_spacer": { type: T.PANEL, children: string }, + "debugger_toggles_panel": { type: T.STACK_PANEL, children: 'section_panel_1' | 'primary_panel' }, + "debugger_toggles_panel/section_panel_1": { type: T.PANEL, children: 'section_divider' }, + "debugger_toggles_panel/section_panel_1/section_divider": { type: T.IMAGE, children: string }, + "debugger_toggles_panel/primary_panel": { type: T.STACK_PANEL, children: 'heading' | 'spacer' | 'passcode_required_toggle' | 'passcode_input' | 'auto_attach_toggle' | 'all_options_panel' }, + "debugger_toggles_panel/primary_panel/heading": { type: T.LABEL, children: string }, + "debugger_toggles_panel/primary_panel/spacer": { type: T.PANEL, children: string }, + "debugger_toggles_panel/primary_panel/passcode_required_toggle": { type: T.PANEL, children: string }, + "debugger_toggles_panel/primary_panel/passcode_input": { type: T.PANEL, children: string }, + "debugger_toggles_panel/primary_panel/auto_attach_toggle": { type: T.PANEL, children: string }, + "debugger_toggles_panel/primary_panel/all_options_panel": { type: T.STACK_PANEL, children: 'attach_mode_option' | 'host_and_port_panel' | 'auto_attach_timeout_slider' }, + "debugger_toggles_panel/primary_panel/all_options_panel/attach_mode_option": { type: T.PANEL, children: string }, + "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel": { type: T.STACK_PANEL, children: 'host_input' | 'spacer' | 'port_input' }, + "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/host_input": { type: T.PANEL, children: string }, + "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/spacer": { type: T.PANEL, children: string }, + "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/port_input": { type: T.PANEL, children: string }, + "debugger_toggles_panel/primary_panel/all_options_panel/auto_attach_timeout_slider": { type: T.PANEL, children: string }, + "diagnostics_toggles_panel": { type: T.STACK_PANEL, children: 'section_panel_1' | 'primary_panel' }, + "diagnostics_toggles_panel/section_panel_1": { type: T.PANEL, children: 'section_divider' }, + "diagnostics_toggles_panel/section_panel_1/section_divider": { type: T.IMAGE, children: string }, + "diagnostics_toggles_panel/primary_panel": { type: T.STACK_PANEL, children: 'heading' | 'spacer' | 'serverbound_client_diagnostics_toggle' | 'diagnostics_capture_buttons' }, + "diagnostics_toggles_panel/primary_panel/heading": { type: T.LABEL, children: string }, + "diagnostics_toggles_panel/primary_panel/spacer": { type: T.PANEL, children: string }, + "diagnostics_toggles_panel/primary_panel/serverbound_client_diagnostics_toggle": { type: T.PANEL, children: string }, + "diagnostics_toggles_panel/primary_panel/diagnostics_capture_buttons": { type: T.STACK_PANEL, children: 'clear_diagnostics_capture_files' }, + "diagnostics_toggles_panel/primary_panel/diagnostics_capture_buttons/clear_diagnostics_capture_files": { type: T.BUTTON, children: string }, + "watchdog_toggles_panel": { type: T.STACK_PANEL, children: 'section_panel_1' | 'primary_panel' }, + "watchdog_toggles_panel/section_panel_1": { type: T.PANEL, children: 'section_divider' }, + "watchdog_toggles_panel/section_panel_1/section_divider": { type: T.IMAGE, children: string }, + "watchdog_toggles_panel/primary_panel": { type: T.STACK_PANEL, children: 'heading' | 'spacer' | 'hang_threshold_slider' | 'spike_warning_toggle' | 'spike_threshold_slider' | 'slow_warning_toggle' | 'slow_threshold_slider' }, + "watchdog_toggles_panel/primary_panel/heading": { type: T.LABEL, children: string }, + "watchdog_toggles_panel/primary_panel/spacer": { type: T.PANEL, children: string }, + "watchdog_toggles_panel/primary_panel/hang_threshold_slider": { type: T.PANEL, children: string }, + "watchdog_toggles_panel/primary_panel/spike_warning_toggle": { type: T.PANEL, children: string }, + "watchdog_toggles_panel/primary_panel/spike_threshold_slider": { type: T.PANEL, children: string }, + "watchdog_toggles_panel/primary_panel/slow_warning_toggle": { type: T.PANEL, children: string }, + "watchdog_toggles_panel/primary_panel/slow_threshold_slider": { type: T.PANEL, children: string }, + "device_info_toggles_panel": { type: T.STACK_PANEL, children: 'section_panel_1' | 'primary_panel' | 'device_info_memory_tier_dropdown' }, + "device_info_toggles_panel/section_panel_1": { type: T.PANEL, children: 'section_divider' }, + "device_info_toggles_panel/section_panel_1/section_divider": { type: T.IMAGE, children: string }, + "device_info_toggles_panel/primary_panel": { type: T.STACK_PANEL, children: 'heading' | 'spacer' | 'device_info_memory_tier_use_override_toggle' }, + "device_info_toggles_panel/primary_panel/heading": { type: T.LABEL, children: string }, + "device_info_toggles_panel/primary_panel/spacer": { type: T.PANEL, children: string }, + "device_info_toggles_panel/primary_panel/device_info_memory_tier_use_override_toggle": { type: T.PANEL, children: string }, + "device_info_toggles_panel/device_info_memory_tier_dropdown": { type: T.PANEL, children: string }, + "content_memory_tier_dropdown_content": { type: T.PANEL, children: string }, + "content_log_gui_level_content": { type: T.PANEL, children: string }, + "content_log_panel": { type: T.STACK_PANEL, children: 'section_panel_1' | 'content_log_section_label' | 'content_log_section_label_spacer' | 'option_content_file_log' | 'option_content_gui_log' | 'option_content_gui_log_show_on_errors' | 'option_content_log_gui_level' | 'content_log_buttons' | 'content_log_section_label_spacer_2' | 'content_log_location_label_header' | 'content_log_location_label' }, + "content_log_panel/section_panel_1": { type: T.PANEL, children: 'section_divider' }, + "content_log_panel/section_panel_1/section_divider": { type: T.IMAGE, children: string }, + "content_log_panel/content_log_section_label": { type: T.LABEL, children: string }, + "content_log_panel/content_log_section_label_spacer": { type: T.PANEL, children: string }, + "content_log_panel/option_content_file_log": { type: T.PANEL, children: string }, + "content_log_panel/option_content_gui_log": { type: T.PANEL, children: string }, + "content_log_panel/option_content_gui_log_show_on_errors": { type: T.PANEL, children: string }, + "content_log_panel/option_content_log_gui_level": { type: T.PANEL, children: string }, + "content_log_panel/content_log_buttons": { type: T.STACK_PANEL, children: 'open_content_log_history' | 'content_log_section_label_spacer' | 'clear_content_log_files' }, + "content_log_panel/content_log_buttons/open_content_log_history": { type: T.BUTTON, children: string }, + "content_log_panel/content_log_buttons/content_log_section_label_spacer": { type: T.PANEL, children: string }, + "content_log_panel/content_log_buttons/clear_content_log_files": { type: T.BUTTON, children: string }, + "content_log_panel/content_log_section_label_spacer_2": { type: T.PANEL, children: string }, + "content_log_panel/content_log_location_label_header": { type: T.LABEL, children: string }, + "content_log_panel/content_log_location_label": { type: T.LABEL, children: string }, + "creator_section": { type: T.STACK_PANEL, children: 'editor_toggle' | 'creator_toggles' | 'debugger_toggles_panel' | 'diagnostics_toggle_panel' | 'watchdog_toggles_panel' | 'device_info_toggles_panel' | 'content_log_panel' }, + "creator_section/editor_toggle": { type: T.STACK_PANEL, children: string }, + "creator_section/creator_toggles": { type: T.STACK_PANEL, children: string }, + "creator_section/debugger_toggles_panel": { type: T.STACK_PANEL, children: string }, + "creator_section/diagnostics_toggle_panel": { type: T.STACK_PANEL, children: string }, + "creator_section/watchdog_toggles_panel": { type: T.STACK_PANEL, children: string }, + "creator_section/device_info_toggles_panel": { type: T.STACK_PANEL, children: string }, + "creator_section/content_log_panel": { type: T.STACK_PANEL, children: string }, + "video_button": { type: T.PANEL, children: string }, + "advanced_video_options_toggle": { type: T.TOGGLE, children: string }, + "video_section_ore_ui": { type: T.STACK_PANEL, children: 'spacer_0' | 'generic_label' | 'spacer_1' | 'gamepad_helper_label' }, + "video_section_ore_ui/spacer_0": { type: T.PANEL, children: string }, + "video_section_ore_ui/generic_label": { type: T.LABEL, children: string }, + "video_section_ore_ui/spacer_1": { type: T.PANEL, children: string }, + "video_section_ore_ui/gamepad_helper_label": { type: T.LABEL, children: string }, + "video_menu_slider_step_progress": { type: T.IMAGE, children: string }, + "video_menu_slider_progress": { type: T.IMAGE, children: string }, + "video_menu_slider_bar_default": { type: T.IMAGE, children: string }, + "video_menu_customization_slider_control": { type: T.PANEL, children: 'slider' }, + "video_menu_customization_slider_control/slider": { type: T.SLIDER, children: 'slider_box' | 'slider_bar_default' | 'slider_bar_hover' }, + "video_menu_customization_slider_control/slider/slider_box": { type: T.SLIDER_BOX, children: string }, + "video_menu_customization_slider_control/slider/slider_bar_default": { type: T.IMAGE, children: string }, + "video_menu_customization_slider_control/slider/slider_bar_hover": { type: T.IMAGE, children: string }, + "video_menu_customization_option_slider": { type: T.PANEL, children: string }, + "video_section": { type: T.STACK_PANEL, children: 'advanced_graphics_options_panel' | 'spacer_1' | 'graphics_api_dropdown' | 'raytracing_render_distance_slider' | 'deferred_render_distance_slider' | 'render_distance_slider' | 'render_distance_warning_text' | 'spacer_2' | 'brightness_slider' | 'spacer_3' | 'perspective_dropdown' | 'spacer_4' | 'fullscreen_toggle' | 'spacer_5' | 'option_toggle_hidehand' | 'spacer_6' | 'hide_paperdoll_toggle' | 'spacer_7' | 'option_toggle_hidehud' | 'spacer_8' | 'option_toggle_screen_animations' | 'spacer_9' | 'hud_opacity_slider' | 'spacer_10' | 'splitscreen_hud_opacity_slider' | 'spacer_11' | 'setup_safe_zone' | 'spacer_12' | 'fov_slider' | 'spacer_13' | 'split_screen_dropdown' | 'spacer_14' | 'auto_save_icon_toggle' | 'spacer_15' | 'outline_selection_toggle' | 'spacer_16' | 'player_names_toggle' | 'spacer_17' | 'splitscreen_player_names_toggle' | 'spacer_18' | 'view_bobbing_toggle' | 'spacer_19' | 'camera_shake_toggle' | 'spacer_20' | 'fancy_leaves_toggle' | 'spacer_21' | 'fancy_bubbles_toggle' | 'spacer_22' | 'render_clouds_toggle' | 'spacer_23' | 'fancy_clouds_toggle' | 'spacer_24' | 'smooth_lighting_toggle' | 'spacer_25' | 'rendering_profile_option_slider' | 'field_of_view_toggle' | 'spacer_26' | 'damage_bob_option_slider' | 'spacer_26.5' | 'super_fancy_panel' | 'ui_profile_dropdown' | 'spacer_27' | 'gui_scale_slider' | 'spacer_28' | 'gui_accessibility_scaling_toggle' | 'spacer_29' | 'option_toggle_improved_input_response' | 'spacer_30' | 'frame_pacing_toggle' | 'spacer_31' | 'graphics_mode_switch_toggle' | 'spacer_32' | 'upscaling_toggle' | 'spacer_33' | 'max_framerate_slider' | 'spacer_34' | 'msaa_slider' | 'spacer_35' | 'texel_anti_aliasing_toggle' | 'spacer_36' | 'reset_button' }, + "video_section/advanced_graphics_options_panel": { type: T.STACK_PANEL, children: 'graphics_mode' | 'graphics_quality_preset_mode_dropdown_content' | 'spacer_0' | 'advanced_graphics_options_button' | 'advanced_graphics_options_section' }, + "video_section/advanced_graphics_options_panel/graphics_mode": { type: T.PANEL, children: string }, + "video_section/advanced_graphics_options_panel/graphics_quality_preset_mode_dropdown_content": { type: T.PANEL, children: string }, + "video_section/advanced_graphics_options_panel/spacer_0": { type: T.PANEL, children: string }, + "video_section/advanced_graphics_options_panel/advanced_graphics_options_button": { type: T.BUTTON, children: string }, + "video_section/advanced_graphics_options_panel/advanced_graphics_options_section": { type: T.STACK_PANEL, children: string }, + "video_section/spacer_1": { type: T.PANEL, children: string }, + "video_section/graphics_api_dropdown": { type: T.PANEL, children: string }, + "video_section/raytracing_render_distance_slider": { type: T.PANEL, children: 'option_generic_core' }, + "video_section/raytracing_render_distance_slider/option_generic_core": { type: T.STACK_PANEL, children: string }, + "video_section/deferred_render_distance_slider": { type: T.PANEL, children: 'option_generic_core' }, + "video_section/deferred_render_distance_slider/option_generic_core": { type: T.STACK_PANEL, children: string }, + "video_section/render_distance_slider": { type: T.PANEL, children: 'render_distance_warning' | 'option_generic_core' }, + "video_section/render_distance_slider/render_distance_warning": { type: T.PANEL, children: string }, + "video_section/render_distance_slider/option_generic_core": { type: T.STACK_PANEL, children: string }, + "video_section/render_distance_warning_text": { type: T.PANEL, children: 'render_distance_popup' }, + "video_section/render_distance_warning_text/render_distance_popup": { type: T.IMAGE, children: string }, + "video_section/spacer_2": { type: T.PANEL, children: string }, + "video_section/brightness_slider": { type: T.PANEL, children: string }, + "video_section/spacer_3": { type: T.PANEL, children: string }, + "video_section/perspective_dropdown": { type: T.PANEL, children: string }, + "video_section/spacer_4": { type: T.PANEL, children: string }, + "video_section/fullscreen_toggle": { type: T.PANEL, children: string }, + "video_section/spacer_5": { type: T.PANEL, children: string }, + "video_section/option_toggle_hidehand": { type: T.PANEL, children: string }, + "video_section/spacer_6": { type: T.PANEL, children: string }, + "video_section/hide_paperdoll_toggle": { type: T.PANEL, children: string }, + "video_section/spacer_7": { type: T.PANEL, children: string }, + "video_section/option_toggle_hidehud": { type: T.PANEL, children: string }, + "video_section/spacer_8": { type: T.PANEL, children: string }, + "video_section/option_toggle_screen_animations": { type: T.PANEL, children: string }, + "video_section/spacer_9": { type: T.PANEL, children: string }, + "video_section/hud_opacity_slider": { type: T.PANEL, children: string }, + "video_section/spacer_10": { type: T.PANEL, children: string }, + "video_section/splitscreen_hud_opacity_slider": { type: T.PANEL, children: string }, + "video_section/spacer_11": { type: T.PANEL, children: string }, + "video_section/setup_safe_zone": { type: T.PANEL, children: 'action_button' }, + "video_section/setup_safe_zone/action_button": { type: T.BUTTON, children: string }, + "video_section/spacer_12": { type: T.PANEL, children: string }, + "video_section/fov_slider": { type: T.PANEL, children: string }, + "video_section/spacer_13": { type: T.PANEL, children: string }, + "video_section/split_screen_dropdown": { type: T.PANEL, children: string }, + "video_section/spacer_14": { type: T.PANEL, children: string }, + "video_section/auto_save_icon_toggle": { type: T.PANEL, children: string }, + "video_section/spacer_15": { type: T.PANEL, children: string }, + "video_section/outline_selection_toggle": { type: T.PANEL, children: string }, + "video_section/spacer_16": { type: T.PANEL, children: string }, + "video_section/player_names_toggle": { type: T.PANEL, children: string }, + "video_section/spacer_17": { type: T.PANEL, children: string }, + "video_section/splitscreen_player_names_toggle": { type: T.PANEL, children: string }, + "video_section/spacer_18": { type: T.PANEL, children: string }, + "video_section/view_bobbing_toggle": { type: T.PANEL, children: string }, + "video_section/spacer_19": { type: T.PANEL, children: string }, + "video_section/camera_shake_toggle": { type: T.PANEL, children: string }, + "video_section/spacer_20": { type: T.PANEL, children: string }, + "video_section/fancy_leaves_toggle": { type: T.PANEL, children: string }, + "video_section/spacer_21": { type: T.PANEL, children: string }, + "video_section/fancy_bubbles_toggle": { type: T.PANEL, children: string }, + "video_section/spacer_22": { type: T.PANEL, children: string }, + "video_section/render_clouds_toggle": { type: T.PANEL, children: string }, + "video_section/spacer_23": { type: T.PANEL, children: string }, + "video_section/fancy_clouds_toggle": { type: T.PANEL, children: string }, + "video_section/spacer_24": { type: T.PANEL, children: string }, + "video_section/smooth_lighting_toggle": { type: T.PANEL, children: string }, + "video_section/spacer_25": { type: T.PANEL, children: string }, + "video_section/rendering_profile_option_slider": { type: T.PANEL, children: string }, + "video_section/field_of_view_toggle": { type: T.PANEL, children: string }, + "video_section/spacer_26": { type: T.PANEL, children: string }, + "video_section/damage_bob_option_slider": { type: T.PANEL, children: string }, + "video_section/spacer_26.5": { type: T.PANEL, children: string }, + "video_section/super_fancy_panel": { type: T.PANEL, children: 'super_fancy_section' }, + "video_section/super_fancy_panel/super_fancy_section": { type: T.IMAGE, children: 'super_fancy_contents' }, + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents": { type: T.STACK_PANEL, children: 'atmospherics_toggle' | 'edge_highlight_toggle' | 'bloom_toggle' | 'terrain_shadows_toggle' | 'super_fancy_water_toggle' }, + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/atmospherics_toggle": { type: T.PANEL, children: string }, + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/edge_highlight_toggle": { type: T.PANEL, children: string }, + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/bloom_toggle": { type: T.PANEL, children: string }, + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/terrain_shadows_toggle": { type: T.PANEL, children: string }, + "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/super_fancy_water_toggle": { type: T.PANEL, children: string }, + "video_section/ui_profile_dropdown": { type: T.PANEL, children: string }, + "video_section/spacer_27": { type: T.PANEL, children: string }, + "video_section/gui_scale_slider": { type: T.PANEL, children: 'option_generic_core' }, + "video_section/gui_scale_slider/option_generic_core": { type: T.STACK_PANEL, children: string }, + "video_section/spacer_28": { type: T.PANEL, children: string }, + "video_section/gui_accessibility_scaling_toggle": { type: T.PANEL, children: 'option_generic_core' }, + "video_section/gui_accessibility_scaling_toggle/option_generic_core": { type: T.STACK_PANEL, children: string }, + "video_section/spacer_29": { type: T.PANEL, children: string }, + "video_section/option_toggle_improved_input_response": { type: T.PANEL, children: 'option_generic_core' }, + "video_section/option_toggle_improved_input_response/option_generic_core": { type: T.STACK_PANEL, children: string }, + "video_section/spacer_30": { type: T.PANEL, children: string }, + "video_section/frame_pacing_toggle": { type: T.PANEL, children: 'option_generic_core' }, + "video_section/frame_pacing_toggle/option_generic_core": { type: T.STACK_PANEL, children: string }, + "video_section/spacer_31": { type: T.PANEL, children: string }, + "video_section/graphics_mode_switch_toggle": { type: T.PANEL, children: string }, + "video_section/spacer_32": { type: T.PANEL, children: string }, + "video_section/upscaling_toggle": { type: T.PANEL, children: string }, + "video_section/spacer_33": { type: T.PANEL, children: string }, + "video_section/max_framerate_slider": { type: T.PANEL, children: string }, + "video_section/spacer_34": { type: T.PANEL, children: string }, + "video_section/msaa_slider": { type: T.PANEL, children: string }, + "video_section/spacer_35": { type: T.PANEL, children: string }, + "video_section/texel_anti_aliasing_toggle": { type: T.PANEL, children: string }, + "video_section/spacer_36": { type: T.PANEL, children: string }, + "video_section/reset_button": { type: T.BUTTON, children: string }, + "max_framerate_slider": { type: T.PANEL, children: 'option_generic_core' }, + "max_framerate_slider/option_generic_core": { type: T.STACK_PANEL, children: string }, + "msaa_slider": { type: T.PANEL, children: string }, + "upscaling_toggle": { type: T.PANEL, children: 'option_generic_core' }, + "upscaling_toggle/option_generic_core": { type: T.STACK_PANEL, children: string }, + "render_distance_warning_image": { type: T.IMAGE, children: string }, + "render_distance_warning": { type: T.PANEL, children: 'render_distance_warning_image' }, + "render_distance_warning/render_distance_warning_image": { type: T.IMAGE, children: string }, + "ui_profile_dropdown_content": { type: T.PANEL, children: string }, + "split_screen_dropdown_content": { type: T.PANEL, children: string }, + "third_person_dropdown_content": { type: T.PANEL, children: string }, + "toast_notification_duration_dropdown_content": { type: T.PANEL, children: string }, + "chat_message_duration_dropdown_content": { type: T.PANEL, children: string }, + "file_storage_location_content": { type: T.PANEL, children: string }, + "background": { type: T.PANEL, children: 'fill' | 'border' }, + "background/fill": { type: T.IMAGE, children: string }, + "background/border": { type: T.IMAGE, children: string }, + "left_button_label": { type: T.LABEL, children: string }, + "right_button_label": { type: T.LABEL, children: string }, + "realms_button_panel": { type: T.STACK_PANEL, children: 'pad_0' | 'left_button_panel' | 'pad_1' | 'right_button' | 'pad_2' }, + "realms_button_panel/pad_0": { type: T.PANEL, children: string }, + "realms_button_panel/left_button_panel": { type: T.PANEL, children: 'left_button' | 'left_button_loading' }, + "realms_button_panel/left_button_panel/left_button": { type: T.BUTTON, children: string }, + "realms_button_panel/left_button_panel/left_button_loading": { type: T.PANEL, children: string }, + "realms_button_panel/pad_1": { type: T.PANEL, children: string }, + "realms_button_panel/right_button": { type: T.BUTTON, children: string }, + "realms_button_panel/pad_2": { type: T.PANEL, children: string }, + "consumable_not_extendable": { type: T.PANEL, children: 'panel_content' }, + "consumable_not_extendable/panel_content": { type: T.STACK_PANEL, children: 'padded_icon_0' | 'limited_status_image' | 'padded_icon_1' | 'label_panel' }, + "consumable_not_extendable/panel_content/padded_icon_0": { type: T.PANEL, children: string }, + "consumable_not_extendable/panel_content/limited_status_image": { type: T.IMAGE, children: string }, + "consumable_not_extendable/panel_content/padded_icon_1": { type: T.PANEL, children: string }, + "consumable_not_extendable/panel_content/label_panel": { type: T.PANEL, children: 'name_label2' }, + "consumable_not_extendable/panel_content/label_panel/name_label2": { type: T.LABEL, children: string }, + "possible_store_mismatch": { type: T.PANEL, children: 'panel_content' }, + "possible_store_mismatch/panel_content": { type: T.STACK_PANEL, children: 'padded_icon_0' | 'limited_status_image' | 'padded_icon_1' | 'label_panel' }, + "possible_store_mismatch/panel_content/padded_icon_0": { type: T.PANEL, children: string }, + "possible_store_mismatch/panel_content/limited_status_image": { type: T.IMAGE, children: string }, + "possible_store_mismatch/panel_content/padded_icon_1": { type: T.PANEL, children: string }, + "possible_store_mismatch/panel_content/label_panel": { type: T.PANEL, children: 'name_label2' }, + "possible_store_mismatch/panel_content/label_panel/name_label2": { type: T.LABEL, children: string }, + "realms_subscription_stack": { type: T.STACK_PANEL, children: 'image_panel' | 'pad' | 'info' }, + "realms_subscription_stack/image_panel": { type: T.PANEL, children: '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' }, + "realms_subscription_stack/image_panel/0": { type: T.UNKNOWN, children: string }, + "realms_subscription_stack/pad": { type: T.PANEL, children: string }, + "realms_subscription_stack/info": { type: T.STACK_PANEL, children: 'realm_name' | 'realms_desc_label' | 'bottom_pad' }, + "realms_subscription_stack/info/realm_name": { type: T.LABEL, children: string }, + "realms_subscription_stack/info/realms_desc_label": { type: T.LABEL, children: string }, + "realms_subscription_stack/info/bottom_pad": { type: T.PANEL, children: string }, + "realms_subscription_main": { type: T.PANEL, children: 'black_background' | 'realms_plus_subscription_stack' }, + "realms_subscription_main/black_background": { type: T.PANEL, children: string }, + "realms_subscription_main/realms_plus_subscription_stack": { type: T.STACK_PANEL, children: 'realms_plus_subscription_top_stack' | 'realms_plus_bottom_button_stack' }, + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_subscription_top_stack": { type: T.STACK_PANEL, children: string }, + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack": { type: T.STACK_PANEL, children: 'top_pad' | 'realms_plus_bottom_button_panel' | 'bottom_pad' }, + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/top_pad": { type: T.PANEL, children: string }, + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/realms_plus_bottom_button_panel": { type: T.STACK_PANEL, children: string }, + "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/bottom_pad": { type: T.PANEL, children: string }, + "realms_subscription_panel": { type: T.STACK_PANEL, children: 'top_panel' | 'pad_1' | 'middle_panel' | 'pad_2' | 'lower_panel' | 'pad_3' | 'platform_mismatch_container' | 'pad_4' }, + "realms_subscription_panel/top_panel": { type: T.PANEL, children: string }, + "realms_subscription_panel/pad_1": { type: T.PANEL, children: string }, + "realms_subscription_panel/middle_panel": { type: T.PANEL, children: 'black_background' | 'renews_text' }, + "realms_subscription_panel/middle_panel/black_background": { type: T.PANEL, children: string }, + "realms_subscription_panel/middle_panel/renews_text": { type: T.LABEL, children: string }, + "realms_subscription_panel/pad_2": { type: T.PANEL, children: string }, + "realms_subscription_panel/lower_panel": { type: T.PANEL, children: 'black_background' | 'consumable_not_extendable' }, + "realms_subscription_panel/lower_panel/black_background": { type: T.PANEL, children: string }, + "realms_subscription_panel/lower_panel/consumable_not_extendable": { type: T.PANEL, children: string }, + "realms_subscription_panel/pad_3": { type: T.PANEL, children: string }, + "realms_subscription_panel/platform_mismatch_container": { type: T.PANEL, children: 'black_background' | 'possible_store_mismatch' }, + "realms_subscription_panel/platform_mismatch_container/black_background": { type: T.PANEL, children: string }, + "realms_subscription_panel/platform_mismatch_container/possible_store_mismatch": { type: T.PANEL, children: string }, + "realms_subscription_panel/pad_4": { type: T.PANEL, children: string }, + "realms_plus_subscription_panel": { type: T.STACK_PANEL, children: string }, + "additional_subscription_panel": { type: T.STACK_PANEL, children: string }, + "view_subscriptions_button": { type: T.PANEL, children: string }, + "view_subscriptions_prerelease_section": { type: T.PANEL, children: 'black_background' | 'renews_text' }, + "view_subscriptions_prerelease_section/black_background": { type: T.PANEL, children: string }, + "view_subscriptions_prerelease_section/renews_text": { type: T.LABEL, children: string }, + "view_subscriptions_section": { type: T.STACK_PANEL, children: 'sunsetting_label' | 'failed_loading_subscriptions_label' | 'loading_subscriptions_label' | 'no_active_subscriptions_panel' | 'realms_plus_header_my_subscriptions' | 'realms_plus_subscriptions_grid' | 'csb_purchased_with_cancel' | 'csb_purchased_with_buy' | 'csb_purchased_padding' | 'platform_mismatch_container' | 'csb_expiration_container' | 'csb_expiration_and_platform_mismatch_padding' | 'additional_realms_subscriptions_grid' | 'settings_additional_subscription_offers_section' | 'pad_3' }, + "view_subscriptions_section/sunsetting_label": { type: T.IMAGE, children: string }, + "view_subscriptions_section/failed_loading_subscriptions_label": { type: T.LABEL, children: string }, + "view_subscriptions_section/loading_subscriptions_label": { type: T.LABEL, children: string }, + "view_subscriptions_section/no_active_subscriptions_panel": { type: T.PANEL, children: 'header_no_active_csub_or_realms_subscriptions' | 'background_panel' }, + "view_subscriptions_section/no_active_subscriptions_panel/header_no_active_csub_or_realms_subscriptions": { type: T.PANEL, children: 'text' }, + "view_subscriptions_section/no_active_subscriptions_panel/header_no_active_csub_or_realms_subscriptions/text": { type: T.LABEL, children: string }, + "view_subscriptions_section/no_active_subscriptions_panel/background_panel": { type: T.IMAGE, children: string }, + "view_subscriptions_section/realms_plus_header_my_subscriptions": { type: T.PANEL, children: 'text' }, + "view_subscriptions_section/realms_plus_header_my_subscriptions/text": { type: T.LABEL, children: string }, + "view_subscriptions_section/realms_plus_subscriptions_grid": { type: T.STACK_PANEL, children: string }, + "view_subscriptions_section/csb_purchased_with_cancel": { type: T.PANEL, children: string }, + "view_subscriptions_section/csb_purchased_with_buy": { type: T.PANEL, children: string }, + "view_subscriptions_section/csb_purchased_padding": { type: T.PANEL, children: string }, + "view_subscriptions_section/platform_mismatch_container": { type: T.PANEL, children: 'black_background' | 'possible_store_mismatch' }, + "view_subscriptions_section/platform_mismatch_container/black_background": { type: T.PANEL, children: string }, + "view_subscriptions_section/platform_mismatch_container/possible_store_mismatch": { type: T.PANEL, children: string }, + "view_subscriptions_section/csb_expiration_container": { type: T.PANEL, children: 'csb_expiration_text_container' | 'background_panel' }, + "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container": { type: T.STACK_PANEL, children: 'csb_expiration_text_padding' | 'csb_expiration' }, + "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container/csb_expiration_text_padding": { type: T.PANEL, children: string }, + "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container/csb_expiration": { type: T.LABEL, children: string }, + "view_subscriptions_section/csb_expiration_container/background_panel": { type: T.IMAGE, children: string }, + "view_subscriptions_section/csb_expiration_and_platform_mismatch_padding": { type: T.PANEL, children: string }, + "view_subscriptions_section/additional_realms_subscriptions_grid": { type: T.STACK_PANEL, children: string }, + "view_subscriptions_section/settings_additional_subscription_offers_section": { type: T.STACK_PANEL, children: string }, + "view_subscriptions_section/pad_3": { type: T.PANEL, children: string }, + "settings_additional_subscription_offers_section": { type: T.STACK_PANEL, children: 'active_available_divider' | 'realms_plus_header_label' | 'pad_0' | 'additional_realms_buy_offer' | 'pad_8' | 'csb_buy_panel' }, + "settings_additional_subscription_offers_section/active_available_divider": { type: T.STACK_PANEL, children: string }, + "settings_additional_subscription_offers_section/realms_plus_header_label": { type: T.LABEL, children: string }, + "settings_additional_subscription_offers_section/pad_0": { type: T.PANEL, children: string }, + "settings_additional_subscription_offers_section/additional_realms_buy_offer": { type: T.PANEL, children: string }, + "settings_additional_subscription_offers_section/pad_8": { type: T.PANEL, children: string }, + "settings_additional_subscription_offers_section/csb_buy_panel": { type: T.PANEL, children: string }, + "accessibility_button": { type: T.PANEL, children: string }, + "toast_notification_duration_label": { type: T.LABEL, children: string }, + "toast_notification_duration_info_label": { type: T.LABEL, children: string }, + "toast_notification_duration_info_edu_label": { type: T.LABEL, children: string }, + "chat_message_duration_label": { type: T.LABEL, children: string }, + "chat_message_duration_info_label": { type: T.LABEL, children: string }, + "accessibility_section": { type: T.STACK_PANEL, children: 'option_toggle0' | 'option_toggle1' | 'option_toggle2' | 'option_slider_0' | 'option_toggle3' | 'hud_text_background_opacity_slider' | 'chat_opacity_slider' | 'actionbar_text_background_opacity_slider' | 'camera_shake_toggle' | 'hide_endflash_toggle' | 'enable_dithering_blocks_toggle' | 'enable_dithering_mobs_toggle' | 'darkness_slider' | 'glint_strength_slider' | 'glint_speed_slider' | 'toast_notification_duration_options_panel' | 'chat_message_duration_options_panel' | 'gui_scale_slider' | 'gui_accessibility_scaling_toggle' | 'reset_button' }, + "accessibility_section/option_toggle0": { type: T.PANEL, children: string }, + "accessibility_section/option_toggle1": { type: T.PANEL, children: string }, + "accessibility_section/option_toggle2": { type: T.PANEL, children: string }, + "accessibility_section/option_slider_0": { type: T.PANEL, children: string }, + "accessibility_section/option_toggle3": { type: T.PANEL, children: string }, + "accessibility_section/hud_text_background_opacity_slider": { type: T.PANEL, children: string }, + "accessibility_section/chat_opacity_slider": { type: T.PANEL, children: string }, + "accessibility_section/actionbar_text_background_opacity_slider": { type: T.PANEL, children: string }, + "accessibility_section/camera_shake_toggle": { type: T.PANEL, children: string }, + "accessibility_section/hide_endflash_toggle": { type: T.PANEL, children: string }, + "accessibility_section/enable_dithering_blocks_toggle": { type: T.PANEL, children: string }, + "accessibility_section/enable_dithering_mobs_toggle": { type: T.PANEL, children: string }, + "accessibility_section/darkness_slider": { type: T.PANEL, children: string }, + "accessibility_section/glint_strength_slider": { type: T.PANEL, children: string }, + "accessibility_section/glint_speed_slider": { type: T.PANEL, children: string }, + "accessibility_section/toast_notification_duration_options_panel": { type: T.STACK_PANEL, children: 'toast_notification_duration_label_wrapper' | 'toast_notification_duration_info_label_wrapper' | 'toast_notification_duration_info_label_edu_wrapper' | 'toast_notification_duration_dropdown_spacer_pre' | 'toast_notification_duration_dropdown' }, + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_label_wrapper": { type: T.PANEL, children: string }, + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_info_label_wrapper": { type: T.PANEL, children: string }, + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_info_label_edu_wrapper": { type: T.PANEL, children: string }, + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_dropdown_spacer_pre": { type: T.PANEL, children: string }, + "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_dropdown": { type: T.PANEL, children: string }, + "accessibility_section/chat_message_duration_options_panel": { type: T.STACK_PANEL, children: 'chat_message_duration_label_wrapper' | 'chat_message_duration_info_label_wrapper' | 'chat_message_duration_dropdown_spacer_pre' | 'chat_message_duration_dropdown' }, + "accessibility_section/chat_message_duration_options_panel/chat_message_duration_label_wrapper": { type: T.PANEL, children: string }, + "accessibility_section/chat_message_duration_options_panel/chat_message_duration_info_label_wrapper": { type: T.PANEL, children: string }, + "accessibility_section/chat_message_duration_options_panel/chat_message_duration_dropdown_spacer_pre": { type: T.PANEL, children: string }, + "accessibility_section/chat_message_duration_options_panel/chat_message_duration_dropdown": { type: T.PANEL, children: string }, + "accessibility_section/gui_scale_slider": { type: T.PANEL, children: 'option_generic_core' }, + "accessibility_section/gui_scale_slider/option_generic_core": { type: T.STACK_PANEL, children: string }, + "accessibility_section/gui_accessibility_scaling_toggle": { type: T.PANEL, children: 'option_generic_core' }, + "accessibility_section/gui_accessibility_scaling_toggle/option_generic_core": { type: T.STACK_PANEL, children: string }, + "accessibility_section/reset_button": { type: T.BUTTON, children: string }, + "accessibility_section_ore_ui": { type: T.STACK_PANEL, children: 'spacer_0' | 'generic_label' | 'spacer_1' | 'gamepad_helper_label' | 'accessibility_button' }, + "accessibility_section_ore_ui/spacer_0": { type: T.PANEL, children: string }, + "accessibility_section_ore_ui/generic_label": { type: T.LABEL, children: string }, + "accessibility_section_ore_ui/spacer_1": { type: T.PANEL, children: string }, + "accessibility_section_ore_ui/gamepad_helper_label": { type: T.LABEL, children: string }, + "accessibility_section_ore_ui/accessibility_button": { type: T.BUTTON, children: string }, + "sound_button": { type: T.PANEL, children: string }, + "sound_section_ore_ui": { type: T.STACK_PANEL, children: 'spacer_0' | 'generic_label' | 'spacer_1' | 'gamepad_helper_label' }, + "sound_section_ore_ui/spacer_0": { type: T.PANEL, children: string }, + "sound_section_ore_ui/generic_label": { type: T.LABEL, children: string }, + "sound_section_ore_ui/spacer_1": { type: T.PANEL, children: string }, + "sound_section_ore_ui/gamepad_helper_label": { type: T.LABEL, children: string }, + "sound_section": { type: T.STACK_PANEL, children: 'paddingMainVolume' | 'option_slider_0' | 'paddingDividerAudioSettings' | 'dividerAudioSettings' | 'paddingMusic' | 'option_slider_1' | 'paddingSound' | 'option_slider_2' | 'paddingAmbient' | 'option_slider_3' | 'paddingBlockVolume' | 'option_slider_4' | 'paddingHostile' | 'option_slider_5' | 'paddingNeutralVolume' | 'option_slider_6' | 'paddingPlayervolume' | 'option_slider_7' | 'paddingRecordVolume' | 'option_slider_8' | 'paddingWeatherVolume' | 'option_slider_9' | 'paddingTTSVolume' | 'option_slider_10' | 'paddingResetVolumes' | 'reset_button' | 'paddingEndOfList' }, + "sound_section/paddingMainVolume": { type: T.PANEL, children: string }, + "sound_section/option_slider_0": { type: T.PANEL, children: string }, + "sound_section/paddingDividerAudioSettings": { type: T.PANEL, children: string }, + "sound_section/dividerAudioSettings": { type: T.PANEL, children: 'section_divider' }, + "sound_section/dividerAudioSettings/section_divider": { type: T.IMAGE, children: string }, + "sound_section/paddingMusic": { type: T.PANEL, children: string }, + "sound_section/option_slider_1": { type: T.PANEL, children: string }, + "sound_section/paddingSound": { type: T.PANEL, children: string }, + "sound_section/option_slider_2": { type: T.PANEL, children: string }, + "sound_section/paddingAmbient": { type: T.PANEL, children: string }, + "sound_section/option_slider_3": { type: T.PANEL, children: string }, + "sound_section/paddingBlockVolume": { type: T.PANEL, children: string }, + "sound_section/option_slider_4": { type: T.PANEL, children: string }, + "sound_section/paddingHostile": { type: T.PANEL, children: string }, + "sound_section/option_slider_5": { type: T.PANEL, children: string }, + "sound_section/paddingNeutralVolume": { type: T.PANEL, children: string }, + "sound_section/option_slider_6": { type: T.PANEL, children: string }, + "sound_section/paddingPlayervolume": { type: T.PANEL, children: string }, + "sound_section/option_slider_7": { type: T.PANEL, children: string }, + "sound_section/paddingRecordVolume": { type: T.PANEL, children: string }, + "sound_section/option_slider_8": { type: T.PANEL, children: string }, + "sound_section/paddingWeatherVolume": { type: T.PANEL, children: string }, + "sound_section/option_slider_9": { type: T.PANEL, children: string }, + "sound_section/paddingTTSVolume": { type: T.PANEL, children: string }, + "sound_section/option_slider_10": { type: T.PANEL, children: string }, + "sound_section/paddingResetVolumes": { type: T.PANEL, children: string }, + "sound_section/reset_button": { type: T.BUTTON, children: string }, + "sound_section/paddingEndOfList": { type: T.PANEL, children: string }, + "language_button": { type: T.PANEL, children: string }, + "language_grid_item": { type: T.PANEL, children: string }, + "language_section": { type: T.STACK_PANEL, children: 'language_list_grid' }, + "language_section/language_list_grid": { type: T.GRID, children: string }, + "language_section_ore_ui": { type: T.STACK_PANEL, children: 'spacer_0' | 'generic_label' | 'spacer_1' | 'gamepad_helper_label' }, + "language_section_ore_ui/spacer_0": { type: T.PANEL, children: string }, + "language_section_ore_ui/generic_label": { type: T.LABEL, children: string }, + "language_section_ore_ui/spacer_1": { type: T.PANEL, children: string }, + "language_section_ore_ui/gamepad_helper_label": { type: T.LABEL, children: string }, + "preview_button": { type: T.PANEL, children: string }, + "preview_section": { type: T.STACK_PANEL, children: 'spacer_0' | 'generic_label' | 'preview_store_launch_app1_button' | 'preview_store_launch_app2_button' }, + "preview_section/spacer_0": { type: T.PANEL, children: string }, + "preview_section/generic_label": { type: T.LABEL, children: string }, + "preview_section/preview_store_launch_app1_button": { type: T.BUTTON, children: string }, + "preview_section/preview_store_launch_app2_button": { type: T.BUTTON, children: string }, + "override_date_panel": { type: T.STACK_PANEL, children: 'year_text_box' | 'year_month_slash' | 'month_text_box' | 'month_day_slash' | 'day_text_box' | 'day_hour_slash' | 'hour_text_box' | 'hour_minute_slash' | 'minute_text_box' }, + "override_date_panel/year_text_box": { type: T.PANEL, children: string }, + "override_date_panel/year_month_slash": { type: T.LABEL, children: string }, + "override_date_panel/month_text_box": { type: T.PANEL, children: string }, + "override_date_panel/month_day_slash": { type: T.LABEL, children: string }, + "override_date_panel/day_text_box": { type: T.PANEL, children: string }, + "override_date_panel/day_hour_slash": { type: T.LABEL, children: string }, + "override_date_panel/hour_text_box": { type: T.PANEL, children: string }, + "override_date_panel/hour_minute_slash": { type: T.LABEL, children: string }, + "override_date_panel/minute_text_box": { type: T.PANEL, children: string }, + "timezonetype_dropdown_content": { type: T.PANEL, children: string }, + "date_options_panel": { type: T.STACK_PANEL, children: 'padding0' | 'display_override_datetime_option_toggle' | 'option_toggle_date_override' | 'override_date_options_panel' }, + "date_options_panel/padding0": { type: T.PANEL, children: string }, + "date_options_panel/display_override_datetime_option_toggle": { type: T.PANEL, children: string }, + "date_options_panel/option_toggle_date_override": { type: T.PANEL, children: string }, + "date_options_panel/override_date_options_panel": { type: T.PANEL, children: string }, + "override_date_options_panel": { type: T.PANEL, children: 'override_date_options_background_panel' }, + "override_date_options_panel/override_date_options_background_panel": { type: T.STACK_PANEL, children: 'load_override_date_option_toggle' | 'select_dropdown' | 'override_date_panel' | 'padding1' | 'override_time_scale_option' | 'reset_time_button' | 'padding2' }, + "override_date_options_panel/override_date_options_background_panel/load_override_date_option_toggle": { type: T.PANEL, children: string }, + "override_date_options_panel/override_date_options_background_panel/select_dropdown": { type: T.PANEL, children: string }, + "override_date_options_panel/override_date_options_background_panel/override_date_panel": { type: T.STACK_PANEL, children: string }, + "override_date_options_panel/override_date_options_background_panel/padding1": { type: T.PANEL, children: string }, + "override_date_options_panel/override_date_options_background_panel/override_time_scale_option": { type: T.PANEL, children: string }, + "override_date_options_panel/override_date_options_background_panel/reset_time_button": { type: T.BUTTON, children: string }, + "override_date_options_panel/override_date_options_background_panel/padding2": { type: T.PANEL, children: string }, + "debug_display_logged_error_panel": { type: T.PANEL, children: 'debug_display_logged_error_panel_background' }, + "debug_display_logged_error_panel/debug_display_logged_error_panel_background": { type: T.STACK_PANEL, children: 'option_dev_show_display_logged_error_marketplace' | 'option_dev_show_display_logged_error_ui' | 'option_dev_show_display_logged_error_osi' | 'option_dev_show_display_logged_error_other' | 'spacer_0' }, + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_marketplace": { type: T.PANEL, children: string }, + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_ui": { type: T.PANEL, children: string }, + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_osi": { type: T.PANEL, children: string }, + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_other": { type: T.PANEL, children: string }, + "debug_display_logged_error_panel/debug_display_logged_error_panel_background/spacer_0": { type: T.PANEL, children: string }, + "xbox_sandbox_panel": { type: T.STACK_PANEL, children: 'padding0' | 'display_override_xbox_sandbox_toggle_windows' | 'display_override_xbox_sandbox_toggle' | 'override_xbox_options_panel' }, + "xbox_sandbox_panel/padding0": { type: T.PANEL, children: string }, + "xbox_sandbox_panel/display_override_xbox_sandbox_toggle_windows": { type: T.PANEL, children: string }, + "xbox_sandbox_panel/display_override_xbox_sandbox_toggle": { type: T.PANEL, children: string }, + "xbox_sandbox_panel/override_xbox_options_panel": { type: T.PANEL, children: string }, + "override_xbox_options_panel": { type: T.PANEL, children: 'override_xbox_options' }, + "override_xbox_options_panel/override_xbox_options": { type: T.STACK_PANEL, children: 'option_dropdown_xbox' }, + "override_xbox_options_panel/override_xbox_options/option_dropdown_xbox": { type: T.PANEL, children: string }, + "override_version_options_panel": { type: T.STACK_PANEL, children: 'override_version_panel' | 'override_version_button_panel' | 'override_date_panel_bottom_padding' }, + "override_version_options_panel/override_version_panel": { type: T.STACK_PANEL, children: string }, + "override_version_options_panel/override_version_button_panel": { type: T.PANEL, children: 'update_override_version_button' }, + "override_version_options_panel/override_version_button_panel/update_override_version_button": { type: T.BUTTON, children: string }, + "override_version_options_panel/override_date_panel_bottom_padding": { type: T.PANEL, children: string }, + "override_version_panel": { type: T.STACK_PANEL, children: 'major_version_text_box' | 'first_dot' | 'minor_version_text_box' | 'second_dot' | 'patch_version_text_box' }, + "override_version_panel/major_version_text_box": { type: T.PANEL, children: string }, + "override_version_panel/first_dot": { type: T.LABEL, children: string }, + "override_version_panel/minor_version_text_box": { type: T.PANEL, children: string }, + "override_version_panel/second_dot": { type: T.LABEL, children: string }, + "override_version_panel/patch_version_text_box": { type: T.PANEL, children: string }, + "dot_label": { type: T.LABEL, children: string }, + "debug_override_treatments_panel": { type: T.PANEL, children: 'override_treatments_panel_background' }, + "debug_override_treatments_panel/override_treatments_panel_background": { type: T.STACK_PANEL, children: 'option_toggle_treatment_override' | 'spacer_0' | 'override_treatment_options_panel' | 'treatments_label_panel' | 'progress_spinner_1' | 'treatment_grid' | 'unused_treatments_label_panel' | 'progress_spinner_2' | 'unused_treatment_grid' | 'spacer_1' }, + "debug_override_treatments_panel/override_treatments_panel_background/option_toggle_treatment_override": { type: T.PANEL, children: string }, + "debug_override_treatments_panel/override_treatments_panel_background/spacer_0": { type: T.PANEL, children: string }, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel": { type: T.STACK_PANEL, children: 'apply_treatments_button' | 'add_treatments_panel' | 'treatment_cache_management_panel' }, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/apply_treatments_button": { type: T.BUTTON, children: string }, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel": { type: T.STACK_PANEL, children: 'text_edit_treatment' | 'add_button_panel' }, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/text_edit_treatment": { type: T.PANEL, children: string }, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/add_button_panel": { type: T.PANEL, children: 'add_button' }, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/add_button_panel/add_button": { type: T.BUTTON, children: string }, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel": { type: T.STACK_PANEL, children: 'reset_to_default' | 'clear_treatments' }, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/reset_to_default": { type: T.BUTTON, children: string }, + "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/clear_treatments": { type: T.BUTTON, children: string }, + "debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel": { type: T.IMAGE, children: 'treatments_label' }, + "debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel/treatments_label": { type: T.LABEL, children: string }, + "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1": { type: T.PANEL, children: 'progress_loading_spinner_1' }, + "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1/progress_loading_spinner_1": { type: T.IMAGE, children: string }, + "debug_override_treatments_panel/override_treatments_panel_background/treatment_grid": { type: T.GRID, children: string }, + "debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel": { type: T.IMAGE, children: 'treatments_label' }, + "debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel/treatments_label": { type: T.LABEL, children: string }, + "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2": { type: T.PANEL, children: 'progress_loading_spinner_2' }, + "debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2/progress_loading_spinner_2": { type: T.IMAGE, children: string }, + "debug_override_treatments_panel/override_treatments_panel_background/unused_treatment_grid": { type: T.GRID, children: string }, + "debug_override_treatments_panel/override_treatments_panel_background/spacer_1": { type: T.PANEL, children: string }, + "debug_override_configurations_panel": { type: T.PANEL, children: 'override_configurations_panel_background' }, + "debug_override_configurations_panel/override_configurations_panel_background": { type: T.STACK_PANEL, children: 'option_toggle_configuration_override' | 'spacer_0' | 'override_configuration_options_panel' | 'configuration_grid' }, + "debug_override_configurations_panel/override_configurations_panel_background/option_toggle_configuration_override": { type: T.PANEL, children: string }, + "debug_override_configurations_panel/override_configurations_panel_background/spacer_0": { type: T.PANEL, children: string }, + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel": { type: T.STACK_PANEL, children: 'add_configurations_panel' | 'configuration_cache_management_panel' }, + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel": { type: T.STACK_PANEL, children: 'text_edit_configuration' | 'add_button_panel' }, + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/text_edit_configuration": { type: T.PANEL, children: string }, + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/add_button_panel": { type: T.PANEL, children: 'add_button' }, + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/add_button_panel/add_button": { type: T.BUTTON, children: string }, + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel": { type: T.STACK_PANEL, children: 'reset_to_default' | 'clear_configurations' }, + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel/reset_to_default": { type: T.BUTTON, children: string }, + "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel/clear_configurations": { type: T.BUTTON, children: string }, + "debug_override_configurations_panel/override_configurations_panel_background/configuration_grid": { type: T.GRID, children: string }, + "debug_override_realms_features_panel": { type: T.PANEL, children: 'override_realms_features_panel_background' }, + "debug_override_realms_features_panel/override_realms_features_panel_background": { type: T.STACK_PANEL, children: 'option_toggle_realms_feature_override' | 'spacer_0' | 'override_realms_features_options_panel' | 'current_realms_features_label_panel' | 'realms_features_grid' | 'unused_realms_features_label_panel' | 'unused_realms_features_grid' }, + "debug_override_realms_features_panel/override_realms_features_panel_background/option_toggle_realms_feature_override": { type: T.PANEL, children: string }, + "debug_override_realms_features_panel/override_realms_features_panel_background/spacer_0": { type: T.PANEL, children: string }, + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel": { type: T.STACK_PANEL, children: 'add_realms_features_panel' | 'realms_feature_cache_management_panel' }, + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel": { type: T.STACK_PANEL, children: 'text_edit_realms_features' | 'add_button_panel' }, + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/text_edit_realms_features": { type: T.PANEL, children: string }, + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/add_button_panel": { type: T.PANEL, children: 'add_button' }, + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/add_button_panel/add_button": { type: T.BUTTON, children: string }, + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel": { type: T.STACK_PANEL, children: 'reset_to_default' | 'clear_realms_features' }, + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel/reset_to_default": { type: T.BUTTON, children: string }, + "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel/clear_realms_features": { type: T.BUTTON, children: string }, + "debug_override_realms_features_panel/override_realms_features_panel_background/current_realms_features_label_panel": { type: T.IMAGE, children: 'realms_features_label' }, + "debug_override_realms_features_panel/override_realms_features_panel_background/current_realms_features_label_panel/realms_features_label": { type: T.LABEL, children: string }, + "debug_override_realms_features_panel/override_realms_features_panel_background/realms_features_grid": { type: T.GRID, children: string }, + "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_label_panel": { type: T.IMAGE, children: 'realms_features_label' }, + "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_label_panel/realms_features_label": { type: T.LABEL, children: string }, + "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_grid": { type: T.GRID, children: string }, + "configuration_grid_item": { type: T.STACK_PANEL, children: 'configuration_id_panel' | 'remove_button' }, + "configuration_grid_item/configuration_id_panel": { type: T.IMAGE, children: 'configuration_id' }, + "configuration_grid_item/configuration_id_panel/configuration_id": { type: T.LABEL, children: string }, + "configuration_grid_item/remove_button": { type: T.BUTTON, children: string }, + "remove_configuration_icon": { type: T.IMAGE, children: string }, + "realms_feature_grid_item": { type: T.STACK_PANEL, children: 'realms_feature_id_panel' | 'disable_button' }, + "realms_feature_grid_item/realms_feature_id_panel": { type: T.IMAGE, children: 'realms_feature_id' }, + "realms_feature_grid_item/realms_feature_id_panel/realms_feature_id": { type: T.LABEL, children: string }, + "realms_feature_grid_item/disable_button": { type: T.BUTTON, children: string }, + "disable_realms_feature_icon": { type: T.IMAGE, children: string }, + "unused_realms_feature_grid_item": { type: T.STACK_PANEL, children: 'unused_realms_feature_id_panel' | 'enable_button' }, + "unused_realms_feature_grid_item/unused_realms_feature_id_panel": { type: T.IMAGE, children: 'unused_realms_feature_id' }, + "unused_realms_feature_grid_item/unused_realms_feature_id_panel/unused_realms_feature_id": { type: T.LABEL, children: string }, + "unused_realms_feature_grid_item/enable_button": { type: T.BUTTON, children: string }, + "enable_realms_feature_icon": { type: T.IMAGE, children: string }, + "treatment_grid_item": { type: T.STACK_PANEL, children: 'treatment_id_panel' | 'remove_button' }, + "treatment_grid_item/treatment_id_panel": { type: T.IMAGE, children: 'treatment_id' }, + "treatment_grid_item/treatment_id_panel/treatment_id": { type: T.LABEL, children: string }, + "treatment_grid_item/remove_button": { type: T.BUTTON, children: string }, + "remove_treatment_icon": { type: T.IMAGE, children: string }, + "unused_treatment_grid_item": { type: T.STACK_PANEL, children: 'unused_treatment_id_panel' | 'add_button' }, + "unused_treatment_grid_item/unused_treatment_id_panel": { type: T.IMAGE, children: 'unused_treatment_id' }, + "unused_treatment_grid_item/unused_treatment_id_panel/unused_treatment_id": { type: T.LABEL, children: string }, + "unused_treatment_grid_item/add_button": { type: T.BUTTON, children: string }, + "add_treatment_icon": { type: T.IMAGE, children: string }, + "debug_select_windows_store_panel": { type: T.STACK_PANEL, children: 'select_store_dropdown' | 'stores_label' | 'sandbox_label' }, + "debug_select_windows_store_panel/select_store_dropdown": { type: T.PANEL, children: string }, + "debug_select_windows_store_panel/stores_label": { type: T.LABEL, children: string }, + "debug_select_windows_store_panel/sandbox_label": { type: T.LABEL, children: string }, + "windows_store_dropdown_content": { type: T.PANEL, children: string }, + "mock_http_panel": { type: T.STACK_PANEL, children: 'display_mock_http_panel_toggle' | 'mock_http_panel_content' }, + "mock_http_panel/display_mock_http_panel_toggle": { type: T.PANEL, children: string }, + "mock_http_panel/mock_http_panel_content": { type: T.PANEL, children: string }, + "mock_http_panel_content": { type: T.PANEL, children: 'mock_http_panel_background' }, + "mock_http_panel_content/mock_http_panel_background": { type: T.STACK_PANEL, children: 'add_mock_rules_button' | 'remove_all_mock_rules_button' | 'active_rules_label' | 'rule_list' | 'divider' }, + "mock_http_panel_content/mock_http_panel_background/add_mock_rules_button": { type: T.BUTTON, children: string }, + "mock_http_panel_content/mock_http_panel_background/remove_all_mock_rules_button": { type: T.BUTTON, children: string }, + "mock_http_panel_content/mock_http_panel_background/active_rules_label": { type: T.LABEL, children: string }, + "mock_http_panel_content/mock_http_panel_background/rule_list": { type: T.STACK_PANEL, children: string }, + "mock_http_panel_content/mock_http_panel_background/divider": { type: T.STACK_PANEL, children: string }, + "mock_http_rule_list": { type: T.STACK_PANEL, children: string }, + "mock_http_rule": { type: T.STACK_PANEL, children: 'rule_details_label' | 'rule_spacer' }, + "mock_http_rule/rule_details_label": { type: T.LABEL, children: string }, + "mock_http_rule/rule_spacer": { type: T.PANEL, children: string }, + "automation_button": { type: T.PANEL, children: string }, + "automation_section": { type: T.STACK_PANEL, children: 'automation_tab_label' | 'padding' | 'automation_test_asset_sas_text_box' | 'automation_functional_test_tags_text_box' | 'automation_server_test_tags_text_box' | 'automation_unit_test_tags_text_box' | 'automation_broken_functional_test_tags_text_box' | 'automation_broken_server_test_tags_text_box' | 'automation_broken_unit_test_tags_text_box' | 'automation_repeat_count_text_box' | 'automation_soak_test_duration_minutes_text_box' | 'automation_repeat_failures_only_toggle' | 'automation_run_entire_server_test_group' | 'automation_testbuild_id_text_box' | 'automation_functional_test_block_input_toggle' | 'automation_server_test_assert_on_level_diff_toggle' }, + "automation_section/automation_tab_label": { type: T.LABEL, children: string }, + "automation_section/padding": { type: T.PANEL, children: string }, + "automation_section/automation_test_asset_sas_text_box": { type: T.PANEL, children: string }, + "automation_section/automation_functional_test_tags_text_box": { type: T.PANEL, children: string }, + "automation_section/automation_server_test_tags_text_box": { type: T.PANEL, children: string }, + "automation_section/automation_unit_test_tags_text_box": { type: T.PANEL, children: string }, + "automation_section/automation_broken_functional_test_tags_text_box": { type: T.PANEL, children: string }, + "automation_section/automation_broken_server_test_tags_text_box": { type: T.PANEL, children: string }, + "automation_section/automation_broken_unit_test_tags_text_box": { type: T.PANEL, children: string }, + "automation_section/automation_repeat_count_text_box": { type: T.PANEL, children: string }, + "automation_section/automation_soak_test_duration_minutes_text_box": { type: T.PANEL, children: string }, + "automation_section/automation_repeat_failures_only_toggle": { type: T.PANEL, children: string }, + "automation_section/automation_run_entire_server_test_group": { type: T.PANEL, children: string }, + "automation_section/automation_testbuild_id_text_box": { type: T.PANEL, children: string }, + "automation_section/automation_functional_test_block_input_toggle": { type: T.PANEL, children: string }, + "automation_section/automation_server_test_assert_on_level_diff_toggle": { type: T.PANEL, children: string }, + "discovery_debug_button": { type: T.PANEL, children: string }, + "discovery_debug_section": { type: T.STACK_PANEL, children: 'option_discovery_environment' | 'debug_override_discovery_panel' }, + "discovery_debug_section/option_discovery_environment": { type: T.PANEL, children: string }, + "discovery_debug_section/debug_override_discovery_panel": { type: T.PANEL, children: 'override_discovery_panel_background' }, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background": { type: T.STACK_PANEL, children: 'option_toggle_discovery_override' | 'spacer_0' | 'override_discovery_options_panel' }, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/option_toggle_discovery_override": { type: T.PANEL, children: string }, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/spacer_0": { type: T.PANEL, children: string }, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel": { type: T.STACK_PANEL, children: 'text_edit_discovery_override_service_name' | 'service_override_type' | 'text_edit_discovery_override_service_branch' | 'text_edit_discovery_override_service_custom' | 'service_override_management_panel' | 'spacer_1' | 'active_service_overrides_label' | 'spacer_2' | 'reset_all_endpoint_overrides_button' | 'discovery_overrides_do_not_save_label' | 'spacer_3' }, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_name": { type: T.PANEL, children: string }, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_type": { type: T.PANEL, children: string }, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_branch": { type: T.PANEL, children: string }, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_custom": { type: T.PANEL, children: string }, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel": { type: T.STACK_PANEL, children: 'reset_endpoint_override' | 'apply_endpoint_override' }, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel/reset_endpoint_override": { type: T.BUTTON, children: string }, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel/apply_endpoint_override": { type: T.BUTTON, children: string }, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_1": { type: T.PANEL, children: string }, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/active_service_overrides_label": { type: T.LABEL, children: string }, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_2": { type: T.PANEL, children: string }, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/reset_all_endpoint_overrides_button": { type: T.BUTTON, children: string }, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/discovery_overrides_do_not_save_label": { type: T.LABEL, children: string }, + "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_3": { type: T.PANEL, children: string }, + "debug_button": { type: T.PANEL, children: string }, + "feature_toggle": { type: T.PANEL, children: string }, + "debug_section": { type: T.STACK_PANEL, children: 'options_for_qa_convenience' | 'options_for_qa_convenience_spacer' | 'option_toggle_dev_console_button_0' | 'option_toggle_assertions_debug_break' | 'option_toggle_assertions_show_dialog' | 'option_dev_show_display_logged_error' | 'display_logged_error_panel' | 'option_dev_force_trial_mode' | 'option_dev_force_trial_mode_spacer' | 'debug_overlay_pages_label' | 'debug_overlay_button_panel' | 'pre_feature_toggles_label_spacer' | 'feature_toggles_label' | 'feature_toggles_label_spacer' | 'feature_toggles' | 'end_of_feature_toggles_label_spacer' | 'option_toggle_dev_disable_lan_signaling' | 'option_dropdown_nethernet_logging_verbosity' | 'option_dropdown_http_logging_verbosity' | 'option_dropdown_xsapi_logging_verbosity' | 'option_toggle_remote_imgui' | 'option_dropdown_0' | 'option_toggle_extra_debug_hud_info' | 'option_toggle_0_1' | 'option_toggle_0_2' | 'option_slider_0' | 'option_toggle_3' | 'option_toggle_4' | 'option_toggle_5' | 'option_toggle_6' | 'option_dropdown_server_chunk_map' | 'option_toggle_9' | 'option_toggle_disable_render_terrain' | 'option_toggle_disable_render_entities' | 'option_toggle_disable_render_blockentities' | 'option_toggle_disable_render_particles' | 'option_toggle_disable_render_sky' | 'option_toggle_disable_render_weather' | 'option_toggle_disable_render_hud' | 'option_toggle_disable_render_item_in_hand' | 'option_toggle_disable_render_main_menu_cubemap' | 'option_toggle_disable_render_main_menu_paperdoll_animation' | 'leak_memory' | 'log_area' | 'log_priority' | 'option_toggle_build_info' | 'option_perf_turtle' | 'option_default_profiling_option' | 'option_toggle_7' | 'option_toggle_8' | 'option_toggle_game_tip' | 'option_toggle_10' | 'dev_disable_client_blob_cache_toggle' | 'dev_force_client_blob_cache_toggle' | 'devquality_dropdown' | 'dev_add_http_delay_seconds' | 'dev_show_latency_graph_toggle' | 'xbox_sandbox_panel' | 'multithreaded_rendering_toggle' | 'filewatcher_rendering_toggle' | 'enable_texture_hot_reloader_toggle' | 'mock_http_panel' | 'vsync_dropdown' | 'sunsetting_use_overrides_toggle' | 'padding_sunsetting' | 'sunseting_state_toggle' | 'sunsetting_tier_dropdown' | 'padding_sunsetting_2' | 'padding1' | 'copy_internal_settings_folder_to_external' | 'padding_reset_day_one' | 'reset_new_player_flow' | 'reset_day_one_experience' | 'option_text_edit_1' | 'option_text_edit_2' | 'option_text_edit_3' | 'reset_report_timer_option' | 'reset_online_safety_option' | 'reset_ip_safety_option' | 'padding_graphics_options' | 'option_shadersdk_service_ip' | 'option_shadersdk_service_port' | 'option_shadersdk_target_port' | 'padding_graphics_buttons' | 'trigger_graphics_device_loss' | 'allocate_texture_handles' | 'padding_deferred_debug' | 'deferred_platform_override' }, + "debug_section/options_for_qa_convenience": { type: T.LABEL, children: string }, + "debug_section/options_for_qa_convenience_spacer": { type: T.PANEL, children: string }, + "debug_section/option_toggle_dev_console_button_0": { type: T.PANEL, children: string }, + "debug_section/option_toggle_assertions_debug_break": { type: T.PANEL, children: string }, + "debug_section/option_toggle_assertions_show_dialog": { type: T.PANEL, children: string }, + "debug_section/option_dev_show_display_logged_error": { type: T.PANEL, children: string }, + "debug_section/display_logged_error_panel": { type: T.PANEL, children: string }, + "debug_section/option_dev_force_trial_mode": { type: T.PANEL, children: string }, + "debug_section/option_dev_force_trial_mode_spacer": { type: T.PANEL, children: string }, + "debug_section/debug_overlay_pages_label": { type: T.LABEL, children: string }, + "debug_section/debug_overlay_button_panel": { type: T.PANEL, children: 'debug_overlay_previous_button' | 'debug_overlay_next_button' }, + "debug_section/debug_overlay_button_panel/debug_overlay_previous_button": { type: T.BUTTON, children: string }, + "debug_section/debug_overlay_button_panel/debug_overlay_next_button": { type: T.BUTTON, children: string }, + "debug_section/pre_feature_toggles_label_spacer": { type: T.PANEL, children: string }, + "debug_section/feature_toggles_label": { type: T.LABEL, children: string }, + "debug_section/feature_toggles_label_spacer": { type: T.PANEL, children: string }, + "debug_section/feature_toggles": { type: T.STACK_PANEL, children: string }, + "debug_section/end_of_feature_toggles_label_spacer": { type: T.PANEL, children: string }, + "debug_section/option_toggle_dev_disable_lan_signaling": { type: T.PANEL, children: string }, + "debug_section/option_dropdown_nethernet_logging_verbosity": { type: T.PANEL, children: string }, + "debug_section/option_dropdown_http_logging_verbosity": { type: T.PANEL, children: string }, + "debug_section/option_dropdown_xsapi_logging_verbosity": { type: T.PANEL, children: string }, + "debug_section/option_toggle_remote_imgui": { type: T.PANEL, children: string }, + "debug_section/option_dropdown_0": { type: T.PANEL, children: string }, + "debug_section/option_toggle_extra_debug_hud_info": { type: T.PANEL, children: string }, + "debug_section/option_toggle_0_1": { type: T.PANEL, children: string }, + "debug_section/option_toggle_0_2": { type: T.PANEL, children: string }, + "debug_section/option_slider_0": { type: T.PANEL, children: string }, + "debug_section/option_toggle_3": { type: T.PANEL, children: string }, + "debug_section/option_toggle_4": { type: T.PANEL, children: string }, + "debug_section/option_toggle_5": { type: T.PANEL, children: string }, + "debug_section/option_toggle_6": { type: T.PANEL, children: string }, + "debug_section/option_dropdown_server_chunk_map": { type: T.PANEL, children: string }, + "debug_section/option_toggle_9": { type: T.PANEL, children: string }, + "debug_section/option_toggle_disable_render_terrain": { type: T.PANEL, children: string }, + "debug_section/option_toggle_disable_render_entities": { type: T.PANEL, children: string }, + "debug_section/option_toggle_disable_render_blockentities": { type: T.PANEL, children: string }, + "debug_section/option_toggle_disable_render_particles": { type: T.PANEL, children: string }, + "debug_section/option_toggle_disable_render_sky": { type: T.PANEL, children: string }, + "debug_section/option_toggle_disable_render_weather": { type: T.PANEL, children: string }, + "debug_section/option_toggle_disable_render_hud": { type: T.PANEL, children: string }, + "debug_section/option_toggle_disable_render_item_in_hand": { type: T.PANEL, children: string }, + "debug_section/option_toggle_disable_render_main_menu_cubemap": { type: T.PANEL, children: string }, + "debug_section/option_toggle_disable_render_main_menu_paperdoll_animation": { type: T.PANEL, children: string }, + "debug_section/leak_memory": { type: T.PANEL, children: string }, + "debug_section/log_area": { type: T.PANEL, children: string }, + "debug_section/log_priority": { type: T.PANEL, children: string }, + "debug_section/option_toggle_build_info": { type: T.PANEL, children: string }, + "debug_section/option_perf_turtle": { type: T.PANEL, children: string }, + "debug_section/option_default_profiling_option": { type: T.PANEL, children: string }, + "debug_section/option_toggle_7": { type: T.PANEL, children: string }, + "debug_section/option_toggle_8": { type: T.PANEL, children: string }, + "debug_section/option_toggle_game_tip": { type: T.PANEL, children: string }, + "debug_section/option_toggle_10": { type: T.PANEL, children: string }, + "debug_section/dev_disable_client_blob_cache_toggle": { type: T.PANEL, children: string }, + "debug_section/dev_force_client_blob_cache_toggle": { type: T.PANEL, children: string }, + "debug_section/devquality_dropdown": { type: T.PANEL, children: string }, + "debug_section/dev_add_http_delay_seconds": { type: T.PANEL, children: string }, + "debug_section/dev_show_latency_graph_toggle": { type: T.PANEL, children: string }, + "debug_section/xbox_sandbox_panel": { type: T.STACK_PANEL, children: string }, + "debug_section/multithreaded_rendering_toggle": { type: T.PANEL, children: string }, + "debug_section/filewatcher_rendering_toggle": { type: T.PANEL, children: string }, + "debug_section/enable_texture_hot_reloader_toggle": { type: T.PANEL, children: string }, + "debug_section/mock_http_panel": { type: T.STACK_PANEL, children: string }, + "debug_section/vsync_dropdown": { type: T.PANEL, children: string }, + "debug_section/sunsetting_use_overrides_toggle": { type: T.PANEL, children: string }, + "debug_section/padding_sunsetting": { type: T.PANEL, children: string }, + "debug_section/sunseting_state_toggle": { type: T.PANEL, children: string }, + "debug_section/sunsetting_tier_dropdown": { type: T.PANEL, children: string }, + "debug_section/padding_sunsetting_2": { type: T.PANEL, children: string }, + "debug_section/padding1": { type: T.PANEL, children: string }, + "debug_section/copy_internal_settings_folder_to_external": { type: T.BUTTON, children: string }, + "debug_section/padding_reset_day_one": { type: T.PANEL, children: string }, + "debug_section/reset_new_player_flow": { type: T.BUTTON, children: string }, + "debug_section/reset_day_one_experience": { type: T.BUTTON, children: string }, + "debug_section/option_text_edit_1": { type: T.PANEL, children: string }, + "debug_section/option_text_edit_2": { type: T.PANEL, children: string }, + "debug_section/option_text_edit_3": { type: T.PANEL, children: string }, + "debug_section/reset_report_timer_option": { type: T.BUTTON, children: string }, + "debug_section/reset_online_safety_option": { type: T.BUTTON, children: string }, + "debug_section/reset_ip_safety_option": { type: T.BUTTON, children: string }, + "debug_section/padding_graphics_options": { type: T.PANEL, children: string }, + "debug_section/option_shadersdk_service_ip": { type: T.PANEL, children: string }, + "debug_section/option_shadersdk_service_port": { type: T.PANEL, children: string }, + "debug_section/option_shadersdk_target_port": { type: T.PANEL, children: string }, + "debug_section/padding_graphics_buttons": { type: T.PANEL, children: string }, + "debug_section/trigger_graphics_device_loss": { type: T.BUTTON, children: string }, + "debug_section/allocate_texture_handles": { type: T.BUTTON, children: string }, + "debug_section/padding_deferred_debug": { type: T.PANEL, children: string }, + "debug_section/deferred_platform_override": { type: T.PANEL, children: string }, + "realms_debug_button": { type: T.PANEL, children: string }, + "realms_debug_section": { type: T.STACK_PANEL, children: 'realms_menu_title' | 'realms_title_spacer' | 'feature_toggles_label' | 'feature_toggles_label_spacer' | 'feature_toggles' | 'end_of_feature_toggles_label_spacer' | 'realms_dev_toggles_title' | 'realms_dev_toggle_spacer' | 'realms_without_purchase_toggle' | 'realms_debug_options_title' | 'realms_debug_options_spacer' | 'option_dropdown_1' | 'option_dropdown_2' | 'option_text_edit_0' | 'realms_features_override_panel' | 'realms_debug_options_spacer_2' }, + "realms_debug_section/realms_menu_title": { type: T.LABEL, children: string }, + "realms_debug_section/realms_title_spacer": { type: T.PANEL, children: string }, + "realms_debug_section/feature_toggles_label": { type: T.LABEL, children: string }, + "realms_debug_section/feature_toggles_label_spacer": { type: T.PANEL, children: string }, + "realms_debug_section/feature_toggles": { type: T.STACK_PANEL, children: string }, + "realms_debug_section/end_of_feature_toggles_label_spacer": { type: T.PANEL, children: string }, + "realms_debug_section/realms_dev_toggles_title": { type: T.LABEL, children: string }, + "realms_debug_section/realms_dev_toggle_spacer": { type: T.PANEL, children: string }, + "realms_debug_section/realms_without_purchase_toggle": { type: T.PANEL, children: string }, + "realms_debug_section/realms_debug_options_title": { type: T.LABEL, children: string }, + "realms_debug_section/realms_debug_options_spacer": { type: T.PANEL, children: string }, + "realms_debug_section/option_dropdown_1": { type: T.PANEL, children: string }, + "realms_debug_section/option_dropdown_2": { type: T.PANEL, children: string }, + "realms_debug_section/option_text_edit_0": { type: T.PANEL, children: string }, + "realms_debug_section/realms_features_override_panel": { type: T.STACK_PANEL, children: 'option_toggle_realms_features_override' | 'override_realms_features_panel' }, + "realms_debug_section/realms_features_override_panel/option_toggle_realms_features_override": { type: T.PANEL, children: string }, + "realms_debug_section/realms_features_override_panel/override_realms_features_panel": { type: T.PANEL, children: string }, + "realms_debug_section/realms_debug_options_spacer_2": { type: T.PANEL, children: string }, + "realms_feature_toggle": { type: T.PANEL, children: string }, + "marketplace_debug_button": { type: T.PANEL, children: string }, + "marketplace_debug_section": { type: T.STACK_PANEL, children: 'marketplace_feature_toggles_label' | 'marketplace_feature_toggles_label_spacer' | 'marketplace_feature_toggles' | 'playfab_token_refresh_threshold' | 'option_dropdown_skin_rotation_speed' | 'option_toggle_all_skins_rotate' | 'option_toggle_display_marketplace_document_id' | 'option_toggle_display_platform_offer_check' | 'version_options_panel' | 'select_windows_store_panel' | 'date_options_panel' | 'option_clear_store_cache_button' | 'option_clear_all_cache_button' | 'option_delete_all_personas_button' | 'option_delete_legacy_personas_button' | 'padding2' | 'enable_coin_debug_switch_toggle' | 'add_500_coins' | 'add_100000_coins' | 'padding3' | 'reset_entitlements' | 'reset_wallet' }, + "marketplace_debug_section/marketplace_feature_toggles_label": { type: T.LABEL, children: string }, + "marketplace_debug_section/marketplace_feature_toggles_label_spacer": { type: T.PANEL, children: string }, + "marketplace_debug_section/marketplace_feature_toggles": { type: T.STACK_PANEL, children: string }, + "marketplace_debug_section/playfab_token_refresh_threshold": { type: T.PANEL, children: string }, + "marketplace_debug_section/option_dropdown_skin_rotation_speed": { type: T.PANEL, children: string }, + "marketplace_debug_section/option_toggle_all_skins_rotate": { type: T.PANEL, children: string }, + "marketplace_debug_section/option_toggle_display_marketplace_document_id": { type: T.PANEL, children: string }, + "marketplace_debug_section/option_toggle_display_platform_offer_check": { type: T.PANEL, children: string }, + "marketplace_debug_section/version_options_panel": { type: T.STACK_PANEL, children: 'option_version_override' | 'override_version_options_panel' }, + "marketplace_debug_section/version_options_panel/option_version_override": { type: T.PANEL, children: string }, + "marketplace_debug_section/version_options_panel/override_version_options_panel": { type: T.STACK_PANEL, children: string }, + "marketplace_debug_section/select_windows_store_panel": { type: T.STACK_PANEL, children: string }, + "marketplace_debug_section/date_options_panel": { type: T.STACK_PANEL, children: string }, + "marketplace_debug_section/option_clear_store_cache_button": { type: T.BUTTON, children: string }, + "marketplace_debug_section/option_clear_all_cache_button": { type: T.BUTTON, children: string }, + "marketplace_debug_section/option_delete_all_personas_button": { type: T.BUTTON, children: string }, + "marketplace_debug_section/option_delete_legacy_personas_button": { type: T.BUTTON, children: string }, + "marketplace_debug_section/padding2": { type: T.PANEL, children: string }, + "marketplace_debug_section/enable_coin_debug_switch_toggle": { type: T.PANEL, children: string }, + "marketplace_debug_section/add_500_coins": { type: T.BUTTON, children: string }, + "marketplace_debug_section/add_100000_coins": { type: T.BUTTON, children: string }, + "marketplace_debug_section/padding3": { type: T.PANEL, children: string }, + "marketplace_debug_section/reset_entitlements": { type: T.BUTTON, children: string }, + "marketplace_debug_section/reset_wallet": { type: T.BUTTON, children: string }, + "marketplace_feature_toggle": { type: T.PANEL, children: string }, + "gatherings_debug_button": { type: T.PANEL, children: string }, + "gatherings_debug_section": { type: T.STACK_PANEL, children: 'refresh_gatherings_button' | 'spacer_1' | 'clear_system_service_pack_cache_button' | 'spacer_2' | 'active_gathering_label' | 'spacer_3' | 'text_edit_filter_gatherings' | 'spacer_4' | 'available_gatherings_section' }, + "gatherings_debug_section/refresh_gatherings_button": { type: T.BUTTON, children: string }, + "gatherings_debug_section/spacer_1": { type: T.PANEL, children: string }, + "gatherings_debug_section/clear_system_service_pack_cache_button": { type: T.BUTTON, children: string }, + "gatherings_debug_section/spacer_2": { type: T.PANEL, children: string }, + "gatherings_debug_section/active_gathering_label": { type: T.LABEL, children: string }, + "gatherings_debug_section/spacer_3": { type: T.PANEL, children: string }, + "gatherings_debug_section/text_edit_filter_gatherings": { type: T.PANEL, children: string }, + "gatherings_debug_section/spacer_4": { type: T.PANEL, children: string }, + "gatherings_debug_section/available_gatherings_section": { type: T.STACK_PANEL, children: string }, + "gathering_grid_item_content": { type: T.STACK_PANEL, children: 'gathering_name' | 'gathering_uuid' }, + "gathering_grid_item_content/gathering_name": { type: T.LABEL, children: string }, + "gathering_grid_item_content/gathering_uuid": { type: T.LABEL, children: string }, + "gathering_item_template": { type: T.PANEL, children: 'gathering_item_button' }, + "gathering_item_template/gathering_item_button": { type: T.BUTTON, children: string }, + "available_gatherings_grid": { type: T.GRID, children: string }, + "available_gatherings_panel": { type: T.STACK_PANEL, children: 'available_label' | 'gatherings_grid' | 'spacing_gap' }, + "available_gatherings_panel/available_label": { type: T.LABEL, children: string }, + "available_gatherings_panel/gatherings_grid": { type: T.GRID, children: string }, + "available_gatherings_panel/spacing_gap": { type: T.PANEL, children: string }, + "available_gatherings_section": { type: T.STACK_PANEL, children: 'available_gatherings_panel' }, + "available_gatherings_section/available_gatherings_panel": { type: T.STACK_PANEL, children: string }, + "ui_debug_button": { type: T.PANEL, children: string }, + "ui_feature_toggle": { type: T.PANEL, children: string }, + "edu_debug_button": { type: T.PANEL, children: string }, + "edu_feature_toggle": { type: T.PANEL, children: string }, + "new_create_world_grid_item": { type: T.PANEL, children: string }, + "new_edu_create_world_screen_grid_item": { type: T.PANEL, children: string }, + "new_play_screen_grid_item": { type: T.PANEL, children: string }, + "new_edit_world_screen_grid_item": { type: T.PANEL, children: string }, + "new_player_permissions_screen_grid_item": { type: T.PANEL, children: string }, + "new_send_invites_screen_grid_item": { type: T.PANEL, children: string }, + "new_death_grid_item": { type: T.PANEL, children: string }, + "new_bed_grid_item": { type: T.PANEL, children: string }, + "ore_ui_gameplay_ui_grid_item": { type: T.PANEL, children: string }, + "new_settings_screen_grid_item": { type: T.PANEL, children: string }, + "ui_debug_section": { type: T.STACK_PANEL, children: 'ui_feature_toggles_label' | 'ui_feature_toggles_info_label' | 'ui_feature_toggles_label_spacer' | 'ui_feature_toggles' | 'end_of_ui_feature_toggles_label_divider' | 'end_of_ui_feature_toggles_label_divider_spacer' | 'end_of_ui_feature_toggles_label_spacer' | 'screen_override_label' | 'screen_override_info_label' | 'screen_override_label_spacer' | 'new_edu_create_world_screen_radio_label' | 'new_edu_create_world_screen_radio_label_spacer' | 'new_edu_create_world_screen_radio_button' | 'new_edu_create_world_screen_radio_button_spacer' | 'new_play_screen_radio_label' | 'new_play_screen_radio_label_spacer' | 'new_play_screen_radio_button' | 'new_play_screen_radio_button_spacer' | 'new_edit_world_screen_radio_label' | 'new_edit_world_screen_radio_label_spacer' | 'new_edit_world_screen_radio_button' | 'new_edit_world_screen_radio_button_spacer' | 'new_send_invites_radio_label' | 'new_send_invites_screen_radio_label_spacer' | 'new_send_invites_screen_radio_button' | 'new_send_invites_screen_radio_button_spacer' | 'new_death_screen_radio_label' | 'new_death_screen_radio_label_spacer' | 'new_death_screen_radio_button' | 'new_death_screen_radio_button_spacer' | 'new_bed_screen_radio_label' | 'new_bed_screen_radio_label_spacer' | 'new_bed_screen_radio_button' | 'new_bed_screen_radio_button_spacer' | 'ore_ui_gameplay_ui_radio_label' | 'ore_ui_gameplay_ui_radio_label_spacer' | 'ore_ui_gameplay_ui_radio_button' | 'ore_ui_gameplay_ui_radio_button_spacer' | 'end_of_ui_screen_override_divider' | 'end_of_ui_sceen_override_divider_spacer' | 'new_settings_screen_radio_label' | 'new_settings_screen_radio_label_spacer' | 'new_settings_screen_radio_button' | 'new_settings_screen_radio_button_spacer' | 'screen_opt_in_options_label' | 'screen_opt_in_info_label' | 'screen_opt_in_options_label_spacer' | 'end_of_ui_screen_opt_in_divider' | 'end_of_ui_sceen_opt_in_divider_spacer' | 'other_ui_options_label' | 'other_ui_options_label_spacer' | 'option_toggle_default_font_override' | 'option_toggle_dev_show_tcui_replacement' | 'option_toggle_use_mobile_data_blocked_modal' | 'ui_feature_toggles_spacer' | 'option_show_touch_control_selection_screen' | 'option_reset_on_start' | 'option_slider_drag_dwell' | 'option_slider_stack_splitting' | 'reset_render_distance_warning_modal_label' | 'reset_render_distance_warning_modal_label_spacer' | 'reset_render_distance_warning_modal' | 'reset_render_distance_warning_modal_spacer' | 'ore_ui_developer_pages_divider' | 'ore_ui_developer_pages_spacer' | 'open_ore_ui_label' | 'open_ore_ui_info_label' | 'open_ore_ui_label_spacer' | 'open_ore_ui_docs' | 'open_ore_ui_tests' | 'open_ore_ui_perf' | 'open_ore_ui_test_modal' | 'open_ore_ui_tests_spacer' }, + "ui_debug_section/ui_feature_toggles_label": { type: T.LABEL, children: string }, + "ui_debug_section/ui_feature_toggles_info_label": { type: T.LABEL, children: string }, + "ui_debug_section/ui_feature_toggles_label_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/ui_feature_toggles": { type: T.STACK_PANEL, children: string }, + "ui_debug_section/end_of_ui_feature_toggles_label_divider": { type: T.PANEL, children: 'section_divider' }, + "ui_debug_section/end_of_ui_feature_toggles_label_divider/section_divider": { type: T.IMAGE, children: string }, + "ui_debug_section/end_of_ui_feature_toggles_label_divider_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/end_of_ui_feature_toggles_label_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/screen_override_label": { type: T.LABEL, children: string }, + "ui_debug_section/screen_override_info_label": { type: T.LABEL, children: string }, + "ui_debug_section/screen_override_label_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/new_edu_create_world_screen_radio_label": { type: T.LABEL, children: string }, + "ui_debug_section/new_edu_create_world_screen_radio_label_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/new_edu_create_world_screen_radio_button": { type: T.GRID, children: string }, + "ui_debug_section/new_edu_create_world_screen_radio_button_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/new_play_screen_radio_label": { type: T.LABEL, children: string }, + "ui_debug_section/new_play_screen_radio_label_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/new_play_screen_radio_button": { type: T.GRID, children: string }, + "ui_debug_section/new_play_screen_radio_button_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/new_edit_world_screen_radio_label": { type: T.LABEL, children: string }, + "ui_debug_section/new_edit_world_screen_radio_label_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/new_edit_world_screen_radio_button": { type: T.GRID, children: string }, + "ui_debug_section/new_edit_world_screen_radio_button_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/new_send_invites_radio_label": { type: T.LABEL, children: string }, + "ui_debug_section/new_send_invites_screen_radio_label_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/new_send_invites_screen_radio_button": { type: T.GRID, children: string }, + "ui_debug_section/new_send_invites_screen_radio_button_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/new_death_screen_radio_label": { type: T.LABEL, children: string }, + "ui_debug_section/new_death_screen_radio_label_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/new_death_screen_radio_button": { type: T.GRID, children: string }, + "ui_debug_section/new_death_screen_radio_button_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/new_bed_screen_radio_label": { type: T.LABEL, children: string }, + "ui_debug_section/new_bed_screen_radio_label_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/new_bed_screen_radio_button": { type: T.GRID, children: string }, + "ui_debug_section/new_bed_screen_radio_button_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/ore_ui_gameplay_ui_radio_label": { type: T.LABEL, children: string }, + "ui_debug_section/ore_ui_gameplay_ui_radio_label_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/ore_ui_gameplay_ui_radio_button": { type: T.GRID, children: string }, + "ui_debug_section/ore_ui_gameplay_ui_radio_button_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/end_of_ui_screen_override_divider": { type: T.PANEL, children: 'section_divider' }, + "ui_debug_section/end_of_ui_screen_override_divider/section_divider": { type: T.IMAGE, children: string }, + "ui_debug_section/end_of_ui_sceen_override_divider_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/new_settings_screen_radio_label": { type: T.LABEL, children: string }, + "ui_debug_section/new_settings_screen_radio_label_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/new_settings_screen_radio_button": { type: T.GRID, children: string }, + "ui_debug_section/new_settings_screen_radio_button_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/screen_opt_in_options_label": { type: T.LABEL, children: string }, + "ui_debug_section/screen_opt_in_info_label": { type: T.LABEL, children: string }, + "ui_debug_section/screen_opt_in_options_label_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/end_of_ui_screen_opt_in_divider": { type: T.PANEL, children: 'section_divider' }, + "ui_debug_section/end_of_ui_screen_opt_in_divider/section_divider": { type: T.IMAGE, children: string }, + "ui_debug_section/end_of_ui_sceen_opt_in_divider_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/other_ui_options_label": { type: T.LABEL, children: string }, + "ui_debug_section/other_ui_options_label_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/option_toggle_default_font_override": { type: T.PANEL, children: string }, + "ui_debug_section/option_toggle_dev_show_tcui_replacement": { type: T.PANEL, children: string }, + "ui_debug_section/option_toggle_use_mobile_data_blocked_modal": { type: T.PANEL, children: string }, + "ui_debug_section/ui_feature_toggles_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/option_show_touch_control_selection_screen": { type: T.PANEL, children: string }, + "ui_debug_section/option_reset_on_start": { type: T.PANEL, children: string }, + "ui_debug_section/option_slider_drag_dwell": { type: T.PANEL, children: string }, + "ui_debug_section/option_slider_stack_splitting": { type: T.PANEL, children: string }, + "ui_debug_section/reset_render_distance_warning_modal_label": { type: T.LABEL, children: string }, + "ui_debug_section/reset_render_distance_warning_modal_label_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/reset_render_distance_warning_modal": { type: T.BUTTON, children: string }, + "ui_debug_section/reset_render_distance_warning_modal_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/ore_ui_developer_pages_divider": { type: T.PANEL, children: 'section_divider' }, + "ui_debug_section/ore_ui_developer_pages_divider/section_divider": { type: T.IMAGE, children: string }, + "ui_debug_section/ore_ui_developer_pages_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/open_ore_ui_label": { type: T.LABEL, children: string }, + "ui_debug_section/open_ore_ui_info_label": { type: T.LABEL, children: string }, + "ui_debug_section/open_ore_ui_label_spacer": { type: T.PANEL, children: string }, + "ui_debug_section/open_ore_ui_docs": { type: T.BUTTON, children: string }, + "ui_debug_section/open_ore_ui_tests": { type: T.BUTTON, children: string }, + "ui_debug_section/open_ore_ui_perf": { type: T.BUTTON, children: string }, + "ui_debug_section/open_ore_ui_test_modal": { type: T.BUTTON, children: string }, + "ui_debug_section/open_ore_ui_tests_spacer": { type: T.PANEL, children: string }, + "edu_debug_section": { type: T.STACK_PANEL, children: 'edu_feature_toggles_label' | 'edu_feature_toggles_label_spacer' | 'edu_demo' | 'edu_ad_debug_panel' | 'edu_ad_token_refresh_threshold' | 'edu_ad_max_signin_token_refresh' | 'edu_ad_max_graph_token_refresh' | 'edu_environment_divider' | 'edu_environment_spacer' | 'edu_env_dropdown' }, + "edu_debug_section/edu_feature_toggles_label": { type: T.LABEL, children: string }, + "edu_debug_section/edu_feature_toggles_label_spacer": { type: T.PANEL, children: string }, + "edu_debug_section/edu_demo": { type: T.PANEL, children: string }, + "edu_debug_section/edu_ad_debug_panel": { type: T.PANEL, children: string }, + "edu_debug_section/edu_ad_token_refresh_threshold": { type: T.PANEL, children: string }, + "edu_debug_section/edu_ad_max_signin_token_refresh": { type: T.PANEL, children: string }, + "edu_debug_section/edu_ad_max_graph_token_refresh": { type: T.PANEL, children: string }, + "edu_debug_section/edu_environment_divider": { type: T.PANEL, children: 'section_divider' }, + "edu_debug_section/edu_environment_divider/section_divider": { type: T.IMAGE, children: string }, + "edu_debug_section/edu_environment_spacer": { type: T.PANEL, children: string }, + "edu_debug_section/edu_env_dropdown": { type: T.PANEL, children: string }, + "flighting_debug_button": { type: T.PANEL, children: string }, + "flighting_debug_section": { type: T.STACK_PANEL, children: 'treatment_override_panel' | 'configuration_override_panel' }, + "flighting_debug_section/treatment_override_panel": { type: T.STACK_PANEL, children: 'option_toggle_treatment_override' | 'override_treatments_panel' }, + "flighting_debug_section/treatment_override_panel/option_toggle_treatment_override": { type: T.PANEL, children: string }, + "flighting_debug_section/treatment_override_panel/override_treatments_panel": { type: T.PANEL, children: string }, + "flighting_debug_section/configuration_override_panel": { type: T.STACK_PANEL, children: 'option_toggle_configuration_override' | 'override_configurations_panel' }, + "flighting_debug_section/configuration_override_panel/option_toggle_configuration_override": { type: T.PANEL, children: string }, + "flighting_debug_section/configuration_override_panel/override_configurations_panel": { type: T.PANEL, children: string }, + "how_to_play_button": { type: T.PANEL, children: string }, + "how_to_play_section": { type: T.STACK_PANEL, children: 'spacer_0' | 'generic_label' | 'spacer_1' | 'gamepad_helper_label' }, + "how_to_play_section/spacer_0": { type: T.PANEL, children: string }, + "how_to_play_section/generic_label": { type: T.LABEL, children: string }, + "how_to_play_section/spacer_1": { type: T.PANEL, children: string }, + "how_to_play_section/gamepad_helper_label": { type: T.LABEL, children: string }, + "dev_xbox_environment_dropdown_content": { type: T.PANEL, children: string }, + "dev_discovery_environment_dropdown_content": { type: T.PANEL, children: string }, + "dev_service_override_type_dropdown_content": { type: T.PANEL, children: string }, + "dev_realms_environment_dropdown_content": { type: T.PANEL, children: string }, + "dev_realms_sku_dropdown_content": { type: T.PANEL, children: string }, + "default_profiling_group_dropdown_content": { type: T.PANEL, children: string }, + "dev_nethernet_logging_verbosity_dropdown_content": { type: T.PANEL, children: string }, + "dev_http_logging_verbosity_dropdown_content": { type: T.PANEL, children: string }, + "dev_xsapi_logging_verbosity_dropdown_content": { type: T.PANEL, children: string }, + "dev_debug_speed_multiplier_options": { type: T.PANEL, children: string }, + "dev_debug_hud_dropdown_content": { type: T.PANEL, children: string }, + "dev_chunkMapMode_content": { type: T.PANEL, children: string }, + "dev_quality_dropdown_content": { type: T.PANEL, children: string }, + "vysnc_dropdown_content": { type: T.PANEL, children: string }, + "deferred_platform_override_dropdown_content": { type: T.PANEL, children: string }, + "dev_education_environment_dropdown_content": { type: T.PANEL, children: string }, + "dev_sunsetting_tier_dropdown_content": { type: T.PANEL, children: string }, + "graphics_api_dropdown_content": { type: T.PANEL, children: string }, + "graphics_mode_dropdown_content": { type: T.PANEL, children: string }, + "upscaling_mode_dropdown_content": { type: T.PANEL, children: string }, + "advanced_graphics_options_button_content": { type: T.STACK_PANEL, children: 'advanced_graphics_options_label' | 'fill_pad' | 'plus_panel' | 'minus_panel' }, + "advanced_graphics_options_button_content/advanced_graphics_options_label": { type: T.LABEL, children: string }, + "advanced_graphics_options_button_content/fill_pad": { type: T.PANEL, children: string }, + "advanced_graphics_options_button_content/plus_panel": { type: T.PANEL, children: 'plus' }, + "advanced_graphics_options_button_content/plus_panel/plus": { type: T.IMAGE, children: string }, + "advanced_graphics_options_button_content/minus_panel": { type: T.PANEL, children: 'minus' }, + "advanced_graphics_options_button_content/minus_panel/minus": { type: T.IMAGE, children: string }, + "advanced_graphics_options_section": { type: T.STACK_PANEL, children: 'spacer_0' | 'gamma_calibration' | 'spacer_1' | 'max_framerate_slider' | 'spacer_2' | 'msaa_slider' | 'spacer_3' | 'shadow_quality_slider' | 'spacer_4' | 'point_light_shadow_quality_slider' | 'spacer_5' | 'point_light_loding_quality_slider' | 'spacer_6' | 'cloud_quality_slider' | 'spacer_7' | 'volumetric_fog_quality_slider' | 'spacer_8' | 'reflections_quality_slider' | 'spacer_9' | 'bloom_strength' | 'spacer_10' | 'upscaling_toggle' | 'spacer_11' | 'upscaling_mode' | 'spacer_12' | 'upscaling_percentage' | 'fancy_clouds_toggle' | 'spacer_13' | 'smooth_lighting_toggle' }, + "advanced_graphics_options_section/spacer_0": { type: T.PANEL, children: string }, + "advanced_graphics_options_section/gamma_calibration": { type: T.BUTTON, children: string }, + "advanced_graphics_options_section/spacer_1": { type: T.PANEL, children: string }, + "advanced_graphics_options_section/max_framerate_slider": { type: T.PANEL, children: string }, + "advanced_graphics_options_section/spacer_2": { type: T.PANEL, children: string }, + "advanced_graphics_options_section/msaa_slider": { type: T.PANEL, children: string }, + "advanced_graphics_options_section/spacer_3": { type: T.PANEL, children: string }, + "advanced_graphics_options_section/shadow_quality_slider": { type: T.PANEL, children: string }, + "advanced_graphics_options_section/spacer_4": { type: T.PANEL, children: string }, + "advanced_graphics_options_section/point_light_shadow_quality_slider": { type: T.PANEL, children: string }, + "advanced_graphics_options_section/spacer_5": { type: T.PANEL, children: string }, + "advanced_graphics_options_section/point_light_loding_quality_slider": { type: T.PANEL, children: string }, + "advanced_graphics_options_section/spacer_6": { type: T.PANEL, children: string }, + "advanced_graphics_options_section/cloud_quality_slider": { type: T.PANEL, children: string }, + "advanced_graphics_options_section/spacer_7": { type: T.PANEL, children: string }, + "advanced_graphics_options_section/volumetric_fog_quality_slider": { type: T.PANEL, children: string }, + "advanced_graphics_options_section/spacer_8": { type: T.PANEL, children: string }, + "advanced_graphics_options_section/reflections_quality_slider": { type: T.PANEL, children: string }, + "advanced_graphics_options_section/spacer_9": { type: T.PANEL, children: string }, + "advanced_graphics_options_section/bloom_strength": { type: T.PANEL, children: string }, + "advanced_graphics_options_section/spacer_10": { type: T.PANEL, children: string }, + "advanced_graphics_options_section/upscaling_toggle": { type: T.PANEL, children: string }, + "advanced_graphics_options_section/spacer_11": { type: T.PANEL, children: string }, + "advanced_graphics_options_section/upscaling_mode": { type: T.PANEL, children: string }, + "advanced_graphics_options_section/spacer_12": { type: T.PANEL, children: string }, + "advanced_graphics_options_section/upscaling_percentage": { type: T.PANEL, children: string }, + "advanced_graphics_options_section/fancy_clouds_toggle": { type: T.PANEL, children: string }, + "advanced_graphics_options_section/spacer_13": { type: T.PANEL, children: string }, + "advanced_graphics_options_section/smooth_lighting_toggle": { type: T.PANEL, children: string }, } 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": { type: T.PANEL, children: string }, + "world_name_edit": { type: T.PANEL, children: string }, + "realm_description_edit": { type: T.PANEL, children: string }, + "download_world_button": { type: T.BUTTON, children: string }, + "upload_world_button": { type: T.BUTTON, children: string }, + "reset_world_button": { type: T.BUTTON, children: string }, + "manage_feed_button": { type: T.BUTTON, children: string }, + "club_info_label": { type: T.PANEL, children: string }, + "difficulty_dropdown": { type: T.PANEL, children: string }, + "game_mode_dropdown": { type: T.PANEL, children: string }, + "panel_content": { type: T.STACK_PANEL, children: 'new_edit_world_opt_in_panel' | 'new_edit_world_opt_in_divider' | 'option_info_label' | 'hardcore_info_label' | 'realm_name_edit' | 'world_name_edit' | 'realm_description_edit' | 'difficulty_dropdown' | 'game_mode_dropdown' | 'is_hardcore_toggle' | 'world_options_label' | 'pvp_toggle' | 'show_coordinates_toggle' | 'locator_bar_toggle' | 'show_days_played_toggle' | 'fire_spreads_toggle' | 'recipes_unlock_toggle' | 'tnt_explodes_toggle' | 'respawn_blocks_explode_toggle' | 'mob_loot_toggle' | 'natural_regeneration_toggle' | 'tile_drops_toggle' | 'player_sleep_toggle' | 'player_sleep_percentage_slider' | 'immediate_respawn_toggle' | 'respawn_radius' | 'world_cheats_label' | 'allow_cheats_toggle' | 'daylight_cycle_toggle' | 'keep_inventory_toggle' | 'mob_spawn_toggle' | 'mob_griefing_toggle' | 'entities_drop_loot_toggle' | 'weather_cycle_toggle' | 'command_blocks_enabled_toggle' | 'random_tick_speed' | 'download_world_button' | 'padding_0' | 'upload_world_button' | 'padding_1' | 'reset_world_button' | 'padding_2' | 'club_info_label' | 'manage_feed_button' }, + "panel_content/new_edit_world_opt_in_panel": { type: T.STACK_PANEL, children: 'panel_title' | 'panel_text' | 'opt_in_button' }, + "panel_content/new_edit_world_opt_in_panel/panel_title": { type: T.PANEL, children: string }, + "panel_content/new_edit_world_opt_in_panel/panel_text": { type: T.PANEL, children: string }, + "panel_content/new_edit_world_opt_in_panel/opt_in_button": { type: T.BUTTON, children: string }, + "panel_content/new_edit_world_opt_in_divider": { type: T.PANEL, children: 'section_divider' }, + "panel_content/new_edit_world_opt_in_divider/section_divider": { type: T.IMAGE, children: string }, + "panel_content/option_info_label": { type: T.PANEL, children: string }, + "panel_content/hardcore_info_label": { type: T.PANEL, children: string }, + "panel_content/realm_name_edit": { type: T.PANEL, children: string }, + "panel_content/world_name_edit": { type: T.PANEL, children: string }, + "panel_content/realm_description_edit": { type: T.PANEL, children: string }, + "panel_content/difficulty_dropdown": { type: T.PANEL, children: string }, + "panel_content/game_mode_dropdown": { type: T.PANEL, children: string }, + "panel_content/is_hardcore_toggle": { type: T.PANEL, children: string }, + "panel_content/world_options_label": { type: T.PANEL, children: string }, + "panel_content/pvp_toggle": { type: T.PANEL, children: string }, + "panel_content/show_coordinates_toggle": { type: T.PANEL, children: string }, + "panel_content/locator_bar_toggle": { type: T.PANEL, children: string }, + "panel_content/show_days_played_toggle": { type: T.PANEL, children: string }, + "panel_content/fire_spreads_toggle": { type: T.PANEL, children: string }, + "panel_content/recipes_unlock_toggle": { type: T.PANEL, children: string }, + "panel_content/tnt_explodes_toggle": { type: T.PANEL, children: string }, + "panel_content/respawn_blocks_explode_toggle": { type: T.PANEL, children: string }, + "panel_content/mob_loot_toggle": { type: T.PANEL, children: string }, + "panel_content/natural_regeneration_toggle": { type: T.PANEL, children: string }, + "panel_content/tile_drops_toggle": { type: T.PANEL, children: string }, + "panel_content/player_sleep_toggle": { type: T.PANEL, children: string }, + "panel_content/player_sleep_percentage_slider": { type: T.PANEL, children: string }, + "panel_content/immediate_respawn_toggle": { type: T.PANEL, children: string }, + "panel_content/respawn_radius": { type: T.PANEL, children: string }, + "panel_content/world_cheats_label": { type: T.PANEL, children: string }, + "panel_content/allow_cheats_toggle": { type: T.PANEL, children: string }, + "panel_content/daylight_cycle_toggle": { type: T.PANEL, children: string }, + "panel_content/keep_inventory_toggle": { type: T.PANEL, children: string }, + "panel_content/mob_spawn_toggle": { type: T.PANEL, children: string }, + "panel_content/mob_griefing_toggle": { type: T.PANEL, children: string }, + "panel_content/entities_drop_loot_toggle": { type: T.PANEL, children: string }, + "panel_content/weather_cycle_toggle": { type: T.PANEL, children: string }, + "panel_content/command_blocks_enabled_toggle": { type: T.PANEL, children: string }, + "panel_content/random_tick_speed": { type: T.PANEL, children: string }, + "panel_content/download_world_button": { type: T.BUTTON, children: string }, + "panel_content/padding_0": { type: T.PANEL, children: string }, + "panel_content/upload_world_button": { type: T.BUTTON, children: string }, + "panel_content/padding_1": { type: T.PANEL, children: string }, + "panel_content/reset_world_button": { type: T.BUTTON, children: string }, + "panel_content/padding_2": { type: T.PANEL, children: string }, + "panel_content/club_info_label": { type: T.PANEL, children: string }, + "panel_content/manage_feed_button": { type: T.BUTTON, children: string }, } 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": { type: T.IMAGE, children: string }, + "subsection_title": { type: T.STACK_PANEL, children: 'spacer_0' | 'sizer_0' | 'spacer_1' | 'sizer_1' }, + "subsection_title/spacer_0": { type: T.PANEL, children: string }, + "subsection_title/sizer_0": { type: T.PANEL, children: 'title' }, + "subsection_title/sizer_0/title": { type: T.LABEL, children: string }, + "subsection_title/spacer_1": { type: T.PANEL, children: string }, + "subsection_title/sizer_1": { type: T.PANEL, children: 'section_divider' }, + "subsection_title/sizer_1/section_divider": { type: T.IMAGE, children: string }, + "action_button": { type: T.BUTTON, children: string }, + "action_button_dark_text": { type: T.BUTTON, children: string }, + "link_button": { type: T.BUTTON, children: string }, + "option_group_label": { type: T.PANEL, children: 'text' }, + "option_group_label/text": { type: T.LABEL, children: string }, + "option_group_header": { type: T.PANEL, children: 'text' }, + "option_group_header/text": { type: T.PANEL, children: string }, + "option_group_spaced_label": { type: T.PANEL, children: 'text' }, + "option_group_spaced_label/text": { type: T.PANEL, children: string }, + "option_group_spaced_header": { type: T.PANEL, children: 'text' }, + "option_group_spaced_header/text": { type: T.PANEL, children: string }, + "option_group_section_divider": { type: T.PANEL, children: 'background' }, + "option_group_section_divider/background": { type: T.IMAGE, children: string }, + "option_generic": { type: T.PANEL, children: 'option_generic_core' }, + "option_generic/option_generic_core": { type: T.STACK_PANEL, children: string }, + "white_label": { type: T.LABEL, children: string }, + "option_generic_core": { type: T.STACK_PANEL, children: 'two_line_layout' | 'one_line_layout' | 'spacer' }, + "option_generic_core/two_line_layout": { type: T.STACK_PANEL, children: 'option_label_panel' | 'spacer' | 'option_descriptive_text_0' | 'spacer2' }, + "option_generic_core/two_line_layout/option_label_panel": { type: T.PANEL, children: 'option_label_subpanel_01' | 'option_label_subpanel_02' | 'option_tooltip' }, + "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_01": { type: T.PANEL, children: 'option_label' }, + "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_01/option_label": { type: T.LABEL, children: string }, + "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_02": { type: T.PANEL, children: 'option_label' }, + "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_02/option_label": { type: T.LABEL, children: string }, + "option_generic_core/two_line_layout/option_label_panel/option_tooltip": { type: T.PANEL, children: string }, + "option_generic_core/two_line_layout/spacer": { type: T.PANEL, children: string }, + "option_generic_core/two_line_layout/option_descriptive_text_0": { type: T.LABEL, children: string }, + "option_generic_core/two_line_layout/spacer2": { type: T.PANEL, children: string }, + "option_generic_core/one_line_layout": { type: T.PANEL, children: 'option_label_subpanel_01' | 'option_label_subpanel_02' | 'option_descriptive_text' | 'option_tooltip' }, + "option_generic_core/one_line_layout/option_label_subpanel_01": { type: T.PANEL, children: 'option_label' }, + "option_generic_core/one_line_layout/option_label_subpanel_01/option_label": { type: T.LABEL, children: string }, + "option_generic_core/one_line_layout/option_label_subpanel_02": { type: T.PANEL, children: 'option_label' }, + "option_generic_core/one_line_layout/option_label_subpanel_02/option_label": { type: T.LABEL, children: string }, + "option_generic_core/one_line_layout/option_descriptive_text": { type: T.LABEL, children: string }, + "option_generic_core/one_line_layout/option_tooltip": { type: T.PANEL, children: string }, + "option_generic_core/spacer": { type: T.PANEL, children: string }, + "option_generic_core_label": { type: T.LABEL, children: string }, + "option_generic_tooltip_image": { type: T.IMAGE, children: string }, + "option_generic_tooltip_top_popup": { type: T.IMAGE, children: string }, + "option_generic_tooltip_bottom_popup": { type: T.IMAGE, children: string }, + "option_generic_tooltip": { type: T.PANEL, children: 'focus_detection_input_panel_two_line_layout' | 'hover_detection_input_panel' | 'option_generic_tooltip_top_popup' | 'option_generic_tooltip_bottom_popup' }, + "option_generic_tooltip/focus_detection_input_panel_two_line_layout": { type: T.TOOLTIP_TRIGGER, children: string }, + "option_generic_tooltip/hover_detection_input_panel": { type: T.TOOLTIP_TRIGGER, children: 'option_generic_tooltip_image' }, + "option_generic_tooltip/hover_detection_input_panel/option_generic_tooltip_image": { type: T.IMAGE, children: string }, + "option_generic_tooltip/option_generic_tooltip_top_popup": { type: T.IMAGE, children: string }, + "option_generic_tooltip/option_generic_tooltip_bottom_popup": { type: T.IMAGE, children: string }, + "option_text_edit_control": { type: T.EDIT_BOX, children: string }, + "option_text_edit_control_with_button": { type: T.STACK_PANEL, children: 'text_box' | 'button' }, + "option_text_edit_control_with_button/text_box": { type: T.EDIT_BOX, children: string }, + "option_text_edit_control_with_button/button": { type: T.BUTTON, children: string }, + "option_text_edit_control_with_text_button": { type: T.STACK_PANEL, children: 'text_box' | 'button' }, + "option_text_edit_control_with_text_button/text_box": { type: T.EDIT_BOX, children: string }, + "option_text_edit_control_with_text_button/button": { type: T.BUTTON, children: string }, + "option_toggle_state_template": { type: T.IMAGE, children: string }, + "option_toggle_on": { type: T.IMAGE, children: string }, + "option_toggle_off": { type: T.IMAGE, children: string }, + "option_toggle_on_hover": { type: T.IMAGE, children: string }, + "option_toggle_off_hover": { type: T.IMAGE, children: string }, + "option_toggle_on_locked": { type: T.IMAGE, children: string }, + "option_toggle_off_locked": { type: T.IMAGE, children: string }, + "option_toggle_control": { type: T.TOGGLE, children: string }, + "checkbox_visuals_unchecked": { type: T.PANEL, children: string }, + "checkbox_visuals_checked": { type: T.PANEL, children: string }, + "checkbox_visuals_unchecked_locked": { type: T.PANEL, children: string }, + "checkbox_visuals_checked_locked": { type: T.PANEL, children: string }, + "checkbox_visuals_unchecked_hover": { type: T.PANEL, children: string }, + "checkbox_visuals_checked_hover": { type: T.PANEL, children: string }, + "checkbox_visuals": { type: T.PANEL, children: 'checkbox_image' | 'checkbox_label' | 'accessibility_selection_highlight' }, + "checkbox_visuals/checkbox_image": { type: T.IMAGE, children: string }, + "checkbox_visuals/checkbox_label": { type: T.LABEL, children: string }, + "checkbox_visuals/accessibility_selection_highlight": { type: T.IMAGE, children: string }, + "checkbox_with_highlight_and_label": { type: T.TOGGLE, children: string }, + "radio_visuals_unchecked": { type: T.PANEL, children: string }, + "radio_visuals_checked": { type: T.PANEL, children: string }, + "radio_visuals_unchecked_locked": { type: T.PANEL, children: string }, + "radio_visuals_checked_locked": { type: T.PANEL, children: string }, + "radio_visuals_unchecked_hover": { type: T.PANEL, children: string }, + "radio_visuals_checked_hover": { type: T.PANEL, children: string }, + "radio_visuals": { type: T.PANEL, children: 'radio_image' | 'radio_label' | 'accessibility_selection_highlight' }, + "radio_visuals/radio_image": { type: T.IMAGE, children: string }, + "radio_visuals/radio_label": { type: T.LABEL, children: string }, + "radio_visuals/accessibility_selection_highlight": { type: T.IMAGE, children: string }, + "radio_with_label_core": { type: T.TOGGLE, children: string }, + "option_radio_group_control": { type: T.STACK_PANEL, children: '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' }, + "option_radio_group_control/0": { type: T.UNKNOWN, children: string }, + "radio_with_label": { type: T.PANEL, children: 'radio_with_label_core' }, + "radio_with_label/radio_with_label_core": { type: T.TOGGLE, children: string }, + "radio_with_label_and_icon": { type: T.PANEL, children: 'radio_with_label_core' | 'radio_with_label_icon' }, + "radio_with_label_and_icon/radio_with_label_core": { type: T.TOGGLE, children: string }, + "radio_with_label_and_icon/radio_with_label_icon": { type: T.IMAGE, children: string }, + "radio_with_label_and_content_unchecked": { type: T.PANEL, children: string }, + "radio_with_label_and_content_checked": { type: T.PANEL, children: string }, + "radio_with_label_and_content_unchecked_locked": { type: T.PANEL, children: string }, + "radio_with_label_and_content_checked_locked": { type: T.PANEL, children: string }, + "radio_with_label_and_content_unchecked_hover": { type: T.PANEL, children: string }, + "radio_with_label_and_content_checked_hover": { type: T.PANEL, children: string }, + "radio_with_label_and_content_stack_item": { type: T.PANEL, children: string }, + "radio_with_label_and_content": { type: T.PANEL, children: 'radio_background' | 'radio_item_with_description_stack' }, + "radio_with_label_and_content/radio_background": { type: T.IMAGE, children: string }, + "radio_with_label_and_content/radio_item_with_description_stack": { type: T.STACK_PANEL, children: 'radio_icon_and_label' | 'radio_description' }, + "radio_with_label_and_content/radio_item_with_description_stack/radio_icon_and_label": { type: T.STACK_PANEL, children: string }, + "radio_with_label_and_content/radio_item_with_description_stack/radio_description": { type: T.PANEL, children: string }, + "radio_item_with_label_and_content_stack": { type: T.STACK_PANEL, children: 'initial_padding' | 'radio_image_panel' | 'radio_to_content_padding' | 'radio_content_panel' | 'content_to_label_padding' | 'radio_label_panel' }, + "radio_item_with_label_and_content_stack/initial_padding": { type: T.PANEL, children: string }, + "radio_item_with_label_and_content_stack/radio_image_panel": { type: T.PANEL, children: 'image' }, + "radio_item_with_label_and_content_stack/radio_image_panel/image": { type: T.IMAGE, children: string }, + "radio_item_with_label_and_content_stack/radio_to_content_padding": { type: T.PANEL, children: string }, + "radio_item_with_label_and_content_stack/radio_content_panel": { type: T.PANEL, children: 'radio_image' }, + "radio_item_with_label_and_content_stack/radio_content_panel/radio_image": { type: T.UNKNOWN, children: string }, + "radio_item_with_label_and_content_stack/content_to_label_padding": { type: T.PANEL, children: string }, + "radio_item_with_label_and_content_stack/radio_label_panel": { type: T.PANEL, children: 'radio_label' }, + "radio_item_with_label_and_content_stack/radio_label_panel/radio_label": { type: T.LABEL, children: string }, + "radio_description_panel": { type: T.PANEL, children: 'description' }, + "radio_description_panel/description": { type: T.LABEL, children: string }, + "radio_description": { type: T.LABEL, children: string }, + "radio_item_with_label_and_content": { type: T.PANEL, children: 'radio_with_label_core' }, + "radio_item_with_label_and_content/radio_with_label_core": { type: T.TOGGLE, children: string }, + "option_slider_control": { type: T.PANEL, children: 'slider' }, + "option_slider_control/slider": { type: T.SLIDER, children: string }, + "default_options_dropdown_toggle_button_state_content": { type: T.STACK_PANEL, children: 'left_padding' | 'option_content' | 'option_content_padding' | 'label_panel' | 'arrow_panel' | 'right_padding' }, + "default_options_dropdown_toggle_button_state_content/left_padding": { type: T.PANEL, children: string }, + "default_options_dropdown_toggle_button_state_content/option_content": { type: T.UNKNOWN, children: string }, + "default_options_dropdown_toggle_button_state_content/option_content_padding": { type: T.PANEL, children: string }, + "default_options_dropdown_toggle_button_state_content/label_panel": { type: T.PANEL, children: 'label' }, + "default_options_dropdown_toggle_button_state_content/label_panel/label": { type: T.LABEL, children: string }, + "default_options_dropdown_toggle_button_state_content/arrow_panel": { type: T.PANEL, children: 'dropdown_chevron_image' }, + "default_options_dropdown_toggle_button_state_content/arrow_panel/dropdown_chevron_image": { type: T.IMAGE, children: string }, + "default_options_dropdown_toggle_button_state_content/right_padding": { type: T.PANEL, children: string }, + "options_dropdown_toggle_control": { type: T.TOGGLE, children: string }, + "options_dropdown_dark_toggle_control": { type: T.TOGGLE, children: string }, + "option_dropdown_control": { type: T.PANEL, children: 'dropdown' }, + "option_dropdown_control/dropdown": { type: T.UNKNOWN, children: string }, + "option_dropdown_control_no_scroll": { type: T.PANEL, children: string }, + "option_info_label_with_icon": { type: T.IMAGE, children: 'control' | 'icon_panel' }, + "option_info_label_with_icon/control": { type: T.LABEL, children: string }, + "option_info_label_with_icon/icon_panel": { type: T.STACK_PANEL, children: 'icon_image' | 'padding2' }, + "option_info_label_with_icon/icon_panel/icon_image": { type: T.IMAGE, children: string }, + "option_info_label_with_icon/icon_panel/padding2": { type: T.PANEL, children: string }, + "option_info_label_icon": { type: T.PANEL, children: string }, + "option_icon_label": { type: T.PANEL, children: string }, + "option_info_label_with_bulb": { type: T.IMAGE, children: 'stack_panel' }, + "option_info_label_with_bulb/stack_panel": { type: T.STACK_PANEL, children: 'padding1' | 'bulb_panel' | 'padding2' | 'label_panel' | 'padding3' }, + "option_info_label_with_bulb/stack_panel/padding1": { type: T.PANEL, children: string }, + "option_info_label_with_bulb/stack_panel/bulb_panel": { type: T.STACK_PANEL, children: 'padding1' | 'bulb_image' | 'padding2' }, + "option_info_label_with_bulb/stack_panel/bulb_panel/padding1": { type: T.PANEL, children: string }, + "option_info_label_with_bulb/stack_panel/bulb_panel/bulb_image": { type: T.IMAGE, children: string }, + "option_info_label_with_bulb/stack_panel/bulb_panel/padding2": { type: T.PANEL, children: string }, + "option_info_label_with_bulb/stack_panel/padding2": { type: T.PANEL, children: string }, + "option_info_label_with_bulb/stack_panel/label_panel": { type: T.STACK_PANEL, children: 'info_label1' | 'padding2' | 'info_label2' }, + "option_info_label_with_bulb/stack_panel/label_panel/info_label1": { type: T.LABEL, children: string }, + "option_info_label_with_bulb/stack_panel/label_panel/padding2": { type: T.PANEL, children: string }, + "option_info_label_with_bulb/stack_panel/label_panel/info_label2": { type: T.LABEL, children: string }, + "option_info_label_with_bulb/stack_panel/padding3": { type: T.PANEL, children: string }, + "option_info_label_with_image": { type: T.IMAGE, children: 'control' }, + "option_info_label_with_image/control": { type: T.LABEL, children: string }, + "option_info_label_image": { type: T.PANEL, children: string }, + "option_toggle": { type: T.PANEL, children: string }, + "option_radio_group": { type: T.PANEL, children: string }, + "option_radio_dropdown_group": { type: T.PANEL, children: 'radio_control_group' }, + "option_radio_dropdown_group/radio_control_group": { type: T.STACK_PANEL, children: string }, + "option_text_edit": { type: T.PANEL, children: string }, + "option_text_edit_with_button": { type: T.PANEL, children: string }, + "option_text_edit_with_text_button": { type: T.PANEL, children: string }, + "option_slider": { type: T.PANEL, children: string }, + "option_dropdown": { type: T.PANEL, children: string }, + "option_dropdown_no_scroll": { type: T.PANEL, children: string }, + "option_custom_control": { type: T.PANEL, children: string }, + "option_info_label": { type: T.PANEL, children: string }, + "dynamic_dialog_screen": { type: T.SCREEN, children: string }, + "settings_content": { type: T.PANEL, children: 'background' | 'stack_panel' | 'popup_dialog_factory' }, + "settings_content/background": { type: T.IMAGE, children: string }, + "settings_content/stack_panel": { type: T.STACK_PANEL, children: 'content_panel' }, + "settings_content/stack_panel/content_panel": { type: T.PANEL, children: 'common_panel' | 'container' }, + "settings_content/stack_panel/content_panel/common_panel": { type: T.STACK_PANEL, children: string }, + "settings_content/stack_panel/content_panel/container": { type: T.PANEL, children: string }, + "settings_content/popup_dialog_factory": { type: T.FACTORY, children: string }, + "toggle_button_control": { type: T.PANEL, children: 'glyph' | 'glyph_color' | 'progress_loading_bars' | 'tab_button_text' }, + "toggle_button_control/glyph": { type: T.IMAGE, children: string }, + "toggle_button_control/glyph_color": { type: T.IMAGE, children: string }, + "toggle_button_control/progress_loading_bars": { type: T.IMAGE, children: string }, + "toggle_button_control/tab_button_text": { type: T.LABEL, children: string }, + "section_toggle_base": { type: T.PANEL, children: string }, + "section_title_label": { type: T.LABEL, children: string }, + "dialog_title_label": { type: T.LABEL, children: string }, + "dialog_titles": { type: T.STACK_PANEL, children: 'left_padding' | 'dialog_title_label' | 'center_padding' | 'section_title_label' | 'right_padding_is_always_right' }, + "dialog_titles/left_padding": { type: T.PANEL, children: string }, + "dialog_titles/dialog_title_label": { type: T.LABEL, children: string }, + "dialog_titles/center_padding": { type: T.PANEL, children: string }, + "dialog_titles/section_title_label": { type: T.LABEL, children: string }, + "dialog_titles/right_padding_is_always_right": { type: T.PANEL, children: string }, + "dialog_content": { type: T.PANEL, children: 'dialog_titles' | 'selector_area' | 'content_area' | 'section_divider' }, + "dialog_content/dialog_titles": { type: T.STACK_PANEL, children: string }, + "dialog_content/selector_area": { type: T.PANEL, children: string }, + "dialog_content/content_area": { type: T.PANEL, children: string }, + "dialog_content/section_divider": { type: T.IMAGE, children: string }, + "selector_group_label": { type: T.LABEL, children: string }, + "scrollable_selector_area_content": { type: T.PANEL, children: string }, + "selector_area": { type: T.PANEL, children: 'scrolling_panel' }, + "selector_area/scrolling_panel": { type: T.PANEL, children: string }, + "content_area": { type: T.PANEL, children: 'control' }, + "content_area/control": { type: T.STACK_PANEL, children: 'header_panel' | 'scrolling_panel' | 'footer_panel' }, + "content_area/control/header_panel": { type: T.PANEL, children: 'content' }, + "content_area/control/header_panel/content": { type: T.UNKNOWN, children: string }, + "content_area/control/scrolling_panel": { type: T.PANEL, children: string }, + "content_area/control/footer_panel": { type: T.PANEL, children: 'content' }, + "content_area/control/footer_panel/content": { type: T.UNKNOWN, children: string }, + "section_divider": { type: T.IMAGE, children: string }, + "screen_base": { type: T.SCREEN, children: string }, } 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": { type: T.STACK_PANEL, children: 'world_snapshot_image' | 'play_or_create_panel' | 'play_or_host_panel' | 'spacer' | 'server_settings_visibility_panel' | 'selector_group_label_1' | 'game_button' | 'spacer_01' | 'classroom_button' | 'spacer_02' | 'switch_game_button' | 'spacer_03' | 'multiplayer_button' | 'spacer_04' | 'edu_cloud_button' | 'spacer_05' | 'debug_button' }, + "selector_pane_content/world_snapshot_image": { type: T.PANEL, children: 'thumbnail' }, + "selector_pane_content/world_snapshot_image/thumbnail": { type: T.IMAGE, children: 'border' }, + "selector_pane_content/world_snapshot_image/thumbnail/border": { type: T.IMAGE, children: string }, + "selector_pane_content/play_or_create_panel": { type: T.STACK_PANEL, children: string }, + "selector_pane_content/play_or_host_panel": { type: T.STACK_PANEL, children: string }, + "selector_pane_content/spacer": { type: T.PANEL, children: string }, + "selector_pane_content/server_settings_visibility_panel": { type: T.STACK_PANEL, children: 'selector_group_label_0' | 'server_settings_button' | 'server_spacer' }, + "selector_pane_content/server_settings_visibility_panel/selector_group_label_0": { type: T.LABEL, children: string }, + "selector_pane_content/server_settings_visibility_panel/server_settings_button": { type: T.PANEL, children: string }, + "selector_pane_content/server_settings_visibility_panel/server_spacer": { type: T.PANEL, children: string }, + "selector_pane_content/selector_group_label_1": { type: T.LABEL, children: string }, + "selector_pane_content/game_button": { type: T.PANEL, children: string }, + "selector_pane_content/spacer_01": { type: T.PANEL, children: string }, + "selector_pane_content/classroom_button": { type: T.PANEL, children: string }, + "selector_pane_content/spacer_02": { type: T.PANEL, children: string }, + "selector_pane_content/switch_game_button": { type: T.PANEL, children: string }, + "selector_pane_content/spacer_03": { type: T.PANEL, children: string }, + "selector_pane_content/multiplayer_button": { type: T.PANEL, children: string }, + "selector_pane_content/spacer_04": { type: T.PANEL, children: string }, + "selector_pane_content/edu_cloud_button": { type: T.PANEL, children: string }, + "selector_pane_content/spacer_05": { type: T.PANEL, children: string }, + "selector_pane_content/debug_button": { type: T.PANEL, children: string }, + "launch_world_button_stack_def": { type: T.STACK_PANEL, children: string }, + "play_or_create_stack_bedrock": { type: T.STACK_PANEL, children: 'create_or_play_button' | 'play_on_realm_button' }, + "play_or_create_stack_bedrock/create_or_play_button": { type: T.BUTTON, children: string }, + "play_or_create_stack_bedrock/play_on_realm_button": { type: T.BUTTON, children: string }, + "edu_play_host_button": { type: T.BUTTON, children: string }, + "play_or_host_stack_edu": { type: T.STACK_PANEL, children: 'edu_play_button' | 'edu_host_button' }, + "play_or_host_stack_edu/edu_play_button": { type: T.BUTTON, children: string }, + "play_or_host_stack_edu/edu_host_button": { type: T.BUTTON, children: string }, + "addons_selector_panel": { type: T.STACK_PANEL, children: 'spacer_01' | 'selector_group_label_2' | 'level_texture_pack_button' | 'spacer_02' | 'addon_button' }, + "addons_selector_panel/spacer_01": { type: T.PANEL, children: string }, + "addons_selector_panel/selector_group_label_2": { type: T.LABEL, children: string }, + "addons_selector_panel/level_texture_pack_button": { type: T.PANEL, children: string }, + "addons_selector_panel/spacer_02": { type: T.PANEL, children: string }, + "addons_selector_panel/addon_button": { type: T.PANEL, children: string }, + "server_settings_button": { type: T.PANEL, children: string }, + "server_section": { type: T.STACK_PANEL, children: string }, + "game_button": { type: T.PANEL, children: string }, + "export_world_button": { type: T.BUTTON, children: string }, + "delete_world_button": { type: T.BUTTON, children: string }, + "export_template_button": { type: T.BUTTON, children: string }, + "copy_world_button": { type: T.BUTTON, children: string }, + "edit_world_manipulation_buttons": { type: T.STACK_PANEL, children: 'export' | 'padding' | 'delete' }, + "edit_world_manipulation_buttons/export": { type: T.BUTTON, children: string }, + "edit_world_manipulation_buttons/padding": { type: T.PANEL, children: string }, + "edit_world_manipulation_buttons/delete": { type: T.BUTTON, children: string }, + "game_section": { type: T.STACK_PANEL, children: 'new_edit_world_opt_in_panel' | 'new_edit_world_opt_in_divider' | 'unlock_template_options_panel' | 'option_info_label' | 'hardcore_info_label' | 'world_settings_label' | 'option_text_edit_0' | 'project_section_divider_1' | 'project_header_label' | 'project_section_divider_2' | 'project_spacer' | 'option_text_edit_1' | 'export_settings_section_divider_1' | 'export_settings_header_label' | 'export_settings_header_description' | 'export_settings_section_divider_2' | 'export_settings_spacer' | 'option_dropdown_0' | 'option_dropdown_1' | 'is_hardcore_toggle' | 'option_dropdown_2' | 'world_preferences_label' | 'starting_map_toggle' | 'bonus_chest_toggle' | 'option_dropdown_permissions' | 'option_dropdown_3' | 'level_seed_selector_edu' | 'level_seed_selector' | 'level_seed_selector_trial' | 'server_sim_distance_slider' | 'world_options_label' | 'pvp_toggle' | 'show_coordinates_toggle' | 'locator_bar_toggle' | 'show_days_played_toggle' | 'fire_spreads_toggle' | 'recipes_unlock_toggle' | 'tnt_explodes_toggle' | 'respawn_blocks_explode_toggle' | 'mob_loot_toggle' | 'natural_regeneration_toggle' | 'tile_drops_toggle' | 'player_sleep_toggle' | 'player_sleep_percentage_slider' | 'immediate_respawn_toggle' | 'respawn_radius' | 'experimental_toggles_label' | 'experimental_toggles_label_info' | 'experimental_toggles' | 'world_cheats_label' | 'allow_cheats_toggle' | 'education_toggle' | 'always_day_toggle' | 'daylight_cycle_toggle' | 'keep_inventory_toggle' | 'mob_spawn_toggle' | 'mob_griefing_toggle' | 'entities_drop_loot_toggle' | 'weather_cycle_toggle' | 'command_blocks_enabled_toggle' | 'random_tick_speed' | 'world_management_label' | 'convert_to_infinite_panel' | 'delete_button' | 'button_panel' | 'export_template_panel' | 'clear_player_data_panel' | 'copy_world_panel' | 'upload_download_slot_panel' | 'replace_slot_panel' }, + "game_section/new_edit_world_opt_in_panel": { type: T.STACK_PANEL, children: 'panel_title' | 'panel_text' | 'opt_in_button' }, + "game_section/new_edit_world_opt_in_panel/panel_title": { type: T.PANEL, children: string }, + "game_section/new_edit_world_opt_in_panel/panel_text": { type: T.PANEL, children: string }, + "game_section/new_edit_world_opt_in_panel/opt_in_button": { type: T.BUTTON, children: string }, + "game_section/new_edit_world_opt_in_divider": { type: T.PANEL, children: 'section_divider' }, + "game_section/new_edit_world_opt_in_divider/section_divider": { type: T.IMAGE, children: string }, + "game_section/unlock_template_options_panel": { type: T.STACK_PANEL, children: 'option_info_label' | 'unlock_template_options_button' }, + "game_section/unlock_template_options_panel/option_info_label": { type: T.PANEL, children: string }, + "game_section/unlock_template_options_panel/unlock_template_options_button": { type: T.BUTTON, children: string }, + "game_section/option_info_label": { type: T.PANEL, children: string }, + "game_section/hardcore_info_label": { type: T.PANEL, children: string }, + "game_section/world_settings_label": { type: T.PANEL, children: string }, + "game_section/option_text_edit_0": { type: T.PANEL, children: string }, + "game_section/project_section_divider_1": { type: T.IMAGE, children: string }, + "game_section/project_header_label": { type: T.PANEL, children: string }, + "game_section/project_section_divider_2": { type: T.IMAGE, children: string }, + "game_section/project_spacer": { type: T.PANEL, children: string }, + "game_section/option_text_edit_1": { type: T.PANEL, children: string }, + "game_section/export_settings_section_divider_1": { type: T.IMAGE, children: string }, + "game_section/export_settings_header_label": { type: T.PANEL, children: string }, + "game_section/export_settings_header_description": { type: T.PANEL, children: string }, + "game_section/export_settings_section_divider_2": { type: T.IMAGE, children: string }, + "game_section/export_settings_spacer": { type: T.PANEL, children: string }, + "game_section/option_dropdown_0": { type: T.PANEL, children: string }, + "game_section/option_dropdown_1": { type: T.PANEL, children: string }, + "game_section/is_hardcore_toggle": { type: T.PANEL, children: string }, + "game_section/option_dropdown_2": { type: T.PANEL, children: string }, + "game_section/world_preferences_label": { type: T.PANEL, children: string }, + "game_section/starting_map_toggle": { type: T.PANEL, children: string }, + "game_section/bonus_chest_toggle": { type: T.PANEL, children: string }, + "game_section/option_dropdown_permissions": { type: T.PANEL, children: string }, + "game_section/option_dropdown_3": { type: T.PANEL, children: string }, + "game_section/level_seed_selector_edu": { type: T.PANEL, children: string }, + "game_section/level_seed_selector": { type: T.PANEL, children: string }, + "game_section/level_seed_selector_trial": { type: T.PANEL, children: string }, + "game_section/server_sim_distance_slider": { type: T.PANEL, children: string }, + "game_section/world_options_label": { type: T.PANEL, children: string }, + "game_section/pvp_toggle": { type: T.PANEL, children: string }, + "game_section/show_coordinates_toggle": { type: T.PANEL, children: string }, + "game_section/locator_bar_toggle": { type: T.PANEL, children: string }, + "game_section/show_days_played_toggle": { type: T.PANEL, children: string }, + "game_section/fire_spreads_toggle": { type: T.PANEL, children: string }, + "game_section/recipes_unlock_toggle": { type: T.PANEL, children: string }, + "game_section/tnt_explodes_toggle": { type: T.PANEL, children: string }, + "game_section/respawn_blocks_explode_toggle": { type: T.PANEL, children: string }, + "game_section/mob_loot_toggle": { type: T.PANEL, children: string }, + "game_section/natural_regeneration_toggle": { type: T.PANEL, children: string }, + "game_section/tile_drops_toggle": { type: T.PANEL, children: string }, + "game_section/player_sleep_toggle": { type: T.PANEL, children: string }, + "game_section/player_sleep_percentage_slider": { type: T.PANEL, children: string }, + "game_section/immediate_respawn_toggle": { type: T.PANEL, children: string }, + "game_section/respawn_radius": { type: T.PANEL, children: string }, + "game_section/experimental_toggles_label": { type: T.PANEL, children: string }, + "game_section/experimental_toggles_label_info": { type: T.PANEL, children: string }, + "game_section/experimental_toggles": { type: T.STACK_PANEL, children: string }, + "game_section/world_cheats_label": { type: T.PANEL, children: string }, + "game_section/allow_cheats_toggle": { type: T.PANEL, children: string }, + "game_section/education_toggle": { type: T.PANEL, children: string }, + "game_section/always_day_toggle": { type: T.PANEL, children: string }, + "game_section/daylight_cycle_toggle": { type: T.PANEL, children: string }, + "game_section/keep_inventory_toggle": { type: T.PANEL, children: string }, + "game_section/mob_spawn_toggle": { type: T.PANEL, children: string }, + "game_section/mob_griefing_toggle": { type: T.PANEL, children: string }, + "game_section/entities_drop_loot_toggle": { type: T.PANEL, children: string }, + "game_section/weather_cycle_toggle": { type: T.PANEL, children: string }, + "game_section/command_blocks_enabled_toggle": { type: T.PANEL, children: string }, + "game_section/random_tick_speed": { type: T.PANEL, children: string }, + "game_section/world_management_label": { type: T.PANEL, children: string }, + "game_section/convert_to_infinite_panel": { type: T.PANEL, children: 'convert_to_infinite_button' }, + "game_section/convert_to_infinite_panel/convert_to_infinite_button": { type: T.BUTTON, children: string }, + "game_section/delete_button": { type: T.BUTTON, children: string }, + "game_section/button_panel": { type: T.PANEL, children: 'manipulation_controls' }, + "game_section/button_panel/manipulation_controls": { type: T.UNKNOWN, children: string }, + "game_section/export_template_panel": { type: T.STACK_PANEL, children: 'padding' | 'template_version' | 'template_buttons' | 'export_template' }, + "game_section/export_template_panel/padding": { type: T.PANEL, children: string }, + "game_section/export_template_panel/template_version": { type: T.PANEL, children: string }, + "game_section/export_template_panel/template_buttons": { type: T.STACK_PANEL, children: 'template_image_picker_button' | 'padding' | 'template_localization_picker_button' }, + "game_section/export_template_panel/template_buttons/template_image_picker_button": { type: T.BUTTON, children: string }, + "game_section/export_template_panel/template_buttons/padding": { type: T.PANEL, children: string }, + "game_section/export_template_panel/template_buttons/template_localization_picker_button": { type: T.BUTTON, children: string }, + "game_section/export_template_panel/export_template": { type: T.BUTTON, children: string }, + "game_section/clear_player_data_panel": { type: T.STACK_PANEL, children: 'padding' | 'clear_player_data_button' }, + "game_section/clear_player_data_panel/padding": { type: T.PANEL, children: string }, + "game_section/clear_player_data_panel/clear_player_data_button": { type: T.BUTTON, children: string }, + "game_section/copy_world_panel": { type: T.PANEL, children: 'copy_world' }, + "game_section/copy_world_panel/copy_world": { type: T.BUTTON, children: string }, + "game_section/upload_download_slot_panel": { type: T.PANEL, children: 'upload_download_slot_button' }, + "game_section/upload_download_slot_panel/upload_download_slot_button": { type: T.BUTTON, children: string }, + "game_section/replace_slot_panel": { type: T.PANEL, children: 'replace_slot_button' }, + "game_section/replace_slot_panel/replace_slot_button": { type: T.BUTTON, children: string }, + "level_texture_pack_button": { type: T.PANEL, children: string }, + "level_texture_pack_section": { type: T.STACK_PANEL, children: string }, + "addon_button": { type: T.PANEL, children: string }, + "addon_section": { type: T.STACK_PANEL, children: string }, + "world_game_mode_dropdown_content": { type: T.PANEL, children: string }, + "xbl_broadcast_dropdown_content": { type: T.PANEL, children: string }, + "platform_broadcast_dropdown_content": { type: T.PANEL, children: string }, + "player_game_mode_dropdown_content": { type: T.PANEL, children: string }, + "world_type_dropdown_content": { type: T.PANEL, children: string }, + "world_difficulty_dropdown_content": { type: T.PANEL, children: string }, + "multiplayer_button": { type: T.PANEL, children: string }, + "cross_platform_warning_label": { type: T.LABEL, children: string }, + "multiplayer_section": { type: T.STACK_PANEL, children: 'multiplayer_game_toggle' | 'platform_settings_dropdown' | 'xbl_settings_dropdown' | 'server_visible_toggle' | 'general_multiplayer_warning_label' | 'open_uri_button' | 'platform_multiplayer_warning_label' | 'xbl_multiplayer_warning_label' }, + "multiplayer_section/multiplayer_game_toggle": { type: T.PANEL, children: string }, + "multiplayer_section/platform_settings_dropdown": { type: T.PANEL, children: string }, + "multiplayer_section/xbl_settings_dropdown": { type: T.PANEL, children: string }, + "multiplayer_section/server_visible_toggle": { type: T.PANEL, children: string }, + "multiplayer_section/general_multiplayer_warning_label": { type: T.LABEL, children: string }, + "multiplayer_section/open_uri_button": { type: T.BUTTON, children: string }, + "multiplayer_section/platform_multiplayer_warning_label": { type: T.LABEL, children: string }, + "multiplayer_section/xbl_multiplayer_warning_label": { type: T.LABEL, children: string }, + "option_text_edit_mock_with_button": { type: T.PANEL, children: string }, + "option_text_edit_mock_control_with_button": { type: T.STACK_PANEL, children: 'trial_text_box_button' | 'seed_arrow_button' }, + "option_text_edit_mock_control_with_button/trial_text_box_button": { type: T.BUTTON, children: string }, + "option_text_edit_mock_control_with_button/seed_arrow_button": { type: T.BUTTON, children: string }, + "experimental_toggle": { type: T.PANEL, children: string }, + "open_account_setting_button": { type: T.BUTTON, children: string }, + "edu_cloud_button": { type: T.PANEL, children: string }, + "edu_cloud_section": { type: T.STACK_PANEL, children: 'edu_cloud_label' | 'cloud_file_name' | 'cloud_file_last_changed' | 'cloud_upload_toggle' | 'cloud_help_wrapper_panel' }, + "edu_cloud_section/edu_cloud_label": { type: T.PANEL, children: string }, + "edu_cloud_section/cloud_file_name": { type: T.PANEL, children: string }, + "edu_cloud_section/cloud_file_last_changed": { type: T.PANEL, children: string }, + "edu_cloud_section/cloud_upload_toggle": { type: T.PANEL, children: string }, + "edu_cloud_section/cloud_help_wrapper_panel": { type: T.STACK_PANEL, children: 'cloud_help_button' | 'padded_icon' }, + "edu_cloud_section/cloud_help_wrapper_panel/cloud_help_button": { type: T.BUTTON, children: string }, + "edu_cloud_section/cloud_help_wrapper_panel/padded_icon": { type: T.PANEL, children: 'icon' }, + "edu_cloud_section/cloud_help_wrapper_panel/padded_icon/icon": { type: T.IMAGE, children: string }, + "debug_button": { type: T.PANEL, children: string }, + "debug_section": { type: T.STACK_PANEL, children: 'flat_nether_toggle' | 'game_version_override_toggle' | 'game_version_override_textbox' | 'spawn_dimension_dropdown' | 'spawn_biome_dropdown' | 'biome_override_dropdown' | 'base_game_version_debug_text' }, + "debug_section/flat_nether_toggle": { type: T.PANEL, children: string }, + "debug_section/game_version_override_toggle": { type: T.PANEL, children: string }, + "debug_section/game_version_override_textbox": { type: T.PANEL, children: string }, + "debug_section/spawn_dimension_dropdown": { type: T.PANEL, children: string }, + "debug_section/spawn_biome_dropdown": { type: T.PANEL, children: string }, + "debug_section/biome_override_dropdown": { type: T.PANEL, children: string }, + "debug_section/base_game_version_debug_text": { type: T.LABEL, children: string }, + "debug_spawn_dimension_dropdown_content": { type: T.PANEL, children: string }, + "debug_spawn_biome_dropdown_content": { type: T.PANEL, children: string }, + "debug_biome_override_dropdown_content": { type: T.PANEL, children: string }, + "editor_edit_world_manipulation_buttons_content": { type: T.STACK_PANEL, children: 'export_as_project' | 'padding' | 'export_as_world_buttons' | 'padding_2' | 'project_manipulations_buttons' }, + "editor_edit_world_manipulation_buttons_content/export_as_project": { type: T.BUTTON, children: string }, + "editor_edit_world_manipulation_buttons_content/padding": { type: T.PANEL, children: string }, + "editor_edit_world_manipulation_buttons_content/export_as_world_buttons": { type: T.STACK_PANEL, children: 'export_as_world' | 'padding' | 'export_as_template' }, + "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/export_as_world": { type: T.BUTTON, children: string }, + "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/padding": { type: T.PANEL, children: string }, + "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/export_as_template": { type: T.BUTTON, children: string }, + "editor_edit_world_manipulation_buttons_content/padding_2": { type: T.PANEL, children: string }, + "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons": { type: T.STACK_PANEL, children: 'copy_project' | 'padding' | 'delete_project' }, + "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/copy_project": { type: T.BUTTON, children: string }, + "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/padding": { type: T.PANEL, children: string }, + "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/delete_project": { type: T.BUTTON, children: string }, + "editor_edit_world_manipulation_buttons": { type: T.PANEL, children: string }, } 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": { type: T.PANEL, children: string }, + "party_section": { type: T.STACK_PANEL, children: 'party_invite_filter_dropdown' | 'party_invite_reset_default_padding' | 'party_invite_send_privileges_dropdown' | 'party_privacy_default_padding' | 'party_privacy_dropdown' | 'party_privacy_label_wrapper' | 'party_settings_reset_default_button_default_padding' | 'party_settings_reset_default_button' | 'microsoft_account_settings_divider' | 'microsoft_account_settings_header' | 'microsoft_account_settings_padding' | 'microsoft_account_settings_label_wrapper' | 'privacy_and_online_safety_button_padding' | 'privacy_and_online_safety_button' | 'microsoft_account_settings_ending_padding' }, + "party_section/party_invite_filter_dropdown": { type: T.PANEL, children: string }, + "party_section/party_invite_reset_default_padding": { type: T.PANEL, children: string }, + "party_section/party_invite_send_privileges_dropdown": { type: T.PANEL, children: string }, + "party_section/party_privacy_default_padding": { type: T.PANEL, children: string }, + "party_section/party_privacy_dropdown": { type: T.PANEL, children: string }, + "party_section/party_privacy_label_wrapper": { type: T.PANEL, children: string }, + "party_section/party_settings_reset_default_button_default_padding": { type: T.PANEL, children: string }, + "party_section/party_settings_reset_default_button": { type: T.BUTTON, children: string }, + "party_section/microsoft_account_settings_divider": { type: T.PANEL, children: 'section_divider' }, + "party_section/microsoft_account_settings_divider/section_divider": { type: T.IMAGE, children: string }, + "party_section/microsoft_account_settings_header": { type: T.LABEL, children: string }, + "party_section/microsoft_account_settings_padding": { type: T.PANEL, children: string }, + "party_section/microsoft_account_settings_label_wrapper": { type: T.PANEL, children: string }, + "party_section/privacy_and_online_safety_button_padding": { type: T.PANEL, children: string }, + "party_section/privacy_and_online_safety_button": { type: T.BUTTON, children: string }, + "party_section/microsoft_account_settings_ending_padding": { type: T.PANEL, children: string }, + "party_privacy_label": { type: T.LABEL, children: string }, + "microsoft_account_settings_label": { type: T.LABEL, children: string }, + "platform_settings_label": { type: T.LABEL, children: string }, + "party_invite_filter_dropdown_content": { type: T.PANEL, children: string }, + "party_privacy_dropdown_content": { type: T.PANEL, children: string }, + "party_invite_send_privileges_dropdown_content": { type: T.PANEL, children: string }, } 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": { type: T.PANEL, children: string }, + "empty_fill_x_panel": { type: T.PANEL, children: string }, + "empty_default_panel": { type: T.PANEL, children: string }, + "vertical_padding_panel": { type: T.PANEL, children: string }, + "sidebar_bg": { type: T.IMAGE, children: string }, + "sidebar_divider": { type: T.IMAGE, children: string }, + "sidebar_divider_panel": { type: T.PANEL, children: 'sidebar_divider' }, + "sidebar_divider_panel/sidebar_divider": { type: T.IMAGE, children: string }, + "toggle_content": { type: T.PANEL, children: 'toggle_content' }, + "toggle_content/toggle_content": { type: T.UNKNOWN, children: string }, + "sidebar_section_scroll_panel": { type: T.PANEL, children: string }, + "sidebar_bg_content_panel": { type: T.IMAGE, children: 'sidebar_bg_content' }, + "sidebar_bg_content_panel/sidebar_bg_content": { type: T.UNKNOWN, children: string }, + "sidebar_nav_toggle_image": { type: T.IMAGE, children: string }, + "sidebar_nav_toggle_image_panel": { type: T.PANEL, children: 'sidebar_nav_toggle_image' | 'gamepad_helper_icon' }, + "sidebar_nav_toggle_image_panel/sidebar_nav_toggle_image": { type: T.IMAGE, children: string }, + "sidebar_nav_toggle_image_panel/gamepad_helper_icon": { type: T.UNKNOWN, children: string }, + "gamepad_helper_icon_start_toggle": { type: T.STACK_PANEL, children: string }, + "verbose_view_toggle_content": { type: T.STACK_PANEL, children: 'left_padding' | 'sidebar_nav_toggle_image' }, + "verbose_view_toggle_content/left_padding": { type: T.PANEL, children: string }, + "verbose_view_toggle_content/sidebar_nav_toggle_image": { type: T.PANEL, children: string }, + "sidebar_toggle_bg": { type: T.IMAGE, children: string }, + "sidebar_toggle": { type: T.PANEL, children: string }, + "sidebar_option_toggle": { type: T.PANEL, children: string }, + "simple_sidebar_toggle": { type: T.PANEL, children: string }, + "verbose_toggle": { type: T.PANEL, children: string }, + "verbose_sidebar_option": { type: T.PANEL, children: string }, + "verbose_expand_option": { type: T.PANEL, children: string }, + "verbose_dropdown_option": { type: T.PANEL, children: string }, + "verbose_dropdown_expanded_option": { type: T.PANEL, children: string }, + "verbose_sidebar_expand_section_bg": { type: T.IMAGE, children: string }, + "verbose_sidebar_expand_section_panel": { type: T.STACK_PANEL, children: string }, + "verbose_expand_section_panel": { type: T.INPUT_PANEL, children: string }, + "verbose_view_toggle": { type: T.PANEL, children: string }, + "sidebar_option_factory": { type: T.STACK_PANEL, children: string }, + "sidebar_option_factory_panel": { type: T.INPUT_PANEL, children: 'sidebar_option_factory' }, + "sidebar_option_factory_panel/sidebar_option_factory": { type: T.STACK_PANEL, children: string }, + "verbose_button_content": { type: T.PANEL, children: 'button_label' }, + "verbose_button_content/button_label": { type: T.LABEL, children: string }, + "verbose_button": { type: T.BUTTON, children: string }, + "verbose_nav_button_panel": { type: T.PANEL, children: 'verbose_nav_button' }, + "verbose_nav_button_panel/verbose_nav_button": { type: T.BUTTON, children: string }, + "verbose_screen_nav_button": { type: T.BUTTON, children: string }, + "verbose_screen_nav_option_panel": { type: T.PANEL, children: 'verbose_nav_button' }, + "verbose_screen_nav_option_panel/verbose_nav_button": { type: T.BUTTON, children: string }, + "sidebar_option_factory_scroll_panel": { type: T.PANEL, children: string }, + "sidebar_screen_nav_option_factory_panel": { type: T.STACK_PANEL, children: 'fill_panel' | 'button' | 'padding' | 'platform_icon_padding' }, + "sidebar_screen_nav_option_factory_panel/fill_panel": { type: T.PANEL, children: string }, + "sidebar_screen_nav_option_factory_panel/button": { type: T.PANEL, children: string }, + "sidebar_screen_nav_option_factory_panel/padding": { type: T.PANEL, children: string }, + "sidebar_screen_nav_option_factory_panel/platform_icon_padding": { type: T.PANEL, children: string }, + "root_section_content_panel": { type: T.STACK_PANEL, children: 'sidebar_option_factory' | 'verbose_sidebar_screen_Nav' }, + "root_section_content_panel/sidebar_option_factory": { type: T.PANEL, children: string }, + "root_section_content_panel/verbose_sidebar_screen_Nav": { type: T.STACK_PANEL, children: string }, + "edge_bar": { type: T.IMAGE, children: string }, + "verbose_view_stack_panel": { type: T.STACK_PANEL, children: 'verbose_view_toggle' }, + "verbose_view_stack_panel/verbose_view_toggle": { type: T.PANEL, children: string }, + "sidebar_section": { type: T.STACK_PANEL, children: 'left_edge_bar' | 'verbose_view_stack_panel' | 'right_edge_bar' }, + "sidebar_section/left_edge_bar": { type: T.IMAGE, children: string }, + "sidebar_section/verbose_view_stack_panel": { type: T.STACK_PANEL, children: string }, + "sidebar_section/right_edge_bar": { type: T.IMAGE, children: string }, + "root_section": { type: T.PANEL, children: string }, + "verbose_root_section": { type: T.STACK_PANEL, children: string }, + "simple_root_section": { type: T.STACK_PANEL, children: 'verbose_view_toggle' | 'root_section' }, + "simple_root_section/verbose_view_toggle": { type: T.PANEL, children: string }, + "simple_root_section/root_section": { type: T.PANEL, children: string }, + "sidebar_section_factory_panel": { type: T.IMAGE, children: 'sidebar_section_factory' }, + "sidebar_section_factory_panel/sidebar_section_factory": { type: T.STACK_PANEL, children: string }, + "sidebar_view_content_panel": { type: T.PANEL, children: 'view_stack_panel' | 'verbose_view_exit' }, + "sidebar_view_content_panel/view_stack_panel": { type: T.STACK_PANEL, children: 'sidebar_view' | 'controller_hover_close_panel' }, + "sidebar_view_content_panel/view_stack_panel/sidebar_view": { type: T.IMAGE, children: string }, + "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel": { type: T.PANEL, children: 'controller_hover_close_button' }, + "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button": { type: T.BUTTON, children: 'default' | 'hover' }, + "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button/default": { type: T.PANEL, children: string }, + "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button/hover": { type: T.PANEL, children: string }, + "sidebar_view_content_panel/verbose_view_exit": { type: T.PANEL, children: string }, + "verbose_sidebar_view_modal": { type: T.INPUT_PANEL, children: string }, + "sidebar_views": { type: T.PANEL, children: 'sidebar_view_conent' }, + "sidebar_views/sidebar_view_conent": { type: T.PANEL, children: 'simple_sidebar_view' | 'verbose_side_bar_view_modal' }, + "sidebar_views/sidebar_view_conent/simple_sidebar_view": { type: T.PANEL, children: string }, + "sidebar_views/sidebar_view_conent/verbose_side_bar_view_modal": { type: T.INPUT_PANEL, children: 'verbose_sidebar_view' }, + "sidebar_views/sidebar_view_conent/verbose_side_bar_view_modal/verbose_sidebar_view": { type: T.PANEL, children: string }, + "sidebar_empty_panel": { type: T.PANEL, children: string }, + "content_view": { type: T.PANEL, children: 'content_view_stack' }, + "content_view/content_view_stack": { type: T.STACK_PANEL, children: 'sidebar_view_stack' | 'main_view_content' }, + "content_view/content_view_stack/sidebar_view_stack": { type: T.STACK_PANEL, children: 'sidebar_empty_panel' | 'divider' }, + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel": { type: T.PANEL, children: 'controller_hover_open_panel' }, + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel": { type: T.PANEL, children: 'controller_hover_open_button' }, + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button": { type: T.BUTTON, children: 'default' | 'hover' }, + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button/default": { type: T.PANEL, children: string }, + "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button/hover": { type: T.PANEL, children: string }, + "content_view/content_view_stack/sidebar_view_stack/divider": { type: T.IMAGE, children: string }, + "content_view/content_view_stack/main_view_content": { type: T.INPUT_PANEL, children: 'screen_content' }, + "content_view/content_view_stack/main_view_content/screen_content": { type: T.UNKNOWN, children: string }, + "sidebar_view": { type: T.INPUT_PANEL, children: 'sidebar_content' | 'content_view' | 'progress_loading' }, + "sidebar_view/sidebar_content": { type: T.PANEL, children: string }, + "sidebar_view/content_view": { type: T.PANEL, children: string }, + "sidebar_view/progress_loading": { type: T.PANEL, children: string }, + "platform_store_icon_spacing": { type: T.PANEL, children: string }, } 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": { type: T.IMAGE, children: string }, + "hanging_sign_background": { type: T.IMAGE, children: string }, + "base_sign_text_multiline": { type: T.EDIT_BOX, children: string }, + "regular_sign_text_multiline": { type: T.EDIT_BOX, children: string }, + "hanging_sign_text_multiline": { type: T.EDIT_BOX, children: string }, + "sign_screen_content": { type: T.PANEL, children: 'input_eating_panel' | 'invisible_exit_background' }, + "sign_screen_content/input_eating_panel": { type: T.INPUT_PANEL, children: 'text_edit' }, + "sign_screen_content/input_eating_panel/text_edit": { type: T.UNKNOWN, children: string }, + "sign_screen_content/invisible_exit_background": { type: T.INPUT_PANEL, children: string }, + "sign_screen": { type: T.SCREEN, children: string }, } 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": { type: T.LABEL, children: string }, + "main_panel": { type: T.PANEL, children: 'common_panel' | 'title' | 'main_content' | 'progress_loading_bars' }, + "main_panel/common_panel": { type: T.PANEL, children: string }, + "main_panel/title": { type: T.LABEL, children: string }, + "main_panel/main_content": { type: T.LABEL, children: string }, + "main_panel/progress_loading_bars": { type: T.IMAGE, children: string }, + "simple_inprogress_screen": { type: T.SCREEN, children: string }, + "simple_inprogress_screen_content": { type: T.PANEL, children: 'root_panel' }, + "simple_inprogress_screen_content/root_panel": { type: T.PANEL, children: 'main_panel' }, + "simple_inprogress_screen_content/root_panel/main_panel": { type: T.PANEL, children: string }, } 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": { type: T.BUTTON, children: string }, + "cycle_pack_right_button": { type: T.BUTTON, children: string }, + "skin_model": { type: T.PANEL, children: 'paper_doll' }, + "skin_model/paper_doll": { type: T.CUSTOM, children: string }, + "skin_lock": { type: T.IMAGE, children: string }, + "skin_focus_border": { type: T.IMAGE, children: 'equip' }, + "skin_focus_border/equip": { type: T.PANEL, children: string }, + "skin_button_panel_gamepad": { type: T.PANEL, children: 'skin_button' }, + "skin_button_panel_gamepad/skin_button": { type: T.BUTTON, children: 'hover' | 'pressed' }, + "skin_button_panel_gamepad/skin_button/hover": { type: T.IMAGE, children: string }, + "skin_button_panel_gamepad/skin_button/pressed": { type: T.IMAGE, children: string }, + "skin_button_panel_not_gamepad": { type: T.PANEL, children: 'skin_button' | 'equip_button' }, + "skin_button_panel_not_gamepad/skin_button": { type: T.BUTTON, children: 'hover' | 'pressed' }, + "skin_button_panel_not_gamepad/skin_button/hover": { type: T.IMAGE, children: string }, + "skin_button_panel_not_gamepad/skin_button/pressed": { type: T.IMAGE, children: string }, + "skin_button_panel_not_gamepad/equip_button": { type: T.BUTTON, children: string }, + "skin_button_panel": { type: T.STACK_PANEL, children: 'gamepad' | 'not_gamepad' }, + "skin_button_panel/gamepad": { type: T.PANEL, children: string }, + "skin_button_panel/not_gamepad": { type: T.PANEL, children: string }, + "equip_button_state_panel": { type: T.PANEL, children: 'button_panel' }, + "equip_button_state_panel/button_panel": { type: T.PANEL, children: string }, + "equip_button_text": { type: T.PANEL, children: 'text' }, + "equip_button_text/text": { type: T.LABEL, children: string }, + "skins_grid_item": { type: T.PANEL, children: 'model' | 'lock' | 'button' }, + "skins_grid_item/model": { type: T.PANEL, children: string }, + "skins_grid_item/lock": { type: T.IMAGE, children: string }, + "skins_grid_item/button": { type: T.STACK_PANEL, children: string }, + "skins_grid": { type: T.GRID, children: string }, + "skins_panel": { type: T.PANEL, children: 'bg' }, + "skins_panel/bg": { type: T.PANEL, children: 'left' | 'sg' | 'right' | 'progress_loading_panel' }, + "skins_panel/bg/left": { type: T.BUTTON, children: string }, + "skins_panel/bg/sg": { type: T.GRID, children: string }, + "skins_panel/bg/right": { type: T.BUTTON, children: string }, + "skins_panel/bg/progress_loading_panel": { type: T.PANEL, children: 'progress_loading' | 'progress_loading_outline' }, + "skins_panel/bg/progress_loading_panel/progress_loading": { type: T.PANEL, children: string }, + "skins_panel/bg/progress_loading_panel/progress_loading_outline": { type: T.BUTTON, children: 'hover' }, + "skins_panel/bg/progress_loading_panel/progress_loading_outline/hover": { type: T.IMAGE, children: string }, + "screen_root": { type: T.SCREEN, children: string }, + "skin_pack_purchase_upsell_screen": { type: T.SCREEN, children: string }, + "skin_pack_purchase_upsell_screen_content": { type: T.PANEL, children: string }, + "skin_pack_purchase_upsell_dialog_content": { type: T.PANEL, children: 'container' }, + "skin_pack_purchase_upsell_dialog_content/container": { type: T.PANEL, children: string }, + "skin_pack_purchase_standard": { type: T.SCREEN, children: string }, + "skin_pack_purchase_standard_content": { type: T.PANEL, children: string }, + "skin_pack_purchase_dialog_content": { type: T.PANEL, children: 'container' }, + "skin_pack_purchase_dialog_content/container": { type: T.PANEL, children: string }, } 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": { type: T.IMAGE, children: string }, + "title_label": { type: T.LABEL, children: string }, + "label": { type: T.LABEL, children: string }, + "chevron_image": { type: T.IMAGE, children: string }, + "bumper_image": { type: T.IMAGE, children: string }, + "undo_image": { type: T.IMAGE, children: string }, + "plus_icon": { type: T.IMAGE, children: string }, + "direction_button_panel": { type: T.PANEL, children: 'chevron_image' | 'bumper_image' }, + "direction_button_panel/chevron_image": { type: T.IMAGE, children: string }, + "direction_button_panel/bumper_image": { type: T.IMAGE, children: string }, + "cycle_pack_button": { type: T.BUTTON, children: string }, + "cycle_pack_left_button": { type: T.BUTTON, children: string }, + "cycle_pack_right_button": { type: T.BUTTON, children: string }, + "skin_button": { type: T.BUTTON, children: 'hover' | 'pressed' }, + "skin_button/hover": { type: T.IMAGE, children: string }, + "skin_button/pressed": { type: T.IMAGE, children: string }, + "skin_rotation_arrows": { type: T.IMAGE, children: string }, + "skin_viewer_panel": { type: T.INPUT_PANEL, children: 'custom_skin_button' | 'skin_model_panel' | 'lock' }, + "skin_viewer_panel/custom_skin_button": { type: T.BUTTON, children: string }, + "skin_viewer_panel/skin_model_panel": { type: T.PANEL, children: 'skin_model' }, + "skin_viewer_panel/skin_model_panel/skin_model": { type: T.CUSTOM, children: string }, + "skin_viewer_panel/lock": { type: T.IMAGE, children: string }, + "undo_skin_button": { type: T.BUTTON, children: string }, + "accept_skin_button": { type: T.BUTTON, children: string }, + "stack_item": { type: T.PANEL, children: string }, + "accept_skin_panel": { type: T.STACK_PANEL, children: 'stack_item_0' | 'stack_item_1' }, + "accept_skin_panel/stack_item_0": { type: T.PANEL, children: 'undo_btn' }, + "accept_skin_panel/stack_item_0/undo_btn": { type: T.BUTTON, children: string }, + "accept_skin_panel/stack_item_1": { type: T.PANEL, children: 'accept_button' }, + "accept_skin_panel/stack_item_1/accept_button": { type: T.BUTTON, children: string }, + "appearance_status_image_panel": { type: T.PANEL, children: 'limited_status_image' | 'no_restrictions_status_image' }, + "appearance_status_image_panel/limited_status_image": { type: T.IMAGE, children: string }, + "appearance_status_image_panel/no_restrictions_status_image": { type: T.IMAGE, children: string }, + "appearance_status_content": { type: T.STACK_PANEL, children: 'appearance_status_image_panel' | 'padding' | 'appearance_status_label_panel' }, + "appearance_status_content/appearance_status_image_panel": { type: T.PANEL, children: string }, + "appearance_status_content/padding": { type: T.PANEL, children: string }, + "appearance_status_content/appearance_status_label_panel": { type: T.PANEL, children: 'appearance_status_label' }, + "appearance_status_content/appearance_status_label_panel/appearance_status_label": { type: T.LABEL, children: string }, + "preview_skin_panel": { type: T.PANEL, children: 'preview' | 'button_frame' }, + "preview_skin_panel/preview": { type: T.INPUT_PANEL, children: string }, + "preview_skin_panel/button_frame": { type: T.STACK_PANEL, children: 'stack_item_0' | 'padding' | 'notification_and_accept_input_panel' }, + "preview_skin_panel/button_frame/stack_item_0": { type: T.PANEL, children: 'rotation' }, + "preview_skin_panel/button_frame/stack_item_0/rotation": { type: T.IMAGE, children: string }, + "preview_skin_panel/button_frame/padding": { type: T.PANEL, children: string }, + "preview_skin_panel/button_frame/notification_and_accept_input_panel": { type: T.INPUT_PANEL, children: 'notification_and_accept_stack' }, + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack": { type: T.STACK_PANEL, children: 'skin_status_notification_section' | 'stack_item_1' }, + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/skin_status_notification_section": { type: T.PANEL, children: 'appearance_status_notification_panel' }, + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/skin_status_notification_section/appearance_status_notification_panel": { type: T.BUTTON, children: string }, + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/stack_item_1": { type: T.PANEL, children: 'accept' }, + "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/stack_item_1/accept": { type: T.STACK_PANEL, children: string }, + "skin_model": { type: T.CUSTOM, children: string }, + "premium_skin_button": { type: T.BUTTON, children: string }, + "skin_lock": { type: T.IMAGE, children: string }, + "new_pack_icon": { type: T.PANEL, children: 'icon' }, + "new_pack_icon/icon": { type: T.IMAGE, children: string }, + "pack_lock": { type: T.PANEL, children: 'locked' | 'unlocked' }, + "pack_lock/locked": { type: T.IMAGE, children: string }, + "pack_lock/unlocked": { type: T.IMAGE, children: string }, + "skin_input_panel": { type: T.INPUT_PANEL, children: 'sg' }, + "skin_input_panel/sg": { type: T.GRID, children: string }, + "skins_grid_item": { type: T.PANEL, children: 'clip' | 'lock' | 'button' }, + "skins_grid_item/clip": { type: T.PANEL, children: 'model' }, + "skins_grid_item/clip/model": { type: T.CUSTOM, children: string }, + "skins_grid_item/lock": { type: T.IMAGE, children: string }, + "skins_grid_item/button": { type: T.BUTTON, children: string }, + "skins_grid": { type: T.GRID, children: string }, + "pack_name": { type: T.LABEL, children: string }, + "pack_grid_item": { type: T.PANEL, children: 'header' | 'bg' }, + "pack_grid_item/header": { type: T.STACK_PANEL, children: 'padding' | 'pack_lock' | 'pack_name' | 'padding_2' | 'new_pack_icon' | 'padding_3' }, + "pack_grid_item/header/padding": { type: T.PANEL, children: string }, + "pack_grid_item/header/pack_lock": { type: T.PANEL, children: string }, + "pack_grid_item/header/pack_name": { type: T.LABEL, children: string }, + "pack_grid_item/header/padding_2": { type: T.PANEL, children: string }, + "pack_grid_item/header/new_pack_icon": { type: T.PANEL, children: string }, + "pack_grid_item/header/padding_3": { type: T.PANEL, children: string }, + "pack_grid_item/bg": { type: T.IMAGE, children: 'skin_input_panel' | 'expand_view_button' | 'progress_loading_no_connection' | 'progress_loading' }, + "pack_grid_item/bg/skin_input_panel": { type: T.INPUT_PANEL, children: string }, + "pack_grid_item/bg/expand_view_button": { type: T.BUTTON, children: string }, + "pack_grid_item/bg/progress_loading_no_connection": { type: T.PANEL, children: string }, + "pack_grid_item/bg/progress_loading": { type: T.PANEL, children: string }, + "premium_packs_grid": { type: T.GRID, children: string }, + "standard_skin_button": { type: T.BUTTON, children: string }, + "default_skins_grid_item": { type: T.PANEL, children: 'model' | 'button' }, + "default_skins_grid_item/model": { type: T.CUSTOM, children: string }, + "default_skins_grid_item/button": { type: T.BUTTON, children: string }, + "default_skins_grid": { type: T.GRID, children: string }, + "recent_skins_grid_item": { type: T.PANEL, children: 'clip' | 'button' }, + "recent_skins_grid_item/clip": { type: T.PANEL, children: 'model' }, + "recent_skins_grid_item/clip/model": { type: T.CUSTOM, children: string }, + "recent_skins_grid_item/button": { type: T.BUTTON, children: string }, + "recent_skins_grid": { type: T.GRID, children: string }, + "standard_frame": { type: T.PANEL, children: string }, + "standard_header": { type: T.LABEL, children: string }, + "standard_fill": { type: T.IMAGE, children: string }, + "standard_panel": { type: T.PANEL, children: 'default_skins' | 'recent_skins' }, + "standard_panel/default_skins": { type: T.PANEL, children: 'header' | 'fill' }, + "standard_panel/default_skins/header": { type: T.LABEL, children: string }, + "standard_panel/default_skins/fill": { type: T.IMAGE, children: 'default_skins_grid' }, + "standard_panel/default_skins/fill/default_skins_grid": { type: T.GRID, children: string }, + "standard_panel/recent_skins": { type: T.PANEL, children: 'header' | 'fill' }, + "standard_panel/recent_skins/header": { type: T.LABEL, children: string }, + "standard_panel/recent_skins/fill": { type: T.IMAGE, children: 'recent_skins_grid' | 'recent_skins_loading_panel' }, + "standard_panel/recent_skins/fill/recent_skins_grid": { type: T.GRID, children: string }, + "standard_panel/recent_skins/fill/recent_skins_loading_panel": { type: T.PANEL, children: string }, + "scrolling_content_stack": { type: T.STACK_PANEL, children: 'standard_panel' | 'premium_packs_grid' }, + "scrolling_content_stack/standard_panel": { type: T.PANEL, children: string }, + "scrolling_content_stack/premium_packs_grid": { type: T.GRID, children: string }, + "all_skins_content": { type: T.INPUT_PANEL, children: 'scrolling_frame' }, + "all_skins_content/scrolling_frame": { type: T.PANEL, children: 'change_skin_scroll' | 'progress_loading' }, + "all_skins_content/scrolling_frame/change_skin_scroll": { type: T.PANEL, children: string }, + "all_skins_content/scrolling_frame/progress_loading": { type: T.PANEL, children: string }, + "all_skins_frame": { type: T.PANEL, children: 'all_skins_content' }, + "all_skins_frame/all_skins_content": { type: T.INPUT_PANEL, children: string }, + "title_bar": { type: T.STACK_PANEL, children: 'padding_0' | 'fill_panel' | 'padding_1' | 'skin_name_holder' | 'padding_2' }, + "title_bar/padding_0": { type: T.PANEL, children: string }, + "title_bar/fill_panel": { type: T.PANEL, children: 'title_holder' }, + "title_bar/fill_panel/title_holder": { type: T.PANEL, children: 'change_skin_title' }, + "title_bar/fill_panel/title_holder/change_skin_title": { type: T.LABEL, children: string }, + "title_bar/padding_1": { type: T.PANEL, children: string }, + "title_bar/skin_name_holder": { type: T.PANEL, children: 'preview_skin_name' }, + "title_bar/skin_name_holder/preview_skin_name": { type: T.LABEL, children: string }, + "title_bar/padding_2": { type: T.PANEL, children: string }, + "popup_dialog_skin_model": { type: T.PANEL, children: 'paper_doll' }, + "popup_dialog_skin_model/paper_doll": { type: T.CUSTOM, children: string }, + "popup_dialog_choose_skin_type_button": { type: T.BUTTON, children: 'hover' | 'pressed' }, + "popup_dialog_choose_skin_type_button/hover": { type: T.IMAGE, children: string }, + "popup_dialog_choose_skin_type_button/pressed": { type: T.IMAGE, children: string }, + "popup_dialog_choose_skin_type_panel": { type: T.PANEL, children: 'model' | 'button_highlight' }, + "popup_dialog_choose_skin_type_panel/model": { type: T.PANEL, children: string }, + "popup_dialog_choose_skin_type_panel/button_highlight": { type: T.BUTTON, children: string }, + "popup_dialog__invalid_custom_skin": { type: T.INPUT_PANEL, children: 'popup_dialog_bg' | 'popup_dialog_message' | 'popup_dialog_middle_button' }, + "popup_dialog__invalid_custom_skin/popup_dialog_bg": { type: T.IMAGE, children: string }, + "popup_dialog__invalid_custom_skin/popup_dialog_message": { type: T.LABEL, children: string }, + "popup_dialog__invalid_custom_skin/popup_dialog_middle_button": { type: T.BUTTON, children: string }, + "popup_dialog__upsell_without_store": { type: T.INPUT_PANEL, children: string }, + "popup_dialog__choose_skin_type": { type: T.INPUT_PANEL, children: 'popup_dialog_bg' | 'popup_dialog_message' | 'left' | 'right' }, + "popup_dialog__choose_skin_type/popup_dialog_bg": { type: T.IMAGE, children: string }, + "popup_dialog__choose_skin_type/popup_dialog_message": { type: T.LABEL, children: string }, + "popup_dialog__choose_skin_type/left": { type: T.PANEL, children: string }, + "popup_dialog__choose_skin_type/right": { type: T.PANEL, children: string }, + "content": { type: T.PANEL, children: 'title' | 'selector_area' | 'content_area' | 'section_divider' }, + "content/title": { type: T.STACK_PANEL, children: string }, + "content/selector_area": { type: T.INPUT_PANEL, children: string }, + "content/content_area": { type: T.INPUT_PANEL, children: string }, + "content/section_divider": { type: T.IMAGE, children: string }, + "skin_picker_screen": { type: T.SCREEN, children: string }, + "skin_picker_screen_content": { type: T.PANEL, children: 'bg' | 'container' | 'popup_dialog_factory' }, + "skin_picker_screen_content/bg": { type: T.STACK_PANEL, children: string }, + "skin_picker_screen_content/container": { type: T.PANEL, children: 'content' }, + "skin_picker_screen_content/container/content": { type: T.PANEL, children: string }, + "skin_picker_screen_content/popup_dialog_factory": { type: T.FACTORY, children: string }, + "scrollable_selector_area_content": { type: T.PANEL, children: string }, + "selector_area": { type: T.INPUT_PANEL, children: 'all_skins' | 'inactive_modal_pane_fade' }, + "selector_area/all_skins": { type: T.PANEL, children: string }, + "selector_area/inactive_modal_pane_fade": { type: T.IMAGE, children: string }, + "content_area": { type: T.INPUT_PANEL, children: 'preview_skin' | 'inactive_modal_pane_fade' }, + "content_area/preview_skin": { type: T.PANEL, children: string }, + "content_area/inactive_modal_pane_fade": { type: T.IMAGE, children: string }, + "section_divider": { type: T.IMAGE, children: string }, } 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": { type: T.IMAGE, children: string }, + "ingot_image": { type: T.IMAGE, children: string }, + "smithing_icon": { type: T.IMAGE, children: string }, + "upgrade_label": { type: T.LABEL, children: string }, + "icon_and_text_panel": { type: T.PANEL, children: 'smithing_icon_panel' | 'upgrade_label' }, + "icon_and_text_panel/smithing_icon_panel": { type: T.PANEL, children: string }, + "icon_and_text_panel/upgrade_label": { type: T.LABEL, children: string }, + "smithing_icon_panel": { type: T.PANEL, children: 'smithing_icon' }, + "smithing_icon_panel/smithing_icon": { type: T.IMAGE, children: string }, + "plus_sign_icon": { type: T.IMAGE, children: string }, + "arrow_icon": { type: T.IMAGE, children: string }, + "cross_out_icon": { type: T.IMAGE, children: string }, + "smithing_table_output_slot_button": { type: T.BUTTON, children: string }, + "smithing_table_item_slot": { type: T.PANEL, children: 'container_item' }, + "smithing_table_item_slot/container_item": { type: T.INPUT_PANEL, children: string }, + "recipe_grid": { type: T.GRID, children: 'input_item_slot' | 'plus' | 'material_item_slot' | 'yields' | 'result_item_slot' }, + "recipe_grid/input_item_slot": { type: T.PANEL, children: string }, + "recipe_grid/plus": { type: T.PANEL, children: 'plus_sign_icon' }, + "recipe_grid/plus/plus_sign_icon": { type: T.IMAGE, children: string }, + "recipe_grid/material_item_slot": { type: T.PANEL, children: string }, + "recipe_grid/yields": { type: T.PANEL, children: 'arrow_icon' | 'cross_out_icon' }, + "recipe_grid/yields/arrow_icon": { type: T.IMAGE, children: string }, + "recipe_grid/yields/cross_out_icon": { type: T.IMAGE, children: string }, + "recipe_grid/result_item_slot": { type: T.PANEL, children: string }, + "recipe_panel": { type: T.PANEL, children: 'recipe_grid' }, + "recipe_panel/recipe_grid": { type: T.GRID, children: string }, + "top_half_panel": { type: T.PANEL, children: 'icon_and_text_panel' | 'recipe_panel' }, + "top_half_panel/icon_and_text_panel": { type: T.PANEL, children: string }, + "top_half_panel/recipe_panel": { type: T.PANEL, children: string }, + "smithing_table_panel": { type: T.PANEL, children: 'container_gamepad_helpers' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'root_panel' | 'flying_item_renderer' }, + "smithing_table_panel/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "smithing_table_panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "smithing_table_panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "smithing_table_panel/root_panel": { type: T.INPUT_PANEL, children: 'common_panel' | 'smithing_table_screen_inventory' | 'inventory_selected_icon_button' | 'gamepad_cursor' }, + "smithing_table_panel/root_panel/common_panel": { type: T.PANEL, children: string }, + "smithing_table_panel/root_panel/smithing_table_screen_inventory": { type: T.PANEL, children: 'top_half_panel' | 'inventory_panel_bottom_half_with_label' | 'hotbar_grid' | 'inventory_take_progress_icon_button' }, + "smithing_table_panel/root_panel/smithing_table_screen_inventory/top_half_panel": { type: T.PANEL, children: string }, + "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_panel_bottom_half_with_label": { type: T.PANEL, children: string }, + "smithing_table_panel/root_panel/smithing_table_screen_inventory/hotbar_grid": { type: T.GRID, children: string }, + "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_take_progress_icon_button": { type: T.BUTTON, children: string }, + "smithing_table_panel/root_panel/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "smithing_table_panel/root_panel/gamepad_cursor": { type: T.BUTTON, children: string }, + "smithing_table_panel/flying_item_renderer": { type: T.CUSTOM, children: string }, + "smithing_table_screen": { type: T.SCREEN, children: string }, } 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": { type: T.IMAGE, children: string }, + "upgrade_label": { type: T.LABEL, children: string }, + "icon_and_text_panel": { type: T.PANEL, children: 'smithing_icon_panel' | 'upgrade_label' }, + "icon_and_text_panel/smithing_icon_panel": { type: T.PANEL, children: string }, + "icon_and_text_panel/upgrade_label": { type: T.LABEL, children: string }, + "smithing_icon_panel": { type: T.PANEL, children: 'smithing_icon' }, + "smithing_icon_panel/smithing_icon": { type: T.IMAGE, children: string }, + "smithing_image": { type: T.IMAGE, children: string }, + "smithing_material_image_ingot": { type: T.IMAGE, children: string }, + "arrow_icon": { type: T.IMAGE, children: string }, + "cross_out_icon_image": { type: T.IMAGE, children: string }, + "cross_out_icon_button": { type: T.BUTTON, children: 'default' | 'hover' }, + "cross_out_icon_button/default": { type: T.IMAGE, children: string }, + "cross_out_icon_button/hover": { type: T.CUSTOM, children: string }, + "smithing_input_image_templates": { type: T.IMAGE, children: string }, + "smithing_input_image_armors": { type: T.IMAGE, children: string }, + "smithing_input_image_armors_and_tools": { type: T.IMAGE, children: string }, + "smithing_material_image_all": { type: T.IMAGE, children: string }, + "template_overlay_image": { type: T.PANEL, children: 'templates' }, + "template_overlay_image/templates": { type: T.IMAGE, children: string }, + "input_overlay_image": { type: T.PANEL, children: 'armors_and_tools' | 'armors' }, + "input_overlay_image/armors_and_tools": { type: T.IMAGE, children: string }, + "input_overlay_image/armors": { type: T.IMAGE, children: string }, + "material_overlay_image": { type: T.PANEL, children: 'all_materials' | 'ingot' }, + "material_overlay_image/all_materials": { type: T.IMAGE, children: string }, + "material_overlay_image/ingot": { type: T.IMAGE, children: string }, + "smithing_table_output_slot_button": { type: T.BUTTON, children: string }, + "smithing_table_item_slot": { type: T.PANEL, children: 'container_item' }, + "smithing_table_item_slot/container_item": { type: T.INPUT_PANEL, children: string }, + "recipe_grid": { type: T.GRID, children: 'template_item_slot' | 'input_item_slot' | 'material_item_slot' | 'yields' | 'result_item_slot' | 'result_item_preview' }, + "recipe_grid/template_item_slot": { type: T.PANEL, children: string }, + "recipe_grid/input_item_slot": { type: T.PANEL, children: string }, + "recipe_grid/material_item_slot": { type: T.PANEL, children: string }, + "recipe_grid/yields": { type: T.PANEL, children: 'arrow_icon' | 'cross_out_icon' }, + "recipe_grid/yields/arrow_icon": { type: T.IMAGE, children: string }, + "recipe_grid/yields/cross_out_icon": { type: T.BUTTON, children: string }, + "recipe_grid/result_item_slot": { type: T.PANEL, children: string }, + "recipe_grid/result_item_preview": { type: T.PANEL, children: string }, + "recipe_panel": { type: T.PANEL, children: 'recipe_grid' }, + "recipe_panel/recipe_grid": { type: T.GRID, children: string }, + "result_item_preview": { type: T.PANEL, children: 'inner' }, + "result_item_preview/inner": { type: T.PANEL, children: string }, + "result_item_preview_inner": { type: T.PANEL, children: 'smithing_preview_renderer' }, + "result_item_preview_inner/smithing_preview_renderer": { type: T.CUSTOM, children: string }, + "toolbar_background": { type: T.IMAGE, children: string }, + "help_button": { type: T.BUTTON, children: string }, + "toolbar_panel": { type: T.INPUT_PANEL, children: 'toolbar_background' }, + "toolbar_panel/toolbar_background": { type: T.IMAGE, children: 'toolbar_stack_panel' }, + "toolbar_panel/toolbar_background/toolbar_stack_panel": { type: T.STACK_PANEL, children: 'padding_1' | 'help_button_panel' | 'close_button_panel' | 'padding_2' }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": { type: T.PANEL, children: string }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": { type: T.PANEL, children: 'help_button' }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": { type: T.BUTTON, children: string }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": { type: T.PANEL, children: 'close_button' }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": { type: T.BUTTON, children: string }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": { type: T.PANEL, children: string }, + "toolbar_anchor": { type: T.PANEL, children: 'toolbar_panel' }, + "toolbar_anchor/toolbar_panel": { type: T.INPUT_PANEL, children: string }, + "top_half_panel": { type: T.PANEL, children: 'icon_and_text_panel' | 'recipe_panel' }, + "top_half_panel/icon_and_text_panel": { type: T.PANEL, children: string }, + "top_half_panel/recipe_panel": { type: T.PANEL, children: string }, + "smithing_table_panel": { type: T.PANEL, children: 'container_gamepad_helpers' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'root_panel' | 'flying_item_renderer' }, + "smithing_table_panel/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "smithing_table_panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "smithing_table_panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "smithing_table_panel/root_panel": { type: T.INPUT_PANEL, children: 'common_panel' | 'smithing_table_screen_inventory' | 'inventory_selected_icon_button' | 'toolbar_anchor' | 'gamepad_cursor' }, + "smithing_table_panel/root_panel/common_panel": { type: T.PANEL, children: string }, + "smithing_table_panel/root_panel/smithing_table_screen_inventory": { type: T.PANEL, children: 'top_half_panel' | 'inventory_panel_bottom_half_with_label' | 'hotbar_grid' | 'inventory_take_progress_icon_button' }, + "smithing_table_panel/root_panel/smithing_table_screen_inventory/top_half_panel": { type: T.PANEL, children: string }, + "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_panel_bottom_half_with_label": { type: T.PANEL, children: string }, + "smithing_table_panel/root_panel/smithing_table_screen_inventory/hotbar_grid": { type: T.GRID, children: string }, + "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_take_progress_icon_button": { type: T.BUTTON, children: string }, + "smithing_table_panel/root_panel/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "smithing_table_panel/root_panel/toolbar_anchor": { type: T.PANEL, children: string }, + "smithing_table_panel/root_panel/gamepad_cursor": { type: T.BUTTON, children: string }, + "smithing_table_panel/flying_item_renderer": { type: T.CUSTOM, children: string }, } 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": { type: T.IMAGE, children: string }, + "background_image": { type: T.IMAGE, children: string }, + "arrow_icon": { type: T.IMAGE, children: string }, + "smithing_icon": { type: T.IMAGE, children: string }, + "upgrade_label": { type: T.LABEL, children: string }, + "smithing_icon_panel": { type: T.PANEL, children: 'smithing_icon' }, + "smithing_icon_panel/smithing_icon": { type: T.IMAGE, children: string }, + "smithing_table_title_and_text_panel": { type: T.PANEL, children: 'smithing_icon_panel' | 'upgrade_label' }, + "smithing_table_title_and_text_panel/smithing_icon_panel": { type: T.PANEL, children: string }, + "smithing_table_title_and_text_panel/upgrade_label": { type: T.LABEL, children: string }, + "slots_panel": { type: T.PANEL, children: 'input_slot' | 'material_slot' | 'result_slot' | 'plus_sign' | 'arrow' }, + "slots_panel/input_slot": { type: T.INPUT_PANEL, children: string }, + "slots_panel/material_slot": { type: T.INPUT_PANEL, children: string }, + "slots_panel/result_slot": { type: T.INPUT_PANEL, children: string }, + "slots_panel/plus_sign": { type: T.LABEL, children: string }, + "slots_panel/arrow": { type: T.IMAGE, children: 'cross_out' }, + "slots_panel/arrow/cross_out": { type: T.IMAGE, children: string }, + "smithing_table_contents_panel": { type: T.STACK_PANEL, children: 'smithing_table_title_and_text_panel' | 'slots_panel' }, + "smithing_table_contents_panel/smithing_table_title_and_text_panel": { type: T.PANEL, children: string }, + "smithing_table_contents_panel/slots_panel": { type: T.PANEL, children: string }, + "inventory_grid": { type: T.GRID, children: string }, + "inventory_content": { type: T.PANEL, children: 'scrolling_panel' }, + "inventory_content/scrolling_panel": { type: T.PANEL, children: string }, + "inventory_and_smithing_table_panel": { type: T.PANEL, children: 'inventory_half_screen' | 'smithing_half_screen' }, + "inventory_and_smithing_table_panel/inventory_half_screen": { type: T.PANEL, children: 'inventory_content' }, + "inventory_and_smithing_table_panel/inventory_half_screen/inventory_content": { type: T.PANEL, children: string }, + "inventory_and_smithing_table_panel/smithing_half_screen": { type: T.PANEL, children: 'smithing_table_content' }, + "inventory_and_smithing_table_panel/smithing_half_screen/smithing_table_content": { type: T.STACK_PANEL, children: string }, + "header": { type: T.PANEL, children: 'header_background' | 'close_button' | 'panel' }, + "header/header_background": { type: T.IMAGE, children: string }, + "header/close_button": { type: T.BUTTON, children: string }, + "header/panel": { type: T.PANEL, children: 'title_label' }, + "header/panel/title_label": { type: T.LABEL, children: string }, + "header_and_content_stack_panel": { type: T.STACK_PANEL, children: 'header' | 'inventory_and_smithing_table_panel' }, + "header_and_content_stack_panel/header": { type: T.PANEL, children: string }, + "header_and_content_stack_panel/inventory_and_smithing_table_panel": { type: T.PANEL, children: string }, + "smithing_table_panel": { type: T.PANEL, children: 'bg' | 'root_panel' | 'header_and_content_stack_panel' | 'container_gamepad_helpers' | 'inventory_selected_icon_button' | 'hold_icon' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'flying_item_renderer' }, + "smithing_table_panel/bg": { type: T.IMAGE, children: string }, + "smithing_table_panel/root_panel": { type: T.INPUT_PANEL, children: string }, + "smithing_table_panel/header_and_content_stack_panel": { type: T.STACK_PANEL, children: string }, + "smithing_table_panel/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "smithing_table_panel/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "smithing_table_panel/hold_icon": { type: T.BUTTON, children: string }, + "smithing_table_panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "smithing_table_panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "smithing_table_panel/flying_item_renderer": { type: T.CUSTOM, children: string }, } 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": { type: T.CUSTOM, children: string }, + "smithing_image": { type: T.IMAGE, children: string }, + "smithing_material_image_ingot": { type: T.IMAGE, children: string }, + "background_image": { type: T.IMAGE, children: string }, + "smithing_input_image_templates": { type: T.IMAGE, children: string }, + "smithing_material_image_all": { type: T.IMAGE, children: string }, + "smithing_input_image_armors": { type: T.IMAGE, children: string }, + "smithing_input_image_armors_and_tools": { type: T.IMAGE, children: string }, + "template_overlay_image": { type: T.PANEL, children: 'templates' }, + "template_overlay_image/templates": { type: T.IMAGE, children: string }, + "input_overlay_image": { type: T.PANEL, children: 'armors_and_tools' | 'armors' }, + "input_overlay_image/armors_and_tools": { type: T.IMAGE, children: string }, + "input_overlay_image/armors": { type: T.IMAGE, children: string }, + "material_overlay_image": { type: T.PANEL, children: 'ingot' | 'all_materials' }, + "material_overlay_image/ingot": { type: T.IMAGE, children: string }, + "material_overlay_image/all_materials": { type: T.IMAGE, children: string }, + "arrow_icon": { type: T.IMAGE, children: string }, + "smithing_icon": { type: T.IMAGE, children: string }, + "upgrade_label": { type: T.LABEL, children: string }, + "slot_grid_item": { type: T.PANEL, children: 'slot' }, + "slot_grid_item/slot": { type: T.INPUT_PANEL, children: string }, + "template_slot": { type: T.PANEL, children: string }, + "input_slot": { type: T.PANEL, children: string }, + "material_slot": { type: T.PANEL, children: string }, + "inputs_stack": { type: T.STACK_PANEL, children: 'template_slot' | 'padding1' | 'input_slot' | 'padding2' | 'material_slot' }, + "inputs_stack/template_slot": { type: T.PANEL, children: string }, + "inputs_stack/padding1": { type: T.PANEL, children: string }, + "inputs_stack/input_slot": { type: T.PANEL, children: string }, + "inputs_stack/padding2": { type: T.PANEL, children: string }, + "inputs_stack/material_slot": { type: T.PANEL, children: string }, + "inputs_panel": { type: T.PANEL, children: 'inputs_stack' }, + "inputs_panel/inputs_stack": { type: T.STACK_PANEL, children: string }, + "result_slot": { type: T.PANEL, children: string }, + "cross_out_image": { type: T.IMAGE, children: string }, + "cross_out_icon": { type: T.BUTTON, children: 'default' | 'hover' }, + "cross_out_icon/default": { type: T.IMAGE, children: string }, + "cross_out_icon/hover": { type: T.CUSTOM, children: string }, + "crafting_arrow": { type: T.IMAGE, children: 'cross_out' }, + "crafting_arrow/cross_out": { type: T.BUTTON, children: string }, + "crafting_arrow_grid_item": { type: T.PANEL, children: 'crafting_arrow' }, + "crafting_arrow_grid_item/crafting_arrow": { type: T.IMAGE, children: string }, + "result_item_preview": { type: T.PANEL, children: 'smithing_preview_renderer' }, + "result_item_preview/smithing_preview_renderer": { type: T.CUSTOM, children: string }, + "result_item_preview_grid_item": { type: T.PANEL, children: 'result_preview' }, + "result_item_preview_grid_item/result_preview": { type: T.PANEL, children: string }, + "smithing_table_contents_panel": { type: T.GRID, children: 'label_holder' | 'inputs' | 'result_slot' | 'crafting_arrow' | 'result_item_preview' }, + "smithing_table_contents_panel/label_holder": { type: T.PANEL, children: 'title_label' }, + "smithing_table_contents_panel/label_holder/title_label": { type: T.LABEL, children: string }, + "smithing_table_contents_panel/inputs": { type: T.PANEL, children: string }, + "smithing_table_contents_panel/result_slot": { type: T.PANEL, children: string }, + "smithing_table_contents_panel/crafting_arrow": { type: T.PANEL, children: string }, + "smithing_table_contents_panel/result_item_preview": { type: T.PANEL, children: string }, + "chest_item_renderer": { type: T.CUSTOM, children: string }, + "left_tab_inventory": { type: T.PANEL, children: string }, + "left_navigation_tabs": { type: T.STACK_PANEL, children: 'left_tab_inventory' }, + "left_navigation_tabs/left_tab_inventory": { type: T.PANEL, children: string }, + "inventory_scroll_panel": { type: T.PANEL, children: string }, + "left_panel": { type: T.STACK_PANEL, children: 'gamepad_helpers_and_tabs_holder' | 'content' }, + "left_panel/gamepad_helpers_and_tabs_holder": { type: T.PANEL, children: 'navigation_tabs_holder' }, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": { type: T.PANEL, children: 'left_navigation_tabs' }, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": { type: T.STACK_PANEL, children: string }, + "left_panel/content": { type: T.INPUT_PANEL, children: 'bg' | 'inventory_scroll_panel' }, + "left_panel/content/bg": { type: T.PANEL, children: string }, + "left_panel/content/inventory_scroll_panel": { type: T.PANEL, children: string }, + "right_tab_smithing_table": { type: T.PANEL, children: string }, + "right_navigation_tabs": { type: T.STACK_PANEL, children: 'pocket_tab_close_and_help_button' | 'fill' | 'right_tab_smithing_table' }, + "right_navigation_tabs/pocket_tab_close_and_help_button": { type: T.IMAGE, children: string }, + "right_navigation_tabs/fill": { type: T.PANEL, children: string }, + "right_navigation_tabs/right_tab_smithing_table": { type: T.PANEL, children: string }, + "right_panel": { type: T.STACK_PANEL, children: 'content' | 'navigation_tabs_holder' }, + "right_panel/content": { type: T.INPUT_PANEL, children: 'bg' | 'smithing_content_stack_panel' }, + "right_panel/content/bg": { type: T.PANEL, children: string }, + "right_panel/content/smithing_content_stack_panel": { type: T.GRID, children: string }, + "right_panel/navigation_tabs_holder": { type: T.PANEL, children: 'right_navigation_tabs' }, + "right_panel/navigation_tabs_holder/right_navigation_tabs": { type: T.STACK_PANEL, children: string }, + "pocket_hotbar_and_content_panels": { type: T.STACK_PANEL, children: string }, + "smithing_table_panel": { type: T.PANEL, children: 'pocket_hotbar_and_content_panels' | 'container_gamepad_helpers' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'inventory_selected_icon_button' | 'inventory_take_progress_icon_button' | 'flying_item_renderer' }, + "smithing_table_panel/pocket_hotbar_and_content_panels": { type: T.STACK_PANEL, children: string }, + "smithing_table_panel/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "smithing_table_panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "smithing_table_panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "smithing_table_panel/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "smithing_table_panel/inventory_take_progress_icon_button": { type: T.BUTTON, children: string }, + "smithing_table_panel/flying_item_renderer": { type: T.CUSTOM, children: string }, } export type SmokerType = { - "smoker_screen": T.SCREEN, + "smoker_screen": { type: T.SCREEN, children: string }, } 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": { type: T.IMAGE, children: string }, + "inbox_bell_animated_icon": { type: T.IMAGE, children: string }, + "inbox_icon": { type: T.IMAGE, children: string }, + "unread_notification_icon": { type: T.IMAGE, children: string }, + "feedback_icon": { type: T.IMAGE, children: string }, + "feedback_icon_edu": { type: T.IMAGE, children: string }, + "Xbox_icon": { type: T.IMAGE, children: string }, + "change_skin_icon": { type: T.IMAGE, children: string }, + "manage_accounts_icon": { type: T.IMAGE, children: string }, + "new_offers_icon": { type: T.IMAGE, children: string }, + "edu_ai_lesson_crafter_button_content": { type: T.STACK_PANEL, children: 'padded_label' | 'padded_icon' }, + "edu_ai_lesson_crafter_button_content/padded_label": { type: T.PANEL, children: 'label' }, + "edu_ai_lesson_crafter_button_content/padded_label/label": { type: T.LABEL, children: string }, + "edu_ai_lesson_crafter_button_content/padded_icon": { type: T.PANEL, children: 'icon' }, + "edu_ai_lesson_crafter_button_content/padded_icon/icon": { type: T.IMAGE, children: string }, + "preview_tag": { type: T.IMAGE, children: 'preview_label' }, + "preview_tag/preview_label": { type: T.LABEL, children: string }, + "update_prompt_icon": { type: T.IMAGE, children: string }, + "marketplace_error_icon": { type: T.IMAGE, children: string }, + "sale_ribbon_icon": { type: T.IMAGE, children: string }, + "alex_icon": { type: T.IMAGE, children: string }, + "gamerpic": { type: T.CUSTOM, children: string }, + "copyright": { type: T.PANEL, children: 'label' | 'label_background' }, + "copyright/label": { type: T.LABEL, children: string }, + "copyright/label_background": { type: T.IMAGE, children: string }, + "development_version": { type: T.PANEL, children: 'label' | 'label_background' }, + "development_version/label": { type: T.LABEL, children: string }, + "development_version/label_background": { type: T.IMAGE, children: string }, + "version": { type: T.PANEL, children: 'label' | 'label_background' }, + "version/label": { type: T.LABEL, children: string }, + "version/label_background": { type: T.IMAGE, children: string }, + "trial_info": { type: T.PANEL, children: 'trial_label' | 'label_background' }, + "trial_info/trial_label": { type: T.LABEL, children: string }, + "trial_info/label_background": { type: T.IMAGE, children: string }, + "text_panel": { type: T.PANEL, children: 'copyright' | 'development_version' | 'version' }, + "text_panel/copyright": { type: T.PANEL, children: string }, + "text_panel/development_version": { type: T.PANEL, children: string }, + "text_panel/version": { type: T.PANEL, children: string }, + "skin_or_profile_panel": { type: T.PANEL, children: 'change_skin' | 'change_skin_button_demo' | 'dressing_room_button' | 'switch_accounts' | 'profile_button' }, + "skin_or_profile_panel/change_skin": { type: T.BUTTON, children: string }, + "skin_or_profile_panel/change_skin_button_demo": { type: T.BUTTON, children: string }, + "skin_or_profile_panel/dressing_room_button": { type: T.BUTTON, children: string }, + "skin_or_profile_panel/switch_accounts": { type: T.BUTTON, children: string }, + "skin_or_profile_panel/profile_button": { type: T.BUTTON, children: string }, + "change_skin_button": { type: T.BUTTON, children: string }, + "change_skin_button_demo": { type: T.BUTTON, children: string }, + "switch_accounts_button": { type: T.BUTTON, children: string }, + "dressing_room_button": { type: T.BUTTON, children: string }, + "profile_button_content": { type: T.STACK_PANEL, children: 'gamerpic_offset_wrapper' | 'padding_middle' | 'vertically_central_text' | 'padding_right' }, + "profile_button_content/gamerpic_offset_wrapper": { type: T.PANEL, children: 'gamerpic_with_border' }, + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border": { type: T.PANEL, children: 'gamerpic' | 'alex_icon' | 'border_black' }, + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/gamerpic": { type: T.CUSTOM, children: string }, + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/alex_icon": { type: T.IMAGE, children: string }, + "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/border_black": { type: T.IMAGE, children: string }, + "profile_button_content/padding_middle": { type: T.PANEL, children: string }, + "profile_button_content/vertically_central_text": { type: T.STACK_PANEL, children: 'top_padding' | 'profile_button_label' }, + "profile_button_content/vertically_central_text/top_padding": { type: T.PANEL, children: string }, + "profile_button_content/vertically_central_text/profile_button_label": { type: T.LABEL, children: string }, + "profile_button_content/padding_right": { type: T.PANEL, children: string }, + "profile_button": { type: T.BUTTON, children: string }, + "skin_viewer_panel": { type: T.INPUT_PANEL, children: 'paper_doll_panel' | 'paper_doll_name_tag' }, + "skin_viewer_panel/paper_doll_panel": { type: T.PANEL, children: 'paper_doll' | 'appearacne_loading_panel' }, + "skin_viewer_panel/paper_doll_panel/paper_doll": { type: T.CUSTOM, children: string }, + "skin_viewer_panel/paper_doll_panel/appearacne_loading_panel": { type: T.PANEL, children: string }, + "skin_viewer_panel/paper_doll_name_tag": { type: T.CUSTOM, children: string }, + "skin_panel": { type: T.PANEL, children: 'change_profile_or_skin' | 'viewer_panel' }, + "skin_panel/change_profile_or_skin": { type: T.PANEL, children: string }, + "skin_panel/viewer_panel": { type: T.INPUT_PANEL, children: string }, + "friendsdrawer_button_panel": { type: T.PANEL, children: 'friendsdrawer_button' }, + "friendsdrawer_button_panel/friendsdrawer_button": { type: T.BUTTON, children: string }, + "gathering_button": { type: T.BUTTON, children: string }, + "badge_and_caption_animated": { type: T.STACK_PANEL, children: 'caption_and_padding' | 'badge_and_padding' }, + "badge_and_caption_animated/caption_and_padding": { type: T.STACK_PANEL, children: 'pad' | 'caption' }, + "badge_and_caption_animated/caption_and_padding/pad": { type: T.PANEL, children: string }, + "badge_and_caption_animated/caption_and_padding/caption": { type: T.IMAGE, children: string }, + "badge_and_caption_animated/badge_and_padding": { type: T.STACK_PANEL, children: 'badge' | 'fill' }, + "badge_and_caption_animated/badge_and_padding/badge": { type: T.IMAGE, children: string }, + "badge_and_caption_animated/badge_and_padding/fill": { type: T.PANEL, children: string }, + "gathering_badge": { type: T.IMAGE, children: string }, + "badge_and_caption": { type: T.STACK_PANEL, children: 'caption_and_padding' | 'badge_and_padding' }, + "badge_and_caption/caption_and_padding": { type: T.STACK_PANEL, children: 'pad' | 'caption' }, + "badge_and_caption/caption_and_padding/pad": { type: T.PANEL, children: string }, + "badge_and_caption/caption_and_padding/caption": { type: T.IMAGE, children: string }, + "badge_and_caption/badge_and_padding": { type: T.STACK_PANEL, children: 'badge' | 'fill' }, + "badge_and_caption/badge_and_padding/badge": { type: T.IMAGE, children: string }, + "badge_and_caption/badge_and_padding/fill": { type: T.PANEL, children: string }, + "gathering_caption": { type: T.IMAGE, children: 'countdown_text' }, + "gathering_caption/countdown_text": { type: T.LABEL, children: string }, + "gathering_panel": { type: T.STACK_PANEL, children: 'horizontal_panel' | 'bottom_pad' }, + "gathering_panel/horizontal_panel": { type: T.STACK_PANEL, children: 'pad' | 'inner_panel' }, + "gathering_panel/horizontal_panel/pad": { type: T.PANEL, children: string }, + "gathering_panel/horizontal_panel/inner_panel": { type: T.STACK_PANEL, children: 'badge_and_caption' | 'badge_and_caption_animated' | 'gathering_button' }, + "gathering_panel/horizontal_panel/inner_panel/badge_and_caption": { type: T.STACK_PANEL, children: string }, + "gathering_panel/horizontal_panel/inner_panel/badge_and_caption_animated": { type: T.STACK_PANEL, children: string }, + "gathering_panel/horizontal_panel/inner_panel/gathering_button": { type: T.BUTTON, children: string }, + "gathering_panel/bottom_pad": { type: T.PANEL, children: string }, + "edu_feedback_button": { type: T.BUTTON, children: string }, + "release_feedback_button": { type: T.BUTTON, children: string }, + "pre_release_feedback_button": { type: T.BUTTON, children: string }, + "feedback_button": { type: T.PANEL, children: 'edu_feedback_button' | 'release_feedback_button' | 'pre_release_feedback_button' }, + "feedback_button/edu_feedback_button": { type: T.BUTTON, children: string }, + "feedback_button/release_feedback_button": { type: T.BUTTON, children: string }, + "feedback_button/pre_release_feedback_button": { type: T.BUTTON, children: string }, + "achievements_button": { type: T.BUTTON, children: string }, + "achievements_icon_button": { type: T.PANEL, children: 'achievements_button' }, + "achievements_icon_button/achievements_button": { type: T.BUTTON, children: string }, + "inbox_button": { type: T.BUTTON, children: string }, + "inbox_button_unread_panel": { type: T.PANEL, children: 'background' }, + "inbox_button_unread_panel/background": { type: T.IMAGE, children: string }, + "inbox_icon_button": { type: T.PANEL, children: 'inbox_button' | 'inbox_button_unread_panel' }, + "inbox_icon_button/inbox_button": { type: T.BUTTON, children: string }, + "inbox_icon_button/inbox_button_unread_panel": { type: T.PANEL, children: string }, + "xbl_signin_button": { type: T.BUTTON, children: string }, + "platform_signin_button": { type: T.BUTTON, children: string }, + "column_frame": { type: T.PANEL, children: string }, + "educator_resources_button": { type: T.BUTTON, children: string }, + "upper_online_buttons_panel": { type: T.STACK_PANEL, children: 'top_pad' | 'stacked_column' | 'bottom_pad' }, + "upper_online_buttons_panel/top_pad": { type: T.PANEL, children: string }, + "upper_online_buttons_panel/stacked_column": { type: T.STACK_PANEL, children: 'xbl_btn_padding' | 'xbl_btn' | 'platform_signin_btn' | 'gamertag_pic_and_label' }, + "upper_online_buttons_panel/stacked_column/xbl_btn_padding": { type: T.PANEL, children: string }, + "upper_online_buttons_panel/stacked_column/xbl_btn": { type: T.PANEL, children: 'xbl_signin_button' }, + "upper_online_buttons_panel/stacked_column/xbl_btn/xbl_signin_button": { type: T.BUTTON, children: string }, + "upper_online_buttons_panel/stacked_column/platform_signin_btn": { type: T.PANEL, children: 'platform_signin_button' }, + "upper_online_buttons_panel/stacked_column/platform_signin_btn/platform_signin_button": { type: T.BUTTON, children: string }, + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label": { type: T.STACK_PANEL, children: 'gamerpic_with_border' | 'spacer' | 'label_panel' }, + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border": { type: T.PANEL, children: 'gamerpic' | 'border_white' }, + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border/gamerpic": { type: T.CUSTOM, children: string }, + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border/border_white": { type: T.IMAGE, children: string }, + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/spacer": { type: T.PANEL, children: string }, + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/label_panel": { type: T.PANEL, children: 'gamertag_label' }, + "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/label_panel/gamertag_label": { type: T.LABEL, children: string }, + "upper_online_buttons_panel/bottom_pad": { type: T.PANEL, children: string }, + "lower_online_buttons_panel": { type: T.STACK_PANEL, children: 'stacked_column' }, + "lower_online_buttons_panel/stacked_column": { type: T.STACK_PANEL, children: 'feedback_padding' | 'feedback_btn' | 'signingin' | 'achievements_padding' | 'achievements_btn' | 'inbox_padding' | 'inbox_btn' | 'profile_btn_padding' | 'profile_btn' }, + "lower_online_buttons_panel/stacked_column/feedback_padding": { type: T.PANEL, children: string }, + "lower_online_buttons_panel/stacked_column/feedback_btn": { type: T.PANEL, children: 'feedback_button' }, + "lower_online_buttons_panel/stacked_column/feedback_btn/feedback_button": { type: T.PANEL, children: string }, + "lower_online_buttons_panel/stacked_column/signingin": { type: T.LABEL, children: string }, + "lower_online_buttons_panel/stacked_column/achievements_padding": { type: T.PANEL, children: string }, + "lower_online_buttons_panel/stacked_column/achievements_btn": { type: T.PANEL, children: 'achievements_icon_button' }, + "lower_online_buttons_panel/stacked_column/achievements_btn/achievements_icon_button": { type: T.PANEL, children: string }, + "lower_online_buttons_panel/stacked_column/inbox_padding": { type: T.PANEL, children: string }, + "lower_online_buttons_panel/stacked_column/inbox_btn": { type: T.PANEL, children: 'inbox_icon_button' }, + "lower_online_buttons_panel/stacked_column/inbox_btn/inbox_icon_button": { type: T.PANEL, children: string }, + "lower_online_buttons_panel/stacked_column/profile_btn_padding": { type: T.PANEL, children: string }, + "lower_online_buttons_panel/stacked_column/profile_btn": { type: T.PANEL, children: 'profile_button' }, + "lower_online_buttons_panel/stacked_column/profile_btn/profile_button": { type: T.BUTTON, children: string }, + "main_button": { type: T.BUTTON, children: string }, + "main_button_dark": { type: T.BUTTON, children: string }, + "main_content_button": { type: T.BUTTON, children: string }, + "main_button_gif": { type: T.CUSTOM, children: string }, + "main_button_banner": { type: T.IMAGE, children: 'banner_label' }, + "main_button_banner/banner_label": { type: T.LABEL, children: string }, + "play_button": { type: T.BUTTON, children: string }, + "play_button_art": { type: T.PANEL, children: 'default_background' | 'hover_background' | 'label' | 'default_foreground' | 'hover_foreground' }, + "play_button_art/default_background": { type: T.CUSTOM, children: string }, + "play_button_art/hover_background": { type: T.CUSTOM, children: string }, + "play_button_art/label": { type: T.LABEL, children: string }, + "play_button_art/default_foreground": { type: T.CUSTOM, children: string }, + "play_button_art/hover_foreground": { type: T.CUSTOM, children: string }, + "play_button_stack": { type: T.PANEL, children: 'play_button' | 'play_button_art' | 'play_button_banner' }, + "play_button_stack/play_button": { type: T.BUTTON, children: string }, + "play_button_stack/play_button_art": { type: T.PANEL, children: string }, + "play_button_stack/play_button_banner": { type: T.IMAGE, children: string }, + "get_started_button": { type: T.BUTTON, children: string }, + "main_menu_button": { type: T.BUTTON, children: string }, + "featured_world_button": { type: T.BUTTON, children: string }, + "unlock_full_game_button": { type: T.BUTTON, children: string }, + "launch_editions_button": { type: T.BUTTON, children: string }, + "ai_lesson_crafter_button": { type: T.BUTTON, children: string }, + "settings_button": { type: T.BUTTON, children: string }, + "realms_button": { type: T.BUTTON, children: string }, + "servers_button": { type: T.BUTTON, children: string }, + "store_button": { type: T.BUTTON, children: string }, + "error_store_button": { type: T.BUTTON, children: string }, + "store_button_sale_banner": { type: T.IMAGE, children: 'banner_label_padding' }, + "store_button_sale_banner/banner_label_padding": { type: T.PANEL, children: 'banner_label' }, + "store_button_sale_banner/banner_label_padding/banner_label": { type: T.LABEL, children: string }, + "store_button_content": { type: T.PANEL, children: 'button_label' | 'sales_banner' }, + "store_button_content/button_label": { type: T.LABEL, children: string }, + "store_button_content/sales_banner": { type: T.IMAGE, children: string }, + "store_error_image": { type: T.IMAGE, children: string }, + "store_error_content": { type: T.IMAGE, children: 'marketplace_button_label' }, + "store_error_content/marketplace_button_label": { type: T.LABEL, children: string }, + "store_sale_label": { type: T.LABEL, children: string }, + "store_button_art": { type: T.PANEL, children: 'default_background' | 'hover_background' | 'label' | 'default_foreground' | 'hover_foreground' }, + "store_button_art/default_background": { type: T.CUSTOM, children: string }, + "store_button_art/hover_background": { type: T.CUSTOM, children: string }, + "store_button_art/label": { type: T.LABEL, children: string }, + "store_button_art/default_foreground": { type: T.CUSTOM, children: string }, + "store_button_art/hover_foreground": { type: T.CUSTOM, children: string }, + "store_button_stack": { type: T.PANEL, children: 'store_button' | 'store_button_art' | 'store_button_banner' | 'update_icon' | 'new_offers_icon' }, + "store_button_stack/store_button": { type: T.BUTTON, children: string }, + "store_button_stack/store_button_art": { type: T.PANEL, children: string }, + "store_button_stack/store_button_banner": { type: T.IMAGE, children: string }, + "store_button_stack/update_icon": { type: T.IMAGE, children: string }, + "store_button_stack/new_offers_icon": { type: T.IMAGE, children: string }, + "buy_game_button": { type: T.BUTTON, children: string }, + "stacked_row": { type: T.PANEL, children: string }, + "main_buttons_stack_panel": { type: T.STACK_PANEL, children: 'title_offset_padding' | 'title_panel_content' | 'padding_fill_1' | 'main_buttons_panel' | 'main_buttons_panel_new_player_flow' | 'padding_fill_2' | 'padding_3' }, + "main_buttons_stack_panel/title_offset_padding": { type: T.PANEL, children: string }, + "main_buttons_stack_panel/title_panel_content": { type: T.PANEL, children: string }, + "main_buttons_stack_panel/padding_fill_1": { type: T.PANEL, children: string }, + "main_buttons_stack_panel/main_buttons_panel": { type: T.PANEL, children: 'main_buttons_panel' }, + "main_buttons_stack_panel/main_buttons_panel/main_buttons_panel": { type: T.PANEL, children: string }, + "main_buttons_stack_panel/main_buttons_panel_new_player_flow": { type: T.PANEL, children: 'main_buttons_panel_new_player_flow' }, + "main_buttons_stack_panel/main_buttons_panel_new_player_flow/main_buttons_panel_new_player_flow": { type: T.PANEL, children: string }, + "main_buttons_stack_panel/padding_fill_2": { type: T.PANEL, children: 'gamepad_helpers' }, + "main_buttons_stack_panel/padding_fill_2/gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "main_buttons_stack_panel/padding_3": { type: T.PANEL, children: string }, + "main_buttons_panel_new_player_flow": { type: T.PANEL, children: 'stacked_rows' }, + "main_buttons_panel_new_player_flow/stacked_rows": { type: T.STACK_PANEL, children: 'test_label_row' | 'spacer' | 'get_started_row' | 'main_menu_row' }, + "main_buttons_panel_new_player_flow/stacked_rows/test_label_row": { type: T.PANEL, children: 'trial_info' }, + "main_buttons_panel_new_player_flow/stacked_rows/test_label_row/trial_info": { type: T.PANEL, children: string }, + "main_buttons_panel_new_player_flow/stacked_rows/spacer": { type: T.PANEL, children: string }, + "main_buttons_panel_new_player_flow/stacked_rows/get_started_row": { type: T.PANEL, children: 'get_started_button' }, + "main_buttons_panel_new_player_flow/stacked_rows/get_started_row/get_started_button": { type: T.BUTTON, children: string }, + "main_buttons_panel_new_player_flow/stacked_rows/main_menu_row": { type: T.PANEL, children: 'main_menu_button' }, + "main_buttons_panel_new_player_flow/stacked_rows/main_menu_row/main_menu_button": { type: T.BUTTON, children: string }, + "main_buttons_panel": { type: T.PANEL, children: 'stacked_rows' }, + "main_buttons_panel/stacked_rows": { type: T.STACK_PANEL, children: 'play' | 'featured_world' | 'stacked_row_2' | 'ai_lesson_crafter_row' | 'edu_featured_button' | 'settings_and_editions_panel' | 'settings' | 'realms' | 'unlock_full_game_row' | 'store' | 'buy_game' | 'launch_editions' }, + "main_buttons_panel/stacked_rows/play": { type: T.PANEL, children: string }, + "main_buttons_panel/stacked_rows/featured_world": { type: T.PANEL, children: 'featured_world_button' }, + "main_buttons_panel/stacked_rows/featured_world/featured_world_button": { type: T.BUTTON, children: string }, + "main_buttons_panel/stacked_rows/stacked_row_2": { type: T.PANEL, children: 'stacked_columns' }, + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns": { type: T.STACK_PANEL, children: 'stacked_col_0' | 'stacked_col_1' }, + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_0": { type: T.PANEL, children: 'settings_button' }, + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_0/settings_button": { type: T.BUTTON, children: string }, + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1": { type: T.PANEL, children: 'store_button' | 'update_icon' | 'new_offers_icon' }, + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/store_button": { type: T.BUTTON, children: string }, + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/update_icon": { type: T.IMAGE, children: string }, + "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/new_offers_icon": { type: T.IMAGE, children: string }, + "main_buttons_panel/stacked_rows/ai_lesson_crafter_row": { type: T.PANEL, children: 'ai_lesson_crafter_button' | 'lesson_crafter_preview_overlay' }, + "main_buttons_panel/stacked_rows/ai_lesson_crafter_row/ai_lesson_crafter_button": { type: T.BUTTON, children: string }, + "main_buttons_panel/stacked_rows/ai_lesson_crafter_row/lesson_crafter_preview_overlay": { type: T.IMAGE, children: string }, + "main_buttons_panel/stacked_rows/edu_featured_button": { type: T.PANEL, children: 'new_and_featured_button' }, + "main_buttons_panel/stacked_rows/edu_featured_button/new_and_featured_button": { type: T.BUTTON, children: string }, + "main_buttons_panel/stacked_rows/settings_and_editions_panel": { type: T.PANEL, children: 'settings_and_editions' | 'settings_panel' }, + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions": { type: T.STACK_PANEL, children: 'settings_panel' | 'editions_panel' }, + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/settings_panel": { type: T.PANEL, children: 'settings_button' }, + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/settings_panel/settings_button": { type: T.BUTTON, children: string }, + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/editions_panel": { type: T.PANEL, children: 'launch_editions_button' }, + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/editions_panel/launch_editions_button": { type: T.BUTTON, children: string }, + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_panel": { type: T.PANEL, children: 'settings_button' }, + "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_panel/settings_button": { type: T.BUTTON, children: string }, + "main_buttons_panel/stacked_rows/settings": { type: T.PANEL, children: 'settings_button' }, + "main_buttons_panel/stacked_rows/settings/settings_button": { type: T.BUTTON, children: string }, + "main_buttons_panel/stacked_rows/realms": { type: T.PANEL, children: 'realms_button' }, + "main_buttons_panel/stacked_rows/realms/realms_button": { type: T.BUTTON, children: string }, + "main_buttons_panel/stacked_rows/unlock_full_game_row": { type: T.PANEL, children: 'unlock_full_game' }, + "main_buttons_panel/stacked_rows/unlock_full_game_row/unlock_full_game": { type: T.BUTTON, children: string }, + "main_buttons_panel/stacked_rows/store": { type: T.PANEL, children: string }, + "main_buttons_panel/stacked_rows/buy_game": { type: T.PANEL, children: 'buy_game_button' }, + "main_buttons_panel/stacked_rows/buy_game/buy_game_button": { type: T.BUTTON, children: string }, + "main_buttons_panel/stacked_rows/launch_editions": { type: T.PANEL, children: 'launch_editions_button' }, + "main_buttons_panel/stacked_rows/launch_editions/launch_editions_button": { type: T.BUTTON, children: string }, + "gamepad_helpers": { type: T.STACK_PANEL, children: 'gamepad_helper_a' | 'gamepad_helper_b_and_padding' | 'gamepad_helper_y_and_padding' | 'gamepad_helper_x_and_padding' }, + "gamepad_helpers/gamepad_helper_a": { type: T.STACK_PANEL, children: string }, + "gamepad_helpers/gamepad_helper_b_and_padding": { type: T.PANEL, children: 'gamepad_helper_b' }, + "gamepad_helpers/gamepad_helper_b_and_padding/gamepad_helper_b": { type: T.STACK_PANEL, children: string }, + "gamepad_helpers/gamepad_helper_y_and_padding": { type: T.PANEL, children: 'gamepad_helper_y' }, + "gamepad_helpers/gamepad_helper_y_and_padding/gamepad_helper_y": { type: T.STACK_PANEL, children: string }, + "gamepad_helpers/gamepad_helper_x_and_padding": { type: T.PANEL, children: 'gamepad_helper_x' }, + "gamepad_helpers/gamepad_helper_x_and_padding/gamepad_helper_x": { type: T.STACK_PANEL, children: string }, + "invite_notification_icon": { type: T.IMAGE, children: string }, + "invite_notification_button": { type: T.BUTTON, children: string }, + "notification_button_text": { type: T.LABEL, children: string }, + "notification_button_text_background": { type: T.IMAGE, children: string }, + "notification_button_text_panel": { type: T.PANEL, children: 'text' }, + "notification_button_text_panel/text": { type: T.LABEL, children: 'background' }, + "notification_button_text_panel/text/background": { type: T.IMAGE, children: string }, + "start_screen": { type: T.SCREEN, children: string }, + "start_screen_content": { type: T.PANEL, children: 'main_buttons_and_title_panel' | 'online_button_stack' | 'skin_panel' | 'text_panel' | 'friendsdrawer_button_panel' }, + "start_screen_content/main_buttons_and_title_panel": { type: T.STACK_PANEL, children: string }, + "start_screen_content/online_button_stack": { type: T.STACK_PANEL, children: 'gathering_panel' | 'upper_online_buttons_panel' | 'lower_online_buttons_panel' }, + "start_screen_content/online_button_stack/gathering_panel": { type: T.STACK_PANEL, children: string }, + "start_screen_content/online_button_stack/upper_online_buttons_panel": { type: T.STACK_PANEL, children: string }, + "start_screen_content/online_button_stack/lower_online_buttons_panel": { type: T.STACK_PANEL, children: string }, + "start_screen_content/skin_panel": { type: T.PANEL, children: string }, + "start_screen_content/text_panel": { type: T.PANEL, children: string }, + "start_screen_content/friendsdrawer_button_panel": { type: T.PANEL, children: string }, } 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": { type: T.LABEL, children: string }, + "arrow_icon": { type: T.IMAGE, children: string }, + "stone_cell_image": { type: T.IMAGE, children: string }, + "container_cell_image": { type: T.IMAGE, children: string }, + "toolbar_background": { type: T.IMAGE, children: string }, + "highlight_slot_panel": { type: T.PANEL, children: 'hover_text' | 'highlight' | 'white_border' }, + "highlight_slot_panel/hover_text": { type: T.CUSTOM, children: string }, + "highlight_slot_panel/highlight": { type: T.IMAGE, children: string }, + "highlight_slot_panel/white_border": { type: T.IMAGE, children: string }, + "stone_slot_button": { type: T.BUTTON, children: 'hover' }, + "stone_slot_button/hover": { type: T.UNKNOWN, children: string }, + "item_panel": { type: T.PANEL, children: 'item_renderer' }, + "item_panel/item_renderer": { type: T.CUSTOM, children: 'stack_count_label' }, + "item_panel/item_renderer/stack_count_label": { type: T.LABEL, children: string }, + "stone_button": { type: T.INPUT_PANEL, children: 'banner_pattern' | 'item_button_ref' }, + "stone_button/banner_pattern": { type: T.UNKNOWN, children: string }, + "stone_button/item_button_ref": { type: T.UNKNOWN, children: string }, + "scroll_grid": { type: T.GRID, children: string }, + "scroll_grid_panel": { type: T.INPUT_PANEL, children: 'grid' }, + "scroll_grid_panel/grid": { type: T.GRID, children: string }, + "scroll_panel": { type: T.PANEL, children: string }, + "stone_book_panel": { type: T.INPUT_PANEL, children: 'bg' | 'scroll_panel' }, + "stone_book_panel/bg": { type: T.PANEL, children: string }, + "stone_book_panel/scroll_panel": { type: T.PANEL, children: string }, + "result_slot_button": { type: T.BUTTON, children: string }, + "input_item_slot": { type: T.INPUT_PANEL, children: string }, + "result_item_slot": { type: T.INPUT_PANEL, children: string }, + "input_slots_stack_panel": { type: T.STACK_PANEL, children: 'input_item_slot' }, + "input_slots_stack_panel/input_item_slot": { type: T.INPUT_PANEL, children: string }, + "top_half_stack_panel": { type: T.STACK_PANEL, children: 'input_slots_holder' | 'padding_1' | 'arrow_holder' | 'padding_2' | 'result_item_slot_holder' }, + "top_half_stack_panel/input_slots_holder": { type: T.PANEL, children: 'input_slots_stack_panel' }, + "top_half_stack_panel/input_slots_holder/input_slots_stack_panel": { type: T.STACK_PANEL, children: string }, + "top_half_stack_panel/padding_1": { type: T.PANEL, children: string }, + "top_half_stack_panel/arrow_holder": { type: T.PANEL, children: 'arrow_icon' }, + "top_half_stack_panel/arrow_holder/arrow_icon": { type: T.IMAGE, children: string }, + "top_half_stack_panel/padding_2": { type: T.PANEL, children: string }, + "top_half_stack_panel/result_item_slot_holder": { type: T.PANEL, children: 'result_item_slot' }, + "top_half_stack_panel/result_item_slot_holder/result_item_slot": { type: T.INPUT_PANEL, children: string }, + "top_half_panel": { type: T.PANEL, children: 'top_half_stack_panel' }, + "top_half_panel/top_half_stack_panel": { type: T.STACK_PANEL, children: string }, + "right_panel": { type: T.INPUT_PANEL, children: 'common_panel' | 'stonecutter_screen_inventory' }, + "right_panel/common_panel": { type: T.PANEL, children: string }, + "right_panel/stonecutter_screen_inventory": { type: T.PANEL, children: 'stonecutter_label' | 'top_half_panel' | 'inventory_panel_bottom_half_with_label' | 'hotbar_grid' }, + "right_panel/stonecutter_screen_inventory/stonecutter_label": { type: T.LABEL, children: string }, + "right_panel/stonecutter_screen_inventory/top_half_panel": { type: T.PANEL, children: string }, + "right_panel/stonecutter_screen_inventory/inventory_panel_bottom_half_with_label": { type: T.PANEL, children: string }, + "right_panel/stonecutter_screen_inventory/hotbar_grid": { type: T.GRID, children: string }, + "toolbar_panel": { type: T.INPUT_PANEL, children: 'toolbar_background' }, + "toolbar_panel/toolbar_background": { type: T.IMAGE, children: 'toolbar_stack_panel' }, + "toolbar_panel/toolbar_background/toolbar_stack_panel": { type: T.STACK_PANEL, children: 'padding_1' | 'close_button_panel' | 'padding_2' }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": { type: T.PANEL, children: string }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": { type: T.PANEL, children: 'close_button' }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": { type: T.BUTTON, children: string }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": { type: T.PANEL, children: string }, + "toolbar_anchor": { type: T.PANEL, children: 'toolbar_panel' }, + "toolbar_anchor/toolbar_panel": { type: T.INPUT_PANEL, children: string }, + "center_fold": { type: T.INPUT_PANEL, children: 'center_bg' }, + "center_fold/center_bg": { type: T.IMAGE, children: string }, + "screen_stack_panel": { type: T.STACK_PANEL, children: 'stone_book_panel' | 'center_fold' | 'right_panel' | 'toolbar_anchor' }, + "screen_stack_panel/stone_book_panel": { type: T.INPUT_PANEL, children: string }, + "screen_stack_panel/center_fold": { type: T.INPUT_PANEL, children: string }, + "screen_stack_panel/right_panel": { type: T.INPUT_PANEL, children: string }, + "screen_stack_panel/toolbar_anchor": { type: T.PANEL, children: string }, + "stonecutter_panel": { type: T.PANEL, children: 'screen_stack_panel' | 'container_gamepad_helpers' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'inventory_selected_icon_button' | 'inventory_take_progress_icon_button' | 'flying_item_renderer' }, + "stonecutter_panel/screen_stack_panel": { type: T.STACK_PANEL, children: string }, + "stonecutter_panel/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "stonecutter_panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "stonecutter_panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "stonecutter_panel/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "stonecutter_panel/inventory_take_progress_icon_button": { type: T.BUTTON, children: string }, + "stonecutter_panel/flying_item_renderer": { type: T.CUSTOM, children: string }, + "stonecutter_screen": { type: T.SCREEN, children: string }, } 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": { type: T.IMAGE, children: string }, + "chest_item_renderer": { type: T.CUSTOM, children: string }, + "stonecutter_item_renderer": { type: T.CUSTOM, children: string }, + "input_item_slot": { type: T.INPUT_PANEL, children: string }, + "result_item_slot": { type: T.INPUT_PANEL, children: string }, + "right_panel": { type: T.STACK_PANEL, children: 'content' | 'navigation_tabs_holder' }, + "right_panel/content": { type: T.INPUT_PANEL, children: 'bg' | 'stonecutter_content_stack_panel' }, + "right_panel/content/bg": { type: T.PANEL, children: string }, + "right_panel/content/stonecutter_content_stack_panel": { type: T.STACK_PANEL, children: string }, + "right_panel/navigation_tabs_holder": { type: T.PANEL, children: 'right_navigation_tabs' }, + "right_panel/navigation_tabs_holder/right_navigation_tabs": { type: T.STACK_PANEL, children: string }, + "right_tab_stonecutter": { type: T.PANEL, children: string }, + "right_navigation_tabs": { type: T.STACK_PANEL, children: 'close' | 'fill' | 'right_tab_stonecutter' }, + "right_navigation_tabs/close": { type: T.IMAGE, children: 'nodrop_zone' | 'close_button' }, + "right_navigation_tabs/close/nodrop_zone": { type: T.INPUT_PANEL, children: string }, + "right_navigation_tabs/close/close_button": { type: T.BUTTON, children: string }, + "right_navigation_tabs/fill": { type: T.PANEL, children: string }, + "right_navigation_tabs/right_tab_stonecutter": { type: T.PANEL, children: string }, + "input_slots_stack_panel": { type: T.STACK_PANEL, children: 'input_item_slot' }, + "input_slots_stack_panel/input_item_slot": { type: T.INPUT_PANEL, children: string }, + "stonecutter_content_stack_panel": { type: T.STACK_PANEL, children: 'label_holder' | 'padding_1' | 'panel' }, + "stonecutter_content_stack_panel/label_holder": { type: T.PANEL, children: 'stonecutter_label' }, + "stonecutter_content_stack_panel/label_holder/stonecutter_label": { type: T.LABEL, children: string }, + "stonecutter_content_stack_panel/padding_1": { type: T.PANEL, children: string }, + "stonecutter_content_stack_panel/panel": { type: T.PANEL, children: 'stack_panel' }, + "stonecutter_content_stack_panel/panel/stack_panel": { type: T.STACK_PANEL, children: 'input_slots_holder' | 'padding_3' | 'arrow_holder' | 'padding_4' | 'result_item_slot_holder' | 'padding_5' }, + "stonecutter_content_stack_panel/panel/stack_panel/input_slots_holder": { type: T.PANEL, children: 'input_slots_stack_panel' }, + "stonecutter_content_stack_panel/panel/stack_panel/input_slots_holder/input_slots_stack_panel": { type: T.STACK_PANEL, children: string }, + "stonecutter_content_stack_panel/panel/stack_panel/padding_3": { type: T.PANEL, children: string }, + "stonecutter_content_stack_panel/panel/stack_panel/arrow_holder": { type: T.PANEL, children: 'vertical_arrow_icon' }, + "stonecutter_content_stack_panel/panel/stack_panel/arrow_holder/vertical_arrow_icon": { type: T.IMAGE, children: string }, + "stonecutter_content_stack_panel/panel/stack_panel/padding_4": { type: T.PANEL, children: string }, + "stonecutter_content_stack_panel/panel/stack_panel/result_item_slot_holder": { type: T.PANEL, children: 'result_item_slot' }, + "stonecutter_content_stack_panel/panel/stack_panel/result_item_slot_holder/result_item_slot": { type: T.INPUT_PANEL, children: string }, + "stonecutter_content_stack_panel/panel/stack_panel/padding_5": { type: T.PANEL, children: string }, + "inventory_panel": { type: T.STACK_PANEL, children: 'inventory_title_label_centerer' | 'inventory_scroll_panel' }, + "inventory_panel/inventory_title_label_centerer": { type: T.PANEL, children: 'inventory_title_label' }, + "inventory_panel/inventory_title_label_centerer/inventory_title_label": { type: T.LABEL, children: string }, + "inventory_panel/inventory_scroll_panel": { type: T.PANEL, children: string }, + "inventory_scroll_panel": { type: T.PANEL, children: string }, + "pattern_button": { type: T.INPUT_PANEL, children: string }, + "pattern_scroll_panel": { type: T.PANEL, children: string }, + "left_panel": { type: T.STACK_PANEL, children: 'gamepad_helpers_and_tabs_holder' | 'content' }, + "left_panel/gamepad_helpers_and_tabs_holder": { type: T.PANEL, children: 'tabs_left_gamepad_helpers' | 'navigation_tabs_holder' }, + "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": { type: T.PANEL, children: string }, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": { type: T.PANEL, children: 'left_navigation_tabs' }, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": { type: T.STACK_PANEL, children: string }, + "left_panel/content": { type: T.INPUT_PANEL, children: 'bg' | 'inventory_panel' | 'pattern_scroll_panel' }, + "left_panel/content/bg": { type: T.PANEL, children: string }, + "left_panel/content/inventory_panel": { type: T.STACK_PANEL, children: string }, + "left_panel/content/pattern_scroll_panel": { type: T.PANEL, children: string }, + "left_tab_stones": { type: T.PANEL, children: string }, + "left_tab_inventory": { type: T.PANEL, children: string }, + "left_navigation_tabs": { type: T.STACK_PANEL, children: 'left_tab_stones' | 'padding' | 'left_tab_inventory' }, + "left_navigation_tabs/left_tab_stones": { type: T.PANEL, children: string }, + "left_navigation_tabs/padding": { type: T.PANEL, children: string }, + "left_navigation_tabs/left_tab_inventory": { type: T.PANEL, children: string }, + "pocket_hotbar_and_content_panels": { type: T.STACK_PANEL, children: string }, + "stonecutter_panel": { type: T.PANEL, children: 'pocket_hotbar_and_content_panels' | 'container_gamepad_helpers' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'inventory_selected_icon_button' | 'inventory_take_progress_icon_button' | 'flying_item_renderer' }, + "stonecutter_panel/pocket_hotbar_and_content_panels": { type: T.STACK_PANEL, children: string }, + "stonecutter_panel/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "stonecutter_panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "stonecutter_panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "stonecutter_panel/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "stonecutter_panel/inventory_take_progress_icon_button": { type: T.BUTTON, children: string }, + "stonecutter_panel/flying_item_renderer": { type: T.CUSTOM, children: string }, } 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": { type: T.IMAGE, children: string }, + "storage_header_panel": { type: T.PANEL, children: 'header_panel' }, + "storage_header_panel/header_panel": { type: T.STACK_PANEL, children: 'file_storage_dropdown' | 'file_storage_dropdown_edu' | 'clear_cache_button_panel' | 'clear_download_cache_button_panel' | 'clear_screenshots_cache_button_panel' | 'delete_local_screenshots_button_panel' | 'panel' }, + "storage_header_panel/header_panel/file_storage_dropdown": { type: T.PANEL, children: string }, + "storage_header_panel/header_panel/file_storage_dropdown_edu": { type: T.PANEL, children: string }, + "storage_header_panel/header_panel/clear_cache_button_panel": { type: T.PANEL, children: 'clear_cache_button' }, + "storage_header_panel/header_panel/clear_cache_button_panel/clear_cache_button": { type: T.BUTTON, children: string }, + "storage_header_panel/header_panel/clear_download_cache_button_panel": { type: T.PANEL, children: 'clear_download_button' }, + "storage_header_panel/header_panel/clear_download_cache_button_panel/clear_download_button": { type: T.BUTTON, children: string }, + "storage_header_panel/header_panel/clear_screenshots_cache_button_panel": { type: T.PANEL, children: 'clear_screenshots_cache_button' }, + "storage_header_panel/header_panel/clear_screenshots_cache_button_panel/clear_screenshots_cache_button": { type: T.BUTTON, children: string }, + "storage_header_panel/header_panel/delete_local_screenshots_button_panel": { type: T.PANEL, children: 'delete_local_screenshots_button' }, + "storage_header_panel/header_panel/delete_local_screenshots_button_panel/delete_local_screenshots_button": { type: T.BUTTON, children: string }, + "storage_header_panel/header_panel/panel": { type: T.PANEL, children: 'multiselect_button' }, + "storage_header_panel/header_panel/panel/multiselect_button": { type: T.PANEL, children: string }, + "x_button_image": { type: T.IMAGE, children: string }, + "storage_main_panel": { type: T.PANEL, children: 'scroll_content' }, + "storage_main_panel/scroll_content": { type: T.STACK_PANEL, children: string }, + "storage_footer_panel": { type: T.PANEL, children: 'visibleContent' }, + "storage_footer_panel/visibleContent": { type: T.STACK_PANEL, children: 'delete_button' | 'share_button' }, + "storage_footer_panel/visibleContent/delete_button": { type: T.BUTTON, children: string }, + "storage_footer_panel/visibleContent/share_button": { type: T.BUTTON, children: string }, + "delete_checkbox": { type: T.PANEL, children: 'selected_checkbox_image' }, + "delete_checkbox/selected_checkbox_image": { type: T.IMAGE, children: string }, + "generic_button": { type: T.IMAGE, children: 'picture' | 'text' }, + "generic_button/picture": { type: T.IMAGE, children: string }, + "generic_button/text": { type: T.LABEL, children: string }, + "common_scroll_pane": { type: T.PANEL, children: string }, + "common_label": { type: T.LABEL, children: string }, + "main_content_panel": { type: T.STACK_PANEL, children: 'panel' }, + "main_content_panel/panel": { type: T.STACK_PANEL, children: 'spacing' | 'delete_checkbox' | 'image_panel' | 'text_panel_offset' }, + "main_content_panel/panel/spacing": { type: T.PANEL, children: string }, + "main_content_panel/panel/delete_checkbox": { type: T.PANEL, children: string }, + "main_content_panel/panel/image_panel": { type: T.PANEL, children: 'image_border' }, + "main_content_panel/panel/image_panel/image_border": { type: T.IMAGE, children: 'image' }, + "main_content_panel/panel/image_panel/image_border/image": { type: T.IMAGE, children: string }, + "main_content_panel/panel/text_panel_offset": { type: T.PANEL, children: 'text_panel' }, + "main_content_panel/panel/text_panel_offset/text_panel": { type: T.PANEL, children: '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' }, + "main_content_panel/panel/text_panel_offset/text_panel/0": { type: T.UNKNOWN, children: string }, + "common_main_button": { type: T.PANEL, children: 'background' | 'border' | 'main_content_panel' }, + "common_main_button/background": { type: T.IMAGE, children: string }, + "common_main_button/border": { type: T.IMAGE, children: string }, + "common_main_button/main_content_panel": { type: T.STACK_PANEL, children: string }, + "base_glyph": { type: T.STACK_PANEL, children: 'image' | 'padding' }, + "base_glyph/image": { type: T.IMAGE, children: string }, + "base_glyph/padding": { type: T.PANEL, children: string }, + "main_item_text": { type: T.STACK_PANEL, children: string }, + "grey_button": { type: T.PANEL, children: string }, + "icon_item_text": { type: T.PANEL, children: string }, + "world_item_text": { type: T.PANEL, children: string }, + "storage_main_item_toggle": { type: T.STACK_PANEL, children: 'main_item_toggle' | 'contentPanel' | 'padding' }, + "storage_main_item_toggle/main_item_toggle": { type: T.PANEL, children: string }, + "storage_main_item_toggle/contentPanel": { type: T.STACK_PANEL, children: string }, + "storage_main_item_toggle/padding": { type: T.PANEL, children: string }, + "storage_scroll_pane": { type: T.STACK_PANEL, children: 'category_stack_panel' | 'multiselect_padding' }, + "storage_scroll_pane/category_stack_panel": { type: T.STACK_PANEL, children: 'stack_panel' | 'legacy_world_stack_panel' | 'retailtopreview_world_stack_panel' }, + "storage_scroll_pane/category_stack_panel/stack_panel": { type: T.STACK_PANEL, children: string }, + "storage_scroll_pane/category_stack_panel/legacy_world_stack_panel": { type: T.STACK_PANEL, children: 'legacy_world_controls' }, + "storage_scroll_pane/category_stack_panel/legacy_world_stack_panel/legacy_world_controls": { type: T.STACK_PANEL, children: string }, + "storage_scroll_pane/category_stack_panel/retailtopreview_world_stack_panel": { type: T.STACK_PANEL, children: 'retailtopreview_world_controls' }, + "storage_scroll_pane/category_stack_panel/retailtopreview_world_stack_panel/retailtopreview_world_controls": { type: T.STACK_PANEL, children: string }, + "storage_scroll_pane/multiselect_padding": { type: T.PANEL, children: string }, + "world_controls": { type: T.STACK_PANEL, children: string }, + "world_template_controls": { type: T.STACK_PANEL, children: string }, + "resource_controls": { type: T.STACK_PANEL, children: string }, + "behavior_controls": { type: T.STACK_PANEL, children: string }, + "skin_controls": { type: T.STACK_PANEL, children: string }, + "cached_controls": { type: T.STACK_PANEL, children: string }, + "resource_sub_item": { type: T.STACK_PANEL, children: 'dummy_panel' | 'main_panel' }, + "resource_sub_item/dummy_panel": { type: T.PANEL, children: string }, + "resource_sub_item/main_panel": { type: T.PANEL, children: 'content' }, + "resource_sub_item/main_panel/content": { type: T.UNKNOWN, children: string }, + "resource_toggle": { type: T.STACK_PANEL, children: 'content_toggle' | 'item_button_panel' }, + "resource_toggle/content_toggle": { type: T.TOGGLE, children: 'default' | 'hover' | 'unchecked' | 'unchecked_hover' }, + "resource_toggle/content_toggle/default": { type: T.UNKNOWN, children: string }, + "resource_toggle/content_toggle/hover": { type: T.UNKNOWN, children: string }, + "resource_toggle/content_toggle/unchecked": { type: T.UNKNOWN, children: string }, + "resource_toggle/content_toggle/unchecked_hover": { type: T.UNKNOWN, children: string }, + "resource_toggle/item_button_panel": { type: T.INPUT_PANEL, children: 'y_sizing_panel' }, + "resource_toggle/item_button_panel/y_sizing_panel": { type: T.PANEL, children: 'border' }, + "resource_toggle/item_button_panel/y_sizing_panel/border": { type: T.IMAGE, children: 'button_panel' }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel": { type: T.STACK_PANEL, children: 'blank' | 'padding_0' | 'generate_texture_list_panel' | 'padding_1' | 'delete_button' | 'padding_2' | 'share_panel' | 'padding_3' | 'blank_3' | 'padding_4' | 'dependency_panel' }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/blank": { type: T.PANEL, children: string }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_0": { type: T.PANEL, children: string }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel": { type: T.PANEL, children: 'blank' | 'generate_texture_list_button' }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel/blank": { type: T.PANEL, children: string }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel/generate_texture_list_button": { type: T.BUTTON, children: string }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_1": { type: T.PANEL, children: string }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/delete_button": { type: T.BUTTON, children: string }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_2": { type: T.PANEL, children: string }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel": { type: T.PANEL, children: 'blank' | 'share_button' }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel/blank": { type: T.PANEL, children: string }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel/share_button": { type: T.BUTTON, children: string }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_3": { type: T.PANEL, children: string }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/blank_3": { type: T.PANEL, children: string }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_4": { type: T.PANEL, children: string }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel": { type: T.PANEL, children: 'blank' | 'dependency_button' }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel/blank": { type: T.PANEL, children: string }, + "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel/dependency_button": { type: T.BUTTON, children: string }, + "sub_item_tray_button": { type: T.BUTTON, children: string }, + "glyph_sub_icon": { type: T.IMAGE, children: string }, + "sub_item_blank_button": { type: T.PANEL, children: string }, + "texture_icon_text": { type: T.PANEL, children: string }, + "texture_icon_sub_item": { type: T.PANEL, children: string }, + "version_sub_item": { type: T.PANEL, children: string }, + "pack_description_sub_item": { type: T.PANEL, children: string }, + "world_sub_text": { type: T.PANEL, children: string }, + "world_template_sub_text": { type: T.PANEL, children: string }, + "basic_sub_item": { type: T.PANEL, children: string }, + "dropdown_button": { type: T.BUTTON, children: string }, + "dropdown_button_content": { type: T.STACK_PANEL, children: 'image_panel' | 'text_panel' }, + "dropdown_button_content/image_panel": { type: T.PANEL, children: 'icon' }, + "dropdown_button_content/image_panel/icon": { type: T.IMAGE, children: string }, + "dropdown_button_content/text_panel": { type: T.PANEL, children: 'main_label' }, + "dropdown_button_content/text_panel/main_label": { type: T.LABEL, children: string }, + "filter_options": { type: T.INPUT_PANEL, children: '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' }, + "filter_options/0": { type: T.UNKNOWN, children: string }, + "light_assets": { type: T.PANEL, children: string }, + "button_add": { type: T.IMAGE, children: string }, + "sort_panel": { type: T.PANEL, children: 'default' }, + "sort_panel/default": { type: T.PANEL, children: string }, + "sort_toggle": { type: T.TOGGLE, children: string }, + "storage_scroll_panel": { type: T.PANEL, children: string }, + "storage_main_item_legacy_world_toggle": { type: T.STACK_PANEL, children: 'main_item_toggle' | 'contentPanel' | 'padding' }, + "storage_main_item_legacy_world_toggle/main_item_toggle": { type: T.PANEL, children: string }, + "storage_main_item_legacy_world_toggle/contentPanel": { type: T.STACK_PANEL, children: 'sync_legacy_world_button_panel' | 'dummy_panel' | 'sync_legacy_world_description_panel' | 'itemsPanel' | 'sync_legacy_world_conversion_description_panel_dummy_panel' | 'sync_legacy_world_conversion_description_panel' | 'loading_legacy_worlds_panel' }, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel": { type: T.STACK_PANEL, children: 'dummy_panel' | 'sync_legacy_world_button' }, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel/dummy_panel": { type: T.PANEL, children: string }, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel/sync_legacy_world_button": { type: T.BUTTON, children: string }, + "storage_main_item_legacy_world_toggle/contentPanel/dummy_panel": { type: T.PANEL, children: string }, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel": { type: T.STACK_PANEL, children: 'dummy_panel' | 'sync_legacy_world_description' }, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel/dummy_panel": { type: T.PANEL, children: string }, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel/sync_legacy_world_description": { type: T.LABEL, children: string }, + "storage_main_item_legacy_world_toggle/contentPanel/itemsPanel": { type: T.STACK_PANEL, children: string }, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel_dummy_panel": { type: T.PANEL, children: string }, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel": { type: T.STACK_PANEL, children: 'dummy_panel' | 'sync_legacy_world_conversion_description' }, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel/dummy_panel": { type: T.PANEL, children: string }, + "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel/sync_legacy_world_conversion_description": { type: T.LABEL, children: string }, + "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel": { type: T.IMAGE, children: 'loading_legacy_worlds_label' | 'padding' | 'progress_loading_bars' }, + "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/loading_legacy_worlds_label": { type: T.LABEL, children: string }, + "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/padding": { type: T.PANEL, children: string }, + "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/progress_loading_bars": { type: T.IMAGE, children: string }, + "storage_main_item_legacy_world_toggle/padding": { type: T.PANEL, children: string }, + "legacy_world_main_item_text": { type: T.STACK_PANEL, children: string }, + "storage_main_item_retailtopreview_world_toggle": { type: T.STACK_PANEL, children: 'main_item_toggle' | 'contentPanel' | 'padding' }, + "storage_main_item_retailtopreview_world_toggle/main_item_toggle": { type: T.PANEL, children: string }, + "storage_main_item_retailtopreview_world_toggle/contentPanel": { type: T.STACK_PANEL, children: 'sync_retailtopreview_world_button_panel' | 'dummy_panel' | 'sync_retailtopreview_world_description_panel' | 'itemsPanel' | 'sync_retailtopreview_world_conversion_description_panel_dummy_panel' | 'sync_retailtopreview_world_conversion_description_panel' | 'loading_retailtopreview_worlds_panel' }, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel": { type: T.STACK_PANEL, children: 'dummy_panel' | 'sync_retailtopreview_world_button' }, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel/dummy_panel": { type: T.PANEL, children: string }, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel/sync_retailtopreview_world_button": { type: T.BUTTON, children: string }, + "storage_main_item_retailtopreview_world_toggle/contentPanel/dummy_panel": { type: T.PANEL, children: string }, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel": { type: T.STACK_PANEL, children: 'dummy_panel' | 'sync_retailtopreview_world_description' }, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel/dummy_panel": { type: T.PANEL, children: string }, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel/sync_retailtopreview_world_description": { type: T.LABEL, children: string }, + "storage_main_item_retailtopreview_world_toggle/contentPanel/itemsPanel": { type: T.STACK_PANEL, children: string }, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel_dummy_panel": { type: T.PANEL, children: string }, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel": { type: T.STACK_PANEL, children: 'dummy_panel' | 'sync_retailtopreview_world_conversion_description' }, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel/dummy_panel": { type: T.PANEL, children: string }, + "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel/sync_retailtopreview_world_conversion_description": { type: T.LABEL, children: string }, + "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel": { type: T.IMAGE, children: 'loading_retailtopreview_worlds_label' | 'padding' | 'progress_loading_bars' }, + "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/loading_retailtopreview_worlds_label": { type: T.LABEL, children: string }, + "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/padding": { type: T.PANEL, children: string }, + "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/progress_loading_bars": { type: T.IMAGE, children: string }, + "storage_main_item_retailtopreview_world_toggle/padding": { type: T.PANEL, children: string }, + "retailtopreview_world_main_item_text": { type: T.STACK_PANEL, children: string }, } 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": { type: T.INPUT_PANEL, children: 'base' }, + "storage_dependency_modal/base": { type: T.UNKNOWN, children: 'background_with_buttons' | 'title' | 'dependencies' | 'two_buttons' }, + "storage_dependency_modal/base/background_with_buttons": { type: T.PANEL, children: string }, + "storage_dependency_modal/base/title": { type: T.LABEL, children: string }, + "storage_dependency_modal/base/dependencies": { type: T.PANEL, children: string }, + "storage_dependency_modal/base/two_buttons": { type: T.PANEL, children: 'disabled_left' | 'left' | 'right' }, + "storage_dependency_modal/base/two_buttons/disabled_left": { type: T.UNKNOWN, children: string }, + "storage_dependency_modal/base/two_buttons/left": { type: T.UNKNOWN, children: string }, + "storage_dependency_modal/base/two_buttons/right": { type: T.UNKNOWN, children: string }, + "storage_dependency_panel": { type: T.PANEL, children: 'scroll' }, + "storage_dependency_panel/scroll": { type: T.PANEL, children: string }, + "storage_dependency_scroll_panel": { type: T.PANEL, children: string }, + "dependency_item_content": { type: T.PANEL, children: 'content' }, + "dependency_item_content/content": { type: T.UNKNOWN, children: string }, + "dependency_scroll_pane": { type: T.STACK_PANEL, children: 'main_label' | 'contentPanel' }, + "dependency_scroll_pane/main_label": { type: T.LABEL, children: string }, + "dependency_scroll_pane/contentPanel": { type: T.STACK_PANEL, children: string }, + "dependency_item": { type: T.PANEL, children: string }, + "dependency_item_small": { type: T.PANEL, children: string }, + "dependency_resource_item": { type: T.PANEL, children: string }, + "dependency_resource_item_small": { type: T.PANEL, children: string }, + "dependency_sub_item": { type: T.STACK_PANEL, children: 'border' | 'padding' }, + "dependency_sub_item/border": { type: T.IMAGE, children: 'stack' }, + "dependency_sub_item/border/stack": { type: T.STACK_PANEL, children: 'padding_0' | 'wrapper' | 'panel_0' | 'contentPanel' | 'panel_1' | 'padding_1' }, + "dependency_sub_item/border/stack/padding_0": { type: T.PANEL, children: string }, + "dependency_sub_item/border/stack/wrapper": { type: T.PANEL, children: 'dependency_item' }, + "dependency_sub_item/border/stack/wrapper/dependency_item": { type: T.PANEL, children: string }, + "dependency_sub_item/border/stack/panel_0": { type: T.PANEL, children: 'main_label' }, + "dependency_sub_item/border/stack/panel_0/main_label": { type: T.LABEL, children: string }, + "dependency_sub_item/border/stack/contentPanel": { type: T.STACK_PANEL, children: string }, + "dependency_sub_item/border/stack/panel_1": { type: T.PANEL, children: 'remove_pack_button' }, + "dependency_sub_item/border/stack/panel_1/remove_pack_button": { type: T.BUTTON, children: string }, + "dependency_sub_item/border/stack/padding_1": { type: T.PANEL, children: string }, + "dependency_sub_item/padding": { type: T.PANEL, children: string }, + "sharing_popup_content": { type: T.PANEL, children: string }, } 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": { type: T.SCREEN, children: string }, + "label": { type: T.LABEL, children: string }, + "offer_image_panel": { type: T.IMAGE, children: string }, + "banner_fill": { type: T.IMAGE, children: string }, + "store_description_background": { type: T.IMAGE, children: string }, + "store_description_background_dark": { type: T.IMAGE, children: string }, + "text_style_label": { type: T.PANEL, children: 'text_label' }, + "text_style_label/text_label": { type: T.LABEL, children: string }, + "sdl_texture": { type: T.IMAGE, children: string }, + "store_offer_grid_button": { type: T.BUTTON, children: 'hover' | 'pressed' | 'icon_overlay_panel' }, + "store_offer_grid_button/hover": { type: T.PANEL, children: 'key_art_size_panel' }, + "store_offer_grid_button/hover/key_art_size_panel": { type: T.PANEL, children: 'key_art_frame' }, + "store_offer_grid_button/hover/key_art_size_panel/key_art_frame": { type: T.IMAGE, children: string }, + "store_offer_grid_button/pressed": { type: T.PANEL, children: 'key_art_size_panel' }, + "store_offer_grid_button/pressed/key_art_size_panel": { type: T.PANEL, children: 'key_art_frame' }, + "store_offer_grid_button/pressed/key_art_size_panel/key_art_frame": { type: T.IMAGE, children: string }, + "store_offer_grid_button/icon_overlay_panel": { type: T.PANEL, children: string }, + "ribbon_bar_text_background": { type: T.IMAGE, children: string }, + "ribbon_bar_red_hover_text_background": { type: T.IMAGE, children: string }, + "store_background": { type: T.IMAGE, children: string }, + "coin_icon": { type: T.IMAGE, children: string }, + "tag": { type: T.IMAGE, children: 'new_offer_label' }, + "tag/new_offer_label": { type: T.LABEL, children: string }, + "marketplace_error_icon": { type: T.IMAGE, children: string }, + "new_offer_icon": { type: T.IMAGE, children: string }, + "status_new_offer_icon": { type: T.IMAGE, children: string }, + "update_balloon_icon": { type: T.IMAGE, children: string }, + "icon_overlay_panel": { type: T.PANEL, children: 'icon_overlay_position_factory' }, + "icon_overlay_panel/icon_overlay_position_factory": { type: T.COLLECTION_PANEL, children: string }, + "icon_overlay_position_factory": { type: T.COLLECTION_PANEL, children: string }, + "top_left_icon_factory": { type: T.STACK_PANEL, children: string }, + "top_middle_icon_factory": { type: T.STACK_PANEL, children: string }, + "top_right_icon_factory": { type: T.STACK_PANEL, children: string }, + "left_middle_icon_factory": { type: T.STACK_PANEL, children: string }, + "center_icon_factory": { type: T.STACK_PANEL, children: string }, + "right_middle_icon_factory": { type: T.STACK_PANEL, children: string }, + "bottom_left_icon_factory": { type: T.STACK_PANEL, children: string }, + "bottom_middle_icon_factory": { type: T.STACK_PANEL, children: string }, + "bottom_right_icon_factory": { type: T.STACK_PANEL, children: string }, + "icon_factory": { type: T.STACK_PANEL, children: string }, + "new_offer_icon_panel": { type: T.PANEL, children: 'new_icon' }, + "new_offer_icon_panel/new_icon": { type: T.IMAGE, children: string }, + "update_offer_icon_panel": { type: T.PANEL, children: 'update_icon' }, + "update_offer_icon_panel/update_icon": { type: T.IMAGE, children: string }, + "icon_overlay_image_panel": { type: T.PANEL, children: 'image_stack_panel' }, + "icon_overlay_image_panel/image_stack_panel": { type: T.STACK_PANEL, children: 'icon' | 'padding' }, + "icon_overlay_image_panel/image_stack_panel/icon": { type: T.IMAGE, children: string }, + "icon_overlay_image_panel/image_stack_panel/padding": { type: T.PANEL, children: string }, + "icon_overlay_sdl_padding": { type: T.PANEL, children: string }, + "status_icon_overlay": { type: T.IMAGE, children: 'icon_overlay_label_panel' }, + "status_icon_overlay/icon_overlay_label_panel": { type: T.STACK_PANEL, children: 'left_margin_padding' | 'left_padding_1' | 'left_padding_2' | 'icon_panel' | 'right_padding_1' | 'right_padding_2' | 'right_margin_padding' }, + "status_icon_overlay/icon_overlay_label_panel/left_margin_padding": { type: T.PANEL, children: string }, + "status_icon_overlay/icon_overlay_label_panel/left_padding_1": { type: T.PANEL, children: string }, + "status_icon_overlay/icon_overlay_label_panel/left_padding_2": { type: T.PANEL, children: string }, + "status_icon_overlay/icon_overlay_label_panel/icon_panel": { type: T.PANEL, children: 'icon_overlay_label' }, + "status_icon_overlay/icon_overlay_label_panel/icon_panel/icon_overlay_label": { type: T.LABEL, children: string }, + "status_icon_overlay/icon_overlay_label_panel/right_padding_1": { type: T.PANEL, children: string }, + "status_icon_overlay/icon_overlay_label_panel/right_padding_2": { type: T.PANEL, children: string }, + "status_icon_overlay/icon_overlay_label_panel/right_margin_padding": { type: T.PANEL, children: string }, + "status_icon_panel": { type: T.PANEL, children: 'new_offer_icon' | 'update_icon' }, + "status_icon_panel/new_offer_icon": { type: T.IMAGE, children: string }, + "status_icon_panel/update_icon": { type: T.IMAGE, children: string }, + "prompt_icon": { type: T.IMAGE, children: string }, + "up_arrow_icon": { type: T.IMAGE, children: string }, + "plus_icon": { type: T.IMAGE, children: string }, + "bang_icon": { type: T.IMAGE, children: string }, + "user_icon_small": { type: T.IMAGE, children: string }, + "user_icon_hover": { type: T.IMAGE, children: string }, + "gamepad_store_helper": { type: T.PANEL, children: string }, + "purchase_coins_panel": { type: T.PANEL, children: 'plus_button' }, + "purchase_coins_panel/plus_button": { type: T.BUTTON, children: string }, + "inventory_panel": { type: T.INPUT_PANEL, children: 'inventory_button' }, + "inventory_panel/inventory_button": { type: T.BUTTON, children: string }, + "progress_loading_bars": { type: T.IMAGE, children: string }, + "progress_loading_spinner": { type: T.IMAGE, children: string }, + "progress_loading": { type: T.PANEL, children: 'centerer' | 'progress_loading_outline' | 'stack_panel' | 'store_failure_code' }, + "progress_loading/centerer": { type: T.PANEL, children: 'progress_loading_spinner' }, + "progress_loading/centerer/progress_loading_spinner": { type: T.IMAGE, children: string }, + "progress_loading/progress_loading_outline": { type: T.IMAGE, children: string }, + "progress_loading/stack_panel": { type: T.STACK_PANEL, children: 'top_panel' | 'padding' | 'image' }, + "progress_loading/stack_panel/top_panel": { type: T.STACK_PANEL, children: 'error_glyph_panel' | 'padding' | 'store_failure_text' }, + "progress_loading/stack_panel/top_panel/error_glyph_panel": { type: T.PANEL, children: 'error_image' }, + "progress_loading/stack_panel/top_panel/error_glyph_panel/error_image": { type: T.IMAGE, children: string }, + "progress_loading/stack_panel/top_panel/padding": { type: T.PANEL, children: string }, + "progress_loading/stack_panel/top_panel/store_failure_text": { type: T.LABEL, children: string }, + "progress_loading/stack_panel/padding": { type: T.PANEL, children: string }, + "progress_loading/stack_panel/image": { type: T.IMAGE, children: string }, + "progress_loading/store_failure_code": { type: T.LABEL, children: string }, + "store_empty_progress_bar_icon": { type: T.IMAGE, children: string }, + "store_full_progress_bar_icon": { type: T.IMAGE, children: string }, + "store_progress_bar_nub": { type: T.IMAGE, children: string }, + "store_progress_bar_icon": { type: T.PANEL, children: 'empty_progress_bar_icon' | 'progress_percent_panel' }, + "store_progress_bar_icon/empty_progress_bar_icon": { type: T.IMAGE, children: string }, + "store_progress_bar_icon/progress_percent_panel": { type: T.PANEL, children: 'full_progress_bar_icon' | 'progress_bar_nub' }, + "store_progress_bar_icon/progress_percent_panel/full_progress_bar_icon": { type: T.IMAGE, children: string }, + "store_progress_bar_icon/progress_percent_panel/progress_bar_nub": { type: T.IMAGE, children: string }, + "screen_contents_with_gamepad_helpers": { type: T.STACK_PANEL, children: 'dialog_panel' | 'padding' | 'gamepad_helpers_panel' }, + "screen_contents_with_gamepad_helpers/dialog_panel": { type: T.PANEL, children: 'dialog' }, + "screen_contents_with_gamepad_helpers/dialog_panel/dialog": { type: T.UNKNOWN, children: string }, + "screen_contents_with_gamepad_helpers/padding": { type: T.PANEL, children: string }, + "screen_contents_with_gamepad_helpers/gamepad_helpers_panel": { type: T.PANEL, children: 'gamepad_helpers_a_and_b' }, + "screen_contents_with_gamepad_helpers/gamepad_helpers_panel/gamepad_helpers_a_and_b": { type: T.STACK_PANEL, children: string }, + "text_strike_through": { type: T.IMAGE, children: string }, + "markdown_banner": { type: T.IMAGE, children: string }, + "markdown_triangle": { type: T.IMAGE, children: string }, + "timer_panel": { type: T.PANEL, children: 'timer' }, + "timer_panel/timer": { type: T.LABEL, children: string }, + "store_offer_type_icon": { type: T.IMAGE, children: string }, + "addon_pack_icon": { type: T.IMAGE, children: string }, + "addon_pack_small_icon": { type: T.IMAGE, children: string }, + "realms_plus_icon": { type: T.IMAGE, children: string }, + "resource_pack_icon": { type: T.IMAGE, children: string }, + "resource_pack_small_icon": { type: T.IMAGE, children: string }, + "skinpack_icon": { type: T.IMAGE, children: string }, + "skinpack_small_icon": { type: T.IMAGE, children: string }, + "world_icon": { type: T.IMAGE, children: string }, + "world_small_icon": { type: T.IMAGE, children: string }, + "mashup_icon": { type: T.IMAGE, children: string }, + "mashup_small_icon": { type: T.IMAGE, children: string }, + "persona_icon": { type: T.IMAGE, children: string }, + "persona_small_icon": { type: T.IMAGE, children: string }, + "small_padding_panel": { type: T.PANEL, children: string }, + "resource_pack_small_icon_with_buffer": { type: T.STACK_PANEL, children: 'resource_pack_small_icon' | 'small_padding_panel' }, + "resource_pack_small_icon_with_buffer/resource_pack_small_icon": { type: T.IMAGE, children: string }, + "resource_pack_small_icon_with_buffer/small_padding_panel": { type: T.PANEL, children: string }, + "addon_pack_small_icon_with_buffer": { type: T.STACK_PANEL, children: 'addon_pack_small_icon' | 'small_padding_panel' }, + "addon_pack_small_icon_with_buffer/addon_pack_small_icon": { type: T.IMAGE, children: string }, + "addon_pack_small_icon_with_buffer/small_padding_panel": { type: T.PANEL, children: string }, + "skinpack_small_icon_with_buffer": { type: T.STACK_PANEL, children: 'skinpack_small_icon' | 'small_padding_panel' }, + "skinpack_small_icon_with_buffer/skinpack_small_icon": { type: T.IMAGE, children: string }, + "skinpack_small_icon_with_buffer/small_padding_panel": { type: T.PANEL, children: string }, + "world_small_icon_with_buffer": { type: T.STACK_PANEL, children: 'world_small_icon' | 'small_padding_panel' }, + "world_small_icon_with_buffer/world_small_icon": { type: T.IMAGE, children: string }, + "world_small_icon_with_buffer/small_padding_panel": { type: T.PANEL, children: string }, + "mashup_small_icon_with_buffer": { type: T.STACK_PANEL, children: 'mashup_small_icon' | 'small_padding_panel' }, + "mashup_small_icon_with_buffer/mashup_small_icon": { type: T.IMAGE, children: string }, + "mashup_small_icon_with_buffer/small_padding_panel": { type: T.PANEL, children: string }, + "persona_small_icon_with_buffer": { type: T.STACK_PANEL, children: 'persona_small_icon' | 'small_padding_panel' }, + "persona_small_icon_with_buffer/persona_small_icon": { type: T.IMAGE, children: string }, + "persona_small_icon_with_buffer/small_padding_panel": { type: T.PANEL, children: string }, + "realms_icon": { type: T.IMAGE, children: string }, + "realms_banner_icon": { type: T.IMAGE, children: string }, + "csb_banner_icon": { type: T.IMAGE, children: string }, + "csb_expiration": { type: T.PANEL, children: 'background' | 'contents' }, + "csb_expiration/background": { type: T.IMAGE, children: string }, + "csb_expiration/contents": { type: T.STACK_PANEL, children: 'csb_icon' | 'pad_0' | 'text_panel' }, + "csb_expiration/contents/csb_icon": { type: T.IMAGE, children: string }, + "csb_expiration/contents/pad_0": { type: T.PANEL, children: string }, + "csb_expiration/contents/text_panel": { type: T.PANEL, children: 'text' }, + "csb_expiration/contents/text_panel/text": { type: T.LABEL, children: string }, + "pack_icon_stack": { type: T.PANEL, children: 'pack_icon_stack_factory' }, + "pack_icon_stack/pack_icon_stack_factory": { type: T.STACK_PANEL, children: string }, + "pack_icon_stack_factory": { type: T.STACK_PANEL, children: string }, + "markdown_background": { type: T.STACK_PANEL, children: 'banner_panel' | 'triangle_panel' }, + "markdown_background/banner_panel": { type: T.STACK_PANEL, children: 'banner' }, + "markdown_background/banner_panel/banner": { type: T.IMAGE, children: 'banner_content_stack_panel' }, + "markdown_background/banner_panel/banner/banner_content_stack_panel": { type: T.STACK_PANEL, children: 'timer_panel' | 'pack_icon_panel' | 'markdown_panel' }, + "markdown_background/banner_panel/banner/banner_content_stack_panel/timer_panel": { type: T.PANEL, children: string }, + "markdown_background/banner_panel/banner/banner_content_stack_panel/pack_icon_panel": { type: T.PANEL, children: 'pack_icon_stack' }, + "markdown_background/banner_panel/banner/banner_content_stack_panel/pack_icon_panel/pack_icon_stack": { type: T.PANEL, children: string }, + "markdown_background/banner_panel/banner/banner_content_stack_panel/markdown_panel": { type: T.PANEL, children: 'markdown_label' }, + "markdown_background/banner_panel/banner/banner_content_stack_panel/markdown_panel/markdown_label": { type: T.UNKNOWN, children: string }, + "markdown_background/triangle_panel": { type: T.PANEL, children: 'triangle' }, + "markdown_background/triangle_panel/triangle": { type: T.IMAGE, children: string }, + "store_top_bar": { type: T.IMAGE, children: string }, + "store_top_bar_filler": { type: T.IMAGE, children: string }, + "direction_button_panel": { type: T.PANEL, children: 'chevron_image' }, + "direction_button_panel/chevron_image": { type: T.IMAGE, children: string }, + "cycle_pack_button": { type: T.BUTTON, children: string }, + "cycle_pack_left_button": { type: T.BUTTON, children: string }, + "cycle_pack_right_button": { type: T.BUTTON, children: string }, + "restore_purchases": { type: T.BUTTON, children: string }, + "back_content_panel": { type: T.PANEL, children: 'back_button' }, + "back_content_panel/back_button": { type: T.STACK_PANEL, children: string }, + "unlock_with_coins_button_stack_panel": { type: T.STACK_PANEL, children: 'coin_panel' | 'padding_1' | 'unlock_text' }, + "unlock_with_coins_button_stack_panel/coin_panel": { type: T.PANEL, children: 'coin' }, + "unlock_with_coins_button_stack_panel/coin_panel/coin": { type: T.IMAGE, children: string }, + "unlock_with_coins_button_stack_panel/padding_1": { type: T.PANEL, children: string }, + "unlock_with_coins_button_stack_panel/unlock_text": { type: T.LABEL, children: string }, + "store_dialog_with_coin_header": { type: T.PANEL, children: string }, + "store_coins_title_label": { type: T.LABEL, children: string }, + "search_header_stack": { type: T.STACK_PANEL, children: 'gamepad_helper_y_alignment_hack' | 'search_header_text_box_panel' | 'store_layout_search_button' | 'padding0' }, + "search_header_stack/gamepad_helper_y_alignment_hack": { type: T.PANEL, children: 'gamepad_helper_y' }, + "search_header_stack/gamepad_helper_y_alignment_hack/gamepad_helper_y": { type: T.STACK_PANEL, children: string }, + "search_header_stack/search_header_text_box_panel": { type: T.PANEL, children: 'search_header_text_box' | 'clear_button' }, + "search_header_stack/search_header_text_box_panel/search_header_text_box": { type: T.EDIT_BOX, children: string }, + "search_header_stack/search_header_text_box_panel/clear_button": { type: T.BUTTON, children: string }, + "search_header_stack/store_layout_search_button": { type: T.BUTTON, children: string }, + "search_header_stack/padding0": { type: T.PANEL, children: string }, + "sdl_store_header_with_coins": { type: T.PANEL, children: 'sdl_store_header_with_coins_content' }, + "sdl_store_header_with_coins/sdl_store_header_with_coins_content": { type: T.PANEL, children: string }, + "top_bar_with_coins_panel": { type: T.PANEL, children: 'top_bar' }, + "top_bar_with_coins_panel/top_bar": { type: T.IMAGE, children: 'title_stack_panel' }, + "top_bar_with_coins_panel/top_bar/title_stack_panel": { type: T.STACK_PANEL, children: 'padding1' | 'back_button_content_panel' | 'padding2' | 'header_title_panel' | 'padding3' | 'padding4' | 'status_and_coins' | 'padding5' | 'search_header_stack' }, + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding1": { type: T.PANEL, children: string }, + "top_bar_with_coins_panel/top_bar/title_stack_panel/back_button_content_panel": { type: T.PANEL, children: string }, + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding2": { type: T.PANEL, children: string }, + "top_bar_with_coins_panel/top_bar/title_stack_panel/header_title_panel": { type: T.PANEL, children: string }, + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding3": { type: T.PANEL, children: string }, + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding4": { type: T.PANEL, children: string }, + "top_bar_with_coins_panel/top_bar/title_stack_panel/status_and_coins": { type: T.STACK_PANEL, children: string }, + "top_bar_with_coins_panel/top_bar/title_stack_panel/padding5": { type: T.PANEL, children: string }, + "top_bar_with_coins_panel/top_bar/title_stack_panel/search_header_stack": { type: T.STACK_PANEL, children: string }, + "sdl_store_header_with_coins_content": { type: T.PANEL, children: 'top_bar_coins' }, + "sdl_store_header_with_coins_content/top_bar_coins": { type: T.PANEL, children: string }, + "store_header_with_coins": { type: T.STACK_PANEL, children: 'top_bar_coins' | 'child_control' }, + "store_header_with_coins/top_bar_coins": { type: T.PANEL, children: string }, + "store_header_with_coins/child_control": { type: T.UNKNOWN, children: string }, + "status_with_coins": { type: T.STACK_PANEL, children: 'inventory_panel' | 'padding0' | 'coin_balance_panel' | 'padding1' }, + "status_with_coins/inventory_panel": { type: T.PANEL, children: 'inventory_button' }, + "status_with_coins/inventory_panel/inventory_button": { type: T.INPUT_PANEL, children: string }, + "status_with_coins/padding0": { type: T.PANEL, children: string }, + "status_with_coins/coin_balance_panel": { type: T.PANEL, children: 'coin_balance_panel' }, + "status_with_coins/coin_balance_panel/coin_balance_panel": { type: T.PANEL, children: string }, + "status_with_coins/padding1": { type: T.PANEL, children: string }, + "coins_with_title": { type: T.PANEL, children: 'coin_balance_panel' | 'title_panel' }, + "coins_with_title/coin_balance_panel": { type: T.PANEL, children: string }, + "coins_with_title/title_panel": { type: T.UNKNOWN, children: string }, + "wallet_button_panel": { type: T.STACK_PANEL, children: 'purchase_coin_panel_alignment_hack' | 'plus_image' | 'gamepad_helper_x_alignment_hack' }, + "wallet_button_panel/purchase_coin_panel_alignment_hack": { type: T.PANEL, children: 'purchase_coin_panel' }, + "wallet_button_panel/purchase_coin_panel_alignment_hack/purchase_coin_panel": { type: T.IMAGE, children: string }, + "wallet_button_panel/plus_image": { type: T.PANEL, children: string }, + "wallet_button_panel/gamepad_helper_x_alignment_hack": { type: T.PANEL, children: 'gamepad_helper_x' }, + "wallet_button_panel/gamepad_helper_x_alignment_hack/gamepad_helper_x": { type: T.STACK_PANEL, children: string }, + "coin_balance_panel": { type: T.IMAGE, children: 'coin_purchase_in_progress_panel' | 'horizontal_coin_stack' }, + "coin_balance_panel/coin_purchase_in_progress_panel": { type: T.PANEL, children: 'coin_purchase_in_progress' }, + "coin_balance_panel/coin_purchase_in_progress_panel/coin_purchase_in_progress": { type: T.IMAGE, children: string }, + "coin_balance_panel/horizontal_coin_stack": { type: T.STACK_PANEL, children: 'padding' | 'coin_icon' | 'small_filler' | 'coin_text_holder' }, + "coin_balance_panel/horizontal_coin_stack/padding": { type: T.PANEL, children: string }, + "coin_balance_panel/horizontal_coin_stack/coin_icon": { type: T.IMAGE, children: string }, + "coin_balance_panel/horizontal_coin_stack/small_filler": { type: T.PANEL, children: string }, + "coin_balance_panel/horizontal_coin_stack/coin_text_holder": { type: T.PANEL, children: 'coin_balance_text' }, + "coin_balance_panel/horizontal_coin_stack/coin_text_holder/coin_balance_text": { type: T.LABEL, children: string }, + "my_account_button_content": { type: T.PANEL, children: 'my_account_content' }, + "my_account_button_content/my_account_content": { type: T.STACK_PANEL, children: 'user_icon' | 'my_account_label_panel' }, + "my_account_button_content/my_account_content/user_icon": { type: T.IMAGE, children: string }, + "my_account_button_content/my_account_content/my_account_label_panel": { type: T.STACK_PANEL, children: 'padding' | 'my_account_center_label' }, + "my_account_button_content/my_account_content/my_account_label_panel/padding": { type: T.PANEL, children: string }, + "my_account_button_content/my_account_content/my_account_label_panel/my_account_center_label": { type: T.PANEL, children: 'my_account_label' }, + "my_account_button_content/my_account_content/my_account_label_panel/my_account_center_label/my_account_label": { type: T.LABEL, children: string }, + "inventory_button_panel": { type: T.STACK_PANEL, children: 'inventory_button' }, + "inventory_button_panel/inventory_button": { type: T.PANEL, children: 'status_panel' }, + "inventory_button_panel/inventory_button/status_panel": { type: T.STACK_PANEL, children: string }, + "inventory_button": { type: T.STACK_PANEL, children: 'my_content_button' | 'updates_with_bevel' | 'label_alignment_pannel' }, + "inventory_button/my_content_button": { type: T.PANEL, children: 'library_icon' | 'library_icon_bevel' }, + "inventory_button/my_content_button/library_icon": { type: T.IMAGE, children: string }, + "inventory_button/my_content_button/library_icon_bevel": { type: T.IMAGE, children: string }, + "inventory_button/updates_with_bevel": { type: T.PANEL, children: 'update_glyph' | 'updates_bevel' }, + "inventory_button/updates_with_bevel/update_glyph": { type: T.IMAGE, children: string }, + "inventory_button/updates_with_bevel/updates_bevel": { type: T.IMAGE, children: string }, + "inventory_button/label_alignment_pannel": { type: T.PANEL, children: 'label_panel' }, + "inventory_button/label_alignment_pannel/label_panel": { type: T.IMAGE, children: 'inventory_label' }, + "inventory_button/label_alignment_pannel/label_panel/inventory_label": { type: T.LABEL, children: string }, + "xbl_button_content": { type: T.STACK_PANEL, children: 'xbl_icon' | 'padding_0' | 'disconnected_label' | 'padding_1' | 'error_icon_panel' }, + "xbl_button_content/xbl_icon": { type: T.IMAGE, children: string }, + "xbl_button_content/padding_0": { type: T.PANEL, children: string }, + "xbl_button_content/disconnected_label": { type: T.LABEL, children: string }, + "xbl_button_content/padding_1": { type: T.PANEL, children: string }, + "xbl_button_content/error_icon_panel": { type: T.PANEL, children: 'error_icon' }, + "xbl_button_content/error_icon_panel/error_icon": { type: T.IMAGE, children: string }, + "disclaimer_panel": { type: T.PANEL, children: 'legal_text_label' }, + "disclaimer_panel/legal_text_label": { type: T.LABEL, children: string }, + "grey_bar_panel": { type: T.STACK_PANEL, children: 'color_panel' | 'pad' }, + "grey_bar_panel/color_panel": { type: T.PANEL, children: 'grey_bar' | 'green_bar' }, + "grey_bar_panel/color_panel/grey_bar": { type: T.IMAGE, children: string }, + "grey_bar_panel/color_panel/green_bar": { type: T.IMAGE, children: string }, + "grey_bar_panel/pad": { type: T.PANEL, children: string }, + "tab_name_panel": { type: T.STACK_PANEL, children: 'bar_panel' | 'button_panel' | 'pad_1' }, + "tab_name_panel/bar_panel": { type: T.PANEL, children: 'green_bar' }, + "tab_name_panel/bar_panel/green_bar": { type: T.IMAGE, children: string }, + "tab_name_panel/button_panel": { type: T.PANEL, children: 'tab_name_button_grey' | 'tab_name_button_white' }, + "tab_name_panel/button_panel/tab_name_button_grey": { type: T.BUTTON, children: string }, + "tab_name_panel/button_panel/tab_name_button_white": { type: T.BUTTON, children: string }, + "tab_name_panel/pad_1": { type: T.PANEL, children: string }, + "store_offer_item_title_panel": { type: T.PANEL, children: 'offer_title' }, + "store_offer_item_title_panel/offer_title": { type: T.LABEL, children: string }, + "store_offer_item_creator_panel": { type: T.STACK_PANEL, children: 'pack_icon_panel' | 'creator_label' }, + "store_offer_item_creator_panel/pack_icon_panel": { type: T.PANEL, children: 'pack_icon_stack' }, + "store_offer_item_creator_panel/pack_icon_panel/pack_icon_stack": { type: T.PANEL, children: string }, + "store_offer_item_creator_panel/creator_label": { type: T.LABEL, children: string }, + "store_offer_ratings": { type: T.PANEL, children: 'rating_text_panel' }, + "store_offer_ratings/rating_text_panel": { type: T.STACK_PANEL, children: string }, + "vertical_store_offer_price_info_panel": { type: T.PANEL, children: 'sales_banner' }, + "vertical_store_offer_price_info_panel/sales_banner": { type: T.STACK_PANEL, children: 'markdown_stack_panels' | 'store_offer_prompt_panel' | 'padding_to_right' }, + "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels": { type: T.STACK_PANEL, children: 'markdown_panel' | 'padding_markdown_panel_right' }, + "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels/markdown_panel": { type: T.PANEL, children: string }, + "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels/padding_markdown_panel_right": { type: T.PANEL, children: string }, + "vertical_store_offer_price_info_panel/sales_banner/store_offer_prompt_panel": { type: T.PANEL, children: 'offer_status_text' }, + "vertical_store_offer_price_info_panel/sales_banner/store_offer_prompt_panel/offer_status_text": { type: T.LABEL, children: string }, + "vertical_store_offer_price_info_panel/sales_banner/padding_to_right": { type: T.PANEL, children: string }, + "store_offer_price_info_panel": { type: T.STACK_PANEL, children: 'sales_banner' }, + "store_offer_price_info_panel/sales_banner": { type: T.STACK_PANEL, children: 'sales_markdown_percentage_panel' | 'fill_panel_with_markdown' | 'coin_panel' | 'padding_3' | 'offer_prompt_panel' }, + "store_offer_price_info_panel/sales_banner/sales_markdown_percentage_panel": { type: T.PANEL, children: string }, + "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown": { type: T.STACK_PANEL, children: 'fill_markdown_panel_left' | 'markdown_panel' | 'padding_markdown_panel_right' }, + "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/fill_markdown_panel_left": { type: T.PANEL, children: string }, + "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/markdown_panel": { type: T.PANEL, children: string }, + "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/padding_markdown_panel_right": { type: T.PANEL, children: string }, + "store_offer_price_info_panel/sales_banner/coin_panel": { type: T.PANEL, children: 'offer_coin_icon' }, + "store_offer_price_info_panel/sales_banner/coin_panel/offer_coin_icon": { type: T.IMAGE, children: string }, + "store_offer_price_info_panel/sales_banner/padding_3": { type: T.PANEL, children: string }, + "store_offer_price_info_panel/sales_banner/offer_prompt_panel": { type: T.PANEL, children: string }, + "store_offer_sales_markdown_percentage_panel": { type: T.PANEL, children: 'markdown_background' }, + "store_offer_sales_markdown_percentage_panel/markdown_background": { type: T.STACK_PANEL, children: string }, + "store_offer_prompt_panel": { type: T.PANEL, children: 'offer_status_text' }, + "store_offer_prompt_panel/offer_status_text": { type: T.LABEL, children: string }, + "featured_key_art": { type: T.PANEL, children: 'bg' | 'focus_border' }, + "featured_key_art/bg": { type: T.IMAGE, children: 'featured_key_art' | 'progress_loading' | 'new_offer_icon' }, + "featured_key_art/bg/featured_key_art": { type: T.IMAGE, children: string }, + "featured_key_art/bg/progress_loading": { type: T.PANEL, children: string }, + "featured_key_art/bg/new_offer_icon": { type: T.IMAGE, children: string }, + "featured_key_art/focus_border": { type: T.IMAGE, children: string }, + "price_panel": { type: T.STACK_PANEL, children: 'featured_icon_panel' | 'price_label_panel' | 'padding' }, + "price_panel/featured_icon_panel": { type: T.PANEL, children: 'featured_offer_coin_icon' }, + "price_panel/featured_icon_panel/featured_offer_coin_icon": { type: T.IMAGE, children: string }, + "price_panel/price_label_panel": { type: T.PANEL, children: 'price' }, + "price_panel/price_label_panel/price": { type: T.LABEL, children: string }, + "price_panel/padding": { type: T.PANEL, children: string }, + "vertical_padding_4": { type: T.PANEL, children: string }, + "vertical_padding_2": { type: T.PANEL, children: string }, + "sdl_vertical_padding_fill": { type: T.PANEL, children: string }, + "footer": { type: T.PANEL, children: 'restore_purchases' }, + "footer/restore_purchases": { type: T.BUTTON, children: string }, + "store_section_panel": { type: T.PANEL, children: 'store_section_panel_outline' | 'section_panel' }, + "store_section_panel/store_section_panel_outline": { type: T.IMAGE, children: string }, + "store_section_panel/section_panel": { type: T.STACK_PANEL, children: 'header' | 'section_panel' }, + "store_section_panel/section_panel/header": { type: T.PANEL, children: string }, + "store_section_panel/section_panel/section_panel": { type: T.PANEL, children: 'background' }, + "store_section_panel/section_panel/section_panel/background": { type: T.IMAGE, children: string }, + "store_section_factory": { type: T.STACK_PANEL, children: string }, + "store_static_section_factory": { type: T.STACK_PANEL, children: string }, + "rtx_label": { type: T.PANEL, children: 'banner' }, + "rtx_label/banner": { type: T.IMAGE, children: 'icon' }, + "rtx_label/banner/icon": { type: T.IMAGE, children: string }, + "subscription_chevron": { type: T.PANEL, children: 'subscription_chevron_panel' }, + "subscription_chevron/subscription_chevron_panel": { type: T.PANEL, children: 'csb_chevron' | 'sales_banner_background' }, + "subscription_chevron/subscription_chevron_panel/csb_chevron": { type: T.PANEL, children: string }, + "subscription_chevron/subscription_chevron_panel/sales_banner_background": { type: T.IMAGE, children: string }, + "csb_banner": { type: T.PANEL, children: 'banner' }, + "csb_banner/banner": { type: T.IMAGE, children: string }, + "pagination_content_panel": { type: T.STACK_PANEL, children: 'padding_left' | 'first_page_button' | 'pagination_middle_buttons_panel' | 'padding_right_fill' | 'go_to_top_button' }, + "pagination_content_panel/padding_left": { type: T.PANEL, children: string }, + "pagination_content_panel/first_page_button": { type: T.BUTTON, children: string }, + "pagination_content_panel/pagination_middle_buttons_panel": { type: T.STACK_PANEL, children: string }, + "pagination_content_panel/padding_right_fill": { type: T.PANEL, children: string }, + "pagination_content_panel/go_to_top_button": { type: T.BUTTON, children: string }, + "pagination_panel": { type: T.STACK_PANEL, children: 'top_padding' | 'pagination_content' | 'bottom_padding' }, + "pagination_panel/top_padding": { type: T.PANEL, children: string }, + "pagination_panel/pagination_content": { type: T.STACK_PANEL, children: string }, + "pagination_panel/bottom_padding": { type: T.PANEL, children: string }, + "store_offer_grid_panel_content": { type: T.STACK_PANEL, children: 'header_centerer_panel' | 'store_offer_grid_factory' | 'pagination_centerer' | 'divider' }, + "store_offer_grid_panel_content/header_centerer_panel": { type: T.PANEL, children: string }, + "store_offer_grid_panel_content/store_offer_grid_factory": { type: T.COLLECTION_PANEL, children: string }, + "store_offer_grid_panel_content/pagination_centerer": { type: T.PANEL, children: string }, + "store_offer_grid_panel_content/divider": { type: T.STACK_PANEL, children: string }, + "store_offer_grid_panel": { type: T.PANEL, children: string }, + "pagination_top_button_panel": { type: T.PANEL, children: 'top_button_image' }, + "pagination_top_button_panel/top_button_image": { type: T.IMAGE, children: string }, + "pagination_middle_buttons_panel": { type: T.STACK_PANEL, children: 'previous_page_button' | 'current_page_number_panel' | 'next_page_button' }, + "pagination_middle_buttons_panel/previous_page_button": { type: T.BUTTON, children: string }, + "pagination_middle_buttons_panel/current_page_number_panel": { type: T.PANEL, children: 'current_page_number' }, + "pagination_middle_buttons_panel/current_page_number_panel/current_page_number": { type: T.LABEL, children: string }, + "pagination_middle_buttons_panel/next_page_button": { type: T.BUTTON, children: string }, + "vertical_store_offer_grid_panel": { type: T.STACK_PANEL, children: 'header' | 'centering_panel' | 'padding_0' | 'divider' }, + "vertical_store_offer_grid_panel/header": { type: T.PANEL, children: string }, + "vertical_store_offer_grid_panel/centering_panel": { type: T.PANEL, children: 'vertical_store_offer_grid_content' }, + "vertical_store_offer_grid_panel/centering_panel/vertical_store_offer_grid_content": { type: T.GRID, children: string }, + "vertical_store_offer_grid_panel/padding_0": { type: T.PANEL, children: string }, + "vertical_store_offer_grid_panel/divider": { type: T.STACK_PANEL, children: string }, + "carousel_row_panel": { type: T.STACK_PANEL, children: 'top_panel' | 'top_padding' | 'middle_panel' | 'bottom_panel' | 'bottom_padding' | 'divider_panel' }, + "carousel_row_panel/top_panel": { type: T.STACK_PANEL, children: 'pad_0' | 'tab_names_factory_panel' }, + "carousel_row_panel/top_panel/pad_0": { type: T.PANEL, children: string }, + "carousel_row_panel/top_panel/tab_names_factory_panel": { type: T.STACK_PANEL, children: string }, + "carousel_row_panel/top_padding": { type: T.PANEL, children: string }, + "carousel_row_panel/middle_panel": { type: T.STACK_PANEL, children: 'left_button_panel' | 'main_panel_factory' | 'right_button_panel' }, + "carousel_row_panel/middle_panel/left_button_panel": { type: T.PANEL, children: 'left_button' | 'left_bumper' }, + "carousel_row_panel/middle_panel/left_button_panel/left_button": { type: T.BUTTON, children: string }, + "carousel_row_panel/middle_panel/left_button_panel/left_bumper": { type: T.STACK_PANEL, children: string }, + "carousel_row_panel/middle_panel/main_panel_factory": { type: T.STACK_PANEL, children: string }, + "carousel_row_panel/middle_panel/right_button_panel": { type: T.PANEL, children: 'right_button' | 'right_bumper' }, + "carousel_row_panel/middle_panel/right_button_panel/right_button": { type: T.BUTTON, children: string }, + "carousel_row_panel/middle_panel/right_button_panel/right_bumper": { type: T.STACK_PANEL, children: string }, + "carousel_row_panel/bottom_panel": { type: T.PANEL, children: 'grey_bar_factory_panel' }, + "carousel_row_panel/bottom_panel/grey_bar_factory_panel": { type: T.STACK_PANEL, children: string }, + "carousel_row_panel/bottom_padding": { type: T.PANEL, children: string }, + "carousel_row_panel/divider_panel": { type: T.PANEL, children: 'divider' }, + "carousel_row_panel/divider_panel/divider": { type: T.PANEL, children: string }, + "carousel_factory": { type: T.STACK_PANEL, children: string }, + "hero_row_l2_panel": { type: T.STACK_PANEL, children: 'header' | 'centering_panel' | 'padding_0' | 'divider' }, + "hero_row_l2_panel/header": { type: T.PANEL, children: string }, + "hero_row_l2_panel/centering_panel": { type: T.PANEL, children: 'l2_featured_stack' }, + "hero_row_l2_panel/centering_panel/l2_featured_stack": { type: T.STACK_PANEL, children: 'padding_0' | 'featured_item_1' | 'padding_1' | 'featured_item_2' | 'padding_2' | 'featured_item_3' | 'padding_3' }, + "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_0": { type: T.PANEL, children: string }, + "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_1": { type: T.PANEL, children: string }, + "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_1": { type: T.PANEL, children: string }, + "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_2": { type: T.PANEL, children: string }, + "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_2": { type: T.PANEL, children: string }, + "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_3": { type: T.PANEL, children: string }, + "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_3": { type: T.PANEL, children: string }, + "hero_row_l2_panel/padding_0": { type: T.PANEL, children: string }, + "hero_row_l2_panel/divider": { type: T.STACK_PANEL, children: string }, + "blade_row_key_art": { type: T.PANEL, children: 'blade_row_key_art_image' }, + "blade_row_key_art/blade_row_key_art_image": { type: T.IMAGE, children: 'key_art_border' }, + "blade_row_key_art/blade_row_key_art_image/key_art_border": { type: T.IMAGE, children: string }, + "one_key_art_screenshot": { type: T.IMAGE, children: string }, + "one_key_art_screenshot_panel": { type: T.PANEL, children: 'blade_offer_frame' }, + "one_key_art_screenshot_panel/blade_offer_frame": { type: T.UNKNOWN, children: 'one_key_art_screenshot' }, + "one_key_art_screenshot_panel/blade_offer_frame/one_key_art_screenshot": { type: T.IMAGE, children: 'one_key_art_frame' }, + "one_key_art_screenshot_panel/blade_offer_frame/one_key_art_screenshot/one_key_art_frame": { type: T.IMAGE, children: string }, + "screenshots_grid": { type: T.COLLECTION_PANEL, children: 'screenshot_1' | 'screenshot_2' | 'screenshot_3' | 'screenshot_4' }, + "screenshots_grid/screenshot_1": { type: T.PANEL, children: string }, + "screenshots_grid/screenshot_2": { type: T.PANEL, children: string }, + "screenshots_grid/screenshot_3": { type: T.PANEL, children: string }, + "screenshots_grid/screenshot_4": { type: T.PANEL, children: string }, + "blade_offer_details_title": { type: T.LABEL, children: string }, + "blade_offer_sale_markdown": { type: T.LABEL, children: string }, + "blade_offer_description_details": { type: T.STACK_PANEL, children: 'blade_title_stack' | 'blade_offer_creator_label' | 'blade_offer_description_padding_2' | 'ratings_and_coins' | 'blade_offer_description_padding_3' }, + "blade_offer_description_details/blade_title_stack": { type: T.STACK_PANEL, children: 'blade_title' }, + "blade_offer_description_details/blade_title_stack/blade_title": { type: T.LABEL, children: string }, + "blade_offer_description_details/blade_offer_creator_label": { type: T.STACK_PANEL, children: string }, + "blade_offer_description_details/blade_offer_description_padding_2": { type: T.PANEL, children: string }, + "blade_offer_description_details/ratings_and_coins": { type: T.STACK_PANEL, children: 'subscription_panel' | 'blade_sales_markdown_percentage_panel' | 'ratings_panel' | 'blade_rating_count_panel' | 'fill_padding' | 'blade_offer_price_markdown_panel' | 'price_panel' | 'price_panel_padding_right' }, + "blade_offer_description_details/ratings_and_coins/subscription_panel": { type: T.PANEL, children: string }, + "blade_offer_description_details/ratings_and_coins/blade_sales_markdown_percentage_panel": { type: T.PANEL, children: 'blade_markdown_background' }, + "blade_offer_description_details/ratings_and_coins/blade_sales_markdown_percentage_panel/blade_markdown_background": { type: T.STACK_PANEL, children: string }, + "blade_offer_description_details/ratings_and_coins/ratings_panel": { type: T.PANEL, children: 'blade_ratings' }, + "blade_offer_description_details/ratings_and_coins/ratings_panel/blade_ratings": { type: T.PANEL, children: string }, + "blade_offer_description_details/ratings_and_coins/blade_rating_count_panel": { type: T.PANEL, children: string }, + "blade_offer_description_details/ratings_and_coins/fill_padding": { type: T.PANEL, children: string }, + "blade_offer_description_details/ratings_and_coins/blade_offer_price_markdown_panel": { type: T.PANEL, children: string }, + "blade_offer_description_details/ratings_and_coins/price_panel": { type: T.PANEL, children: 'price' }, + "blade_offer_description_details/ratings_and_coins/price_panel/price": { type: T.STACK_PANEL, children: string }, + "blade_offer_description_details/ratings_and_coins/price_panel_padding_right": { type: T.PANEL, children: string }, + "blade_offer_description_details/blade_offer_description_padding_3": { type: T.PANEL, children: string }, + "screenshots_and_offer_details_panel": { type: T.PANEL, children: 'blade_offer_screenshots_grid' | 'blade_offer_description_area' }, + "screenshots_and_offer_details_panel/blade_offer_screenshots_grid": { type: T.COLLECTION_PANEL, children: string }, + "screenshots_and_offer_details_panel/blade_offer_description_area": { type: T.IMAGE, children: 'blade_offer_description_border' | 'hero_blade_offer_description_details' }, + "screenshots_and_offer_details_panel/blade_offer_description_area/blade_offer_description_border": { type: T.IMAGE, children: string }, + "screenshots_and_offer_details_panel/blade_offer_description_area/hero_blade_offer_description_details": { type: T.STACK_PANEL, children: string }, + "blade_row_featured_panel": { type: T.PANEL, children: 'blade_row_featured_key_art' | 'blade_offer_screenshots_and_details_panel' }, + "blade_row_featured_panel/blade_row_featured_key_art": { type: T.PANEL, children: string }, + "blade_row_featured_panel/blade_offer_screenshots_and_details_panel": { type: T.PANEL, children: string }, + "transparent_content_button": { type: T.BUTTON, children: string }, + "hero_blade_row_panel": { type: T.PANEL, children: 'blade_row_transparent_button' }, + "hero_blade_row_panel/blade_row_transparent_button": { type: T.BUTTON, children: string }, + "hero_row_panel": { type: T.STACK_PANEL, children: 'header' | 'centering_panel' | 'padding_0' | 'divider' }, + "hero_row_panel/header": { type: T.PANEL, children: string }, + "hero_row_panel/centering_panel": { type: T.PANEL, children: 'featured_stack' }, + "hero_row_panel/centering_panel/featured_stack": { type: T.STACK_PANEL, children: 'hero_offer' | 'padding_0' | 'hero_offer_grid' }, + "hero_row_panel/centering_panel/featured_stack/hero_offer": { type: T.BUTTON, children: string }, + "hero_row_panel/centering_panel/featured_stack/padding_0": { type: T.PANEL, children: string }, + "hero_row_panel/centering_panel/featured_stack/hero_offer_grid": { type: T.STACK_PANEL, children: string }, + "hero_row_panel/padding_0": { type: T.PANEL, children: string }, + "hero_row_panel/divider": { type: T.STACK_PANEL, children: string }, + "hero_offer": { type: T.PANEL, children: 'featured_key_art' | 'rtx_label' | 'offer_description_area' }, + "hero_offer/featured_key_art": { type: T.PANEL, children: string }, + "hero_offer/rtx_label": { type: T.PANEL, children: string }, + "hero_offer/offer_description_area": { type: T.IMAGE, children: 'hero_offer_description_details' }, + "hero_offer/offer_description_area/hero_offer_description_details": { type: T.STACK_PANEL, children: string }, + "hero_offer_details_title": { type: T.LABEL, children: string }, + "hero_offer_description_details": { type: T.STACK_PANEL, children: 'hero_title_stack' | 'padding_5' | 'progress' | 'creator_label' | 'padding_0' | 'durable_offer_info_panel' | 'padding_1' }, + "hero_offer_description_details/hero_title_stack": { type: T.STACK_PANEL, children: 'title' }, + "hero_offer_description_details/hero_title_stack/title": { type: T.LABEL, children: string }, + "hero_offer_description_details/padding_5": { type: T.PANEL, children: string }, + "hero_offer_description_details/progress": { type: T.PANEL, children: string }, + "hero_offer_description_details/creator_label": { type: T.STACK_PANEL, children: string }, + "hero_offer_description_details/padding_0": { type: T.PANEL, children: string }, + "hero_offer_description_details/durable_offer_info_panel": { type: T.STACK_PANEL, children: 'offer_status_panel' }, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel": { type: T.STACK_PANEL, children: 'subscription_panel' | 'sales_markdown_percentage_panel' | 'ratings_panel' | 'rating_count_panel' | 'pack_icon_panel' | 'fill_padding' | 'offer_price_markdown_panel' | 'price_panel' }, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/subscription_panel": { type: T.PANEL, children: string }, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel": { type: T.PANEL, children: 'markdown_banner' }, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel/markdown_banner": { type: T.STACK_PANEL, children: string }, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/ratings_panel": { type: T.PANEL, children: 'ratings' }, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/ratings_panel/ratings": { type: T.PANEL, children: string }, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/rating_count_panel": { type: T.PANEL, children: string }, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/pack_icon_panel": { type: T.PANEL, children: 'pack_icon_stack' }, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": { type: T.PANEL, children: string }, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/fill_padding": { type: T.PANEL, children: string }, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/offer_price_markdown_panel": { type: T.PANEL, children: string }, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/price_panel": { type: T.PANEL, children: 'price' }, + "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/price_panel/price": { type: T.STACK_PANEL, children: string }, + "hero_offer_description_details/padding_1": { type: T.PANEL, children: string }, + "hero_offer_download_progress": { type: T.PANEL, children: 'label' | 'bar' }, + "hero_offer_download_progress/label": { type: T.LABEL, children: string }, + "hero_offer_download_progress/bar": { type: T.PANEL, children: string }, + "rating_text_panel": { type: T.STACK_PANEL, children: 'left_padding' | 'star_panel' | 'middle_padding' | 'rating_label' }, + "rating_text_panel/left_padding": { type: T.PANEL, children: string }, + "rating_text_panel/star_panel": { type: T.PANEL, children: 'rating_star' }, + "rating_text_panel/star_panel/rating_star": { type: T.IMAGE, children: string }, + "rating_text_panel/middle_padding": { type: T.PANEL, children: string }, + "rating_text_panel/rating_label": { type: T.LABEL, children: string }, + "ratings_description": { type: T.PANEL, children: 'rating_text_panel' }, + "ratings_description/rating_text_panel": { type: T.STACK_PANEL, children: string }, + "store_rating_count_panel": { type: T.PANEL, children: 'rating_count_text' }, + "store_rating_count_panel/rating_count_text": { type: T.LABEL, children: string }, + "hero_offer_grid": { type: T.STACK_PANEL, children: 'row_1' | 'padding_0' | 'row_2' }, + "hero_offer_grid/row_1": { type: T.STACK_PANEL, children: 'offer_1' | 'padding_0' | 'offer_2' }, + "hero_offer_grid/row_1/offer_1": { type: T.PANEL, children: string }, + "hero_offer_grid/row_1/padding_0": { type: T.PANEL, children: string }, + "hero_offer_grid/row_1/offer_2": { type: T.PANEL, children: string }, + "hero_offer_grid/padding_0": { type: T.PANEL, children: string }, + "hero_offer_grid/row_2": { type: T.STACK_PANEL, children: 'offer_1' | 'padding_0' | 'offer_2' }, + "hero_offer_grid/row_2/offer_1": { type: T.PANEL, children: string }, + "hero_offer_grid/row_2/padding_0": { type: T.PANEL, children: string }, + "hero_offer_grid/row_2/offer_2": { type: T.PANEL, children: string }, + "offer_download_progress": { type: T.PANEL, children: 'label' | 'bar' }, + "offer_download_progress/label": { type: T.LABEL, children: string }, + "offer_download_progress/bar": { type: T.PANEL, children: string }, + "banner_button": { type: T.PANEL, children: string }, + "sdl_text_aligned_panel": { type: T.STACK_PANEL, children: string }, + "sdl_text_minecraftTen_aligned_panel": { type: T.STACK_PANEL, children: string }, + "sdl_content_aligned_panel": { type: T.STACK_PANEL, children: 'left__padding_panel' | 'control' | 'right_padding_panel' }, + "sdl_content_aligned_panel/left__padding_panel": { type: T.PANEL, children: string }, + "sdl_content_aligned_panel/control": { type: T.UNKNOWN, children: string }, + "sdl_content_aligned_panel/right_padding_panel": { type: T.PANEL, children: string }, + "sdl_aligned_text": { type: T.LABEL, children: string }, + "sdl_aligned_minecraftTen_text": { type: T.LABEL, children: string }, + "content_offer_key_art": { type: T.IMAGE, children: string }, + "vertical_content_offer_header": { type: T.IMAGE, children: 'header' }, + "vertical_content_offer_header/header": { type: T.STACK_PANEL, children: string }, + "vertical_content_offer_panel": { type: T.STACK_PANEL, children: string }, + "vertical_offer_grid_panel": { type: T.PANEL, children: string }, + "offer_content": { type: T.PANEL, children: 'offer_item' }, + "offer_content/offer_item": { type: T.PANEL, children: string }, + "vertical_offer_content": { type: T.PANEL, children: 'offer_item' }, + "vertical_offer_content/offer_item": { type: T.PANEL, children: string }, + "vertical_coin_offer_content": { type: T.PANEL, children: 'offer_item' }, + "vertical_coin_offer_content/offer_item": { type: T.PANEL, children: string }, + "store_offer_key_art": { type: T.IMAGE, children: string }, + "store_offer_grid_show_more": { type: T.PANEL, children: 'frame' | 'offer_button' }, + "store_offer_grid_show_more/frame": { type: T.IMAGE, children: 'title' }, + "store_offer_grid_show_more/frame/title": { type: T.LABEL, children: string }, + "store_offer_grid_show_more/offer_button": { type: T.BUTTON, children: 'hover' | 'pressed' }, + "store_offer_grid_show_more/offer_button/hover": { type: T.IMAGE, children: 'key_art_size_panel' }, + "store_offer_grid_show_more/offer_button/hover/key_art_size_panel": { type: T.PANEL, children: string }, + "store_offer_grid_show_more/offer_button/pressed": { type: T.IMAGE, children: 'key_art_size_panel' }, + "store_offer_grid_show_more/offer_button/pressed/key_art_size_panel": { type: T.PANEL, children: string }, + "persona_grid_show_more": { type: T.BUTTON, children: string }, + "row_offer_sale_markdown": { type: T.LABEL, children: string }, + "discount_label": { type: T.STACK_PANEL, children: 'label_panel' | 'icon_panel' }, + "discount_label/label_panel": { type: T.PANEL, children: 'label' }, + "discount_label/label_panel/label": { type: T.LABEL, children: string }, + "discount_label/icon_panel": { type: T.PANEL, children: 'icon' }, + "discount_label/icon_panel/icon": { type: T.IMAGE, children: string }, + "hero_offer_sale_markdown": { type: T.LABEL, children: string }, + "offer_price_markdown_panel": { type: T.PANEL, children: 'offer_price' }, + "offer_price_markdown_panel/offer_price": { type: T.LABEL, children: 'text_strike_through' }, + "offer_price_markdown_panel/offer_price/text_strike_through": { type: T.IMAGE, children: string }, + "store_offer_title": { type: T.LABEL, children: string }, + "store_offer_key_art_frame": { type: T.IMAGE, children: 'key_art' | 'progress_loading' }, + "store_offer_key_art_frame/key_art": { type: T.IMAGE, children: 'key_art_frame' | 'csb_expiration_banner' }, + "store_offer_key_art_frame/key_art/key_art_frame": { type: T.IMAGE, children: string }, + "store_offer_key_art_frame/key_art/csb_expiration_banner": { type: T.PANEL, children: string }, + "store_offer_key_art_frame/progress_loading": { type: T.PANEL, children: string }, + "vertical_store_offer_grid_item": { type: T.PANEL, children: 'frame' | 'dark_frame' }, + "vertical_store_offer_grid_item/frame": { type: T.IMAGE, children: 'horizontal_stack_panel' | 'offer_button' }, + "vertical_store_offer_grid_item/frame/horizontal_stack_panel": { type: T.STACK_PANEL, children: string }, + "vertical_store_offer_grid_item/frame/offer_button": { type: T.BUTTON, children: string }, + "vertical_store_offer_grid_item/dark_frame": { type: T.IMAGE, children: 'horizontal_stack_panel' | 'offer_button' }, + "vertical_store_offer_grid_item/dark_frame/horizontal_stack_panel": { type: T.STACK_PANEL, children: string }, + "vertical_store_offer_grid_item/dark_frame/offer_button": { type: T.BUTTON, children: string }, + "vertical_store_offer_grid_inside_frame": { type: T.STACK_PANEL, children: 'key_art_size_panel' | 'offer_details_general_panel' }, + "vertical_store_offer_grid_inside_frame/key_art_size_panel": { type: T.PANEL, children: 'key_art_frame' | 'key_art' }, + "vertical_store_offer_grid_inside_frame/key_art_size_panel/key_art_frame": { type: T.IMAGE, children: string }, + "vertical_store_offer_grid_inside_frame/key_art_size_panel/key_art": { type: T.IMAGE, children: string }, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel": { type: T.PANEL, children: 'general_offer_details_stack_panel' }, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel": { type: T.STACK_PANEL, children: 'title_panel_with_padding' | 'creator_label_panel_with_padding' | 'ratings_and_cost_pannel_with_padding' }, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/title_panel_with_padding": { type: T.PANEL, children: 'title' }, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/title_panel_with_padding/title": { type: T.PANEL, children: string }, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/creator_label_panel_with_padding": { type: T.PANEL, children: 'creator_label' }, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/creator_label_panel_with_padding/creator_label": { type: T.STACK_PANEL, children: string }, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding": { type: T.STACK_PANEL, children: 'ratings' | 'rating_and_price_padding' | 'offer_price_info_panel' | 'right_side_padding' }, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/ratings": { type: T.PANEL, children: string }, + "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": { type: T.PANEL, children: string }, + "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": { type: T.PANEL, children: string }, + "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/right_side_padding": { type: T.PANEL, children: string }, + "vertical_store_coin_offer_grid_item": { type: T.PANEL, children: 'frame' | 'dark_frame' }, + "vertical_store_coin_offer_grid_item/frame": { type: T.IMAGE, children: 'horizontal_stack_panel' }, + "vertical_store_coin_offer_grid_item/frame/horizontal_stack_panel": { type: T.STACK_PANEL, children: string }, + "vertical_store_coin_offer_grid_item/dark_frame": { type: T.IMAGE, children: 'horizontal_stack_panel' | 'offer_button' }, + "vertical_store_coin_offer_grid_item/dark_frame/horizontal_stack_panel": { type: T.STACK_PANEL, children: string }, + "vertical_store_coin_offer_grid_item/dark_frame/offer_button": { type: T.BUTTON, children: string }, + "vertical_coin_offer_grid_inside_frame": { type: T.STACK_PANEL, children: 'key_art_size_panel' | 'padding' | 'coin_panel' | 'Minecoins_panel' }, + "vertical_coin_offer_grid_inside_frame/key_art_size_panel": { type: T.PANEL, children: 'key_art_frame' | 'key_art' }, + "vertical_coin_offer_grid_inside_frame/key_art_size_panel/key_art_frame": { type: T.IMAGE, children: string }, + "vertical_coin_offer_grid_inside_frame/key_art_size_panel/key_art": { type: T.IMAGE, children: string }, + "vertical_coin_offer_grid_inside_frame/padding": { type: T.PANEL, children: string }, + "vertical_coin_offer_grid_inside_frame/coin_panel": { type: T.PANEL, children: 'offer_coin_icon' }, + "vertical_coin_offer_grid_inside_frame/coin_panel/offer_coin_icon": { type: T.IMAGE, children: string }, + "vertical_coin_offer_grid_inside_frame/Minecoins_panel": { type: T.PANEL, children: 'minecoins_vert_stack_panel' }, + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel": { type: T.STACK_PANEL, children: 'minecoins_panel_with_padding' | 'title_panel_with_padding' }, + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding": { type: T.PANEL, children: 'minecoins_prompt_panel' }, + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding/minecoins_prompt_panel": { type: T.PANEL, children: 'minecoins_offer_status_text' }, + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding/minecoins_prompt_panel/minecoins_offer_status_text": { type: T.LABEL, children: string }, + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/title_panel_with_padding": { type: T.PANEL, children: 'title' }, + "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/title_panel_with_padding/title": { type: T.PANEL, children: string }, + "offer_prompt_panel": { type: T.STACK_PANEL, children: 'coin_panel' | 'padding_3' | 'offer_status_text_panel' }, + "offer_prompt_panel/coin_panel": { type: T.PANEL, children: 'offer_coin_icon' }, + "offer_prompt_panel/coin_panel/offer_coin_icon": { type: T.IMAGE, children: string }, + "offer_prompt_panel/padding_3": { type: T.PANEL, children: string }, + "offer_prompt_panel/offer_status_text_panel": { type: T.PANEL, children: 'offer_status_text' }, + "offer_prompt_panel/offer_status_text_panel/offer_status_text": { type: T.LABEL, children: string }, + "store_offer_grid_item": { type: T.PANEL, children: 'frame' }, + "store_offer_grid_item/frame": { type: T.UNKNOWN, children: 'key_art' | 'progress_loading' | 'progress' | 'durable_offer_info_panel' | 'offer_button' }, + "store_offer_grid_item/frame/key_art": { type: T.IMAGE, children: 'key_art_frame' | 'csb_plus_expiration_banner' }, + "store_offer_grid_item/frame/key_art/key_art_frame": { type: T.IMAGE, children: string }, + "store_offer_grid_item/frame/key_art/csb_plus_expiration_banner": { type: T.PANEL, children: string }, + "store_offer_grid_item/frame/progress_loading": { type: T.PANEL, children: string }, + "store_offer_grid_item/frame/progress": { type: T.PANEL, children: string }, + "store_offer_grid_item/frame/durable_offer_info_panel": { type: T.STACK_PANEL, children: 'title_label_padding_stack' | 'offer_status_panel' }, + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack": { type: T.PANEL, children: 'title_label_vert_stack_panel' | 'no_durable_status_padding' }, + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel": { type: T.STACK_PANEL, children: 'title' | 'creator_label' | 'offer_price_info_panel' }, + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/title": { type: T.PANEL, children: string }, + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/creator_label": { type: T.STACK_PANEL, children: string }, + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/offer_price_info_panel": { type: T.STACK_PANEL, children: string }, + "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/no_durable_status_padding": { type: T.PANEL, children: string }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel": { type: T.STACK_PANEL, children: 'rtx_label' | 'subscription_panel' | 'sales_banner' | 'ratings' | 'rating_count_panel' | 'pack_icon_panel' | 'fill_markdown_panel_left' | 'markdown_panel' | 'padding_markdown_panel_right' | 'offer_prompt_panel' | 'padding_6' | 'timer_panel' | 'padding_2' }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rtx_label": { type: T.PANEL, children: string }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/subscription_panel": { type: T.PANEL, children: string }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner": { type: T.STACK_PANEL, children: 'sales_markdown_percentage_panel' }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner/sales_markdown_percentage_panel": { type: T.PANEL, children: 'markdown_banner' }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner/sales_markdown_percentage_panel/markdown_banner": { type: T.STACK_PANEL, children: string }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/ratings": { type: T.PANEL, children: string }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rating_count_panel": { type: T.PANEL, children: string }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel": { type: T.PANEL, children: 'pack_icon_stack' }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": { type: T.PANEL, children: string }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/fill_markdown_panel_left": { type: T.PANEL, children: string }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/markdown_panel": { type: T.PANEL, children: string }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_markdown_panel_right": { type: T.PANEL, children: string }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/offer_prompt_panel": { type: T.STACK_PANEL, children: string }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_6": { type: T.PANEL, children: string }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/timer_panel": { type: T.PANEL, children: 'sale_timer' }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/timer_panel/sale_timer": { type: T.PANEL, children: string }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_2": { type: T.PANEL, children: string }, + "store_offer_grid_item/frame/offer_button": { type: T.BUTTON, children: string }, + "thumbnail_only_offer": { type: T.PANEL, children: 'frame' }, + "thumbnail_only_offer/frame": { type: T.UNKNOWN, children: 'key_art' | 'offer_button' }, + "thumbnail_only_offer/frame/key_art": { type: T.IMAGE, children: 'key_art_frame' | 'offer_coin_icon' }, + "thumbnail_only_offer/frame/key_art/key_art_frame": { type: T.IMAGE, children: string }, + "thumbnail_only_offer/frame/key_art/offer_coin_icon": { type: T.IMAGE, children: string }, + "thumbnail_only_offer/frame/offer_button": { type: T.BUTTON, children: string }, + "store_section_header_label": { type: T.LABEL, children: string }, + "persona_store_row_offer": { type: T.PANEL, children: 'persona_offer' }, + "persona_store_row_offer/persona_offer": { type: T.UNKNOWN, children: string }, + "thumnail_only_row_offer": { type: T.PANEL, children: 'generic_store_offer' }, + "thumnail_only_row_offer/generic_store_offer": { type: T.PANEL, children: string }, + "generic_store_row_offer_panel": { type: T.PANEL, children: 'generic_store_offer' }, + "generic_store_row_offer_panel/generic_store_offer": { type: T.PANEL, children: string }, + "store_row_show_more_button_panel": { type: T.PANEL, children: 'show_more_button' }, + "store_row_show_more_button_panel/show_more_button": { type: T.PANEL, children: string }, + "persona_show_more_button_panel": { type: T.PANEL, children: 'show_more_button' }, + "persona_show_more_button_panel/show_more_button": { type: T.BUTTON, children: string }, + "persona_grid_panel_stack": { type: T.STACK_PANEL, children: 'default_piece_button' | 'persona_grid_panel' }, + "persona_grid_panel_stack/default_piece_button": { type: T.UNKNOWN, children: string }, + "persona_grid_panel_stack/persona_grid_panel": { type: T.PANEL, children: string }, + "persona_grid_panel": { type: T.PANEL, children: 'persona_offer_grid' }, + "persona_grid_panel/persona_offer_grid": { type: T.GRID, children: string }, + "store_offer_grid_factory": { type: T.COLLECTION_PANEL, children: string }, + "non_collection_item_horizontal_padding": { type: T.PANEL, children: string }, + "horizontal_store_offer_row_factory": { type: T.STACK_PANEL, children: string }, + "recently_viewed_row_panel": { type: T.PANEL, children: string }, + "static_offer_row_panel": { type: T.PANEL, children: 'store_row_dropdown_panel' }, + "static_offer_row_panel/store_row_dropdown_panel": { type: T.PANEL, children: 'store_row_section_panel' }, + "static_offer_row_panel/store_row_dropdown_panel/store_row_section_panel": { type: T.PANEL, children: string }, + "store_row_panel": { type: T.PANEL, children: 'store_row_dropdown_panel' }, + "store_row_panel/store_row_dropdown_panel": { type: T.PANEL, children: 'store_row_section_panel' }, + "store_row_panel/store_row_dropdown_panel/store_row_section_panel": { type: T.PANEL, children: string }, + "vertical_store_row_panel": { type: T.PANEL, children: string }, + "style_header": { type: T.PANEL, children: 'background' | 'style_header' }, + "style_header/background": { type: T.IMAGE, children: string }, + "style_header/style_header": { type: T.STACK_PANEL, children: string }, + "style_header_panel": { type: T.STACK_PANEL, children: 'row_header' | 'row_carousel_padding' }, + "style_header_panel/row_header": { type: T.PANEL, children: 'label_panel' }, + "style_header_panel/row_header/label_panel": { type: T.STACK_PANEL, children: 'indent' | 'row_header_label_centering_panel' | 'on_sale_banner' | 'time_remaining_label' }, + "style_header_panel/row_header/label_panel/indent": { type: T.PANEL, children: string }, + "style_header_panel/row_header/label_panel/row_header_label_centering_panel": { type: T.PANEL, children: 'row_header_label' }, + "style_header_panel/row_header/label_panel/row_header_label_centering_panel/row_header_label": { type: T.LABEL, children: string }, + "style_header_panel/row_header/label_panel/on_sale_banner": { type: T.IMAGE, children: 'padding_panel' }, + "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel": { type: T.PANEL, children: 'sales_row_header_label' | 'triangle' }, + "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel/sales_row_header_label": { type: T.LABEL, children: string }, + "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel/triangle": { type: T.IMAGE, children: string }, + "style_header_panel/row_header/label_panel/time_remaining_label": { type: T.LABEL, children: string }, + "style_header_panel/row_carousel_padding": { type: T.PANEL, children: string }, + "store_row_cycle_button_panel": { type: T.PANEL, children: 'cycle_button_panel' }, + "store_row_cycle_button_panel/cycle_button_panel": { type: T.STACK_PANEL, children: 'page_indicator_panel' }, + "store_row_cycle_button_panel/cycle_button_panel/page_indicator_panel": { type: T.PANEL, children: 'page_indicator' }, + "store_row_cycle_button_panel/cycle_button_panel/page_indicator_panel/page_indicator": { type: T.PANEL, children: string }, + "store_row": { type: T.STACK_PANEL, children: 'carousel_panel' | 'divider' }, + "store_row/carousel_panel": { type: T.PANEL, children: 'progress_loading' | 'cycle_pack_horizontal_stack' }, + "store_row/carousel_panel/progress_loading": { type: T.PANEL, children: string }, + "store_row/carousel_panel/cycle_pack_horizontal_stack": { type: T.STACK_PANEL, children: 'cycle_pack_left_button_panel' | 'offer_grid_panel' | 'cycle_pack_right_button_panel' }, + "store_row/carousel_panel/cycle_pack_horizontal_stack/cycle_pack_left_button_panel": { type: T.PANEL, children: string }, + "store_row/carousel_panel/cycle_pack_horizontal_stack/offer_grid_panel": { type: T.PANEL, children: 'offer_grid' }, + "store_row/carousel_panel/cycle_pack_horizontal_stack/offer_grid_panel/offer_grid": { type: T.STACK_PANEL, children: string }, + "store_row/carousel_panel/cycle_pack_horizontal_stack/cycle_pack_right_button_panel": { type: T.PANEL, children: string }, + "store_row/divider": { type: T.STACK_PANEL, children: string }, + "page_indicator_panel": { type: T.PANEL, children: 'first_of_three' | 'second_of_three' | 'third_of_three' | 'first_of_two' | 'second_of_two' }, + "page_indicator_panel/first_of_three": { type: T.IMAGE, children: string }, + "page_indicator_panel/second_of_three": { type: T.IMAGE, children: string }, + "page_indicator_panel/third_of_three": { type: T.IMAGE, children: string }, + "page_indicator_panel/first_of_two": { type: T.IMAGE, children: string }, + "page_indicator_panel/second_of_two": { type: T.IMAGE, children: string }, + "page_indicator": { type: T.IMAGE, children: string }, + "popup_dialog__no_store_connection": { type: T.INPUT_PANEL, children: 'popup_dialog_bg' | 'popup_dialog_message' | 'popup_dialog_middle_button' }, + "popup_dialog__no_store_connection/popup_dialog_bg": { type: T.IMAGE, children: string }, + "popup_dialog__no_store_connection/popup_dialog_message": { type: T.LABEL, children: string }, + "popup_dialog__no_store_connection/popup_dialog_middle_button": { type: T.BUTTON, children: string }, + "popup_dialog__restore_popup": { type: T.INPUT_PANEL, children: 'popup_dialog_bg' | 'popup_dialog_message' }, + "popup_dialog__restore_popup/popup_dialog_bg": { type: T.IMAGE, children: string }, + "popup_dialog__restore_popup/popup_dialog_message": { type: T.LABEL, children: string }, + "popup_dialog__restore_failed": { type: T.INPUT_PANEL, children: 'popup_dialog_bg' | 'popup_dialog_message' | 'popup_dialog_middle_button' }, + "popup_dialog__restore_failed/popup_dialog_bg": { type: T.IMAGE, children: string }, + "popup_dialog__restore_failed/popup_dialog_message": { type: T.LABEL, children: string }, + "popup_dialog__restore_failed/popup_dialog_middle_button": { type: T.BUTTON, children: string }, + "suggested_content_offers_grid_item": { type: T.PANEL, children: 'frame' }, + "suggested_content_offers_grid_item/frame": { type: T.IMAGE, children: 'key_art' | 'progress_loading' | 'progress' | 'title_label_panel' | 'offer_button' }, + "suggested_content_offers_grid_item/frame/key_art": { type: T.IMAGE, children: 'key_art_frame' }, + "suggested_content_offers_grid_item/frame/key_art/key_art_frame": { type: T.IMAGE, children: string }, + "suggested_content_offers_grid_item/frame/progress_loading": { type: T.PANEL, children: string }, + "suggested_content_offers_grid_item/frame/progress": { type: T.PANEL, children: string }, + "suggested_content_offers_grid_item/frame/title_label_panel": { type: T.STACK_PANEL, children: 'title' | 'offer_type' }, + "suggested_content_offers_grid_item/frame/title_label_panel/title": { type: T.LABEL, children: string }, + "suggested_content_offers_grid_item/frame/title_label_panel/offer_type": { type: T.LABEL, children: string }, + "suggested_content_offers_grid_item/frame/offer_button": { type: T.BUTTON, children: 'hover' | 'pressed' }, + "suggested_content_offers_grid_item/frame/offer_button/hover": { type: T.IMAGE, children: 'key_art_size_panel' }, + "suggested_content_offers_grid_item/frame/offer_button/hover/key_art_size_panel": { type: T.PANEL, children: 'key_art_frame' }, + "suggested_content_offers_grid_item/frame/offer_button/hover/key_art_size_panel/key_art_frame": { type: T.IMAGE, children: string }, + "suggested_content_offers_grid_item/frame/offer_button/pressed": { type: T.IMAGE, children: 'key_art_size_panel' }, + "suggested_content_offers_grid_item/frame/offer_button/pressed/key_art_size_panel": { type: T.PANEL, children: 'key_art_frame' }, + "suggested_content_offers_grid_item/frame/offer_button/pressed/key_art_size_panel/key_art_frame": { type: T.IMAGE, children: string }, + "suggested_content_offers_grid": { type: T.GRID, children: string }, + "more_suggested_content_offers_button": { type: T.BUTTON, children: string }, + "suggested_content_offers_panel_base": { type: T.PANEL, children: 'content' | 'progress_loading' }, + "suggested_content_offers_panel_base/content": { type: T.PANEL, children: 'suggested_content_offers_grid' | 'more_suggested_content_offers_button' }, + "suggested_content_offers_panel_base/content/suggested_content_offers_grid": { type: T.GRID, children: string }, + "suggested_content_offers_panel_base/content/more_suggested_content_offers_button": { type: T.BUTTON, children: string }, + "suggested_content_offers_panel_base/progress_loading": { type: T.PANEL, children: string }, + "suggested_content_offers_panel_3x1": { type: T.PANEL, children: string }, + "suggested_content_offers_panel_4x1": { type: T.PANEL, children: string }, + "search_text_box_panel": { type: T.PANEL, children: 'search_text_box' | 'clear_button' | 'loading_spinner' }, + "search_text_box_panel/search_text_box": { type: T.EDIT_BOX, children: string }, + "search_text_box_panel/clear_button": { type: T.BUTTON, children: string }, + "search_text_box_panel/loading_spinner": { type: T.IMAGE, children: string }, + "search_label_panel": { type: T.PANEL, children: 'offset_panel' }, + "search_label_panel/offset_panel": { type: T.PANEL, children: 'label' }, + "search_label_panel/offset_panel/label": { type: T.LABEL, children: string }, + "error_text_panel": { type: T.IMAGE, children: 'error_text_content' }, + "error_text_panel/error_text_content": { type: T.STACK_PANEL, children: 'top_padding' | 'label_panel' | 'bottom_padding' }, + "error_text_panel/error_text_content/top_padding": { type: T.PANEL, children: string }, + "error_text_panel/error_text_content/label_panel": { type: T.PANEL, children: string }, + "error_text_panel/error_text_content/bottom_padding": { type: T.PANEL, children: string }, + "results_text_panel": { type: T.IMAGE, children: 'results_panel' }, + "results_text_panel/results_panel": { type: T.STACK_PANEL, children: 'top_padding' | 'results_content' | 'bottom_padding' }, + "results_text_panel/results_panel/top_padding": { type: T.PANEL, children: string }, + "results_text_panel/results_panel/results_content": { type: T.STACK_PANEL, children: 'label_panel' | 'mid_padding' | 'results_close_centering_panel' | 'right_padding' }, + "results_text_panel/results_panel/results_content/label_panel": { type: T.PANEL, children: string }, + "results_text_panel/results_panel/results_content/mid_padding": { type: T.PANEL, children: string }, + "results_text_panel/results_panel/results_content/results_close_centering_panel": { type: T.PANEL, children: 'results_close_button' }, + "results_text_panel/results_panel/results_content/results_close_centering_panel/results_close_button": { type: T.BUTTON, children: string }, + "results_text_panel/results_panel/results_content/right_padding": { type: T.PANEL, children: string }, + "results_text_panel/results_panel/bottom_padding": { type: T.PANEL, children: string }, + "filter_logo_content_panel": { type: T.PANEL, children: 'filter_logo_image' | 'filter_count_label' }, + "filter_logo_content_panel/filter_logo_image": { type: T.IMAGE, children: string }, + "filter_logo_content_panel/filter_count_label": { type: T.LABEL, children: string }, + "filter_sort_toggle": { type: T.PANEL, children: string }, + "filter_sort_submenu_scrolling_panel_section": { type: T.PANEL, children: 'submenu_scrolling_panel' }, + "filter_sort_submenu_scrolling_panel_section/submenu_scrolling_panel": { type: T.PANEL, children: string }, + "filter_sort_grid_panel": { type: T.PANEL, children: 'filter_sort_grid' }, + "filter_sort_grid_panel/filter_sort_grid": { type: T.STACK_PANEL, children: string }, + "sort_button_content_panel": { type: T.IMAGE, children: string }, + "search_panel_filter": { type: T.STACK_PANEL, children: 'search_text_box' | 'filter_button' | 'sort_button' }, + "search_panel_filter/search_text_box": { type: T.PANEL, children: string }, + "search_panel_filter/filter_button": { type: T.BUTTON, children: string }, + "search_panel_filter/sort_button": { type: T.BUTTON, children: string }, + "search_results_and_error_stack": { type: T.STACK_PANEL, children: 'mid_padding_1' | 'error_text_panel' | 'mid_padding_2' | 'results_text_panel' }, + "search_results_and_error_stack/mid_padding_1": { type: T.PANEL, children: string }, + "search_results_and_error_stack/error_text_panel": { type: T.IMAGE, children: string }, + "search_results_and_error_stack/mid_padding_2": { type: T.PANEL, children: string }, + "search_results_and_error_stack/results_text_panel": { type: T.IMAGE, children: string }, + "search_panel": { type: T.PANEL, children: 'search_panel_content' }, + "search_panel/search_panel_content": { type: T.STACK_PANEL, children: 'search_text_box' | 'search_results_and_error_panel' | 'bottom_padding' }, + "search_panel/search_panel_content/search_text_box": { type: T.STACK_PANEL, children: string }, + "search_panel/search_panel_content/search_results_and_error_panel": { type: T.STACK_PANEL, children: string }, + "search_panel/search_panel_content/bottom_padding": { type: T.PANEL, children: string }, + "search_and_offer_content": { type: T.INPUT_PANEL, children: 'search_and_offer_panel' }, + "search_and_offer_content/search_and_offer_panel": { type: T.PANEL, children: 'search_and_offer_content' }, + "search_and_offer_content/search_and_offer_panel/search_and_offer_content": { type: T.STACK_PANEL, children: 'top_padding' | 'upper_section_panel' | 'search_panel' | 'offer_content_panel' | 'bottom_padding' }, + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/top_padding": { type: T.PANEL, children: string }, + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/upper_section_panel": { type: T.PANEL, children: 'upper_section' }, + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/upper_section_panel/upper_section": { type: T.UNKNOWN, children: string }, + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/search_panel": { type: T.PANEL, children: string }, + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/offer_content_panel": { type: T.PANEL, children: 'offer_content' }, + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/offer_content_panel/offer_content": { type: T.UNKNOWN, children: string }, + "search_and_offer_content/search_and_offer_panel/search_and_offer_content/bottom_padding": { type: T.PANEL, children: string }, + "search_object": { type: T.PANEL, children: 'search_object_content' }, + "search_object/search_object_content": { type: T.INPUT_PANEL, children: string }, + "sort_and_filter_menu_modal_panel": { type: T.PANEL, children: 'filter_menu' }, + "sort_and_filter_menu_modal_panel/filter_menu": { type: T.UNKNOWN, children: string }, + "sort_and_filter_menu_modals": { type: T.PANEL, children: 'filter_menu_modal' | 'sort_menu_panel' }, + "sort_and_filter_menu_modals/filter_menu_modal": { type: T.PANEL, children: string }, + "sort_and_filter_menu_modals/sort_menu_panel": { type: T.PANEL, children: string }, + "search_filter_sort_background": { type: T.IMAGE, children: string }, + "search_filter_background_panel": { type: T.PANEL, children: 'search_filter_sort_background' }, + "search_filter_background_panel/search_filter_sort_background": { type: T.IMAGE, children: string }, + "close_bg_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "close_bg_button/default": { type: T.PANEL, children: string }, + "close_bg_button/hover": { type: T.PANEL, children: string }, + "close_bg_button/pressed": { type: T.PANEL, children: string }, + "close_bg_panel": { type: T.PANEL, children: 'header_close_button' | 'main_close_button' }, + "close_bg_panel/header_close_button": { type: T.BUTTON, children: string }, + "close_bg_panel/main_close_button": { type: T.BUTTON, children: string }, + "vertical_line_divider_row": { type: T.STACK_PANEL, children: 'vert_line_divider_row_top_buffer' | 'vertical_line_divider_horizontal_panel_with_padding' | 'vert_line_divider_row_bottom_buffer' }, + "vertical_line_divider_row/vert_line_divider_row_top_buffer": { type: T.PANEL, children: string }, + "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding": { type: T.STACK_PANEL, children: 'vert_line_divider_row_left_buffer' | 'vertical_line_divider_row_line' | 'vert_line_divider_row_right_buffer' }, + "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vert_line_divider_row_left_buffer": { type: T.PANEL, children: string }, + "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vertical_line_divider_row_line": { type: T.IMAGE, children: string }, + "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vert_line_divider_row_right_buffer": { type: T.PANEL, children: string }, + "vertical_line_divider_row/vert_line_divider_row_bottom_buffer": { type: T.PANEL, children: string }, + "sdl_dropdown_header_row_button": { type: T.PANEL, children: string }, + "sdl_subcategory_button": { type: T.UNKNOWN, children: string }, + "sdl_dropdown_header_row": { type: T.PANEL, children: 'drowdown_header_row_content' }, + "sdl_dropdown_header_row/drowdown_header_row_content": { type: T.PANEL, children: 'button_aspects' }, + "sdl_dropdown_header_row/drowdown_header_row_content/button_aspects": { type: T.PANEL, children: string }, + "sdl_dropdown_data_row": { type: T.PANEL, children: 'row_background' | 'button_aspects' }, + "sdl_dropdown_data_row/row_background": { type: T.IMAGE, children: string }, + "sdl_dropdown_data_row/button_aspects": { type: T.UNKNOWN, children: string }, } 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": { type: T.PANEL, children: 'sdl_scrolling_content_stack' }, + "sdl_scrolling_content_panel/sdl_scrolling_content_stack": { type: T.STACK_PANEL, children: string }, + "sdl_scrolling_content_stack": { type: T.STACK_PANEL, children: 'padding_0' | 'store_screen_layout_factory' | 'footer' }, + "sdl_scrolling_content_stack/padding_0": { type: T.PANEL, children: string }, + "sdl_scrolling_content_stack/store_screen_layout_factory": { type: T.STACK_PANEL, children: string }, + "sdl_scrolling_content_stack/footer": { type: T.PANEL, children: string }, + "sdl_scrolling_section_panel": { type: T.STACK_PANEL, children: 'padding0' | 'top_static_sdl_section' | 'padding1' | 'sdl_scrolling_section' }, + "sdl_scrolling_section_panel/padding0": { type: T.PANEL, children: string }, + "sdl_scrolling_section_panel/top_static_sdl_section": { type: T.STACK_PANEL, children: string }, + "sdl_scrolling_section_panel/padding1": { type: T.PANEL, children: string }, + "sdl_scrolling_section_panel/sdl_scrolling_section": { type: T.PANEL, children: string }, + "sdl_scrolling_section": { type: T.PANEL, children: string }, + "character_creator_sdl_scroll_section": { type: T.STACK_PANEL, children: string }, + "character_creator_sdl_section": { type: T.STACK_PANEL, children: 'sdl_section' }, + "character_creator_sdl_section/sdl_section": { type: T.UNKNOWN, children: string }, + "character_creator_panel": { type: T.STACK_PANEL, children: 'left_main_panel_padding' | 'character_creator_sdl_portion' | 'middle_main_panel_padding' | 'right_main_panel' | 'right_main_panel_padding' }, + "character_creator_panel/left_main_panel_padding": { type: T.UNKNOWN, children: string }, + "character_creator_panel/character_creator_sdl_portion": { type: T.STACK_PANEL, children: string }, + "character_creator_panel/middle_main_panel_padding": { type: T.UNKNOWN, children: string }, + "character_creator_panel/right_main_panel": { type: T.STACK_PANEL, children: string }, + "character_creator_panel/right_main_panel_padding": { type: T.UNKNOWN, children: string }, + "character_creator_screen_layout": { type: T.PANEL, children: 'character_creator_panel' }, + "character_creator_screen_layout/character_creator_panel": { type: T.STACK_PANEL, children: string }, + "main_panel": { type: T.INPUT_PANEL, children: 'background' | 'main_panel_content' | 'progress_loading' }, + "main_panel/background": { type: T.IMAGE, children: string }, + "main_panel/main_panel_content": { type: T.PANEL, children: 'sdl_screen_content' }, + "main_panel/main_panel_content/sdl_screen_content": { type: T.UNKNOWN, children: string }, + "main_panel/progress_loading": { type: T.PANEL, children: string }, + "nav_button_content": { type: T.STACK_PANEL, children: 'image_panel' | 'small_padding' | 'label_panel' }, + "nav_button_content/image_panel": { type: T.PANEL, children: string }, + "nav_button_content/small_padding": { type: T.PANEL, children: string }, + "nav_button_content/label_panel": { type: T.UNKNOWN, children: string }, + "default_nav_label_panel": { type: T.PANEL, children: 'button_text_label' }, + "default_nav_label_panel/button_text_label": { type: T.LABEL, children: string }, + "styled_nav_label_panel": { type: T.PANEL, children: 'button_text_label' }, + "styled_nav_label_panel/button_text_label": { type: T.LABEL, children: string }, + "styled_nav_label_panel_minecraftTen": { type: T.PANEL, children: 'button_text_label' }, + "styled_nav_label_panel_minecraftTen/button_text_label": { type: T.LABEL, children: string }, + "default_styled_button_text_label": { type: T.LABEL, children: string }, + "nav_image_panel": { type: T.PANEL, children: 'button_image_panel' | 'button_animated_panel' }, + "nav_image_panel/button_image_panel": { type: T.PANEL, children: string }, + "nav_image_panel/button_animated_panel": { type: T.PANEL, children: string }, + "nav_button_image_panel": { type: T.PANEL, children: 'button_image' }, + "nav_button_image_panel/button_image": { type: T.UNKNOWN, children: string }, + "nav_button_image": { type: T.IMAGE, children: string }, + "nav_button_animation": { type: T.IMAGE, children: string }, + "nav_button_fill": { type: T.PANEL, children: string }, + "nav_button_fill_styled": { type: T.PANEL, children: string }, + "nav_button_fill_styled_mc10": { type: T.PANEL, children: string }, + "nav_button_standard_styled": { type: T.PANEL, children: string }, + "nav_button_standard_styled_mc10": { type: T.PANEL, children: string }, + "nav_button_standard": { type: T.PANEL, children: 'nav_button' }, + "nav_button_standard/nav_button": { type: T.BUTTON, children: string }, + "nav_button_grid_panel": { type: T.PANEL, children: 'nav_button_grid' }, + "nav_button_grid_panel/nav_button_grid": { type: T.STACK_PANEL, children: string }, + "store_layout_ribbon_search_button": { type: T.BUTTON, children: string }, + "store_layout_ribbon_search_button_content": { type: T.PANEL, children: 'button_image' }, + "store_layout_ribbon_search_button_content/button_image": { type: T.IMAGE, children: string }, + "store_data_driven_screen_base": { type: T.SCREEN, children: string }, + "store_screen_modal_panel": { type: T.PANEL, children: 'one_button_dialog' | 'popup_dialog_factory' }, + "store_screen_modal_panel/one_button_dialog": { type: T.PANEL, children: string }, + "store_screen_modal_panel/popup_dialog_factory": { type: T.FACTORY, children: string }, + "dialog_button": { type: T.BUTTON, children: string }, + "store_screen_main_panel": { type: T.PANEL, children: 'main_content_view' | 'sort_and_filter_modals' }, + "store_screen_main_panel/main_content_view": { type: T.INPUT_PANEL, children: string }, + "store_screen_main_panel/sort_and_filter_modals": { type: T.PANEL, children: string }, + "store_full_screen_content": { type: T.PANEL, children: 'mouse_input_focus_panel' | 'screen_content' | 'popup_dialog_factory' | 'character_selector_dialog_factory' | 'custom_skin_dialog_factory' }, + "store_full_screen_content/mouse_input_focus_panel": { type: T.INPUT_PANEL, children: string }, + "store_full_screen_content/screen_content": { type: T.STACK_PANEL, children: 'top_bar_section' | 'main_panel' }, + "store_full_screen_content/screen_content/top_bar_section": { type: T.STACK_PANEL, children: string }, + "store_full_screen_content/screen_content/main_panel": { type: T.PANEL, children: 'main_panel_content' }, + "store_full_screen_content/screen_content/main_panel/main_panel_content": { type: T.PANEL, children: string }, + "store_full_screen_content/popup_dialog_factory": { type: T.FACTORY, children: string }, + "store_full_screen_content/character_selector_dialog_factory": { type: T.FACTORY, children: string }, + "store_full_screen_content/custom_skin_dialog_factory": { type: T.FACTORY, children: string }, + "sdl_base_screen": { type: T.SCREEN, children: string }, + "character_creator_base_screen": { type: T.SCREEN, children: string }, + "store_data_driven_screen": { type: T.SCREEN, children: string }, + "character_creator_screen": { type: T.SCREEN, children: string }, + "dressing_room_color_picker_screen": { type: T.SCREEN, children: string }, + "expanded_appearance_view_screen": { type: T.SCREEN, children: string }, + "non_scrollable_sdl_screen": { type: T.SCREEN, children: string }, + "skin_selector_screen": { type: T.SCREEN, children: string }, + "store_data_driven_modal_one_button_screen": { type: T.SCREEN, children: string }, } 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": { type: T.PANEL, children: 'clear_button' }, + "filter_clear_button_panel/clear_button": { type: T.BUTTON, children: string }, + "chevron_icon_panel": { type: T.PANEL, children: 'chevron_icon' }, + "chevron_icon_panel/chevron_icon": { type: T.IMAGE, children: string }, + "filter_variables_panel": { type: T.PANEL, children: string }, + "filter_option_button_content": { type: T.STACK_PANEL, children: 'left_chevron_icon_panel' | 'filter_type_and_selected_panel' | 'right_chevron_icon_panel' }, + "filter_option_button_content/left_chevron_icon_panel": { type: T.PANEL, children: string }, + "filter_option_button_content/filter_type_and_selected_panel": { type: T.STACK_PANEL, children: 'top_padding' | 'filter_type_label' | 'middle_padding' | 'selected_label' | 'bottom_padding' }, + "filter_option_button_content/filter_type_and_selected_panel/top_padding": { type: T.PANEL, children: string }, + "filter_option_button_content/filter_type_and_selected_panel/filter_type_label": { type: T.LABEL, children: string }, + "filter_option_button_content/filter_type_and_selected_panel/middle_padding": { type: T.PANEL, children: string }, + "filter_option_button_content/filter_type_and_selected_panel/selected_label": { type: T.LABEL, children: string }, + "filter_option_button_content/filter_type_and_selected_panel/bottom_padding": { type: T.PANEL, children: string }, + "filter_option_button_content/right_chevron_icon_panel": { type: T.PANEL, children: string }, + "filter_options_button_panel": { type: T.PANEL, children: 'filter_variables_panel' }, + "filter_options_button_panel/filter_variables_panel": { type: T.PANEL, children: 'filter_options_button' }, + "filter_options_button_panel/filter_variables_panel/filter_options_button": { type: T.BUTTON, children: string }, + "filter_main_menu_options_button_panel": { type: T.PANEL, children: string }, + "filter_title_bar_content": { type: T.STACK_PANEL, children: 'filter_logo_and_count_panel' | 'centered_filter_title_label' | 'filter_title_padding_close_button' | 'centered_x' }, + "filter_title_bar_content/filter_logo_and_count_panel": { type: T.PANEL, children: string }, + "filter_title_bar_content/centered_filter_title_label": { type: T.PANEL, children: 'filter_title_label' }, + "filter_title_bar_content/centered_filter_title_label/filter_title_label": { type: T.LABEL, children: string }, + "filter_title_bar_content/filter_title_padding_close_button": { type: T.PANEL, children: string }, + "filter_title_bar_content/centered_x": { type: T.PANEL, children: 'close_x_image' }, + "filter_title_bar_content/centered_x/close_x_image": { type: T.IMAGE, children: string }, + "filter_title_bar": { type: T.BUTTON, children: string }, + "filter_checkbox_toggle": { type: T.PANEL, children: string }, + "filter_checkbox_no_icon_toggle": { type: T.PANEL, children: 'filter_checkbox_no_icon_toggle' }, + "filter_checkbox_no_icon_toggle/filter_checkbox_no_icon_toggle": { type: T.PANEL, children: string }, + "pack_type_sub_menu_panel": { type: T.PANEL, children: 'pack_type_sub_menu' }, + "pack_type_sub_menu_panel/pack_type_sub_menu": { type: T.STACK_PANEL, children: 'addon_packs_filter' | 'skin_packs_filter' | 'texture_packs_filter' | 'worlds_template_filter_panel' | 'mashup_packs_filter' }, + "pack_type_sub_menu_panel/pack_type_sub_menu/addon_packs_filter": { type: T.PANEL, children: string }, + "pack_type_sub_menu_panel/pack_type_sub_menu/skin_packs_filter": { type: T.PANEL, children: string }, + "pack_type_sub_menu_panel/pack_type_sub_menu/texture_packs_filter": { type: T.PANEL, children: string }, + "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel": { type: T.STACK_PANEL, children: 'worlds_template_filter' | 'world_template_type_filters' }, + "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel/worlds_template_filter": { type: T.PANEL, children: string }, + "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel/world_template_type_filters": { type: T.PANEL, children: string }, + "pack_type_sub_menu_panel/pack_type_sub_menu/mashup_packs_filter": { type: T.PANEL, children: string }, + "offer_type_sub_menu_panel": { type: T.STACK_PANEL, children: 'bundles_filter' | 'realms_plus_filter' | 'csb_filter' }, + "offer_type_sub_menu_panel/bundles_filter": { type: T.PANEL, children: string }, + "offer_type_sub_menu_panel/realms_plus_filter": { type: T.PANEL, children: string }, + "offer_type_sub_menu_panel/csb_filter": { type: T.PANEL, children: string }, + "realms_plus_filter": { type: T.PANEL, children: 'realms_plus_filter' }, + "realms_plus_filter/realms_plus_filter": { type: T.PANEL, children: string }, + "csb_filter": { type: T.PANEL, children: 'csb_filter' }, + "csb_filter/csb_filter": { type: T.PANEL, children: string }, + "realms_plus_gradient_content_panel": { type: T.PANEL, children: 'gradient' | 'particles' | 'content_panel' }, + "realms_plus_gradient_content_panel/gradient": { type: T.IMAGE, children: string }, + "realms_plus_gradient_content_panel/particles": { type: T.IMAGE, children: string }, + "realms_plus_gradient_content_panel/content_panel": { type: T.STACK_PANEL, children: string }, + "csb_gradient_content_panel": { type: T.PANEL, children: 'gradient' | 'particles' | 'content_panel' }, + "csb_gradient_content_panel/gradient": { type: T.IMAGE, children: string }, + "csb_gradient_content_panel/particles": { type: T.IMAGE, children: string }, + "csb_gradient_content_panel/content_panel": { type: T.STACK_PANEL, children: string }, + "filter_section_content": { type: T.STACK_PANEL, children: 'section_title_button' | 'clear_button' | 'section_sub_menu' }, + "filter_section_content/section_title_button": { type: T.PANEL, children: string }, + "filter_section_content/clear_button": { type: T.PANEL, children: string }, + "filter_section_content/section_sub_menu": { type: T.UNKNOWN, children: string }, + "filter_section_content_dynamic": { type: T.PANEL, children: 'filter_section_content' }, + "filter_section_content_dynamic/filter_section_content": { type: T.STACK_PANEL, children: string }, + "filter_main_menu_content": { type: T.STACK_PANEL, children: 'filter_title_bar_panel' | 'offer_type_button' | 'pack_type_button' | 'minecoin_button' | 'rating_button' | 'creator_button' | 'graphics_button' | 'installed_state_button' | 'filter_main_menu_filter_toggles_section' | 'clear_button_panel' }, + "filter_main_menu_content/filter_title_bar_panel": { type: T.BUTTON, children: string }, + "filter_main_menu_content/offer_type_button": { type: T.PANEL, children: string }, + "filter_main_menu_content/pack_type_button": { type: T.PANEL, children: string }, + "filter_main_menu_content/minecoin_button": { type: T.PANEL, children: string }, + "filter_main_menu_content/rating_button": { type: T.PANEL, children: string }, + "filter_main_menu_content/creator_button": { type: T.PANEL, children: string }, + "filter_main_menu_content/graphics_button": { type: T.PANEL, children: string }, + "filter_main_menu_content/installed_state_button": { type: T.PANEL, children: string }, + "filter_main_menu_content/filter_main_menu_filter_toggles_section": { type: T.PANEL, children: 'filter_main_menu_filter_toggle_grid_panel' }, + "filter_main_menu_content/filter_main_menu_filter_toggles_section/filter_main_menu_filter_toggle_grid_panel": { type: T.PANEL, children: string }, + "filter_main_menu_content/clear_button_panel": { type: T.PANEL, children: string }, + "filter_main_menu_content_persona": { type: T.STACK_PANEL, children: 'filter_title_bar_panel' | 'persona_body_button' | 'persona_style_button' | 'emote_filter_section' | 'minecoin_button' | 'clear_button_panel' }, + "filter_main_menu_content_persona/filter_title_bar_panel": { type: T.BUTTON, children: string }, + "filter_main_menu_content_persona/persona_body_button": { type: T.PANEL, children: string }, + "filter_main_menu_content_persona/persona_style_button": { type: T.PANEL, children: string }, + "filter_main_menu_content_persona/emote_filter_section": { type: T.PANEL, children: 'filter_emote_toggle_grid_panel' }, + "filter_main_menu_content_persona/emote_filter_section/filter_emote_toggle_grid_panel": { type: T.PANEL, children: string }, + "filter_main_menu_content_persona/minecoin_button": { type: T.PANEL, children: string }, + "filter_main_menu_content_persona/clear_button_panel": { type: T.PANEL, children: string }, + "filter_section_content_panel": { type: T.PANEL, children: 'filter_menu_screen' }, + "filter_section_content_panel/filter_menu_screen": { type: T.UNKNOWN, children: string }, + "filter_main_menu_section": { type: T.PANEL, children: string }, + "filter_main_menu_section_persona": { type: T.PANEL, children: string }, + "filter_pack_type_section": { type: T.PANEL, children: string }, + "filter_offer_type_section": { type: T.PANEL, children: string }, + "filter_type_section": { type: T.PANEL, children: string }, + "filter_menu_content": { type: T.PANEL, children: 'filter_main_menu_screen' | 'filter_offer_type_screen' | 'filter_pack_type_screen' | 'filter_minecoin_section' | 'filter_rating_section' | 'filter_creator_section' | 'filter_graphics_section' | 'filter_installed_state_section' }, + "filter_menu_content/filter_main_menu_screen": { type: T.PANEL, children: string }, + "filter_menu_content/filter_offer_type_screen": { type: T.PANEL, children: string }, + "filter_menu_content/filter_pack_type_screen": { type: T.PANEL, children: string }, + "filter_menu_content/filter_minecoin_section": { type: T.PANEL, children: string }, + "filter_menu_content/filter_rating_section": { type: T.PANEL, children: string }, + "filter_menu_content/filter_creator_section": { type: T.PANEL, children: string }, + "filter_menu_content/filter_graphics_section": { type: T.PANEL, children: string }, + "filter_menu_content/filter_installed_state_section": { type: T.PANEL, children: string }, + "filter_menu_content_persona": { type: T.PANEL, children: 'filter_main_menu_screen' | 'filter_style_section' | 'filter_body_section' | 'filter_minecoin_section' }, + "filter_menu_content_persona/filter_main_menu_screen": { type: T.PANEL, children: string }, + "filter_menu_content_persona/filter_style_section": { type: T.PANEL, children: string }, + "filter_menu_content_persona/filter_body_section": { type: T.PANEL, children: string }, + "filter_menu_content_persona/filter_minecoin_section": { type: T.PANEL, children: string }, + "filter_menu_panel": { type: T.STACK_PANEL, children: 'top_padding' | 'alignment_panel' }, + "filter_menu_panel/top_padding": { type: T.PANEL, children: string }, + "filter_menu_panel/alignment_panel": { type: T.STACK_PANEL, children: 'left_padding' | 'filter_menu_content_scroll' | 'right_padding' }, + "filter_menu_panel/alignment_panel/left_padding": { type: T.PANEL, children: string }, + "filter_menu_panel/alignment_panel/filter_menu_content_scroll": { type: T.PANEL, children: string }, + "filter_menu_panel/alignment_panel/right_padding": { type: T.PANEL, children: string }, + "filter_menu_screen_content": { type: T.INPUT_PANEL, children: 'filter_main_panel' | 'filter_main_panel_persona' | 'filter_menu_close_background_button' }, + "filter_menu_screen_content/filter_main_panel": { type: T.STACK_PANEL, children: string }, + "filter_menu_screen_content/filter_main_panel_persona": { type: T.STACK_PANEL, children: string }, + "filter_menu_screen_content/filter_menu_close_background_button": { type: T.PANEL, children: string }, } 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": { type: T.BUTTON, children: string }, + "no_xbl_and_local_content_warning_panel": { type: T.STACK_PANEL, children: 'image_and_description_bg_panel' | 'bottom_padding' }, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel": { type: T.IMAGE, children: 'image_and_description_panel' }, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel": { type: T.PANEL, children: 'image_and_description_stack' }, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack": { type: T.STACK_PANEL, children: 'top_padding' | 'warning_image_and_label_1' | 'bottom_padding' }, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/top_padding": { type: T.PANEL, children: string }, + "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": { type: T.STACK_PANEL, children: 'xbl_image_center_panel' | 'xbl_image_padding_warning' | 'warning_label_centering_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": { type: T.PANEL, children: 'xbl_sign_in_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_center_panel/xbl_sign_in_image": { type: T.IMAGE, children: string }, + "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": { type: T.PANEL, children: string }, + "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": { type: T.PANEL, children: 'warning_label_stack' }, + "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": { type: T.STACK_PANEL, children: 'top_padding' | 'message_text' | 'xbl_image_padding_warning' | 'sign_in_button_centering_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": { type: T.PANEL, children: string }, + "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": { type: T.BUTTON, children: string }, + "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": { type: T.PANEL, children: string }, + "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": { type: T.PANEL, children: 'sigh_in_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/sign_in_button_centering_panel/sigh_in_button": { type: T.BUTTON, children: string }, + "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/bottom_padding": { type: T.PANEL, children: string }, + "no_xbl_and_local_content_warning_panel/bottom_padding": { type: T.PANEL, children: string }, + "no_xbl_and_no_local_conent_warning_panel": { type: T.STACK_PANEL, children: 'image_and_description_bg_panel' | 'bottom_padding' }, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel": { type: T.IMAGE, children: 'image_and_description_panel' }, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel": { type: T.PANEL, children: 'image_and_description_stack' }, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack": { type: T.STACK_PANEL, children: 'top_padding' | 'warning_image_and_label_1' | 'bottom_padding' }, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/top_padding": { type: T.PANEL, children: string }, + "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": { type: T.STACK_PANEL, children: 'xbl_image_center_panel' | 'xbl_image_padding_warning' | 'warning_label_centering_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": { type: T.PANEL, children: 'xbl_sign_in_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_center_panel/xbl_sign_in_image": { type: T.IMAGE, children: string }, + "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": { type: T.PANEL, children: string }, + "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": { type: T.PANEL, children: 'warning_label_stack' }, + "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": { type: T.STACK_PANEL, children: 'top_padding' | 'message_text' | 'xbl_image_padding_warning' | 'sign_in_button_centering_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": { type: T.PANEL, children: string }, + "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": { type: T.BUTTON, children: string }, + "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": { type: T.PANEL, children: string }, + "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": { type: T.PANEL, children: 'sigh_in_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/sign_in_button_centering_panel/sigh_in_button": { type: T.BUTTON, children: string }, + "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/bottom_padding": { type: T.PANEL, children: string }, + "no_xbl_and_no_local_conent_warning_panel/bottom_padding": { type: T.PANEL, children: string }, + "inventory_sign_in_panel": { type: T.PANEL, children: 'no_xbl_and_local_content_warning_panel' | 'no_xbl_and_no_local_conent_warning_panel' }, + "inventory_sign_in_panel/no_xbl_and_local_content_warning_panel": { type: T.STACK_PANEL, children: string }, + "inventory_sign_in_panel/no_xbl_and_no_local_conent_warning_panel": { type: T.STACK_PANEL, children: string }, + "divider_panel": { type: T.STACK_PANEL, children: 'top_pad' | 'divider' | 'bottom_pad' }, + "divider_panel/top_pad": { type: T.PANEL, children: string }, + "divider_panel/divider": { type: T.PANEL, children: string }, + "divider_panel/bottom_pad": { type: T.PANEL, children: string }, + "right_image": { type: T.IMAGE, children: string }, + "down_image": { type: T.IMAGE, children: string }, + "section_toggle_base": { type: T.PANEL, children: string }, + "owned_toggle": { type: T.PANEL, children: string }, + "current_toggle": { type: T.PANEL, children: string }, + "removed_toggle": { type: T.PANEL, children: string }, + "subscriptions_toggle": { type: T.PANEL, children: string }, + "inventory_left_panel": { type: T.STACK_PANEL, children: 'top_pad' | 'owned_toggle' | 'owned_dropdown_box_panel' | 'divider_0' | 'csub_panel' | 'divider_1' | 'subscriptions_toggle' }, + "inventory_left_panel/top_pad": { type: T.PANEL, children: string }, + "inventory_left_panel/owned_toggle": { type: T.PANEL, children: string }, + "inventory_left_panel/owned_dropdown_box_panel": { type: T.IMAGE, children: 'owned_dropdown_box' }, + "inventory_left_panel/owned_dropdown_box_panel/owned_dropdown_box": { type: T.STACK_PANEL, children: string }, + "inventory_left_panel/divider_0": { type: T.STACK_PANEL, children: string }, + "inventory_left_panel/csub_panel": { type: T.PANEL, children: 'csub_stack_panel' }, + "inventory_left_panel/csub_panel/csub_stack_panel": { type: T.STACK_PANEL, children: string }, + "inventory_left_panel/divider_1": { type: T.STACK_PANEL, children: string }, + "inventory_left_panel/subscriptions_toggle": { type: T.PANEL, children: string }, + "csub_stack_panel": { type: T.STACK_PANEL, children: 'padding_title_vertical' | 'section_title' | 'dropdown_panel' }, + "csub_stack_panel/padding_title_vertical": { type: T.PANEL, children: string }, + "csub_stack_panel/section_title": { type: T.STACK_PANEL, children: 'padding_title_horizontal' | 'testTitle' }, + "csub_stack_panel/section_title/padding_title_horizontal": { type: T.PANEL, children: string }, + "csub_stack_panel/section_title/testTitle": { type: T.STACK_PANEL, children: string }, + "csub_stack_panel/dropdown_panel": { type: T.PANEL, children: 'dropdown_stack_panel' }, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel": { type: T.STACK_PANEL, children: 'current_toggle' | 'current_dropdown_box_panel' | 'pad_1' | 'removed_toggle' | 'removed_dropdown_box_panel' | 'pad_2' }, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_toggle": { type: T.PANEL, children: string }, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel": { type: T.PANEL, children: 'current_dropdown_box' }, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel/current_dropdown_box": { type: T.STACK_PANEL, children: string }, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/pad_1": { type: T.PANEL, children: string }, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_toggle": { type: T.PANEL, children: string }, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel": { type: T.PANEL, children: 'removed_dropdown_box' }, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel/removed_dropdown_box": { type: T.STACK_PANEL, children: string }, + "csub_stack_panel/dropdown_panel/dropdown_stack_panel/pad_2": { type: T.PANEL, children: string }, + "subscriptions_text_panel": { type: T.PANEL, children: 'subscriptions_text' }, + "subscriptions_text_panel/subscriptions_text": { type: T.LABEL, children: string }, + "realms_plus_stack_panel": { type: T.STACK_PANEL, children: 'section_title' | 'dropdown_panel' }, + "realms_plus_stack_panel/section_title": { type: T.IMAGE, children: 'border' | 'section_title_label' | 'particles' }, + "realms_plus_stack_panel/section_title/border": { type: T.IMAGE, children: string }, + "realms_plus_stack_panel/section_title/section_title_label": { type: T.LABEL, children: string }, + "realms_plus_stack_panel/section_title/particles": { type: T.IMAGE, children: string }, + "realms_plus_stack_panel/dropdown_panel": { type: T.PANEL, children: 'dropdown_stack_panel' }, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel": { type: T.STACK_PANEL, children: 'pad_0' | 'current_toggle' | 'current_dropdown_box_panel' | 'pad_1' | 'removed_toggle' | 'removed_dropdown_box_panel' | 'pad_2' }, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_0": { type: T.PANEL, children: string }, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_toggle": { type: T.PANEL, children: string }, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel": { type: T.PANEL, children: 'current_dropdown_box' }, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel/current_dropdown_box": { type: T.STACK_PANEL, children: string }, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_1": { type: T.PANEL, children: string }, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_toggle": { type: T.PANEL, children: string }, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel": { type: T.PANEL, children: 'removed_dropdown_box' }, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel/removed_dropdown_box": { type: T.STACK_PANEL, children: string }, + "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_2": { type: T.PANEL, children: string }, + "dropdown_button_content": { type: T.STACK_PANEL, children: 'title_label' | 'pad_0_fill' | 'pad_0' | 'icon_panel' | 'pad_1' | 'pad_2' | 'count_panel' | 'pad_3' | 'right_carrot' | 'down_carrot' }, + "dropdown_button_content/title_label": { type: T.LABEL, children: string }, + "dropdown_button_content/pad_0_fill": { type: T.PANEL, children: string }, + "dropdown_button_content/pad_0": { type: T.PANEL, children: string }, + "dropdown_button_content/icon_panel": { type: T.PANEL, children: 'block_icon' }, + "dropdown_button_content/icon_panel/block_icon": { type: T.IMAGE, children: string }, + "dropdown_button_content/pad_1": { type: T.PANEL, children: string }, + "dropdown_button_content/pad_2": { type: T.PANEL, children: string }, + "dropdown_button_content/count_panel": { type: T.PANEL, children: 'count' }, + "dropdown_button_content/count_panel/count": { type: T.LABEL, children: string }, + "dropdown_button_content/pad_3": { type: T.PANEL, children: string }, + "dropdown_button_content/right_carrot": { type: T.PANEL, children: 'right' }, + "dropdown_button_content/right_carrot/right": { type: T.IMAGE, children: string }, + "dropdown_button_content/down_carrot": { type: T.PANEL, children: 'down' }, + "dropdown_button_content/down_carrot/down": { type: T.IMAGE, children: string }, + "owned_dropdown_content": { type: T.STACK_PANEL, children: string }, + "current_dropdown_content": { type: T.STACK_PANEL, children: string }, + "removed_dropdown_content": { type: T.STACK_PANEL, children: string }, + "dropdown_box": { type: T.STACK_PANEL, children: 'top_pad' | 'all' | 'divider_0' | 'addons' | 'divider_1' | 'skins' | 'divider_2' | 'worlds' | 'divider_3' | 'textures' | 'divider_4' | 'mashups' | 'bottom_pad' }, + "dropdown_box/top_pad": { type: T.PANEL, children: string }, + "dropdown_box/all": { type: T.BUTTON, children: string }, + "dropdown_box/divider_0": { type: T.STACK_PANEL, children: string }, + "dropdown_box/addons": { type: T.BUTTON, children: string }, + "dropdown_box/divider_1": { type: T.STACK_PANEL, children: string }, + "dropdown_box/skins": { type: T.BUTTON, children: string }, + "dropdown_box/divider_2": { type: T.STACK_PANEL, children: string }, + "dropdown_box/worlds": { type: T.BUTTON, children: string }, + "dropdown_box/divider_3": { type: T.STACK_PANEL, children: string }, + "dropdown_box/textures": { type: T.BUTTON, children: string }, + "dropdown_box/divider_4": { type: T.STACK_PANEL, children: string }, + "dropdown_box/mashups": { type: T.BUTTON, children: string }, + "dropdown_box/bottom_pad": { type: T.PANEL, children: string }, + "category_panel_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "category_panel_button/default": { type: T.STACK_PANEL, children: string }, + "category_panel_button/hover": { type: T.STACK_PANEL, children: string }, + "category_panel_button/pressed": { type: T.STACK_PANEL, children: string }, + "category_stack_panel": { type: T.STACK_PANEL, children: 'text' | 'fill_pad' | 'icon' | 'pad_1' | 'number' }, + "category_stack_panel/text": { type: T.LABEL, children: string }, + "category_stack_panel/fill_pad": { type: T.PANEL, children: string }, + "category_stack_panel/icon": { type: T.IMAGE, children: string }, + "category_stack_panel/pad_1": { type: T.PANEL, children: string }, + "category_stack_panel/number": { type: T.LABEL, children: string }, + "search_object": { type: T.PANEL, children: string }, + "list_panel": { type: T.INPUT_PANEL, children: 'list_panel_content' | 'progress_loading' }, + "list_panel/list_panel_content": { type: T.PANEL, children: 'search_and_offers_grid_scroll_panel' }, + "list_panel/list_panel_content/search_and_offers_grid_scroll_panel": { type: T.PANEL, children: string }, + "list_panel/progress_loading": { type: T.PANEL, children: string }, + "items_content_section": { type: T.INPUT_PANEL, children: string }, + "subscriptions_content_section": { type: T.STACK_PANEL, children: 'left_pad' | 'search_and_offers_grid_scroll_panel' }, + "subscriptions_content_section/left_pad": { type: T.PANEL, children: string }, + "subscriptions_content_section/search_and_offers_grid_scroll_panel": { type: T.PANEL, children: string }, + "right_pane_factory": { type: T.STACK_PANEL, children: string }, + "content_area": { type: T.PANEL, children: 'control' }, + "content_area/control": { type: T.STACK_PANEL, children: 'right_pane_factory' }, + "content_area/control/right_pane_factory": { type: T.STACK_PANEL, children: string }, + "main_panel": { type: T.STACK_PANEL, children: 'inventory_left_panel' | 'divider_panel' | 'inventory_right_panel' }, + "main_panel/inventory_left_panel": { type: T.PANEL, children: 'inventory_left_image' | 'left_scrolling_panel' }, + "main_panel/inventory_left_panel/inventory_left_image": { type: T.IMAGE, children: string }, + "main_panel/inventory_left_panel/left_scrolling_panel": { type: T.PANEL, children: string }, + "main_panel/divider_panel": { type: T.PANEL, children: 'main_divider' }, + "main_panel/divider_panel/main_divider": { type: T.IMAGE, children: string }, + "main_panel/inventory_right_panel": { type: T.PANEL, children: 'right_panel_background_image' | 'content_right_panel' }, + "main_panel/inventory_right_panel/right_panel_background_image": { type: T.IMAGE, children: string }, + "main_panel/inventory_right_panel/content_right_panel": { type: T.PANEL, children: string }, + "store_inventory_screen_main_panel": { type: T.PANEL, children: 'main_content_view' | 'sort_and_filter_modals' }, + "store_inventory_screen_main_panel/main_content_view": { type: T.INPUT_PANEL, children: string }, + "store_inventory_screen_main_panel/sort_and_filter_modals": { type: T.PANEL, children: string }, + "store_search_screen_content": { type: T.PANEL, children: 'main_panel' | 'popup_dialog_factory' }, + "store_search_screen_content/main_panel": { type: T.STACK_PANEL, children: string }, + "store_search_screen_content/popup_dialog_factory": { type: T.FACTORY, children: string }, + "store_inventory_screen": { type: T.SCREEN, children: string }, + "signin_text_section_body": { type: T.STACK_PANEL, children: string }, + "signin_text": { type: T.LABEL, children: string }, + "signin_text_02": { type: T.LABEL, children: string }, + "signin_text_section": { type: T.STACK_PANEL, children: 'signin_text' | 'line_1_padding_line_2' | 'signin_text_02' }, + "signin_text_section/signin_text": { type: T.LABEL, children: string }, + "signin_text_section/line_1_padding_line_2": { type: T.PANEL, children: string }, + "signin_text_section/signin_text_02": { type: T.LABEL, children: string }, + "sign_in_panel_text_body": { type: T.BUTTON, children: string }, } 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": { type: T.IMAGE, children: string }, + "main_panel": { type: T.INPUT_PANEL, children: 'search_object' | 'progress_loading' }, + "main_panel/search_object": { type: T.PANEL, children: string }, + "main_panel/progress_loading": { type: T.PANEL, children: string }, + "scrolling_content_stack": { type: T.STACK_PANEL, children: 'search_panel' }, + "scrolling_content_stack/search_panel": { type: T.UNKNOWN, children: string }, + "store_offer_grid": { type: T.GRID, children: string }, + "persona_offer_grid": { type: T.GRID, children: string }, + "vertical_store_offer_grid": { type: T.GRID, children: string }, + "store_offer_title": { type: T.LABEL, children: string }, + "store_offer_grid_item": { type: T.PANEL, children: 'frame' }, + "store_offer_grid_item/frame": { type: T.IMAGE, children: 'key_art' | 'progress' | 'title_label_panel' | 'durable_offer_info_panel' | 'offer_button' }, + "store_offer_grid_item/frame/key_art": { type: T.IMAGE, children: 'key_art_frame' | 'csb_expiration_banner' }, + "store_offer_grid_item/frame/key_art/key_art_frame": { type: T.IMAGE, children: string }, + "store_offer_grid_item/frame/key_art/csb_expiration_banner": { type: T.PANEL, children: string }, + "store_offer_grid_item/frame/progress": { type: T.PANEL, children: string }, + "store_offer_grid_item/frame/title_label_panel": { type: T.PANEL, children: 'durable_offer_title_label' }, + "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label": { type: T.STACK_PANEL, children: 'title' | 'creator_label' }, + "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label/title": { type: T.LABEL, children: string }, + "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label/creator_label": { type: T.STACK_PANEL, children: string }, + "store_offer_grid_item/frame/durable_offer_info_panel": { type: T.STACK_PANEL, children: 'offer_status_panel' }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel": { type: T.STACK_PANEL, children: 'subscription_panel' | 'rtx_label' | 'sales_markdown_percentage_panel' | 'pack_icon_panel' | 'fill_markdown_panel_left' | 'markdown_panel' | 'padding_markdown_panel_right' | 'offer_prompt_panel' | 'padding_6' }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/subscription_panel": { type: T.PANEL, children: string }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rtx_label": { type: T.PANEL, children: string }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel": { type: T.PANEL, children: 'markdown_banner' }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel/markdown_banner": { type: T.STACK_PANEL, children: string }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel": { type: T.PANEL, children: 'pack_icon_stack' }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": { type: T.PANEL, children: string }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/fill_markdown_panel_left": { type: T.PANEL, children: string }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/markdown_panel": { type: T.PANEL, children: string }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_markdown_panel_right": { type: T.PANEL, children: string }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/offer_prompt_panel": { type: T.STACK_PANEL, children: string }, + "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_6": { type: T.PANEL, children: string }, + "store_offer_grid_item/frame/offer_button": { type: T.BUTTON, children: 'hover' | 'pressed' | 'offer_status_icon' }, + "store_offer_grid_item/frame/offer_button/hover": { type: T.PANEL, children: 'key_art_size_panel' }, + "store_offer_grid_item/frame/offer_button/hover/key_art_size_panel": { type: T.PANEL, children: 'key_art_frame' }, + "store_offer_grid_item/frame/offer_button/hover/key_art_size_panel/key_art_frame": { type: T.IMAGE, children: string }, + "store_offer_grid_item/frame/offer_button/pressed": { type: T.PANEL, children: 'key_art_size_panel' }, + "store_offer_grid_item/frame/offer_button/pressed/key_art_size_panel": { type: T.PANEL, children: 'key_art_frame' }, + "store_offer_grid_item/frame/offer_button/pressed/key_art_size_panel/key_art_frame": { type: T.IMAGE, children: string }, + "store_offer_grid_item/frame/offer_button/offer_status_icon": { type: T.PANEL, children: string }, + "store_screen_content": { type: T.PANEL, children: 'main_panel' | 'popup_dialog_factory' }, + "store_screen_content/main_panel": { type: T.STACK_PANEL, children: string }, + "store_screen_content/popup_dialog_factory": { type: T.FACTORY, children: string }, } 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": { type: T.SCREEN, children: string }, + "screen_content": { type: T.PANEL, children: 'title_image' | 'progress_dialog' }, + "screen_content/title_image": { type: T.IMAGE, children: string }, + "screen_content/progress_dialog": { type: T.PANEL, children: string }, + "dialog_content": { type: T.STACK_PANEL, children: 'tooltip_panel' | 'padding' | 'progress_panel' }, + "dialog_content/tooltip_panel": { type: T.PANEL, children: 'tooltip_text' }, + "dialog_content/tooltip_panel/tooltip_text": { type: T.LABEL, children: string }, + "dialog_content/padding": { type: T.PANEL, children: string }, + "dialog_content/progress_panel": { type: T.PANEL, children: 'empty_progress_bar' | 'progress_percent_panel' }, + "dialog_content/progress_panel/empty_progress_bar": { type: T.IMAGE, children: string }, + "dialog_content/progress_panel/progress_percent_panel": { type: T.PANEL, children: 'full_progress_bar' | 'progress_bar_nub' }, + "dialog_content/progress_panel/progress_percent_panel/full_progress_bar": { type: T.IMAGE, children: string }, + "dialog_content/progress_panel/progress_percent_panel/progress_bar_nub": { type: T.IMAGE, children: string }, + "screen_background": { type: T.IMAGE, children: string }, } 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": { type: T.STACK_PANEL, children: string }, + "promo_banner_button_content": { type: T.PANEL, children: 'promo_banner_button' | 'progress_loading_spinner' }, + "promo_banner_button_content/promo_banner_button": { type: T.LABEL, children: string }, + "promo_banner_button_content/progress_loading_spinner": { type: T.IMAGE, children: string }, + "promo_banner_image": { type: T.IMAGE, children: string }, + "promo_banner_panel_content": { type: T.PANEL, children: 'banner_image' | 'banner_text_panel' | 'button_stack_panel' }, + "promo_banner_panel_content/banner_image": { type: T.IMAGE, children: string }, + "promo_banner_panel_content/banner_text_panel": { type: T.STACK_PANEL, children: 'padding_0' | 'title_stack_panel' | 'description' }, + "promo_banner_panel_content/banner_text_panel/padding_0": { type: T.PANEL, children: string }, + "promo_banner_panel_content/banner_text_panel/title_stack_panel": { type: T.STACK_PANEL, children: 'banner_title' }, + "promo_banner_panel_content/banner_text_panel/title_stack_panel/banner_title": { type: T.STACK_PANEL, children: string }, + "promo_banner_panel_content/banner_text_panel/description": { type: T.STACK_PANEL, children: string }, + "promo_banner_panel_content/button_stack_panel": { type: T.STACK_PANEL, children: 'left_offset' | 'banner_button' | 'right_offset' }, + "promo_banner_panel_content/button_stack_panel/left_offset": { type: T.PANEL, children: string }, + "promo_banner_panel_content/button_stack_panel/banner_button": { type: T.STACK_PANEL, children: string }, + "promo_banner_panel_content/button_stack_panel/right_offset": { type: T.PANEL, children: string }, + "promo_banner_holiday_panel": { type: T.PANEL, children: 'banner_full_button' }, + "promo_banner_holiday_panel/banner_full_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "promo_banner_holiday_panel/banner_full_button/default": { type: T.PANEL, children: string }, + "promo_banner_holiday_panel/banner_full_button/hover": { type: T.PANEL, children: string }, + "promo_banner_holiday_panel/banner_full_button/pressed": { type: T.PANEL, children: string }, + "image_message_panel": { type: T.STACK_PANEL, children: 'image_message_row_content' | 'padding_0' }, + "image_message_panel/image_message_row_content": { type: T.PANEL, children: string }, + "image_message_panel/padding_0": { type: T.PANEL, children: string }, + "image_message_row_content": { type: T.PANEL, children: 'gray_background' | 'row_button' }, + "image_message_row_content/gray_background": { type: T.IMAGE, children: 'message_text' | 'row_image' }, + "image_message_row_content/gray_background/message_text": { type: T.LABEL, children: string }, + "image_message_row_content/gray_background/row_image": { type: T.IMAGE, children: string }, + "image_message_row_content/row_button": { type: T.BUTTON, children: string }, + "promo_image_panel": { type: T.IMAGE, children: 'button_image_panel' | 'button_animated_panel' }, + "promo_image_panel/button_image_panel": { type: T.PANEL, children: string }, + "promo_image_panel/button_animated_panel": { type: T.PANEL, children: string }, + "promo_button_image_panel": { type: T.PANEL, children: 'button_image' }, + "promo_button_image_panel/button_image": { type: T.UNKNOWN, children: string }, + "promo_button_image": { type: T.IMAGE, children: string }, + "promo_button_animation": { type: T.IMAGE, children: string }, + "banner_button": { type: T.PANEL, children: string }, + "sdl_text_aligned_panel": { type: T.STACK_PANEL, children: string }, + "sdl_text_minecraftTen_aligned_panel": { type: T.STACK_PANEL, children: string }, + "sdl_content_aligned_panel": { type: T.STACK_PANEL, children: 'left__padding_panel' | 'control' | 'right_padding_panel' }, + "sdl_content_aligned_panel/left__padding_panel": { type: T.PANEL, children: string }, + "sdl_content_aligned_panel/control": { type: T.UNKNOWN, children: string }, + "sdl_content_aligned_panel/right_padding_panel": { type: T.PANEL, children: string }, + "sdl_aligned_text": { type: T.LABEL, children: string }, + "sdl_aligned_minecraftTen_text": { type: T.LABEL, children: string }, + "colored_direction_button_panel": { type: T.PANEL, children: 'chevron_image' }, + "colored_direction_button_panel/chevron_image": { type: T.IMAGE, children: string }, + "left_corner_art": { type: T.IMAGE, children: string }, + "right_corner_art": { type: T.IMAGE, children: string }, + "promo_landing_panel": { type: T.INPUT_PANEL, children: 'promo_landing_panel_content' | 'left_corner_art' | 'right_corner_art' }, + "promo_landing_panel/promo_landing_panel_content": { type: T.STACK_PANEL, children: 'promo_top' | 'pad_0' | 'promo_bottom_panel' | 'pad_1' }, + "promo_landing_panel/promo_landing_panel_content/promo_top": { type: T.PANEL, children: string }, + "promo_landing_panel/promo_landing_panel_content/pad_0": { type: T.PANEL, children: string }, + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel": { type: T.PANEL, children: 'promo_bottom' }, + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom": { type: T.IMAGE, children: 'promotion_period_carousel_panel' }, + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel": { type: T.INPUT_PANEL, children: 'left_button_panel' | 'offer_grid' | 'right_button_panel' }, + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/left_button_panel": { type: T.PANEL, children: 'left_button' }, + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/left_button_panel/left_button": { type: T.BUTTON, children: string }, + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/offer_grid": { type: T.STACK_PANEL, children: string }, + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/right_button_panel": { type: T.PANEL, children: 'right_button' }, + "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/right_button_panel/right_button": { type: T.BUTTON, children: string }, + "promo_landing_panel/promo_landing_panel_content/pad_1": { type: T.PANEL, children: string }, + "promo_landing_panel/left_corner_art": { type: T.IMAGE, children: string }, + "promo_landing_panel/right_corner_art": { type: T.IMAGE, children: string }, + "promotion_screen_top_section": { type: T.PANEL, children: 'main_panel' }, + "promotion_screen_top_section/main_panel": { type: T.IMAGE, children: string }, + "promotion_top_main_panel": { type: T.IMAGE, children: 'promotion_top_main_stack' }, + "promotion_top_main_panel/promotion_top_main_stack": { type: T.STACK_PANEL, children: 'main_panel_title' | 'promo_single_top' | 'promo_multi_item' }, + "promotion_top_main_panel/promotion_top_main_stack/main_panel_title": { type: T.STACK_PANEL, children: string }, + "promotion_top_main_panel/promotion_top_main_stack/promo_single_top": { type: T.INPUT_PANEL, children: 'single_item_view' }, + "promotion_top_main_panel/promotion_top_main_stack/promo_single_top/single_item_view": { type: T.STACK_PANEL, children: string }, + "promotion_top_main_panel/promotion_top_main_stack/promo_multi_item": { type: T.PANEL, children: string }, + "main_panel_title": { type: T.STACK_PANEL, children: 'padding_0' | 'header_stack' | 'padding_1' | 'divdier_centering_panel' | 'padding_2' }, + "main_panel_title/padding_0": { type: T.PANEL, children: string }, + "main_panel_title/header_stack": { type: T.STACK_PANEL, children: 'padding_0' | 'back_button_centering_panel' | 'padding_1' | 'header_panel' | 'padding_2' | 'claim_all_button_panel' }, + "main_panel_title/header_stack/padding_0": { type: T.PANEL, children: string }, + "main_panel_title/header_stack/back_button_centering_panel": { type: T.PANEL, children: 'button' }, + "main_panel_title/header_stack/back_button_centering_panel/button": { type: T.BUTTON, children: string }, + "main_panel_title/header_stack/padding_1": { type: T.PANEL, children: string }, + "main_panel_title/header_stack/header_panel": { type: T.PANEL, children: 'title_and_description' }, + "main_panel_title/header_stack/header_panel/title_and_description": { type: T.LABEL, children: string }, + "main_panel_title/header_stack/padding_2": { type: T.PANEL, children: string }, + "main_panel_title/header_stack/claim_all_button_panel": { type: T.PANEL, children: 'claim_all_button' }, + "main_panel_title/header_stack/claim_all_button_panel/claim_all_button": { type: T.BUTTON, children: string }, + "main_panel_title/padding_1": { type: T.PANEL, children: string }, + "main_panel_title/divdier_centering_panel": { type: T.PANEL, children: 'divider' }, + "main_panel_title/divdier_centering_panel/divider": { type: T.IMAGE, children: string }, + "main_panel_title/padding_2": { type: T.PANEL, children: string }, + "promo_multi_item_grid": { type: T.GRID, children: string }, + "promo_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "promo_button/default": { type: T.PANEL, children: 'key_art_size_panel' }, + "promo_button/default/key_art_size_panel": { type: T.PANEL, children: 'key_art_frame' | 'button_frame' }, + "promo_button/default/key_art_size_panel/key_art_frame": { type: T.IMAGE, children: 'sizing_panel' | 'platform_restricted_warning_image' }, + "promo_button/default/key_art_size_panel/key_art_frame/sizing_panel": { type: T.PANEL, children: string }, + "promo_button/default/key_art_size_panel/key_art_frame/platform_restricted_warning_image": { type: T.IMAGE, children: string }, + "promo_button/default/key_art_size_panel/button_frame": { type: T.IMAGE, children: string }, + "promo_button/hover": { type: T.PANEL, children: 'key_art_size_panel' }, + "promo_button/hover/key_art_size_panel": { type: T.PANEL, children: 'key_art_frame' | 'button_frame' }, + "promo_button/hover/key_art_size_panel/key_art_frame": { type: T.IMAGE, children: 'sizing_panel' }, + "promo_button/hover/key_art_size_panel/key_art_frame/sizing_panel": { type: T.PANEL, children: string }, + "promo_button/hover/key_art_size_panel/button_frame": { type: T.IMAGE, children: string }, + "promo_button/pressed": { type: T.PANEL, children: 'key_art_frame' | 'button_frame' }, + "promo_button/pressed/key_art_frame": { type: T.IMAGE, children: 'sizing_panel' }, + "promo_button/pressed/key_art_frame/sizing_panel": { type: T.PANEL, children: string }, + "promo_button/pressed/button_frame": { type: T.IMAGE, children: string }, + "promo_grid_item": { type: T.PANEL, children: 'background_image' | 'promo_button' | 'platform_restricted_error_multi_item' }, + "promo_grid_item/background_image": { type: T.IMAGE, children: 'promo_content' }, + "promo_grid_item/background_image/promo_content": { type: T.STACK_PANEL, children: string }, + "promo_grid_item/promo_button": { type: T.BUTTON, children: string }, + "promo_grid_item/platform_restricted_error_multi_item": { type: T.PANEL, children: string }, + "platform_restricted_error": { type: T.PANEL, children: 'platform_restricted_error_button' }, + "platform_restricted_error/platform_restricted_error_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' | 'white_overlay_to_gray_out' }, + "platform_restricted_error/platform_restricted_error_button/default": { type: T.PANEL, children: string }, + "platform_restricted_error/platform_restricted_error_button/hover": { type: T.IMAGE, children: string }, + "platform_restricted_error/platform_restricted_error_button/pressed": { type: T.PANEL, children: string }, + "platform_restricted_error/platform_restricted_error_button/white_overlay_to_gray_out": { type: T.IMAGE, children: string }, + "promo_grid_item_content": { type: T.STACK_PANEL, children: 'thumbnail_image' | 'persona_key_art_frame' | 'padding_0' | 'title_tooltip' }, + "promo_grid_item_content/thumbnail_image": { type: T.IMAGE, children: string }, + "promo_grid_item_content/persona_key_art_frame": { type: T.PANEL, children: 'persona_image_panel' | 'background' | 'rarity_bar_panel' }, + "promo_grid_item_content/persona_key_art_frame/persona_image_panel": { type: T.IMAGE, children: string }, + "promo_grid_item_content/persona_key_art_frame/background": { type: T.IMAGE, children: string }, + "promo_grid_item_content/persona_key_art_frame/rarity_bar_panel": { type: T.IMAGE, children: string }, + "promo_grid_item_content/padding_0": { type: T.PANEL, children: string }, + "promo_grid_item_content/title_tooltip": { type: T.STACK_PANEL, children: 'promo_title' | 'tooltip' }, + "promo_grid_item_content/title_tooltip/promo_title": { type: T.LABEL, children: string }, + "promo_grid_item_content/title_tooltip/tooltip": { type: T.STACK_PANEL, children: string }, + "promotion_period_grid_panel": { type: T.PANEL, children: 'promotion_offer_grid_image' }, + "promotion_period_grid_panel/promotion_offer_grid_image": { type: T.PANEL, children: 'item_selected_bg' | 'promotion_offer_grid_stack_panel' }, + "promotion_period_grid_panel/promotion_offer_grid_image/item_selected_bg": { type: T.IMAGE, children: string }, + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel": { type: T.STACK_PANEL, children: 'day_label_panel' | 'pad' | 'image_centering_panel' }, + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/day_label_panel": { type: T.PANEL, children: 'day_label' }, + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/day_label_panel/day_label": { type: T.LABEL, children: string }, + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/pad": { type: T.PANEL, children: string }, + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel": { type: T.PANEL, children: 'image_panel' }, + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel/image_panel": { type: T.PANEL, children: 'item_button' }, + "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel/image_panel/item_button": { type: T.PANEL, children: string }, + "promotion_period_offer_panel": { type: T.STACK_PANEL, children: 'period_1' | 'padding_0' | 'period_2' | 'padding_1' | 'period_3' | 'padding_2' | 'period_4' | 'padding_3' | 'period_5' | 'padding_4' | 'period_6' | 'padding_5' | 'period_7' }, + "promotion_period_offer_panel/period_1": { type: T.PANEL, children: string }, + "promotion_period_offer_panel/padding_0": { type: T.PANEL, children: string }, + "promotion_period_offer_panel/period_2": { type: T.PANEL, children: string }, + "promotion_period_offer_panel/padding_1": { type: T.PANEL, children: string }, + "promotion_period_offer_panel/period_3": { type: T.PANEL, children: string }, + "promotion_period_offer_panel/padding_2": { type: T.PANEL, children: string }, + "promotion_period_offer_panel/period_4": { type: T.PANEL, children: string }, + "promotion_period_offer_panel/padding_3": { type: T.PANEL, children: string }, + "promotion_period_offer_panel/period_5": { type: T.PANEL, children: string }, + "promotion_period_offer_panel/padding_4": { type: T.PANEL, children: string }, + "promotion_period_offer_panel/period_6": { type: T.PANEL, children: string }, + "promotion_period_offer_panel/padding_5": { type: T.PANEL, children: string }, + "promotion_period_offer_panel/period_7": { type: T.PANEL, children: string }, + "toggle_button_control": { type: T.PANEL, children: 'green_check' | 'key_art_image_panel' }, + "toggle_button_control/green_check": { type: T.IMAGE, children: string }, + "toggle_button_control/key_art_image_panel": { type: T.PANEL, children: 'image_loading_panel' | 'key_art_image' }, + "toggle_button_control/key_art_image_panel/image_loading_panel": { type: T.PANEL, children: string }, + "toggle_button_control/key_art_image_panel/key_art_image": { type: T.IMAGE, children: string }, + "checked_border": { type: T.PANEL, children: string }, + "promotion_period_grid_item": { type: T.PANEL, children: 'frame' }, + "promotion_period_grid_item/frame": { type: T.PANEL, children: 'offer_button' }, + "promotion_period_grid_item/frame/offer_button": { type: T.PANEL, children: 'offer_toggle_button' }, + "promotion_period_grid_item/frame/offer_button/offer_toggle_button": { type: T.PANEL, children: string }, + "vertical_padding_2px": { type: T.PANEL, children: string }, + "timer_icon_tooltip_panel": { type: T.PANEL, children: 'limited_status_image' }, + "timer_icon_tooltip_panel/limited_status_image": { type: T.IMAGE, children: string }, + "timer_tooltip_panel_right_extending": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "timer_tooltip_panel_right_extending/default": { type: T.PANEL, children: string }, + "timer_tooltip_panel_right_extending/hover": { type: T.IMAGE, children: string }, + "timer_tooltip_panel_right_extending/pressed": { type: T.IMAGE, children: string }, + "timer_tooltip_panel_left_extending": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "timer_tooltip_panel_left_extending/default": { type: T.PANEL, children: string }, + "timer_tooltip_panel_left_extending/hover": { type: T.IMAGE, children: string }, + "timer_tooltip_panel_left_extending/pressed": { type: T.IMAGE, children: string }, + "no_timer_tooltip_panel": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "no_timer_tooltip_panel/default": { type: T.PANEL, children: string }, + "no_timer_tooltip_panel/hover": { type: T.PANEL, children: string }, + "no_timer_tooltip_panel/pressed": { type: T.PANEL, children: string }, + "promo_timer_panel": { type: T.STACK_PANEL, children: 'timer_icon_and_tooltip_panel' | 'padding' | 'timer_text' }, + "promo_timer_panel/timer_icon_and_tooltip_panel": { type: T.PANEL, children: 'tooltip_button_right_extending' | 'tooltip_button_left_extending' | 'notooltip_button' | 'timer_icon' }, + "promo_timer_panel/timer_icon_and_tooltip_panel/tooltip_button_right_extending": { type: T.BUTTON, children: string }, + "promo_timer_panel/timer_icon_and_tooltip_panel/tooltip_button_left_extending": { type: T.BUTTON, children: string }, + "promo_timer_panel/timer_icon_and_tooltip_panel/notooltip_button": { type: T.BUTTON, children: string }, + "promo_timer_panel/timer_icon_and_tooltip_panel/timer_icon": { type: T.IMAGE, children: string }, + "promo_timer_panel/padding": { type: T.PANEL, children: string }, + "promo_timer_panel/timer_text": { type: T.LABEL, children: string }, + "offer_title_panel": { type: T.PANEL, children: 'offer_title_label' }, + "offer_title_panel/offer_title_label": { type: T.LABEL, children: string }, + "title_and_author_panel": { type: T.STACK_PANEL, children: 'author_button_panel' }, + "title_and_author_panel/author_button_panel": { type: T.PANEL, children: 'summary_author_button' }, + "title_and_author_panel/author_button_panel/summary_author_button": { type: T.BUTTON, children: string }, + "glyph_panel": { type: T.PANEL, children: 'item_glyph_count_panel' }, + "glyph_panel/item_glyph_count_panel": { type: T.STACK_PANEL, children: 'glyph_icon_panel' | 'center_item_glyph_padding' | 'item_glyph_count_panel_label' | 'item_glyph_panel_padding' }, + "glyph_panel/item_glyph_count_panel/glyph_icon_panel": { type: T.PANEL, children: 'glyph_icon' }, + "glyph_panel/item_glyph_count_panel/glyph_icon_panel/glyph_icon": { type: T.IMAGE, children: string }, + "glyph_panel/item_glyph_count_panel/center_item_glyph_padding": { type: T.PANEL, children: string }, + "glyph_panel/item_glyph_count_panel/item_glyph_count_panel_label": { type: T.LABEL, children: string }, + "glyph_panel/item_glyph_count_panel/item_glyph_panel_padding": { type: T.PANEL, children: string }, + "vertical_glyph_section_content": { type: T.STACK_PANEL, children: 'glyph_content' | 'bottom_glyph_content_padding' }, + "vertical_glyph_section_content/glyph_content": { type: T.PANEL, children: string }, + "vertical_glyph_section_content/bottom_glyph_content_padding": { type: T.PANEL, children: string }, + "glyph_section_panel": { type: T.PANEL, children: 'glyphs' }, + "glyph_section_panel/glyphs": { type: T.STACK_PANEL, children: 'skin_glyph_section' | 'world_glyph_section' | 'resource_pack_glyph_section' }, + "glyph_section_panel/glyphs/skin_glyph_section": { type: T.UNKNOWN, children: string }, + "glyph_section_panel/glyphs/world_glyph_section": { type: T.UNKNOWN, children: string }, + "glyph_section_panel/glyphs/resource_pack_glyph_section": { type: T.UNKNOWN, children: string }, + "vertical_glyph_section_panel": { type: T.PANEL, children: string }, + "image_glyphs_panel": { type: T.STACK_PANEL, children: 'world_panel' | 'persona_panel' | 'divider' | 'info' }, + "image_glyphs_panel/world_panel": { type: T.PANEL, children: 'border' | 'world_key_image' }, + "image_glyphs_panel/world_panel/border": { type: T.IMAGE, children: string }, + "image_glyphs_panel/world_panel/world_key_image": { type: T.IMAGE, children: string }, + "image_glyphs_panel/persona_panel": { type: T.PANEL, children: 'border' | 'persona_image' | 'background' | 'rarity_bar_panel' }, + "image_glyphs_panel/persona_panel/border": { type: T.IMAGE, children: string }, + "image_glyphs_panel/persona_panel/persona_image": { type: T.IMAGE, children: string }, + "image_glyphs_panel/persona_panel/background": { type: T.IMAGE, children: string }, + "image_glyphs_panel/persona_panel/rarity_bar_panel": { type: T.IMAGE, children: string }, + "image_glyphs_panel/divider": { type: T.PANEL, children: string }, + "image_glyphs_panel/info": { type: T.STACK_PANEL, children: 'summary_title_and_author_panel' | 'glyph_section' }, + "image_glyphs_panel/info/summary_title_and_author_panel": { type: T.STACK_PANEL, children: string }, + "image_glyphs_panel/info/glyph_section": { type: T.PANEL, children: 'glyph_section_panel' }, + "image_glyphs_panel/info/glyph_section/glyph_section_panel": { type: T.PANEL, children: string }, + "promo_lower_button_content": { type: T.PANEL, children: 'promo_banner_button' | 'progress_loading_spinner' }, + "promo_lower_button_content/promo_banner_button": { type: T.LABEL, children: string }, + "promo_lower_button_content/progress_loading_spinner": { type: T.IMAGE, children: string }, + "free_discount_label": { type: T.LABEL, children: string }, + "promo_upper_button_content": { type: T.PANEL, children: 'markdown' | 'promo_item_action_text_panel' | 'download_progress_bar' }, + "promo_upper_button_content/markdown": { type: T.STACK_PANEL, children: 'sales_banner_offset_panel' | 'price_markdown_panel' }, + "promo_upper_button_content/markdown/sales_banner_offset_panel": { type: T.PANEL, children: 'sales_banner_panel' }, + "promo_upper_button_content/markdown/sales_banner_offset_panel/sales_banner_panel": { type: T.PANEL, children: 'markdown_banner' }, + "promo_upper_button_content/markdown/sales_banner_offset_panel/sales_banner_panel/markdown_banner": { type: T.STACK_PANEL, children: string }, + "promo_upper_button_content/markdown/price_markdown_panel": { type: T.PANEL, children: 'offer_price' }, + "promo_upper_button_content/markdown/price_markdown_panel/offer_price": { type: T.LABEL, children: 'text_strike_through' }, + "promo_upper_button_content/markdown/price_markdown_panel/offer_price/text_strike_through": { type: T.IMAGE, children: string }, + "promo_upper_button_content/promo_item_action_text_panel": { type: T.STACK_PANEL, children: 'warning_image_panel' | 'promo_item_action_text' }, + "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel": { type: T.PANEL, children: 'platform_restricted_warning_image' | 'padding' }, + "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel/platform_restricted_warning_image": { type: T.IMAGE, children: string }, + "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel/padding": { type: T.PANEL, children: string }, + "promo_upper_button_content/promo_item_action_text_panel/promo_item_action_text": { type: T.LABEL, children: string }, + "promo_upper_button_content/download_progress_bar": { type: T.PANEL, children: string }, + "description_section_panel": { type: T.PANEL, children: 'contents_description' }, + "description_section_panel/contents_description": { type: T.LABEL, children: string }, + "offset_title_offer": { type: T.STACK_PANEL, children: 'pad_0' | 'title_panel' }, + "offset_title_offer/pad_0": { type: T.PANEL, children: string }, + "offset_title_offer/title_panel": { type: T.PANEL, children: string }, + "offset_promo_timer": { type: T.STACK_PANEL, children: 'pad_0' | 'promo_timer' }, + "offset_promo_timer/pad_0": { type: T.PANEL, children: string }, + "offset_promo_timer/promo_timer": { type: T.STACK_PANEL, children: string }, + "offset_image_glyphs_panel": { type: T.STACK_PANEL, children: 'pad_0' | 'smaller_panel' }, + "offset_image_glyphs_panel/pad_0": { type: T.PANEL, children: string }, + "offset_image_glyphs_panel/smaller_panel": { type: T.STACK_PANEL, children: 'details' | 'description' }, + "offset_image_glyphs_panel/smaller_panel/details": { type: T.STACK_PANEL, children: string }, + "offset_image_glyphs_panel/smaller_panel/description": { type: T.PANEL, children: string }, + "promo_pack_detail_panel": { type: T.STACK_PANEL, children: 'offset_title_panel' | 'offsetted_promo_timer' | 'pad_0' | 'offsetted_details' | 'pad_1' }, + "promo_pack_detail_panel/offset_title_panel": { type: T.STACK_PANEL, children: string }, + "promo_pack_detail_panel/offsetted_promo_timer": { type: T.STACK_PANEL, children: string }, + "promo_pack_detail_panel/pad_0": { type: T.PANEL, children: string }, + "promo_pack_detail_panel/offsetted_details": { type: T.STACK_PANEL, children: string }, + "promo_pack_detail_panel/pad_1": { type: T.PANEL, children: string }, + "promo_left_inner_top_scrolling_content": { type: T.INPUT_PANEL, children: 'details' }, + "promo_left_inner_top_scrolling_content/details": { type: T.STACK_PANEL, children: string }, + "promo_left_inner_top": { type: T.STACK_PANEL, children: 'top' | 'padding2' }, + "promo_left_inner_top/top": { type: T.PANEL, children: string }, + "promo_left_inner_top/padding2": { type: T.PANEL, children: string }, + "promo_left_inner_bottom": { type: T.STACK_PANEL, children: 'banner_button_top_panel' | 'banner_button_bottom' }, + "promo_left_inner_bottom/banner_button_top_panel": { type: T.PANEL, children: 'banner_button_top' | 'platform_restricted_error_single_item' }, + "promo_left_inner_bottom/banner_button_top_panel/banner_button_top": { type: T.BUTTON, children: string }, + "promo_left_inner_bottom/banner_button_top_panel/platform_restricted_error_single_item": { type: T.PANEL, children: string }, + "promo_left_inner_bottom/banner_button_bottom": { type: T.BUTTON, children: string }, + "promo_left_panel": { type: T.STACK_PANEL, children: 'top' | 'bottom_buttons_padded' | 'padding' }, + "promo_left_panel/top": { type: T.STACK_PANEL, children: string }, + "promo_left_panel/bottom_buttons_padded": { type: T.STACK_PANEL, children: 'pad_0' | 'bottom' }, + "promo_left_panel/bottom_buttons_padded/pad_0": { type: T.PANEL, children: string }, + "promo_left_panel/bottom_buttons_padded/bottom": { type: T.STACK_PANEL, children: string }, + "promo_left_panel/padding": { type: T.PANEL, children: string }, + "promo_world_image_panel": { type: T.PANEL, children: 'image' }, + "promo_world_image_panel/image": { type: T.PANEL, children: 'key_image' }, + "promo_world_image_panel/image/key_image": { type: T.IMAGE, children: 'border' }, + "promo_world_image_panel/image/key_image/border": { type: T.IMAGE, children: string }, + "promo_grey_bar_panel": { type: T.STACK_PANEL, children: 'grey_bar' | 'green_bar' | 'padding' }, + "promo_grey_bar_panel/grey_bar": { type: T.IMAGE, children: string }, + "promo_grey_bar_panel/green_bar": { type: T.IMAGE, children: string }, + "promo_grey_bar_panel/padding": { type: T.PANEL, children: string }, + "promo_world_button_panel": { type: T.STACK_PANEL, children: 'pan_left_button' | 'navigation_bar' | 'pan_right_button' }, + "promo_world_button_panel/pan_left_button": { type: T.BUTTON, children: string }, + "promo_world_button_panel/navigation_bar": { type: T.PANEL, children: 'grey_bar' }, + "promo_world_button_panel/navigation_bar/grey_bar": { type: T.IMAGE, children: 'grey_bar_factory_panel' }, + "promo_world_button_panel/navigation_bar/grey_bar/grey_bar_factory_panel": { type: T.STACK_PANEL, children: string }, + "promo_world_button_panel/pan_right_button": { type: T.BUTTON, children: string }, + "promo_world_panel": { type: T.STACK_PANEL, children: 'image' | 'padding1' | 'buttons' | 'padding_3' }, + "promo_world_panel/image": { type: T.PANEL, children: string }, + "promo_world_panel/padding1": { type: T.PANEL, children: string }, + "promo_world_panel/buttons": { type: T.STACK_PANEL, children: string }, + "promo_world_panel/padding_3": { type: T.PANEL, children: string }, + "promo_skin_panel": { type: T.PANEL, children: 'size_control' }, + "promo_skin_panel/size_control": { type: T.PANEL, children: 'background' | 'skin_button' }, + "promo_skin_panel/size_control/background": { type: T.IMAGE, children: string }, + "promo_skin_panel/size_control/skin_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' | 'content_panel' }, + "promo_skin_panel/size_control/skin_button/default": { type: T.PANEL, children: string }, + "promo_skin_panel/size_control/skin_button/hover": { type: T.IMAGE, children: string }, + "promo_skin_panel/size_control/skin_button/pressed": { type: T.PANEL, children: string }, + "promo_skin_panel/size_control/skin_button/content_panel": { type: T.PANEL, children: 'paper_doll' }, + "promo_skin_panel/size_control/skin_button/content_panel/paper_doll": { type: T.CUSTOM, children: string }, + "promo_skin_grid_panel": { type: T.PANEL, children: 'promo_skin_pack_grid' }, + "promo_skin_grid_panel/promo_skin_pack_grid": { type: T.GRID, children: string }, + "promo_right_panel_scroll_content": { type: T.STACK_PANEL, children: 'world_screenshots_panel' | 'skin_image_panel' | 'persona_preview' }, + "promo_right_panel_scroll_content/world_screenshots_panel": { type: T.PANEL, children: 'world_panel' }, + "promo_right_panel_scroll_content/world_screenshots_panel/world_panel": { type: T.STACK_PANEL, children: string }, + "promo_right_panel_scroll_content/skin_image_panel": { type: T.PANEL, children: 'skin_panel' }, + "promo_right_panel_scroll_content/skin_image_panel/skin_panel": { type: T.UNKNOWN, children: string }, + "promo_right_panel_scroll_content/persona_preview": { type: T.INPUT_PANEL, children: string }, + "skin_scroll_panel": { type: T.UNKNOWN, children: string }, + "persona_classic_skin_grid_panel": { type: T.PANEL, children: 'persona_skin_pack_category_grid' }, + "persona_classic_skin_grid_panel/persona_skin_pack_category_grid": { type: T.GRID, children: string }, + "promo_right_panel": { type: T.PANEL, children: string }, + "promo_detail_panel": { type: T.STACK_PANEL, children: 'detail' | 'center_spacing' | 'right' }, + "promo_detail_panel/detail": { type: T.STACK_PANEL, children: string }, + "promo_detail_panel/center_spacing": { type: T.PANEL, children: string }, + "promo_detail_panel/right": { type: T.PANEL, children: string }, + "promotion_skin_viewer_panel": { type: T.INPUT_PANEL, children: 'popup_dialog_factory' | 'character_loading_panel' | 'skin_model_panel' }, + "promotion_skin_viewer_panel/popup_dialog_factory": { type: T.FACTORY, children: string }, + "promotion_skin_viewer_panel/character_loading_panel": { type: T.IMAGE, children: string }, + "promotion_skin_viewer_panel/skin_model_panel": { type: T.PANEL, children: 'skin_model' | 'arrow_panel' }, + "promotion_skin_viewer_panel/skin_model_panel/skin_model": { type: T.CUSTOM, children: string }, + "promotion_skin_viewer_panel/skin_model_panel/arrow_panel": { type: T.PANEL, children: 'rotate_arrows' }, + "promotion_skin_viewer_panel/skin_model_panel/arrow_panel/rotate_arrows": { type: T.IMAGE, children: string }, + "promo_popup_toast": { type: T.INPUT_PANEL, children: string }, } 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": { type: T.PANEL, children: 'label_panel' }, + "banner_header/label_panel": { type: T.PANEL, children: 'on_sale_banner' | 'time_remaining_label' }, + "banner_header/label_panel/on_sale_banner": { type: T.IMAGE, children: 'padding_panel' }, + "banner_header/label_panel/on_sale_banner/padding_panel": { type: T.PANEL, children: 'sales_row_header_label' | 'triangle' }, + "banner_header/label_panel/on_sale_banner/padding_panel/sales_row_header_label": { type: T.LABEL, children: string }, + "banner_header/label_panel/on_sale_banner/padding_panel/triangle": { type: T.IMAGE, children: string }, + "banner_header/label_panel/time_remaining_label": { type: T.LABEL, children: string }, + "sales_offer_content": { type: T.STACK_PANEL, children: 'top_padding' | 'sales_panel' }, + "sales_offer_content/top_padding": { type: T.PANEL, children: string }, + "sales_offer_content/sales_panel": { type: T.STACK_PANEL, children: 'sales_banner_panel' | 'top_sales_grid_padding' | 'sales_grid_panel' }, + "sales_offer_content/sales_panel/sales_banner_panel": { type: T.PANEL, children: string }, + "sales_offer_content/sales_panel/top_sales_grid_padding": { type: T.PANEL, children: string }, + "sales_offer_content/sales_panel/sales_grid_panel": { type: T.PANEL, children: 'sales_offer_grid' }, + "sales_offer_content/sales_panel/sales_grid_panel/sales_offer_grid": { type: T.GRID, children: string }, + "all_offer_content": { type: T.PANEL, children: 'store_offer_grid_panel' }, + "all_offer_content/store_offer_grid_panel": { type: T.GRID, children: string }, } 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": { type: T.PANEL, children: string }, + "trending_row_content": { type: T.PANEL, children: 'trending_row_panel' }, + "trending_row_content/trending_row_panel": { type: T.STACK_PANEL, children: 'trending_row_label_panel' | 'mid_padding' | 'trending_offers_grid' | 'bottom_padding' }, + "trending_row_content/trending_row_panel/trending_row_label_panel": { type: T.PANEL, children: 'trending_row_label' }, + "trending_row_content/trending_row_panel/trending_row_label_panel/trending_row_label": { type: T.LABEL, children: string }, + "trending_row_content/trending_row_panel/mid_padding": { type: T.PANEL, children: string }, + "trending_row_content/trending_row_panel/trending_offers_grid": { type: T.GRID, children: string }, + "trending_row_content/trending_row_panel/bottom_padding": { type: T.PANEL, children: string }, + "trending_rows_grid": { type: T.GRID, children: string }, + "search_offer_content": { type: T.PANEL, children: 'trending_grid' | 'item_list_panel' }, + "search_offer_content/trending_grid": { type: T.GRID, children: string }, + "search_offer_content/item_list_panel": { type: T.PANEL, children: 'item_list_grid' }, + "search_offer_content/item_list_panel/item_list_grid": { type: T.GRID, children: string }, + "main_panel": { type: T.INPUT_PANEL, children: 'seach_object' | 'progress_loading' }, + "main_panel/seach_object": { type: T.PANEL, children: string }, + "main_panel/progress_loading": { type: T.PANEL, children: string }, + "store_search_screen_content": { type: T.PANEL, children: 'main_panel' | 'popup_dialog_factory' }, + "store_search_screen_content/main_panel": { type: T.STACK_PANEL, children: string }, + "store_search_screen_content/popup_dialog_factory": { type: T.FACTORY, children: string }, + "store_search_screen": { type: T.SCREEN, children: string }, } 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": { type: T.PANEL, children: 'sort_menu_toggle_panel' }, + "sort_menu_toggle_panel/sort_menu_toggle_panel": { type: T.PANEL, children: 'sort_menu_toggle' }, + "sort_menu_toggle_panel/sort_menu_toggle_panel/sort_menu_toggle": { type: T.PANEL, children: string }, + "sort_menu_first_button_content_panel": { type: T.STACK_PANEL, children: 'left_padding' | 'centered_sort_logo_icon' | 'logo_padding_labels' | 'labels_stack_panel' | 'labels_padding_x_image' | 'x_image_panel' }, + "sort_menu_first_button_content_panel/left_padding": { type: T.PANEL, children: string }, + "sort_menu_first_button_content_panel/centered_sort_logo_icon": { type: T.PANEL, children: 'sort_logo_icon' }, + "sort_menu_first_button_content_panel/centered_sort_logo_icon/sort_logo_icon": { type: T.IMAGE, children: string }, + "sort_menu_first_button_content_panel/logo_padding_labels": { type: T.PANEL, children: string }, + "sort_menu_first_button_content_panel/labels_stack_panel": { type: T.STACK_PANEL, children: 'top_padding' | 'sort_const_word_top' | 'middle_padding' | 'current_sort_value_label_bottom' | 'bottom_padding' }, + "sort_menu_first_button_content_panel/labels_stack_panel/top_padding": { type: T.PANEL, children: string }, + "sort_menu_first_button_content_panel/labels_stack_panel/sort_const_word_top": { type: T.LABEL, children: string }, + "sort_menu_first_button_content_panel/labels_stack_panel/middle_padding": { type: T.PANEL, children: string }, + "sort_menu_first_button_content_panel/labels_stack_panel/current_sort_value_label_bottom": { type: T.LABEL, children: string }, + "sort_menu_first_button_content_panel/labels_stack_panel/bottom_padding": { type: T.PANEL, children: string }, + "sort_menu_first_button_content_panel/labels_padding_x_image": { type: T.PANEL, children: string }, + "sort_menu_first_button_content_panel/x_image_panel": { type: T.PANEL, children: 'x_image' }, + "sort_menu_first_button_content_panel/x_image_panel/x_image": { type: T.IMAGE, children: string }, + "sort_menu_toggles": { type: T.STACK_PANEL, children: 'relevance_toggle_panel' | 'sort_toggle_grid' }, + "sort_menu_toggles/relevance_toggle_panel": { type: T.PANEL, children: 'relevance_toggle' }, + "sort_menu_toggles/relevance_toggle_panel/relevance_toggle": { type: T.PANEL, children: string }, + "sort_menu_toggles/sort_toggle_grid": { type: T.PANEL, children: string }, + "sort_menu_show": { type: T.STACK_PANEL, children: '1st_button_centering_panel' | 'sort_scrolling_content_panel' }, + "sort_menu_show/1st_button_centering_panel": { type: T.PANEL, children: 'first_button_main' }, + "sort_menu_show/1st_button_centering_panel/first_button_main": { type: T.BUTTON, children: string }, + "sort_menu_show/sort_scrolling_content_panel": { type: T.PANEL, children: string }, + "sort_menu_panel": { type: T.STACK_PANEL, children: 'top_padding' | 'alignment_panel' }, + "sort_menu_panel/top_padding": { type: T.PANEL, children: string }, + "sort_menu_panel/alignment_panel": { type: T.STACK_PANEL, children: 'left_padding' | 'sort_menu_show' | 'right_padding' }, + "sort_menu_panel/alignment_panel/left_padding": { type: T.PANEL, children: string }, + "sort_menu_panel/alignment_panel/sort_menu_show": { type: T.STACK_PANEL, children: string }, + "sort_menu_panel/alignment_panel/right_padding": { type: T.PANEL, children: string }, + "sort_menu_screen_content": { type: T.INPUT_PANEL, children: 'sort_menu_main' | 'sort_menu_main_persona' | 'sort_menu_background' }, + "sort_menu_screen_content/sort_menu_main": { type: T.STACK_PANEL, children: string }, + "sort_menu_screen_content/sort_menu_main_persona": { type: T.STACK_PANEL, children: string }, + "sort_menu_screen_content/sort_menu_background": { type: T.PANEL, children: string }, } 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": { type: T.PANEL, children: string }, + "help_icon": { type: T.IMAGE, children: string }, + "common_text_label": { type: T.LABEL, children: string }, + "text_edit_control": { type: T.EDIT_BOX, children: string }, + "axis_selection_panel": { type: T.PANEL, children: 'label' | 'edit_box' }, + "axis_selection_panel/label": { type: T.LABEL, children: string }, + "axis_selection_panel/edit_box": { type: T.EDIT_BOX, children: string }, + "grid_axis_selection_panel": { type: T.STACK_PANEL, children: 'label_container' | 'axis_grid' }, + "grid_axis_selection_panel/label_container": { type: T.PANEL, children: 'label' }, + "grid_axis_selection_panel/label_container/label": { type: T.LABEL, children: string }, + "grid_axis_selection_panel/axis_grid": { type: T.GRID, children: 'X' | 'Y' | 'Z' }, + "grid_axis_selection_panel/axis_grid/X": { type: T.PANEL, children: string }, + "grid_axis_selection_panel/axis_grid/Y": { type: T.PANEL, children: string }, + "grid_axis_selection_panel/axis_grid/Z": { type: T.PANEL, children: string }, + "3d_export_button": { type: T.BUTTON, children: string }, + "save_button": { type: T.BUTTON, children: string }, + "export_button": { type: T.BUTTON, children: string }, + "load_button": { type: T.BUTTON, children: string }, + "detect_button": { type: T.BUTTON, children: string }, + "import_button": { type: T.BUTTON, children: string }, + "reset_button": { type: T.BUTTON, children: string }, + "help_button": { type: T.BUTTON, children: string }, + "toggle_option_panel": { type: T.STACK_PANEL, children: 'toggle' | 'offset_0' | 'first_label_wrapper' | 'second_label_wrapper' }, + "toggle_option_panel/toggle": { type: T.TOGGLE, children: string }, + "toggle_option_panel/offset_0": { type: T.PANEL, children: string }, + "toggle_option_panel/first_label_wrapper": { type: T.PANEL, children: 'first_label' }, + "toggle_option_panel/first_label_wrapper/first_label": { type: T.LABEL, children: string }, + "toggle_option_panel/second_label_wrapper": { type: T.PANEL, children: 'second_label' }, + "toggle_option_panel/second_label_wrapper/second_label": { type: T.LABEL, children: string }, + "include_entities_panel": { type: T.STACK_PANEL, children: 'label' | 'toggle_wrapper' }, + "include_entities_panel/label": { type: T.LABEL, children: string }, + "include_entities_panel/toggle_wrapper": { type: T.PANEL, children: 'toggle' }, + "include_entities_panel/toggle_wrapper/toggle": { type: T.STACK_PANEL, children: string }, + "waterlogging_panel": { type: T.STACK_PANEL, children: 'label' | 'toggle_wrapper' }, + "waterlogging_panel/label": { type: T.LABEL, children: string }, + "waterlogging_panel/toggle_wrapper": { type: T.PANEL, children: 'toggle' }, + "waterlogging_panel/toggle_wrapper/toggle": { type: T.STACK_PANEL, children: string }, + "show_bounding_box_panel": { type: T.STACK_PANEL, children: 'label' | 'toggle_wrapper' }, + "show_bounding_box_panel/label": { type: T.LABEL, children: string }, + "show_bounding_box_panel/toggle_wrapper": { type: T.PANEL, children: 'toggle' }, + "show_bounding_box_panel/toggle_wrapper/toggle": { type: T.STACK_PANEL, children: string }, + "include_player_panel": { type: T.STACK_PANEL, children: 'label' | 'toggle_wrapper' }, + "include_player_panel/label": { type: T.LABEL, children: string }, + "include_player_panel/toggle_wrapper": { type: T.PANEL, children: 'toggle' }, + "include_player_panel/toggle_wrapper/toggle": { type: T.STACK_PANEL, children: string }, + "remove_blocks_panel": { type: T.STACK_PANEL, children: 'label' | 'toggle_wrapper' }, + "remove_blocks_panel/label": { type: T.LABEL, children: string }, + "remove_blocks_panel/toggle_wrapper": { type: T.PANEL, children: 'toggle' }, + "remove_blocks_panel/toggle_wrapper/toggle": { type: T.STACK_PANEL, children: string }, + "3d_export_mode_panel": { type: T.STACK_PANEL, children: 'size_offset_panel' | 'offset_0' | 'offset_2' | 'remove_blocks' }, + "3d_export_mode_panel/size_offset_panel": { type: T.STACK_PANEL, children: 'size_panel' | 'offset_panel' }, + "3d_export_mode_panel/size_offset_panel/size_panel": { type: T.STACK_PANEL, children: string }, + "3d_export_mode_panel/size_offset_panel/offset_panel": { type: T.STACK_PANEL, children: string }, + "3d_export_mode_panel/offset_0": { type: T.PANEL, children: string }, + "3d_export_mode_panel/offset_2": { type: T.PANEL, children: string }, + "3d_export_mode_panel/remove_blocks": { type: T.STACK_PANEL, children: string }, + "save_mode_panel": { type: T.STACK_PANEL, children: 'structure_name' | 'size_offset_panel' | 'detect_offset' | 'detect' | 'include_entities_offset' | 'include_entities' | 'remove_blocks_offset' | 'remove_blocks' | 'redstone_save_offset' | 'redstone_save_mode' | 'trailing_offset' }, + "save_mode_panel/structure_name": { type: T.PANEL, children: string }, + "save_mode_panel/size_offset_panel": { type: T.STACK_PANEL, children: 'size_panel' | 'offset_panel' }, + "save_mode_panel/size_offset_panel/size_panel": { type: T.STACK_PANEL, children: string }, + "save_mode_panel/size_offset_panel/offset_panel": { type: T.STACK_PANEL, children: string }, + "save_mode_panel/detect_offset": { type: T.PANEL, children: string }, + "save_mode_panel/detect": { type: T.PANEL, children: string }, + "save_mode_panel/include_entities_offset": { type: T.PANEL, children: string }, + "save_mode_panel/include_entities": { type: T.STACK_PANEL, children: string }, + "save_mode_panel/remove_blocks_offset": { type: T.PANEL, children: string }, + "save_mode_panel/remove_blocks": { type: T.STACK_PANEL, children: string }, + "save_mode_panel/redstone_save_offset": { type: T.PANEL, children: string }, + "save_mode_panel/redstone_save_mode": { type: T.PANEL, children: string }, + "save_mode_panel/trailing_offset": { type: T.PANEL, children: string }, + "mirror_checkbox": { type: T.STACK_PANEL, children: 'label' | 'padding' | 'check_box' }, + "mirror_checkbox/label": { type: T.LABEL, children: string }, + "mirror_checkbox/padding": { type: T.PANEL, children: string }, + "mirror_checkbox/check_box": { type: T.TOGGLE, children: string }, + "mirror_checkboxes": { type: T.STACK_PANEL, children: 'mirror_checkbox_x' | 'padding' | 'mirror_checkbox_z' }, + "mirror_checkboxes/mirror_checkbox_x": { type: T.STACK_PANEL, children: string }, + "mirror_checkboxes/padding": { type: T.PANEL, children: string }, + "mirror_checkboxes/mirror_checkbox_z": { type: T.STACK_PANEL, children: string }, + "load_mode_panel": { type: T.STACK_PANEL, children: 'structure_name' | 'offset_panel' | 'include_entities_offset' | 'include_entities' | 'remove_blocks_offset' | 'waterlog_blocks' | 'waterlog_blocks_offset' | 'remove_blocks' | 'integrity_offset' | 'integrity_label' | 'integrity_field' | 'offset_1' | 'seed_label' | 'seed_field' | 'offset_2' | 'rotation_slider' | 'mirror_label' | 'mirror_checkboxes_centerer' | 'checkbox_offset' | 'animation_mode' | 'animation_time_label' | 'animation_time_field' }, + "load_mode_panel/structure_name": { type: T.PANEL, children: string }, + "load_mode_panel/offset_panel": { type: T.STACK_PANEL, children: string }, + "load_mode_panel/include_entities_offset": { type: T.PANEL, children: string }, + "load_mode_panel/include_entities": { type: T.STACK_PANEL, children: string }, + "load_mode_panel/remove_blocks_offset": { type: T.PANEL, children: string }, + "load_mode_panel/waterlog_blocks": { type: T.STACK_PANEL, children: string }, + "load_mode_panel/waterlog_blocks_offset": { type: T.PANEL, children: string }, + "load_mode_panel/remove_blocks": { type: T.STACK_PANEL, children: string }, + "load_mode_panel/integrity_offset": { type: T.PANEL, children: string }, + "load_mode_panel/integrity_label": { type: T.LABEL, children: string }, + "load_mode_panel/integrity_field": { type: T.EDIT_BOX, children: string }, + "load_mode_panel/offset_1": { type: T.PANEL, children: string }, + "load_mode_panel/seed_label": { type: T.LABEL, children: string }, + "load_mode_panel/seed_field": { type: T.EDIT_BOX, children: string }, + "load_mode_panel/offset_2": { type: T.PANEL, children: string }, + "load_mode_panel/rotation_slider": { type: T.PANEL, children: string }, + "load_mode_panel/mirror_label": { type: T.LABEL, children: string }, + "load_mode_panel/mirror_checkboxes_centerer": { type: T.PANEL, children: 'mirror_checkboxes' }, + "load_mode_panel/mirror_checkboxes_centerer/mirror_checkboxes": { type: T.STACK_PANEL, children: string }, + "load_mode_panel/checkbox_offset": { type: T.PANEL, children: string }, + "load_mode_panel/animation_mode": { type: T.PANEL, children: string }, + "load_mode_panel/animation_time_label": { type: T.LABEL, children: string }, + "load_mode_panel/animation_time_field": { type: T.EDIT_BOX, children: string }, + "data_mode_panel": { type: T.STACK_PANEL, children: 'top_offset' | 'data_label' | 'data_label_offset' | 'data_field' | 'data_field_offset' }, + "data_mode_panel/top_offset": { type: T.PANEL, children: string }, + "data_mode_panel/data_label": { type: T.LABEL, children: string }, + "data_mode_panel/data_label_offset": { type: T.PANEL, children: string }, + "data_mode_panel/data_field": { type: T.EDIT_BOX, children: string }, + "data_mode_panel/data_field_offset": { type: T.PANEL, children: string }, + "corner_mode_panel": { type: T.STACK_PANEL, children: 'structure_name' }, + "corner_mode_panel/structure_name": { type: T.PANEL, children: string }, + "help_button_panel": { type: T.STACK_PANEL, children: 'help' | 'help_divider' }, + "help_button_panel/help": { type: T.BUTTON, children: string }, + "help_button_panel/help_divider": { type: T.PANEL, children: string }, + "save_button_panel": { type: T.STACK_PANEL, children: 'divider' | 'save' | 'save_divider' | 'export' | 'export_divider' | 'import_divider' | 'reset' | 'reset_divider' }, + "save_button_panel/divider": { type: T.PANEL, children: string }, + "save_button_panel/save": { type: T.BUTTON, children: string }, + "save_button_panel/save_divider": { type: T.PANEL, children: string }, + "save_button_panel/export": { type: T.BUTTON, children: string }, + "save_button_panel/export_divider": { type: T.PANEL, children: string }, + "save_button_panel/import_divider": { type: T.PANEL, children: string }, + "save_button_panel/reset": { type: T.BUTTON, children: string }, + "save_button_panel/reset_divider": { type: T.PANEL, children: string }, + "save_button_panel_no_export": { type: T.STACK_PANEL, children: 'divider' | 'save' | 'save_divider' | 'reset' | 'reset_divider' }, + "save_button_panel_no_export/divider": { type: T.PANEL, children: string }, + "save_button_panel_no_export/save": { type: T.BUTTON, children: string }, + "save_button_panel_no_export/save_divider": { type: T.PANEL, children: string }, + "save_button_panel_no_export/reset": { type: T.BUTTON, children: string }, + "save_button_panel_no_export/reset_divider": { type: T.PANEL, children: string }, + "load_button_panel": { type: T.STACK_PANEL, children: 'divider' | 'load' | 'load_divider' | 'export_divider' | 'import' | 'import_divider' | 'reset' | 'reset_divider' }, + "load_button_panel/divider": { type: T.PANEL, children: string }, + "load_button_panel/load": { type: T.BUTTON, children: string }, + "load_button_panel/load_divider": { type: T.PANEL, children: string }, + "load_button_panel/export_divider": { type: T.PANEL, children: string }, + "load_button_panel/import": { type: T.BUTTON, children: string }, + "load_button_panel/import_divider": { type: T.PANEL, children: string }, + "load_button_panel/reset": { type: T.BUTTON, children: string }, + "load_button_panel/reset_divider": { type: T.PANEL, children: string }, + "load_button_panel_no_export": { type: T.STACK_PANEL, children: 'divider' | 'load' | 'load_divider' | 'reset' | 'reset_divider' }, + "load_button_panel_no_export/divider": { type: T.PANEL, children: string }, + "load_button_panel_no_export/load": { type: T.BUTTON, children: string }, + "load_button_panel_no_export/load_divider": { type: T.PANEL, children: string }, + "load_button_panel_no_export/reset": { type: T.BUTTON, children: string }, + "load_button_panel_no_export/reset_divider": { type: T.PANEL, children: string }, + "3d_export_button_panel": { type: T.STACK_PANEL, children: 'divider' | '3d_export' | '3d_export_divider' | 'import' | 'import_divider' | 'reset' | 'reset_divider' }, + "3d_export_button_panel/divider": { type: T.PANEL, children: string }, + "3d_export_button_panel/3d_export": { type: T.BUTTON, children: string }, + "3d_export_button_panel/3d_export_divider": { type: T.PANEL, children: string }, + "3d_export_button_panel/import": { type: T.BUTTON, children: string }, + "3d_export_button_panel/import_divider": { type: T.PANEL, children: string }, + "3d_export_button_panel/reset": { type: T.BUTTON, children: string }, + "3d_export_button_panel/reset_divider": { type: T.PANEL, children: string }, + "data_button_panel": { type: T.STACK_PANEL, children: 'divider' | 'reset' | 'reset_divider' }, + "data_button_panel/divider": { type: T.PANEL, children: string }, + "data_button_panel/reset": { type: T.BUTTON, children: string }, + "data_button_panel/reset_divider": { type: T.PANEL, children: string }, + "corner_button_panel": { type: T.STACK_PANEL, children: 'reset_divider' }, + "corner_button_panel/reset_divider": { type: T.PANEL, children: string }, + "button_panel_wrapper": { type: T.IMAGE, children: 'panel' }, + "button_panel_wrapper/panel": { type: T.PANEL, children: 'divider' | 'save_panel' | 'save_panel_no_export' | 'corner_panel' | 'load_panel_no_export' | 'load_panel' | '3d_export_panel' | 'data_panel' | 'how_to_play_button' | 'end_divider' }, + "button_panel_wrapper/panel/divider": { type: T.PANEL, children: string }, + "button_panel_wrapper/panel/save_panel": { type: T.STACK_PANEL, children: string }, + "button_panel_wrapper/panel/save_panel_no_export": { type: T.STACK_PANEL, children: string }, + "button_panel_wrapper/panel/corner_panel": { type: T.STACK_PANEL, children: string }, + "button_panel_wrapper/panel/load_panel_no_export": { type: T.STACK_PANEL, children: string }, + "button_panel_wrapper/panel/load_panel": { type: T.STACK_PANEL, children: string }, + "button_panel_wrapper/panel/3d_export_panel": { type: T.STACK_PANEL, children: string }, + "button_panel_wrapper/panel/data_panel": { type: T.STACK_PANEL, children: string }, + "button_panel_wrapper/panel/how_to_play_button": { type: T.STACK_PANEL, children: string }, + "button_panel_wrapper/panel/end_divider": { type: T.PANEL, children: string }, + "redstone_dropdown_content": { type: T.PANEL, children: string }, + "redstone_save_mode_panel": { type: T.PANEL, children: string }, + "animation_mode_dropdown_content": { type: T.PANEL, children: string }, + "animation_mode_dropdown": { type: T.PANEL, children: string }, + "structure_name_wrapper": { type: T.PANEL, children: 'structure_name' | 'structure_name_offset' }, + "structure_name_wrapper/structure_name": { type: T.EDIT_BOX, children: string }, + "structure_name_wrapper/structure_name_offset": { type: T.PANEL, children: string }, + "detect_button_wrapper": { type: T.PANEL, children: 'detect' | 'detect_offset' }, + "detect_button_wrapper/detect": { type: T.BUTTON, children: string }, + "detect_button_wrapper/detect_offset": { type: T.PANEL, children: string }, + "mode_dropdown_content": { type: T.PANEL, children: string }, + "mode_panel": { type: T.PANEL, children: string }, + "scrolling_panel_wrapper": { type: T.IMAGE, children: 'scrolling_panel' }, + "scrolling_panel_wrapper/scrolling_panel": { type: T.PANEL, children: string }, + "scrolling_panel": { type: T.PANEL, children: string }, + "scroll_panel_content": { type: T.PANEL, children: 'content_stack_panel' }, + "scroll_panel_content/content_stack_panel": { type: T.STACK_PANEL, children: 'base_offset' | 'mode_panel' | 'mode_panel_offset' | '3d_export_mode_panel' | 'save_mode_panel' | 'load_mode_panel' | 'data_mode_panel' | 'corner_mode_panel' | 'base_mode_offset' | 'show_bounding_box' | 'show_bounding_box_offset' | 'offset_2' }, + "scroll_panel_content/content_stack_panel/base_offset": { type: T.PANEL, children: string }, + "scroll_panel_content/content_stack_panel/mode_panel": { type: T.PANEL, children: string }, + "scroll_panel_content/content_stack_panel/mode_panel_offset": { type: T.PANEL, children: string }, + "scroll_panel_content/content_stack_panel/3d_export_mode_panel": { type: T.STACK_PANEL, children: string }, + "scroll_panel_content/content_stack_panel/save_mode_panel": { type: T.STACK_PANEL, children: string }, + "scroll_panel_content/content_stack_panel/load_mode_panel": { type: T.STACK_PANEL, children: string }, + "scroll_panel_content/content_stack_panel/data_mode_panel": { type: T.STACK_PANEL, children: string }, + "scroll_panel_content/content_stack_panel/corner_mode_panel": { type: T.STACK_PANEL, children: string }, + "scroll_panel_content/content_stack_panel/base_mode_offset": { type: T.PANEL, children: string }, + "scroll_panel_content/content_stack_panel/show_bounding_box": { type: T.STACK_PANEL, children: string }, + "scroll_panel_content/content_stack_panel/show_bounding_box_offset": { type: T.PANEL, children: string }, + "scroll_panel_content/content_stack_panel/offset_2": { type: T.PANEL, children: string }, + "left_divider_content": { type: T.PANEL, children: 'scrolling_panel' }, + "left_divider_content/scrolling_panel": { type: T.IMAGE, children: string }, + "save_message_text": { type: T.PANEL, children: 'save_message_label' }, + "save_message_text/save_message_label": { type: T.LABEL, children: string }, + "import_message_text": { type: T.PANEL, children: 'save_message_label' }, + "import_message_text/save_message_label": { type: T.LABEL, children: string }, + "import_failed_message_text": { type: T.PANEL, children: 'save_message_label' }, + "import_failed_message_text/save_message_label": { type: T.LABEL, children: string }, + "export_disabled_label": { type: T.LABEL, children: string }, + "image_panel_wrapper": { type: T.IMAGE, children: 'image_panel' | 'save_message_factory' | 'import_message_factory' | 'import_failed_message_factory' | 'export_disabled' }, + "image_panel_wrapper/image_panel": { type: T.PANEL, children: string }, + "image_panel_wrapper/save_message_factory": { type: T.FACTORY, children: string }, + "image_panel_wrapper/import_message_factory": { type: T.FACTORY, children: string }, + "image_panel_wrapper/import_failed_message_factory": { type: T.FACTORY, children: string }, + "image_panel_wrapper/export_disabled": { type: T.LABEL, children: string }, + "corner_text": { type: T.IMAGE, children: 'image_panel' }, + "corner_text/image_panel": { type: T.UNKNOWN, children: string }, + "image_panel": { type: T.PANEL, children: 'border_indent' }, + "image_panel/border_indent": { type: T.PANEL, children: 'background_gradient' | 'image_outline' | 'structure_renderer' | 'text_corner' | 'progress_panel' | 'rotate_arrows' }, + "image_panel/border_indent/background_gradient": { type: T.CUSTOM, children: string }, + "image_panel/border_indent/image_outline": { type: T.IMAGE, children: string }, + "image_panel/border_indent/structure_renderer": { type: T.INPUT_PANEL, children: string }, + "image_panel/border_indent/text_corner": { type: T.STACK_PANEL, children: string }, + "image_panel/border_indent/progress_panel": { type: T.INPUT_PANEL, children: string }, + "image_panel/border_indent/rotate_arrows": { type: T.IMAGE, children: string }, + "progress_panel": { type: T.INPUT_PANEL, children: 'stack_panel' }, + "progress_panel/stack_panel": { type: T.STACK_PANEL, children: 'label_wrapper' | 'progress_bar' }, + "progress_panel/stack_panel/label_wrapper": { type: T.PANEL, children: 'progress_label' }, + "progress_panel/stack_panel/label_wrapper/progress_label": { type: T.LABEL, children: string }, + "progress_panel/stack_panel/progress_bar": { type: T.PANEL, children: string }, + "background_gradient": { type: T.CUSTOM, children: string }, + "corner_text_panel": { type: T.STACK_PANEL, children: 'paragraph_1_corner' | 'padding_1' | 'paragraph_2_corner' }, + "corner_text_panel/paragraph_1_corner": { type: T.PANEL, children: string }, + "corner_text_panel/padding_1": { type: T.PANEL, children: string }, + "corner_text_panel/paragraph_2_corner": { type: T.PANEL, children: string }, + "structure_renderer": { type: T.INPUT_PANEL, children: 'renderer' }, + "structure_renderer/renderer": { type: T.CUSTOM, children: string }, + "black_border": { type: T.IMAGE, children: string }, + "rotation_arrows": { type: T.IMAGE, children: string }, + "right_divider_content": { type: T.STACK_PANEL, children: 'base_offset' | 'preview' | 'image_offset' | 'button_wrapper' }, + "right_divider_content/base_offset": { type: T.PANEL, children: string }, + "right_divider_content/preview": { type: T.IMAGE, children: string }, + "right_divider_content/image_offset": { type: T.PANEL, children: string }, + "right_divider_content/button_wrapper": { type: T.PANEL, children: 'buttons' }, + "right_divider_content/button_wrapper/buttons": { type: T.IMAGE, children: string }, + "divider_content": { type: T.PANEL, children: 'left_side' | 'right_side' }, + "divider_content/left_side": { type: T.PANEL, children: string }, + "divider_content/right_side": { type: T.STACK_PANEL, children: string }, + "structure_editor_content": { type: T.PANEL, children: 'background_panel' | 'title' | 'content' }, + "structure_editor_content/background_panel": { type: T.STACK_PANEL, children: string }, + "structure_editor_content/title": { type: T.LABEL, children: string }, + "structure_editor_content/content": { type: T.PANEL, children: string }, + "structure_editor_screen": { type: T.SCREEN, children: string }, } 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": { type: T.BUTTON, children: string }, + "write_feedback_panel": { type: T.STACK_PANEL, children: 'pad_1' | 'write_feedback_label' | 'pad_2' | 'feedback_textbox' | 'remaining_characters_panel' }, + "write_feedback_panel/pad_1": { type: T.PANEL, children: string }, + "write_feedback_panel/write_feedback_label": { type: T.LABEL, children: string }, + "write_feedback_panel/pad_2": { type: T.PANEL, children: string }, + "write_feedback_panel/feedback_textbox": { type: T.EDIT_BOX, children: string }, + "write_feedback_panel/remaining_characters_panel": { type: T.PANEL, children: 'remaining_characters_count_label' }, + "write_feedback_panel/remaining_characters_panel/remaining_characters_count_label": { type: T.LABEL, children: string }, + "scroll_panel": { type: T.PANEL, children: 'write_feedback_panel' }, + "scroll_panel/write_feedback_panel": { type: T.STACK_PANEL, children: string }, + "main_panel": { type: T.PANEL, children: 'scrolling_panel' }, + "main_panel/scrolling_panel": { type: T.PANEL, children: string }, + "submit_feedback_screen": { type: T.SCREEN, children: string }, + "submit_feedback_content": { type: T.PANEL, children: 'submit_feedback_main_panel' | 'progress_loading' }, + "submit_feedback_content/submit_feedback_main_panel": { type: T.PANEL, children: string }, + "submit_feedback_content/progress_loading": { type: T.IMAGE, children: string }, } 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": { type: T.PANEL, children: string }, + "padding_vertical": { type: T.PANEL, children: string }, + "text_horizontal_padding": { type: T.PANEL, children: string }, + "tabbed_upsell_buy_now_button": { type: T.BUTTON, children: string }, + "tabbed_buy_now_label": { type: T.PANEL, children: 'button_label' }, + "tabbed_buy_now_label/button_label": { type: T.LABEL, children: string }, + "label_panel": { type: T.PANEL, children: 'label_text' }, + "label_panel/label_text": { type: T.LABEL, children: string }, + "text_panel": { type: T.STACK_PANEL, children: 'tab_content_title_panel' | 'tab_content_description_panel' | 'tab_content_description_panel_second' }, + "text_panel/tab_content_title_panel": { type: T.PANEL, children: string }, + "text_panel/tab_content_description_panel": { type: T.PANEL, children: string }, + "text_panel/tab_content_description_panel_second": { type: T.PANEL, children: string }, + "dialog_image": { type: T.IMAGE, children: string }, + "dialog_image_with_border": { type: T.IMAGE, children: 'dialog_image' }, + "dialog_image_with_border/dialog_image": { type: T.IMAGE, children: string }, + "content_image_panel": { type: T.STACK_PANEL, children: 'minecraft_dialog_image_with_border' | 'horizontal_padding_01' | 'scrolling_panel' }, + "content_image_panel/minecraft_dialog_image_with_border": { type: T.IMAGE, children: string }, + "content_image_panel/horizontal_padding_01": { type: T.PANEL, children: string }, + "content_image_panel/scrolling_panel": { type: T.PANEL, children: string }, + "scroll_text": { type: T.BUTTON, children: string }, + "image_panel": { type: T.PANEL, children: 'dialog_image_with_border' | 'focus_image' }, + "image_panel/dialog_image_with_border": { type: T.IMAGE, children: string }, + "image_panel/focus_image": { type: T.UNKNOWN, children: string }, + "top_tab": { type: T.PANEL, children: string }, + "tab_navigation_panel_layout": { type: T.STACK_PANEL, children: 'navigation_tabs' }, + "tab_navigation_panel_layout/navigation_tabs": { type: T.PANEL, children: 'content' }, + "tab_navigation_panel_layout/navigation_tabs/content": { type: T.UNKNOWN, children: string }, + "common_tab_navigation_panel_layout": { type: T.STACK_PANEL, children: string }, + "tabbed_tab_navigation_panel_layout": { type: T.STACK_PANEL, children: 'minecraft_navigation_tab' | 'nav_padding_01' | 'xbl_navigation_tab' | 'nav_padding_02' | 'achievements_navigation_tab3' | 'nav_padding_03' | 'multiplayer_navigation_tab4' | 'nav_padding_04' | 'server_navigation_tab' | 'nav_padding_05' | 'store_navigation_tab' | 'nav_padding_06' | 'creative_navigation_tab' | 'nav_padding_07' | 'packs_navigation_tab' | 'nav_padding_08' | 'seeds_navigation_tab' }, + "tabbed_tab_navigation_panel_layout/minecraft_navigation_tab": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/nav_padding_01": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/xbl_navigation_tab": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/nav_padding_02": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/achievements_navigation_tab3": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/nav_padding_03": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/multiplayer_navigation_tab4": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/nav_padding_04": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/server_navigation_tab": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/nav_padding_05": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/store_navigation_tab": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/nav_padding_06": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/creative_navigation_tab": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/nav_padding_07": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/packs_navigation_tab": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/nav_padding_08": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/seeds_navigation_tab": { type: T.PANEL, children: string }, + "tabbed_tab_content_panel_layout": { type: T.PANEL, children: 'minecraft_tab_content' | 'xbl_tab_content2' | 'achievements_tab_content3' | 'multiplayer_tab_content4' | 'server_tab_content5' | 'store_tab_content6' | 'creative_tab_content7' | 'packs_tab_content8' | 'seeds_tab_content9' }, + "tabbed_tab_content_panel_layout/minecraft_tab_content": { type: T.PANEL, children: string }, + "tabbed_tab_content_panel_layout/xbl_tab_content2": { type: T.PANEL, children: string }, + "tabbed_tab_content_panel_layout/achievements_tab_content3": { type: T.PANEL, children: string }, + "tabbed_tab_content_panel_layout/multiplayer_tab_content4": { type: T.PANEL, children: string }, + "tabbed_tab_content_panel_layout/server_tab_content5": { type: T.PANEL, children: string }, + "tabbed_tab_content_panel_layout/store_tab_content6": { type: T.PANEL, children: string }, + "tabbed_tab_content_panel_layout/creative_tab_content7": { type: T.PANEL, children: string }, + "tabbed_tab_content_panel_layout/packs_tab_content8": { type: T.PANEL, children: string }, + "tabbed_tab_content_panel_layout/seeds_tab_content9": { type: T.PANEL, children: string }, + "common_tab_content_panel": { type: T.PANEL, children: 'content' }, + "common_tab_content_panel/content": { type: T.UNKNOWN, children: string }, + "minecraft_tab_content_panel": { type: T.PANEL, children: string }, + "xbl_tab_content_panel": { type: T.PANEL, children: string }, + "achievements_tab_content_panel": { type: T.PANEL, children: string }, + "multiplayer_tab_content_panel": { type: T.PANEL, children: string }, + "server_tab_content_panel": { type: T.PANEL, children: string }, + "store_tab_content_panel": { type: T.PANEL, children: string }, + "creative_tab_content_panel": { type: T.PANEL, children: string }, + "packs_tab_content_panel": { type: T.PANEL, children: string }, + "seeds_tab_content_panel": { type: T.PANEL, children: string }, + "common_tab_screen_panel": { type: T.STACK_PANEL, children: 'tab_navigation_panel' | 'padding_01' | 'tab_content_panel' }, + "common_tab_screen_panel/tab_navigation_panel": { type: T.STACK_PANEL, children: string }, + "common_tab_screen_panel/padding_01": { type: T.PANEL, children: string }, + "common_tab_screen_panel/tab_content_panel": { type: T.UNKNOWN, children: string }, + "tabbed_screen_panel": { type: T.STACK_PANEL, children: string }, + "button_panel": { type: T.STACK_PANEL, children: 'padding_5' | 'buy_now_button' | 'padding_6' }, + "button_panel/padding_5": { type: T.PANEL, children: string }, + "button_panel/buy_now_button": { type: T.BUTTON, children: string }, + "button_panel/padding_6": { type: T.PANEL, children: string }, + "tab_panel": { type: T.STACK_PANEL, children: 'padding_3' | 'main_control' | 'padding_4' }, + "tab_panel/padding_3": { type: T.PANEL, children: string }, + "tab_panel/main_control": { type: T.STACK_PANEL, children: string }, + "tab_panel/padding_4": { type: T.PANEL, children: string }, + "tabbed_upsell_content": { type: T.STACK_PANEL, children: 'padding_0' | 'tab_panel' | 'padding_1' | 'button_panel' | 'padding_2' }, + "tabbed_upsell_content/padding_0": { type: T.PANEL, children: string }, + "tabbed_upsell_content/tab_panel": { type: T.STACK_PANEL, children: string }, + "tabbed_upsell_content/padding_1": { type: T.PANEL, children: string }, + "tabbed_upsell_content/button_panel": { type: T.STACK_PANEL, children: string }, + "tabbed_upsell_content/padding_2": { type: T.PANEL, children: string }, + "tabbed_upsell_screen": { type: T.SCREEN, children: string }, + "tabbed_upsell_screen_panel": { type: T.PANEL, children: 'tabbed_upsell_screen_content' | 'background' }, + "tabbed_upsell_screen_panel/tabbed_upsell_screen_content": { type: T.PANEL, children: string }, + "tabbed_upsell_screen_panel/background": { type: T.IMAGE, children: string }, } 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": { type: T.PANEL, children: string }, + "padding_vertical": { type: T.PANEL, children: string }, + "text_horizontal_padding": { type: T.PANEL, children: string }, + "tabbed_upsell_buy_now_button": { type: T.BUTTON, children: string }, + "tabbed_buy_now_label": { type: T.PANEL, children: 'button_label' }, + "tabbed_buy_now_label/button_label": { type: T.LABEL, children: string }, + "label_panel": { type: T.PANEL, children: 'label_text' }, + "label_panel/label_text": { type: T.LABEL, children: string }, + "text_panel": { type: T.STACK_PANEL, children: 'tab_content_title_panel' | 'tab_content_description_panel' | 'tab_content_description_panel_second' }, + "text_panel/tab_content_title_panel": { type: T.PANEL, children: string }, + "text_panel/tab_content_description_panel": { type: T.PANEL, children: string }, + "text_panel/tab_content_description_panel_second": { type: T.PANEL, children: string }, + "dialog_image": { type: T.IMAGE, children: string }, + "dialog_image_with_border": { type: T.IMAGE, children: 'dialog_image' }, + "dialog_image_with_border/dialog_image": { type: T.IMAGE, children: string }, + "content_image_panel": { type: T.STACK_PANEL, children: 'minecraft_dialog_image_with_border' | 'horizontal_padding_01' | 'scrolling_panel' }, + "content_image_panel/minecraft_dialog_image_with_border": { type: T.IMAGE, children: string }, + "content_image_panel/horizontal_padding_01": { type: T.PANEL, children: string }, + "content_image_panel/scrolling_panel": { type: T.PANEL, children: string }, + "scroll_text": { type: T.BUTTON, children: string }, + "image_panel": { type: T.PANEL, children: 'dialog_image_with_border' | 'focus_image' }, + "image_panel/dialog_image_with_border": { type: T.IMAGE, children: string }, + "image_panel/focus_image": { type: T.UNKNOWN, children: string }, + "top_tab": { type: T.PANEL, children: string }, + "tab_navigation_panel_layout": { type: T.STACK_PANEL, children: 'navigation_tabs' }, + "tab_navigation_panel_layout/navigation_tabs": { type: T.PANEL, children: 'content' }, + "tab_navigation_panel_layout/navigation_tabs/content": { type: T.UNKNOWN, children: string }, + "common_tab_navigation_panel_layout": { type: T.STACK_PANEL, children: string }, + "tabbed_tab_navigation_panel_layout": { type: T.STACK_PANEL, children: 'minecraft_navigation_tab' | 'nav_padding_01' | 'xbl_navigation_tab' | 'nav_padding_02' | 'achievements_navigation_tab3' | 'nav_padding_03' | 'multiplayer_navigation_tab4' | 'nav_padding_04' | 'server_navigation_tab' | 'nav_padding_05' | 'store_navigation_tab' | 'nav_padding_06' | 'creative_navigation_tab' | 'nav_padding_07' | 'packs_navigation_tab' | 'nav_padding_08' | 'seeds_navigation_tab' }, + "tabbed_tab_navigation_panel_layout/minecraft_navigation_tab": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/nav_padding_01": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/xbl_navigation_tab": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/nav_padding_02": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/achievements_navigation_tab3": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/nav_padding_03": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/multiplayer_navigation_tab4": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/nav_padding_04": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/server_navigation_tab": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/nav_padding_05": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/store_navigation_tab": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/nav_padding_06": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/creative_navigation_tab": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/nav_padding_07": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/packs_navigation_tab": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/nav_padding_08": { type: T.PANEL, children: string }, + "tabbed_tab_navigation_panel_layout/seeds_navigation_tab": { type: T.PANEL, children: string }, + "tabbed_tab_content_panel_layout": { type: T.PANEL, children: 'minecraft_tab_content' | 'xbl_tab_content2' | 'achievements_tab_content3' | 'multiplayer_tab_content4' | 'server_tab_content5' | 'store_tab_content6' | 'creative_tab_content7' | 'packs_tab_content8' | 'seeds_tab_content9' }, + "tabbed_tab_content_panel_layout/minecraft_tab_content": { type: T.PANEL, children: string }, + "tabbed_tab_content_panel_layout/xbl_tab_content2": { type: T.PANEL, children: string }, + "tabbed_tab_content_panel_layout/achievements_tab_content3": { type: T.PANEL, children: string }, + "tabbed_tab_content_panel_layout/multiplayer_tab_content4": { type: T.PANEL, children: string }, + "tabbed_tab_content_panel_layout/server_tab_content5": { type: T.PANEL, children: string }, + "tabbed_tab_content_panel_layout/store_tab_content6": { type: T.PANEL, children: string }, + "tabbed_tab_content_panel_layout/creative_tab_content7": { type: T.PANEL, children: string }, + "tabbed_tab_content_panel_layout/packs_tab_content8": { type: T.PANEL, children: string }, + "tabbed_tab_content_panel_layout/seeds_tab_content9": { type: T.PANEL, children: string }, + "common_tab_content_panel": { type: T.PANEL, children: 'content' }, + "common_tab_content_panel/content": { type: T.UNKNOWN, children: string }, + "minecraft_tab_content_panel": { type: T.PANEL, children: string }, + "xbl_tab_content_panel": { type: T.PANEL, children: string }, + "achievements_tab_content_panel": { type: T.PANEL, children: string }, + "multiplayer_tab_content_panel": { type: T.PANEL, children: string }, + "server_tab_content_panel": { type: T.PANEL, children: string }, + "store_tab_content_panel": { type: T.PANEL, children: string }, + "creative_tab_content_panel": { type: T.PANEL, children: string }, + "packs_tab_content_panel": { type: T.PANEL, children: string }, + "seeds_tab_content_panel": { type: T.PANEL, children: string }, + "common_tab_screen_panel": { type: T.STACK_PANEL, children: 'tab_navigation_panel' | 'padding_01' | 'tab_content_panel' }, + "common_tab_screen_panel/tab_navigation_panel": { type: T.STACK_PANEL, children: string }, + "common_tab_screen_panel/padding_01": { type: T.PANEL, children: string }, + "common_tab_screen_panel/tab_content_panel": { type: T.UNKNOWN, children: string }, + "tabbed_screen_panel": { type: T.STACK_PANEL, children: string }, + "button_panel": { type: T.STACK_PANEL, children: 'padding_5' | 'buy_now_button' | 'padding_6' }, + "button_panel/padding_5": { type: T.PANEL, children: string }, + "button_panel/buy_now_button": { type: T.BUTTON, children: string }, + "button_panel/padding_6": { type: T.PANEL, children: string }, + "tab_panel": { type: T.STACK_PANEL, children: 'padding_3' | 'main_control' | 'padding_4' }, + "tab_panel/padding_3": { type: T.PANEL, children: string }, + "tab_panel/main_control": { type: T.STACK_PANEL, children: string }, + "tab_panel/padding_4": { type: T.PANEL, children: string }, + "tabbed_upsell_content": { type: T.STACK_PANEL, children: 'padding_0' | 'tab_panel' | 'padding_1' | 'button_panel' | 'padding_2' }, + "tabbed_upsell_content/padding_0": { type: T.PANEL, children: string }, + "tabbed_upsell_content/tab_panel": { type: T.STACK_PANEL, children: string }, + "tabbed_upsell_content/padding_1": { type: T.PANEL, children: string }, + "tabbed_upsell_content/button_panel": { type: T.STACK_PANEL, children: string }, + "tabbed_upsell_content/padding_2": { type: T.PANEL, children: string }, + "thanks_for_testing_screen": { type: T.SCREEN, children: string }, + "tabbed_upsell_screen_panel": { type: T.PANEL, children: 'tabbed_upsell_screen_content' | 'background' }, + "tabbed_upsell_screen_panel/tabbed_upsell_screen_content": { type: T.PANEL, children: string }, + "tabbed_upsell_screen_panel/background": { type: T.IMAGE, children: string }, } export type ThirdPartyStoreType = { - "third_party_store_screen": T.SCREEN, + "third_party_store_screen": { type: T.SCREEN, children: string }, } 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": { type: T.IMAGE, children: string }, + "toast_icon": { type: T.PANEL, children: 'toast_icon' }, + "toast_icon/toast_icon": { type: T.IMAGE, children: string }, + "xbox_icon": { type: T.PANEL, children: string }, + "third_party_invite_icon": { type: T.PANEL, children: string }, + "third_party_achievement_icon": { type: T.PANEL, children: string }, + "persona_icon": { type: T.PANEL, children: 'item' }, + "persona_icon/item": { type: T.PANEL, children: string }, + "resource_pack_icon": { type: T.PANEL, children: 'resource_pack_image' }, + "resource_pack_icon/resource_pack_image": { type: T.IMAGE, children: string }, + "key_art_image": { type: T.PANEL, children: string }, + "gamer_score_icon": { type: T.IMAGE, children: string }, + "toast_label": { type: T.LABEL, children: string }, + "static_button_state_panel": { type: T.PANEL, children: string }, + "static_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' | 'locked' }, + "static_button/default": { type: T.PANEL, children: string }, + "static_button/hover": { type: T.PANEL, children: string }, + "static_button/pressed": { type: T.PANEL, children: string }, + "static_button/locked": { type: T.PANEL, children: string }, + "popup": { type: T.INPUT_PANEL, children: 'background' | 'popup_content' }, + "popup/background": { type: T.IMAGE, children: string }, + "popup/popup_content": { type: T.STACK_PANEL, children: 'icon_padding' | 'text_padding' | 'text_panel' | 'button_panel' }, + "popup/popup_content/icon_padding": { type: T.STACK_PANEL, children: string }, + "popup/popup_content/text_padding": { type: T.PANEL, children: string }, + "popup/popup_content/text_panel": { type: T.PANEL, children: 'text_stack_panel' }, + "popup/popup_content/text_panel/text_stack_panel": { type: T.STACK_PANEL, children: string }, + "popup/popup_content/button_panel": { type: T.PANEL, children: 'visual_button' }, + "popup/popup_content/button_panel/visual_button": { type: T.BUTTON, children: string }, + "item_renderer": { type: T.CUSTOM, children: string }, + "game_tip_label": { type: T.LABEL, children: string }, + "toast_progress_bar": { type: T.PANEL, children: 'toast_duration_progress_bar' }, + "toast_progress_bar/toast_duration_progress_bar": { type: T.CUSTOM, children: string }, + "recipe_unlocked_icon": { type: T.STACK_PANEL, children: 'padding_vertical' | 'item_renderer' }, + "recipe_unlocked_icon/padding_vertical": { type: T.PANEL, children: string }, + "recipe_unlocked_icon/item_renderer": { type: T.CUSTOM, children: string }, + "recipe_unlocked_popup": { type: T.IMAGE, children: 'input_panel' }, + "recipe_unlocked_popup/input_panel": { type: T.INPUT_PANEL, children: 'label_panel' }, + "recipe_unlocked_popup/input_panel/label_panel": { type: T.STACK_PANEL, children: 'horizontal_padding_1' | 'recipe_unlocked_icon' | 'horizontal_padding_2' | 'label_panel' | 'horizontal_padding_3' }, + "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_1": { type: T.PANEL, children: string }, + "recipe_unlocked_popup/input_panel/label_panel/recipe_unlocked_icon": { type: T.STACK_PANEL, children: string }, + "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_2": { type: T.PANEL, children: string }, + "recipe_unlocked_popup/input_panel/label_panel/label_panel": { type: T.STACK_PANEL, children: 'padding_vertical_1' | 'label' | 'padding_vertical_2' }, + "recipe_unlocked_popup/input_panel/label_panel/label_panel/padding_vertical_1": { type: T.PANEL, children: string }, + "recipe_unlocked_popup/input_panel/label_panel/label_panel/label": { type: T.LABEL, children: string }, + "recipe_unlocked_popup/input_panel/label_panel/label_panel/padding_vertical_2": { type: T.PANEL, children: string }, + "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_3": { type: T.PANEL, children: string }, + "recipe_unlocked_pocket_popup": { type: T.IMAGE, children: 'input_panel' }, + "recipe_unlocked_pocket_popup/input_panel": { type: T.INPUT_PANEL, children: 'label_panel' }, + "recipe_unlocked_pocket_popup/input_panel/label_panel": { type: T.STACK_PANEL, children: 'horizontal_padding_1' | 'recipe_unlocked_icon' | 'horizontal_padding_2' | 'label_panel' | 'horizontal_padding_3' }, + "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_1": { type: T.PANEL, children: string }, + "recipe_unlocked_pocket_popup/input_panel/label_panel/recipe_unlocked_icon": { type: T.STACK_PANEL, children: string }, + "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_2": { type: T.PANEL, children: string }, + "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel": { type: T.STACK_PANEL, children: 'padding_vertical' | 'label' | 'padding_vertical_1' }, + "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/padding_vertical": { type: T.PANEL, children: string }, + "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/label": { type: T.LABEL, children: string }, + "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/padding_vertical_1": { type: T.PANEL, children: string }, + "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_3": { type: T.PANEL, children: string }, + "text_stack_panel": { type: T.STACK_PANEL, children: 'title' | 'subtitle' }, + "text_stack_panel/title": { type: T.LABEL, children: string }, + "text_stack_panel/subtitle": { type: T.STACK_PANEL, children: 'icon_padding' | 'subtext_offset' }, + "text_stack_panel/subtitle/icon_padding": { type: T.PANEL, children: 'gamer_score_icon' }, + "text_stack_panel/subtitle/icon_padding/gamer_score_icon": { type: T.IMAGE, children: string }, + "text_stack_panel/subtitle/subtext_offset": { type: T.PANEL, children: 'subtext' }, + "text_stack_panel/subtitle/subtext_offset/subtext": { type: T.LABEL, children: string }, + "join_button_icon": { type: T.IMAGE, children: string }, + "chat_popup": { type: T.INPUT_PANEL, children: string }, + "splitscreen_join_popup": { type: T.STACK_PANEL, children: 'join_button_icon' | 'join_prompt_text_panel' }, + "splitscreen_join_popup/join_button_icon": { type: T.IMAGE, children: string }, + "splitscreen_join_popup/join_prompt_text_panel": { type: T.PANEL, children: 'join_prompt_text' }, + "splitscreen_join_popup/join_prompt_text_panel/join_prompt_text": { type: T.LABEL, children: string }, + "formfitting_alpha_toast": { type: T.PANEL, children: 'bg' }, + "formfitting_alpha_toast/bg": { type: T.IMAGE, children: 'label' }, + "formfitting_alpha_toast/bg/label": { type: T.LABEL, children: string }, + "snackbar": { type: T.PANEL, children: 'body' }, + "snackbar/body": { type: T.IMAGE, children: 'background' }, + "snackbar/body/background": { type: T.IMAGE, children: 'content' | 'right_shadow' }, + "snackbar/body/background/content": { type: T.STACK_PANEL, children: 'left_padding' | 'vertically_central_text' | 'right_padding' }, + "snackbar/body/background/content/left_padding": { type: T.PANEL, children: string }, + "snackbar/body/background/content/vertically_central_text": { type: T.STACK_PANEL, children: 'top_padding' | 'text' }, + "snackbar/body/background/content/vertically_central_text/top_padding": { type: T.PANEL, children: string }, + "snackbar/body/background/content/vertically_central_text/text": { type: T.LABEL, children: string }, + "snackbar/body/background/content/right_padding": { type: T.PANEL, children: string }, + "snackbar/body/background/right_shadow": { type: T.IMAGE, children: string }, + "progress_button_content": { type: T.STACK_PANEL, children: 'gamepad_icon_glyph' | 'spacer' | 'progress_button_label' }, + "progress_button_content/gamepad_icon_glyph": { type: T.LABEL, children: string }, + "progress_button_content/spacer": { type: T.PANEL, children: string }, + "progress_button_content/progress_button_label": { type: T.LABEL, children: string }, + "progress_popup": { type: T.INPUT_PANEL, children: 'background' | 'popup_content' }, + "progress_popup/background": { type: T.IMAGE, children: string }, + "progress_popup/popup_content": { type: T.STACK_PANEL, children: 'progress_toast_image' | 'profilepicture' | 'text_padding' | 'progress_content_vertical_panel' | 'divider_padding' | 'divider_image' | 'popup_decline_button' | 'end_padding' }, + "progress_popup/popup_content/progress_toast_image": { type: T.IMAGE, children: string }, + "progress_popup/popup_content/profilepicture": { type: T.CUSTOM, children: string }, + "progress_popup/popup_content/text_padding": { type: T.PANEL, children: string }, + "progress_popup/popup_content/progress_content_vertical_panel": { type: T.STACK_PANEL, children: 'title_text_label' | 'subtext' | 'stacked_progress_bar' | 'end_progress_padding' }, + "progress_popup/popup_content/progress_content_vertical_panel/title_text_label": { type: T.LABEL, children: string }, + "progress_popup/popup_content/progress_content_vertical_panel/subtext": { type: T.LABEL, children: string }, + "progress_popup/popup_content/progress_content_vertical_panel/stacked_progress_bar": { type: T.PANEL, children: string }, + "progress_popup/popup_content/progress_content_vertical_panel/end_progress_padding": { type: T.PANEL, children: string }, + "progress_popup/popup_content/divider_padding": { type: T.PANEL, children: string }, + "progress_popup/popup_content/divider_image": { type: T.IMAGE, children: string }, + "progress_popup/popup_content/popup_decline_button": { type: T.BUTTON, children: string }, + "progress_popup/popup_content/end_padding": { type: T.PANEL, children: string }, + "party_invite_popup": { type: T.INPUT_PANEL, children: 'background' | 'party_invite_content' }, + "party_invite_popup/background": { type: T.IMAGE, children: string }, + "party_invite_popup/party_invite_content": { type: T.STACK_PANEL, children: 'profilepicture' | 'text_padding' | 'party_invite_content_vertical_panel' | 'divider_padding' | 'divider_image' | 'party_invite_button' | 'end_padding' }, + "party_invite_popup/party_invite_content/profilepicture": { type: T.CUSTOM, children: string }, + "party_invite_popup/party_invite_content/text_padding": { type: T.PANEL, children: string }, + "party_invite_popup/party_invite_content/party_invite_content_vertical_panel": { type: T.STACK_PANEL, children: 'title_text_label' | 'subtext' | 'end_padding' }, + "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/title_text_label": { type: T.LABEL, children: string }, + "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/subtext": { type: T.LABEL, children: string }, + "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/end_padding": { type: T.PANEL, children: string }, + "party_invite_popup/party_invite_content/divider_padding": { type: T.PANEL, children: string }, + "party_invite_popup/party_invite_content/divider_image": { type: T.IMAGE, children: string }, + "party_invite_popup/party_invite_content/party_invite_button": { type: T.BUTTON, children: string }, + "party_invite_popup/party_invite_content/end_padding": { type: T.PANEL, children: string }, + "party_travel_popup": { type: T.INPUT_PANEL, children: string }, + "toast_screen": { type: T.SCREEN, children: string }, + "toast_screen_content": { type: T.PANEL, children: 'content_log_panel' | 'perf_turtle_panel' }, + "toast_screen_content/content_log_panel": { type: T.PANEL, children: string }, + "toast_screen_content/perf_turtle_panel": { type: T.PANEL, children: string }, } 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": { type: T.STACK_PANEL, children: 'faq_question_1' | 'faq_question_1_divider' | 'faq_question_2' | 'faq_question_2_divider' | 'faq_question_3' | 'faq_question_3_divider' | 'faq_question_4' | 'faq_question_4_divider' | 'faq_question_5' }, + "main_panel/faq_question_1": { type: T.BUTTON, children: string }, + "main_panel/faq_question_1_divider": { type: T.STACK_PANEL, children: string }, + "main_panel/faq_question_2": { type: T.BUTTON, children: string }, + "main_panel/faq_question_2_divider": { type: T.STACK_PANEL, children: string }, + "main_panel/faq_question_3": { type: T.BUTTON, children: string }, + "main_panel/faq_question_3_divider": { type: T.STACK_PANEL, children: string }, + "main_panel/faq_question_4": { type: T.BUTTON, children: string }, + "main_panel/faq_question_4_divider": { type: T.STACK_PANEL, children: string }, + "main_panel/faq_question_5": { type: T.BUTTON, children: string }, + "scrolling_panel": { type: T.PANEL, children: string }, + "token_faq_screen_content": { type: T.PANEL, children: 'dialog' }, + "token_faq_screen_content/dialog": { type: T.PANEL, children: string }, + "background": { type: T.IMAGE, children: string }, + "token_faq_screen": { type: T.SCREEN, children: string }, + "token_content_panel": { type: T.STACK_PANEL, children: 'token_info_text' }, + "token_content_panel/token_info_text": { type: T.LABEL, children: string }, + "token_popup_content": { type: T.PANEL, children: 'dialog' }, + "token_popup_content/dialog": { type: T.PANEL, children: string }, + "token_faq_button_panel": { type: T.BUTTON, children: string }, + "back_button_panel": { type: T.BUTTON, children: string }, + "token_popup": { type: T.SCREEN, children: string }, } 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": { type: T.BUTTON, children: string }, + "cycle_recipe_left_button": { type: T.BUTTON, children: string }, + "cycle_recipe_right_button": { type: T.BUTTON, children: string }, + "arrow_image": { type: T.IMAGE, children: string }, + "cross_out_icon": { type: T.IMAGE, children: string }, + "highlight_slot_panel": { type: T.PANEL, children: 'hover_text' }, + "highlight_slot_panel/hover_text": { type: T.CUSTOM, children: string }, + "recipe_button": { type: T.BUTTON, children: 'hover' }, + "recipe_button/hover": { type: T.PANEL, children: string }, + "recipe_item_panel": { type: T.PANEL, children: 'item_renderer' | 'recipe_button' }, + "recipe_item_panel/item_renderer": { type: T.CUSTOM, children: 'stack_count_label' }, + "recipe_item_panel/item_renderer/stack_count_label": { type: T.LABEL, children: string }, + "recipe_item_panel/recipe_button": { type: T.BUTTON, children: string }, + "trade_item_slot": { type: T.PANEL, children: 'container_item' }, + "trade_item_slot/container_item": { type: T.INPUT_PANEL, children: string }, + "trade_item_slotB": { type: T.PANEL, children: string }, + "trade_item_slot_result_button": { type: T.BUTTON, children: string }, + "trade_item_slot_result": { type: T.PANEL, children: string }, + "arrow": { type: T.PANEL, children: 'arrow_image' | 'cross_out_icon' | 'recipe_button' }, + "arrow/arrow_image": { type: T.IMAGE, children: string }, + "arrow/cross_out_icon": { type: T.IMAGE, children: string }, + "arrow/recipe_button": { type: T.BUTTON, children: string }, + "purchase_grid_item": { type: T.STACK_PANEL, children: 'top_item' | 'padding' | 'bottom_item' }, + "purchase_grid_item/top_item": { type: T.UNKNOWN, children: string }, + "purchase_grid_item/padding": { type: T.PANEL, children: string }, + "purchase_grid_item/bottom_item": { type: T.UNKNOWN, children: string }, + "purchase_grid": { type: T.GRID, children: 'grid_slot1' | 'grid_slot2' | 'arrow' | 'result_item_slot' }, + "purchase_grid/grid_slot1": { type: T.STACK_PANEL, children: string }, + "purchase_grid/grid_slot2": { type: T.STACK_PANEL, children: string }, + "purchase_grid/arrow": { type: T.STACK_PANEL, children: string }, + "purchase_grid/result_item_slot": { type: T.STACK_PANEL, children: string }, + "greyed_item_panel": { type: T.PANEL, children: 'item_renderer' }, + "greyed_item_panel/item_renderer": { type: T.CUSTOM, children: string }, + "cycle_panel_keyboard": { type: T.PANEL, children: 'left' | 'right' }, + "cycle_panel_keyboard/left": { type: T.BUTTON, children: string }, + "cycle_panel_keyboard/right": { type: T.BUTTON, children: string }, + "cycle_panel_gamepad": { type: T.PANEL, children: 'left' | 'right' }, + "cycle_panel_gamepad/left": { type: T.BUTTON, children: string }, + "cycle_panel_gamepad/right": { type: T.BUTTON, children: string }, + "cycle_panel": { type: T.PANEL, children: 'keyboard' | 'gamepad' }, + "cycle_panel/keyboard": { type: T.PANEL, children: string }, + "cycle_panel/gamepad": { type: T.PANEL, children: string }, + "merchant_purchase_panel": { type: T.PANEL, children: 'purchase_grid' }, + "merchant_purchase_panel/purchase_grid": { type: T.GRID, children: string }, + "top_half_panel": { type: T.PANEL, children: 'villager_name_label' | 'cycle_panel' | 'merchant_purchase_panel' }, + "top_half_panel/villager_name_label": { type: T.LABEL, children: string }, + "top_half_panel/cycle_panel": { type: T.PANEL, children: string }, + "top_half_panel/merchant_purchase_panel": { type: T.PANEL, children: string }, + "trade_panel": { type: T.PANEL, children: 'gamepad_helpers' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'root_panel' | 'flying_item_renderer' }, + "trade_panel/gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "trade_panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "trade_panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "trade_panel/root_panel": { type: T.INPUT_PANEL, children: 'common_panel' | 'trade_inventory' }, + "trade_panel/root_panel/common_panel": { type: T.PANEL, children: string }, + "trade_panel/root_panel/trade_inventory": { type: T.PANEL, children: 'top_half_panel' | 'inventory_panel_bottom_half_with_label' | 'hotbar_grid_template' | 'inventory_selected_icon_button' | 'gamepad_cursor' }, + "trade_panel/root_panel/trade_inventory/top_half_panel": { type: T.PANEL, children: string }, + "trade_panel/root_panel/trade_inventory/inventory_panel_bottom_half_with_label": { type: T.PANEL, children: string }, + "trade_panel/root_panel/trade_inventory/hotbar_grid_template": { type: T.GRID, children: string }, + "trade_panel/root_panel/trade_inventory/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "trade_panel/root_panel/trade_inventory/gamepad_cursor": { type: T.BUTTON, children: string }, + "trade_panel/flying_item_renderer": { type: T.CUSTOM, children: string }, + "trade_screen": { type: T.SCREEN, children: string }, } 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": { type: T.IMAGE, children: string }, + "recipe_item_panel": { type: T.PANEL, children: 'item_renderer' }, + "recipe_item_panel/item_renderer": { type: T.CUSTOM, children: 'stack_count_label' }, + "recipe_item_panel/item_renderer/stack_count_label": { type: T.LABEL, children: string }, + "result_item_panel": { type: T.PANEL, children: 'output_item_name' | 'recipe_item_panel' }, + "result_item_panel/output_item_name": { type: T.LABEL, children: string }, + "result_item_panel/recipe_item_panel": { type: T.PANEL, children: string }, + "trade_item_slot": { type: T.PANEL, children: 'container_item' }, + "trade_item_slot/container_item": { type: T.INPUT_PANEL, children: string }, + "trade_item_slotB": { type: T.PANEL, children: string }, + "trade_item_slot_result_button": { type: T.BUTTON, children: string }, + "trade_item_slot_result": { type: T.PANEL, children: string }, + "purchase_grid": { type: T.GRID, children: 'grid_slot1' | 'grid_slot2' | 'arrow' | 'result_item_slot' }, + "purchase_grid/grid_slot1": { type: T.STACK_PANEL, children: string }, + "purchase_grid/grid_slot2": { type: T.STACK_PANEL, children: string }, + "purchase_grid/arrow": { type: T.STACK_PANEL, children: string }, + "purchase_grid/result_item_slot": { type: T.STACK_PANEL, children: string }, + "merchant_purchase_panel": { type: T.PANEL, children: 'left' | 'purchase_grid' | 'right' }, + "merchant_purchase_panel/left": { type: T.BUTTON, children: string }, + "merchant_purchase_panel/purchase_grid": { type: T.GRID, children: string }, + "merchant_purchase_panel/right": { type: T.BUTTON, children: string }, + "merchant_panel": { type: T.PANEL, children: 'merchant_purchase_panel' }, + "merchant_panel/merchant_purchase_panel": { type: T.PANEL, children: string }, + "inventory_grid": { type: T.GRID, children: string }, + "inventory_content": { type: T.PANEL, children: 'scrolling_panel' }, + "inventory_content/scrolling_panel": { type: T.PANEL, children: string }, + "half_screen": { type: T.PANEL, children: string }, + "inventory_half_screen": { type: T.PANEL, children: 'inventory_content' }, + "inventory_half_screen/inventory_content": { type: T.PANEL, children: string }, + "merchant_half_screen": { type: T.PANEL, children: 'merchant_panel' }, + "merchant_half_screen/merchant_panel": { type: T.PANEL, children: string }, + "header": { type: T.PANEL, children: 'header_background' | 'close_button' | 'villager_name_label' }, + "header/header_background": { type: T.IMAGE, children: string }, + "header/close_button": { type: T.BUTTON, children: string }, + "header/villager_name_label": { type: T.LABEL, children: string }, + "trade_panel": { type: T.SCREEN, children: 'bg' | 'root_panel' | 'header' | 'inventory' | 'merchant_half_screen' | 'gamepad_helpers' | 'container_gamepad_helpers' | 'inventory_selected_icon_button' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'flying_item_renderer' }, + "trade_panel/bg": { type: T.IMAGE, children: string }, + "trade_panel/root_panel": { type: T.INPUT_PANEL, children: string }, + "trade_panel/header": { type: T.PANEL, children: string }, + "trade_panel/inventory": { type: T.PANEL, children: string }, + "trade_panel/merchant_half_screen": { type: T.PANEL, children: string }, + "trade_panel/gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "trade_panel/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "trade_panel/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "trade_panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "trade_panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "trade_panel/flying_item_renderer": { type: T.CUSTOM, children: string }, } 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": { type: T.IMAGE, children: string }, + "arrow_left_image": { type: T.IMAGE, children: string }, + "arrow_right_image": { type: T.IMAGE, children: string }, + "trade_cell_image": { type: T.IMAGE, children: string }, + "cross_out_image": { type: T.IMAGE, children: string }, + "lock_image": { type: T.IMAGE, children: string }, + "scroll_background_image": { type: T.IMAGE, children: string }, + "red_slash": { type: T.IMAGE, children: string }, + "blue_progress_bar": { type: T.IMAGE, children: string }, + "white_progress_bar": { type: T.IMAGE, children: string }, + "empty_progress_bar": { type: T.IMAGE, children: string }, + "progress_bar_nub": { type: T.IMAGE, children: string }, + "hover_button": { type: T.BUTTON, children: 'hover_text' }, + "hover_button/hover_text": { type: T.CUSTOM, children: string }, + "stack_count_label": { type: T.LABEL, children: string }, + "changed_item_count_label": { type: T.STACK_PANEL, children: 'stack_count_label' | 'padding' | 'second_stack_count_label' }, + "changed_item_count_label/stack_count_label": { type: T.LABEL, children: 'red_slash' | 'red_slash_double' }, + "changed_item_count_label/stack_count_label/red_slash": { type: T.IMAGE, children: string }, + "changed_item_count_label/stack_count_label/red_slash_double": { type: T.IMAGE, children: string }, + "changed_item_count_label/padding": { type: T.PANEL, children: string }, + "changed_item_count_label/second_stack_count_label": { type: T.LABEL, children: string }, + "single_item_grid": { type: T.GRID, children: 'item_with_count' }, + "single_item_grid/item_with_count": { type: T.PANEL, children: 'item_renderer' }, + "single_item_grid/item_with_count/item_renderer": { type: T.CUSTOM, children: 'stack_count_label' | 'changed_item_count_label' | 'hover_button' }, + "single_item_grid/item_with_count/item_renderer/stack_count_label": { type: T.LABEL, children: string }, + "single_item_grid/item_with_count/item_renderer/changed_item_count_label": { type: T.STACK_PANEL, children: string }, + "single_item_grid/item_with_count/item_renderer/hover_button": { type: T.BUTTON, children: string }, + "trade_item_1": { type: T.GRID, children: string }, + "trade_item_2": { type: T.GRID, children: string }, + "sell_item": { type: T.GRID, children: string }, + "arrow_holder": { type: T.PANEL, children: 'arrow_image' | 'cross_out_image' | 'lock_image' }, + "arrow_holder/arrow_image": { type: T.IMAGE, children: string }, + "arrow_holder/cross_out_image": { type: T.IMAGE, children: string }, + "arrow_holder/lock_image": { type: T.IMAGE, children: string }, + "toggle_content": { type: T.STACK_PANEL, children: 'padding_1' | 'trade_item_1' | 'padding_2' | 'padding_2_extra' | 'trade_item_2' | 'padding_3' | 'padding_3_extra' | 'arrow_holder' | 'padding_4' | 'sell_item_holder' | 'sell_item_holder_with_less_padding' | 'padding_5' }, + "toggle_content/padding_1": { type: T.PANEL, children: string }, + "toggle_content/trade_item_1": { type: T.GRID, children: string }, + "toggle_content/padding_2": { type: T.PANEL, children: string }, + "toggle_content/padding_2_extra": { type: T.PANEL, children: string }, + "toggle_content/trade_item_2": { type: T.GRID, children: string }, + "toggle_content/padding_3": { type: T.PANEL, children: string }, + "toggle_content/padding_3_extra": { type: T.PANEL, children: string }, + "toggle_content/arrow_holder": { type: T.PANEL, children: string }, + "toggle_content/padding_4": { type: T.PANEL, children: string }, + "toggle_content/sell_item_holder": { type: T.PANEL, children: 'sell_item' }, + "toggle_content/sell_item_holder/sell_item": { type: T.GRID, children: string }, + "toggle_content/sell_item_holder_with_less_padding": { type: T.PANEL, children: 'sell_item' }, + "toggle_content/sell_item_holder_with_less_padding/sell_item": { type: T.GRID, children: string }, + "toggle_content/padding_5": { type: T.PANEL, children: string }, + "toggle_content_holder": { type: T.PANEL, children: 'toggle_content' }, + "toggle_content_holder/toggle_content": { type: T.UNKNOWN, children: string }, + "trade_toggle_unchecked": { type: T.PANEL, children: 'toggle_checked_normal' | 'toggle_checked_red' }, + "trade_toggle_unchecked/toggle_checked_normal": { type: T.PANEL, children: string }, + "trade_toggle_unchecked/toggle_checked_red": { type: T.PANEL, children: string }, + "trade_toggle_checked": { type: T.PANEL, children: 'toggle_checked_normal' | 'toggle_checked_red' }, + "trade_toggle_checked/toggle_checked_normal": { type: T.PANEL, children: string }, + "trade_toggle_checked/toggle_checked_red": { type: T.PANEL, children: string }, + "trade_toggle_locked": { type: T.PANEL, children: string }, + "trade_actual_toggle": { type: T.TOGGLE, children: string }, + "trade_toggle": { type: T.PANEL, children: string }, + "trade_toggle_holder": { type: T.PANEL, children: 'trade_toggle' }, + "trade_toggle_holder/trade_toggle": { type: T.PANEL, children: string }, + "trade_toggle_stack_panel": { type: T.STACK_PANEL, children: string }, + "tier_label": { type: T.LABEL, children: string }, + "tier_label_locked": { type: T.LABEL, children: string }, + "tier_stack_panel": { type: T.STACK_PANEL, children: 'padding' | 'tier_label_holder' | 'trade_toggle_stack_panel' }, + "tier_stack_panel/padding": { type: T.PANEL, children: string }, + "tier_stack_panel/tier_label_holder": { type: T.PANEL, children: 'tier_label' | 'tier_label_locked' }, + "tier_stack_panel/tier_label_holder/tier_label": { type: T.LABEL, children: string }, + "tier_stack_panel/tier_label_holder/tier_label_locked": { type: T.LABEL, children: string }, + "tier_stack_panel/trade_toggle_stack_panel": { type: T.STACK_PANEL, children: string }, + "trade_selector_stack_panel": { type: T.STACK_PANEL, children: string }, + "scroll_inner_input_panel": { type: T.INPUT_PANEL, children: 'trade_selector_stack_panel' }, + "scroll_inner_input_panel/trade_selector_stack_panel": { type: T.STACK_PANEL, children: string }, + "trade_scroll_panel": { type: T.PANEL, children: string }, + "left_panel": { type: T.INPUT_PANEL, children: 'bg' | 'trade_scroll_panel' }, + "left_panel/bg": { type: T.PANEL, children: string }, + "left_panel/trade_scroll_panel": { type: T.PANEL, children: string }, + "exp_progress_bar": { type: T.PANEL, children: 'empty_progress_bar' }, + "exp_progress_bar/empty_progress_bar": { type: T.IMAGE, children: 'progress_bar_nub' | 'blue_progress_bar' | 'white_progress_bar' }, + "exp_progress_bar/empty_progress_bar/progress_bar_nub": { type: T.IMAGE, children: string }, + "exp_progress_bar/empty_progress_bar/blue_progress_bar": { type: T.IMAGE, children: string }, + "exp_progress_bar/empty_progress_bar/white_progress_bar": { type: T.IMAGE, children: string }, + "trade_details": { type: T.PANEL, children: 'item_panel_image' }, + "trade_details/item_panel_image": { type: T.IMAGE, children: 'item_text_label' }, + "trade_details/item_panel_image/item_text_label": { type: T.LABEL, children: string }, + "trade_details_factory": { type: T.FACTORY, children: string }, + "trade_details_factory_holder": { type: T.PANEL, children: string }, + "trade_details_button": { type: T.BUTTON, children: string }, + "trade_details_1_button": { type: T.BUTTON, children: string }, + "trade_details_2_button": { type: T.BUTTON, children: string }, + "enchantment_details_button": { type: T.BUTTON, children: string }, + "trade_result_item_slot_button": { type: T.BUTTON, children: string }, + "red_cell_image": { type: T.IMAGE, children: string }, + "container_cell_image": { type: T.PANEL, children: 'cell_image' | 'red_cell_image' }, + "container_cell_image/cell_image": { type: T.IMAGE, children: string }, + "container_cell_image/red_cell_image": { type: T.IMAGE, children: string }, + "item_slot": { type: T.INPUT_PANEL, children: string }, + "ingredient_1_item_slot": { type: T.INPUT_PANEL, children: string }, + "ingredient_2_item_slot": { type: T.INPUT_PANEL, children: string }, + "result_item_slot": { type: T.INPUT_PANEL, children: string }, + "item_slot_holder": { type: T.PANEL, children: 'ingredient_1_item_slot' | 'trade_details_1_button' | 'trade_details_1_factory_holder' }, + "item_slot_holder/ingredient_1_item_slot": { type: T.UNKNOWN, children: string }, + "item_slot_holder/trade_details_1_button": { type: T.UNKNOWN, children: string }, + "item_slot_holder/trade_details_1_factory_holder": { type: T.PANEL, children: string }, + "item_slots_stack_panel": { type: T.STACK_PANEL, children: 'ingredient_item_1_holder' | 'ingredient_item_2_holder' | 'pointing_right_arrow_holder' | 'pointing_left_arrow_holder' | 'result_item_slot_holder' }, + "item_slots_stack_panel/ingredient_item_1_holder": { type: T.PANEL, children: string }, + "item_slots_stack_panel/ingredient_item_2_holder": { type: T.PANEL, children: string }, + "item_slots_stack_panel/pointing_right_arrow_holder": { type: T.PANEL, children: 'arrow_right_image' }, + "item_slots_stack_panel/pointing_right_arrow_holder/arrow_right_image": { type: T.IMAGE, children: string }, + "item_slots_stack_panel/pointing_left_arrow_holder": { type: T.PANEL, children: 'arrow_left_image' }, + "item_slots_stack_panel/pointing_left_arrow_holder/arrow_left_image": { type: T.IMAGE, children: string }, + "item_slots_stack_panel/result_item_slot_holder": { type: T.PANEL, children: string }, + "trade_button": { type: T.BUTTON, children: string }, + "how_to_play_button": { type: T.BUTTON, children: string }, + "top_half_stack_panel": { type: T.STACK_PANEL, children: 'item_slots_holder' | 'padding_1' | 'trade_button_holder' | 'how_to_play_button_holder' }, + "top_half_stack_panel/item_slots_holder": { type: T.PANEL, children: 'item_slots_stack_panel' }, + "top_half_stack_panel/item_slots_holder/item_slots_stack_panel": { type: T.STACK_PANEL, children: string }, + "top_half_stack_panel/padding_1": { type: T.PANEL, children: string }, + "top_half_stack_panel/trade_button_holder": { type: T.PANEL, children: 'trade_button' }, + "top_half_stack_panel/trade_button_holder/trade_button": { type: T.BUTTON, children: string }, + "top_half_stack_panel/how_to_play_button_holder": { type: T.PANEL, children: 'how_to_play_button' }, + "top_half_stack_panel/how_to_play_button_holder/how_to_play_button": { type: T.BUTTON, children: string }, + "top_half_panel": { type: T.PANEL, children: 'top_half_stack_panel' }, + "top_half_panel/top_half_stack_panel": { type: T.STACK_PANEL, children: string }, + "villager_name_label": { type: T.LABEL, children: string }, + "right_panel": { type: T.INPUT_PANEL, children: 'common_panel' | 'trade_screen_inventory' }, + "right_panel/common_panel": { type: T.PANEL, children: string }, + "right_panel/trade_screen_inventory": { type: T.PANEL, children: 'villager_name_label' | 'exp_progress_bar' | 'top_half_panel' | 'inventory_panel_bottom_half_with_label' | 'hotbar_grid' }, + "right_panel/trade_screen_inventory/villager_name_label": { type: T.LABEL, children: string }, + "right_panel/trade_screen_inventory/exp_progress_bar": { type: T.PANEL, children: string }, + "right_panel/trade_screen_inventory/top_half_panel": { type: T.PANEL, children: string }, + "right_panel/trade_screen_inventory/inventory_panel_bottom_half_with_label": { type: T.PANEL, children: string }, + "right_panel/trade_screen_inventory/hotbar_grid": { type: T.GRID, children: string }, + "toolbar_panel": { type: T.INPUT_PANEL, children: 'toolbar_background' }, + "toolbar_panel/toolbar_background": { type: T.IMAGE, children: 'toolbar_stack_panel' }, + "toolbar_panel/toolbar_background/toolbar_stack_panel": { type: T.STACK_PANEL, children: 'padding_1' | 'close_button_panel' | 'padding_2' }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": { type: T.PANEL, children: string }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": { type: T.PANEL, children: 'close_button' }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": { type: T.BUTTON, children: string }, + "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": { type: T.PANEL, children: string }, + "toolbar_anchor": { type: T.PANEL, children: 'toolbar_panel' }, + "toolbar_anchor/toolbar_panel": { type: T.INPUT_PANEL, children: string }, + "center_fold": { type: T.INPUT_PANEL, children: 'center_bg' }, + "center_fold/center_bg": { type: T.IMAGE, children: string }, + "screen_stack_panel": { type: T.STACK_PANEL, children: 'left_panel' | 'center_fold' | 'right_panel' | 'toolbar_anchor' }, + "screen_stack_panel/left_panel": { type: T.INPUT_PANEL, children: string }, + "screen_stack_panel/center_fold": { type: T.INPUT_PANEL, children: string }, + "screen_stack_panel/right_panel": { type: T.INPUT_PANEL, children: string }, + "screen_stack_panel/toolbar_anchor": { type: T.PANEL, children: string }, + "gamepad_helper_x": { type: T.STACK_PANEL, children: string }, + "gamepad_helper_y": { type: T.STACK_PANEL, children: string }, + "screen_panel": { type: T.PANEL, children: 'screen_stack_panel' | 'container_gamepad_helpers' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'inventory_selected_icon_button' | 'inventory_take_progress_icon_button' | 'flying_item_renderer' }, + "screen_panel/screen_stack_panel": { type: T.STACK_PANEL, children: string }, + "screen_panel/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "screen_panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "screen_panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "screen_panel/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "screen_panel/inventory_take_progress_icon_button": { type: T.BUTTON, children: string }, + "screen_panel/flying_item_renderer": { type: T.CUSTOM, children: string }, + "trade_screen": { type: T.SCREEN, children: string }, } 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": { type: T.CUSTOM, children: string }, + "trade_icon": { type: T.IMAGE, children: string }, + "arrow_right_image": { type: T.IMAGE, children: string }, + "right_navigation_tabs": { type: T.STACK_PANEL, children: 'pocket_tab_close_button' | 'fill' }, + "right_navigation_tabs/pocket_tab_close_button": { type: T.IMAGE, children: string }, + "right_navigation_tabs/fill": { type: T.PANEL, children: string }, + "trade_slots_panel": { type: T.IMAGE, children: 'item_slots_stack_panel' }, + "trade_slots_panel/item_slots_stack_panel": { type: T.STACK_PANEL, children: string }, + "trade_and_help_buttons": { type: T.STACK_PANEL, children: 'trade_button_holder' | 'how_to_play_button_holder' }, + "trade_and_help_buttons/trade_button_holder": { type: T.PANEL, children: 'trade_button' }, + "trade_and_help_buttons/trade_button_holder/trade_button": { type: T.BUTTON, children: string }, + "trade_and_help_buttons/how_to_play_button_holder": { type: T.PANEL, children: 'how_to_play_button' }, + "trade_and_help_buttons/how_to_play_button_holder/how_to_play_button": { type: T.BUTTON, children: string }, + "name_and_trade_slots_stack_panel": { type: T.STACK_PANEL, children: 'padding_1' | 'villager_name_label_holder' | 'padding_2' | 'exp_progress_bar_holder' | 'padding_3' | 'trade_slots_panel' | 'padding_4' | 'trade_and_help_buttons' }, + "name_and_trade_slots_stack_panel/padding_1": { type: T.PANEL, children: string }, + "name_and_trade_slots_stack_panel/villager_name_label_holder": { type: T.PANEL, children: 'villager_name_label' }, + "name_and_trade_slots_stack_panel/villager_name_label_holder/villager_name_label": { type: T.LABEL, children: string }, + "name_and_trade_slots_stack_panel/padding_2": { type: T.PANEL, children: string }, + "name_and_trade_slots_stack_panel/exp_progress_bar_holder": { type: T.PANEL, children: 'exp_progress_bar' }, + "name_and_trade_slots_stack_panel/exp_progress_bar_holder/exp_progress_bar": { type: T.PANEL, children: string }, + "name_and_trade_slots_stack_panel/padding_3": { type: T.PANEL, children: string }, + "name_and_trade_slots_stack_panel/trade_slots_panel": { type: T.IMAGE, children: string }, + "name_and_trade_slots_stack_panel/padding_4": { type: T.PANEL, children: string }, + "name_and_trade_slots_stack_panel/trade_and_help_buttons": { type: T.STACK_PANEL, children: string }, + "right_panel": { type: T.STACK_PANEL, children: 'content' | 'navigation_tabs_holder' }, + "right_panel/content": { type: T.INPUT_PANEL, children: 'bg' | 'name_and_trade_slots_stack_panel' }, + "right_panel/content/bg": { type: T.PANEL, children: string }, + "right_panel/content/name_and_trade_slots_stack_panel": { type: T.STACK_PANEL, children: string }, + "right_panel/navigation_tabs_holder": { type: T.PANEL, children: 'right_navigation_tabs' }, + "right_panel/navigation_tabs_holder/right_navigation_tabs": { type: T.STACK_PANEL, children: string }, + "left_tab_trade": { type: T.PANEL, children: string }, + "left_tab_inventory": { type: T.PANEL, children: string }, + "left_navigation_tabs": { type: T.STACK_PANEL, children: 'left_tab_trades' | 'padding' | 'left_tab_inventory' }, + "left_navigation_tabs/left_tab_trades": { type: T.PANEL, children: string }, + "left_navigation_tabs/padding": { type: T.PANEL, children: string }, + "left_navigation_tabs/left_tab_inventory": { type: T.PANEL, children: string }, + "arrow_holder": { type: T.PANEL, children: 'arrow_image' | 'cross_out_image' | 'lock_image' }, + "arrow_holder/arrow_image": { type: T.IMAGE, children: string }, + "arrow_holder/cross_out_image": { type: T.IMAGE, children: string }, + "arrow_holder/lock_image": { type: T.IMAGE, children: string }, + "inventory_scroll_panel": { type: T.PANEL, children: string }, + "toggle_content": { type: T.STACK_PANEL, children: 'padding_1' | 'trade_item_holder' | 'padding_2' | 'arrow_holder' | 'padding_3' | 'sell_item_holder' | 'padding_4' }, + "toggle_content/padding_1": { type: T.PANEL, children: string }, + "toggle_content/trade_item_holder": { type: T.STACK_PANEL, children: 'padding_left' | 'trade_item_1' | 'padding_middle' | 'trade_item_2' | 'padding_right' }, + "toggle_content/trade_item_holder/padding_left": { type: T.PANEL, children: string }, + "toggle_content/trade_item_holder/trade_item_1": { type: T.GRID, children: string }, + "toggle_content/trade_item_holder/padding_middle": { type: T.PANEL, children: string }, + "toggle_content/trade_item_holder/trade_item_2": { type: T.GRID, children: string }, + "toggle_content/trade_item_holder/padding_right": { type: T.PANEL, children: string }, + "toggle_content/padding_2": { type: T.PANEL, children: string }, + "toggle_content/arrow_holder": { type: T.PANEL, children: string }, + "toggle_content/padding_3": { type: T.PANEL, children: string }, + "toggle_content/sell_item_holder": { type: T.PANEL, children: 'sell_item' }, + "toggle_content/sell_item_holder/sell_item": { type: T.GRID, children: string }, + "toggle_content/padding_4": { type: T.PANEL, children: string }, + "left_panel": { type: T.STACK_PANEL, children: 'gamepad_helpers_and_tabs_holder' | 'content' }, + "left_panel/gamepad_helpers_and_tabs_holder": { type: T.PANEL, children: 'tabs_left_gamepad_helpers' | 'navigation_tabs_holder' }, + "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": { type: T.PANEL, children: string }, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": { type: T.PANEL, children: 'left_navigation_tabs' }, + "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": { type: T.STACK_PANEL, children: string }, + "left_panel/content": { type: T.INPUT_PANEL, children: 'bg' | 'inventory_scroll_panel' | 'trade_scroll_panel' }, + "left_panel/content/bg": { type: T.PANEL, children: string }, + "left_panel/content/inventory_scroll_panel": { type: T.PANEL, children: string }, + "left_panel/content/trade_scroll_panel": { type: T.PANEL, children: string }, + "pocket_hotbar_and_content_panels": { type: T.STACK_PANEL, children: string }, + "screen_panel": { type: T.PANEL, children: 'pocket_hotbar_and_content_panels' | 'container_gamepad_helpers' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'inventory_selected_icon_button' | 'inventory_take_progress_icon_button' | 'flying_item_renderer' }, + "screen_panel/pocket_hotbar_and_content_panels": { type: T.STACK_PANEL, children: string }, + "screen_panel/container_gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "screen_panel/selected_item_details_factory": { type: T.FACTORY, children: string }, + "screen_panel/item_lock_notification_factory": { type: T.FACTORY, children: string }, + "screen_panel/inventory_selected_icon_button": { type: T.BUTTON, children: string }, + "screen_panel/inventory_take_progress_icon_button": { type: T.BUTTON, children: string }, + "screen_panel/flying_item_renderer": { type: T.CUSTOM, children: string }, } 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": { type: T.IMAGE, children: string }, + "normal_description_label": { type: T.LABEL, children: string }, + "trialTime": { type: T.CUSTOM, children: string }, + "trial_label": { type: T.LABEL, children: string }, + "trial_description_panel": { type: T.PANEL, children: 'description_text' }, + "trial_description_panel/description_text": { type: T.LABEL, children: string }, + "trial_expired_description_panel": { type: T.STACK_PANEL, children: 'vertical_padding_0' | 'line1' | 'vertical_padding_1' | 'line2' | 'line3' | 'line4' | 'line5' }, + "trial_expired_description_panel/vertical_padding_0": { type: T.PANEL, children: string }, + "trial_expired_description_panel/line1": { type: T.LABEL, children: string }, + "trial_expired_description_panel/vertical_padding_1": { type: T.PANEL, children: string }, + "trial_expired_description_panel/line2": { type: T.LABEL, children: string }, + "trial_expired_description_panel/line3": { type: T.LABEL, children: string }, + "trial_expired_description_panel/line4": { type: T.LABEL, children: string }, + "trial_expired_description_panel/line5": { type: T.LABEL, children: string }, + "continue_button": { type: T.BUTTON, children: string }, + "buy_button": { type: T.BUTTON, children: string }, + "root_panel": { type: T.PANEL, children: string }, + "trial_upsell_screen_dialog": { type: T.PANEL, children: string }, + "trial_upsell_expired_screen_dialog": { type: T.PANEL, children: string }, + "button_content_panel": { type: T.PANEL, children: 'buy' | 'continue' }, + "button_content_panel/buy": { type: T.BUTTON, children: string }, + "button_content_panel/continue": { type: T.BUTTON, children: string }, + "trial_upsell_screen": { type: T.SCREEN, children: string }, + "trial_upsell_screen_content": { type: T.PANEL, children: 'trialTime' | 'root_panel' }, + "trial_upsell_screen_content/trialTime": { type: T.CUSTOM, children: string }, + "trial_upsell_screen_content/root_panel": { type: T.PANEL, children: 'trial_upsell_screen_dialog' }, + "trial_upsell_screen_content/root_panel/trial_upsell_screen_dialog": { type: T.PANEL, children: string }, + "trial_upsell_expired_screen": { type: T.SCREEN, children: string }, + "trial_upsell_expired_screen_content": { type: T.PANEL, children: 'trialTime' | 'root_panel' }, + "trial_upsell_expired_screen_content/trialTime": { type: T.CUSTOM, children: string }, + "trial_upsell_expired_screen_content/root_panel": { type: T.PANEL, children: 'trial_upsell_expired_screen_dialog' }, + "trial_upsell_expired_screen_content/root_panel/trial_upsell_expired_screen_dialog": { type: T.PANEL, children: string }, + "content_description_panel": { type: T.PANEL, children: 'scrolling_panel' }, + "content_description_panel/scrolling_panel": { type: T.PANEL, children: string }, } 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": { type: T.PANEL, children: string }, + "world_label": { type: T.LABEL, children: string }, + "world_image": { type: T.IMAGE, children: string }, + "button_content": { type: T.PANEL, children: 'stack_panel' }, + "button_content/stack_panel": { type: T.STACK_PANEL, children: 'world_label' | 'world_panel' }, + "button_content/stack_panel/world_label": { type: T.LABEL, children: string }, + "button_content/stack_panel/world_panel": { type: T.PANEL, children: 'background' }, + "button_content/stack_panel/world_panel/background": { type: T.IMAGE, children: 'world_image' }, + "button_content/stack_panel/world_panel/background/world_image": { type: T.IMAGE, children: string }, + "grid_item": { type: T.PANEL, children: 'button' }, + "grid_item/button": { type: T.BUTTON, children: string }, + "place_holder_control": { type: T.PANEL, children: 'search_icon' | 'place_holder_text' }, + "place_holder_control/search_icon": { type: T.IMAGE, children: string }, + "place_holder_control/place_holder_text": { type: T.LABEL, children: string }, + "search_box": { type: T.EDIT_BOX, children: string }, + "grid_content": { type: T.GRID, children: string }, + "scrolling_content": { type: T.PANEL, children: 'grid_content' }, + "scrolling_content/grid_content": { type: T.GRID, children: string }, + "main_panel": { type: T.STACK_PANEL, children: 'padding_0' | 'centerer_panel_0' | 'padding_1' | 'centerer_panel_1' | 'padding_2' }, + "main_panel/padding_0": { type: T.PANEL, children: string }, + "main_panel/centerer_panel_0": { type: T.PANEL, children: 'search_box' }, + "main_panel/centerer_panel_0/search_box": { type: T.EDIT_BOX, children: string }, + "main_panel/padding_1": { type: T.PANEL, children: string }, + "main_panel/centerer_panel_1": { type: T.PANEL, children: 'scrolling_panel' }, + "main_panel/centerer_panel_1/scrolling_panel": { type: T.PANEL, children: string }, + "main_panel/padding_2": { type: T.PANEL, children: string }, + "ugc_viewer_screen": { type: T.SCREEN, children: string }, + "screen_content": { type: T.PANEL, children: 'main_panel' }, + "screen_content/main_panel": { type: T.PANEL, children: string }, } 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": { type: T.IMAGE, children: string }, + "title_image_edu": { type: T.IMAGE, children: string }, + "splash_text": { type: T.CUSTOM, children: string }, + "title_panel_pocket": { type: T.PANEL, children: 'title_image' | 'splash_text' }, + "title_panel_pocket/title_image": { type: T.IMAGE, children: string }, + "title_panel_pocket/splash_text": { type: T.CUSTOM, children: string }, + "title_panel_win10": { type: T.PANEL, children: 'title_image' | 'splash_text' }, + "title_panel_win10/title_image": { type: T.IMAGE, children: string }, + "title_panel_win10/splash_text": { type: T.CUSTOM, children: string }, + "title_panel_osx": { type: T.PANEL, children: 'title_image' | 'splash_text' }, + "title_panel_osx/title_image": { type: T.IMAGE, children: string }, + "title_panel_osx/splash_text": { type: T.CUSTOM, children: string }, + "title_panel_edu_desktop": { type: T.PANEL, children: 'banner_control' | 'title_control' }, + "title_panel_edu_desktop/banner_control": { type: T.PANEL, children: 'banner' | 'drop_shadow' }, + "title_panel_edu_desktop/banner_control/banner": { type: T.IMAGE, children: string }, + "title_panel_edu_desktop/banner_control/drop_shadow": { type: T.IMAGE, children: string }, + "title_panel_edu_desktop/title_control": { type: T.PANEL, children: 'title_image_edu' | 'splash_text' }, + "title_panel_edu_desktop/title_control/title_image_edu": { type: T.IMAGE, children: string }, + "title_panel_edu_desktop/title_control/splash_text": { type: T.CUSTOM, children: string }, + "title_panel_edu_mobile": { type: T.PANEL, children: 'title_control' }, + "title_panel_edu_mobile/title_control": { type: T.PANEL, children: 'title_image_edu' | 'splash_text' }, + "title_panel_edu_mobile/title_control/title_image_edu": { type: T.IMAGE, children: string }, + "title_panel_edu_mobile/title_control/splash_text": { type: T.CUSTOM, children: string }, + "title_panel_content": { type: T.PANEL, children: string }, + "start_title_panel_content": { type: T.PANEL, children: string }, + "pause_logo_panel": { type: T.INPUT_PANEL, children: 'logo' }, + "pause_logo_panel/logo": { type: T.UNKNOWN, children: string }, } 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": { type: T.PANEL, children: string }, + "vertical_padding_8px": { type: T.PANEL, children: string }, + "horizontal_padding_2px": { type: T.PANEL, children: string }, + "empty_image": { type: T.IMAGE, children: string }, + "horizontal_stack_panel": { type: T.STACK_PANEL, children: string }, + "vertical_stack_panel": { type: T.STACK_PANEL, children: string }, + "vert_stack_centering_panel": { type: T.PANEL, children: 'stack_content' }, + "vert_stack_centering_panel/stack_content": { type: T.UNKNOWN, children: string }, + "button": { type: T.BUTTON, children: string }, + "screen_header_title_panel": { type: T.PANEL, children: 'store_header_title' }, + "screen_header_title_panel/store_header_title": { type: T.LABEL, children: string }, + "back_button": { type: T.BUTTON, children: string }, + "back_title_button": { type: T.STACK_PANEL, children: 'panel1' | 'padding1' | 'panel2' }, + "back_title_button/panel1": { type: T.PANEL, children: 'button' }, + "back_title_button/panel1/button": { type: T.BUTTON, children: string }, + "back_title_button/padding1": { type: T.PANEL, children: string }, + "back_title_button/panel2": { type: T.PANEL, children: 'label' }, + "back_title_button/panel2/label": { type: T.LABEL, children: string }, + "chevron_image": { type: T.IMAGE, children: string }, + "back_button_content": { type: T.STACK_PANEL, children: 'chevron_panel' | 'padding1' | 'label_panel' }, + "back_button_content/chevron_panel": { type: T.PANEL, children: 'left_chevron' }, + "back_button_content/chevron_panel/left_chevron": { type: T.IMAGE, children: string }, + "back_button_content/padding1": { type: T.PANEL, children: string }, + "back_button_content/label_panel": { type: T.PANEL, children: 'label' }, + "back_button_content/label_panel/label": { type: T.LABEL, children: string }, + "label_hover": { type: T.PANEL, children: 'hover' }, + "label_hover/hover": { type: T.IMAGE, children: string }, + "tts_activate_sibling": { type: T.BUTTON, children: 'default' | 'pressed' | 'hover' }, + "tts_activate_sibling/default": { type: T.PANEL, children: string }, + "tts_activate_sibling/pressed": { type: T.PANEL, children: string }, + "tts_activate_sibling/hover": { type: T.PANEL, children: string }, + "back_title_button_content": { type: T.STACK_PANEL, children: 'padding1' | 'chevron_panel' | 'padding2' }, + "back_title_button_content/padding1": { type: T.PANEL, children: string }, + "back_title_button_content/chevron_panel": { type: T.PANEL, children: 'left_chevron' }, + "back_title_button_content/chevron_panel/left_chevron": { type: T.IMAGE, children: string }, + "back_title_button_content/padding2": { type: T.PANEL, children: string }, + "toggle_visuals": { type: T.PANEL, children: 'unchecked' | 'checked' | 'unchecked_hover' | 'checked_hover' | 'unchecked_locked' | 'checked_locked' | 'unchecked_locked_hover' | 'checked_locked_hover' }, + "toggle_visuals/unchecked": { type: T.UNKNOWN, children: string }, + "toggle_visuals/checked": { type: T.UNKNOWN, children: string }, + "toggle_visuals/unchecked_hover": { type: T.UNKNOWN, children: string }, + "toggle_visuals/checked_hover": { type: T.UNKNOWN, children: string }, + "toggle_visuals/unchecked_locked": { type: T.UNKNOWN, children: string }, + "toggle_visuals/checked_locked": { type: T.UNKNOWN, children: string }, + "toggle_visuals/unchecked_locked_hover": { type: T.UNKNOWN, children: string }, + "toggle_visuals/checked_locked_hover": { type: T.UNKNOWN, children: string }, + "toggle": { type: T.PANEL, children: string }, + "radio_toggle": { type: T.PANEL, children: string }, + "checkbox": { type: T.PANEL, children: string }, + "checkbox_image": { type: T.IMAGE, children: string }, + "checked_image": { type: T.IMAGE, children: string }, + "unchecked_image": { type: T.IMAGE, children: string }, + "checked_hover_image": { type: T.IMAGE, children: string }, + "unchecked_hover_image": { type: T.IMAGE, children: string }, + "rotating_text": { type: T.CAROUSEL_LABEL, children: string }, + "button_text": { type: T.LABEL, children: string }, + "toggle_state_template": { type: T.IMAGE, children: string }, + "new_button_label": { type: T.LABEL, children: string }, + "checkbox_checked_state": { type: T.IMAGE, children: string }, + "checkbox_unchecked_state": { type: T.IMAGE, children: string }, + "checkbox_checked_hover_state": { type: T.IMAGE, children: string }, + "checkbox_unchecked_hover_state": { type: T.IMAGE, children: string }, + "checkbox_checked_locked_state": { type: T.IMAGE, children: string }, + "checkbox_unchecked_locked_state": { type: T.IMAGE, children: string }, + "radio_toggle_checked_state": { type: T.IMAGE, children: string }, + "radio_toggle_unchecked_state": { type: T.IMAGE, children: string }, + "radio_toggle_checked_hover_state": { type: T.IMAGE, children: string }, + "radio_toggle_unchecked_hover_state": { type: T.IMAGE, children: string }, + "radio_toggle_checked_locked_state": { type: T.IMAGE, children: string }, + "radio_toggle_unchecked_locked_state": { type: T.IMAGE, children: string }, + "slider_button_state": { type: T.IMAGE, children: string }, + "slider_button_layout": { type: T.IMAGE, children: string }, + "slider_button_hover_layout": { type: T.IMAGE, children: string }, + "slider_button_locked_layout": { type: T.IMAGE, children: string }, + "slider_button_indent_layout": { type: T.IMAGE, children: string }, + "slider_box": { type: T.SLIDER_BOX, children: 'default' | 'hover' | 'indent' | 'locked' }, + "slider_box/default": { type: T.UNKNOWN, children: string }, + "slider_box/hover": { type: T.UNKNOWN, children: string }, + "slider_box/indent": { type: T.UNKNOWN, children: string }, + "slider_box/locked": { type: T.UNKNOWN, children: 'transparent_grey' }, + "slider_box/locked/transparent_grey": { type: T.IMAGE, children: string }, + "slider_background": { type: T.IMAGE, children: string }, + "slider_background_hover": { type: T.IMAGE, children: string }, + "slider_progress": { type: T.IMAGE, children: string }, + "slider_progress_hover": { type: T.IMAGE, children: string }, + "slider_border": { type: T.IMAGE, children: string }, + "slider_bar_default": { type: T.IMAGE, children: 'sizing_panel' | 'transparent_grey' }, + "slider_bar_default/sizing_panel": { type: T.PANEL, children: string }, + "slider_bar_default/transparent_grey": { type: T.IMAGE, children: string }, + "slider_bar_hover": { type: T.IMAGE, children: string }, + "slider_step": { type: T.IMAGE, children: string }, + "slider_step_hover": { type: T.IMAGE, children: string }, + "slider_step_progress": { type: T.IMAGE, children: string }, + "slider_step_progress_hover": { type: T.IMAGE, children: string }, + "slider": { type: T.SLIDER, children: 'slider_box' | 'slider_bar_default' | 'slider_bar_hover' }, + "slider/slider_box": { type: T.SLIDER_BOX, children: string }, + "slider/slider_bar_default": { type: T.IMAGE, children: string }, + "slider/slider_bar_hover": { type: T.IMAGE, children: string }, + "dropdown_background": { type: T.IMAGE, children: string }, + "dropdown": { type: T.PANEL, children: 'dropdown_content' }, + "dropdown/dropdown_content": { type: T.INPUT_PANEL, children: '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' }, + "dropdown/dropdown_content/0": { type: T.UNKNOWN, children: string }, + "dropdown_no_scrollpanel": { type: T.PANEL, children: string }, + "square_image_border_white": { type: T.IMAGE, children: string }, + "focus_border_white": { type: T.IMAGE, children: string }, + "focus_border_yellow": { type: T.IMAGE, children: string }, + "focus_border_black": { type: T.IMAGE, children: string }, + "non_interact_focus_border": { type: T.IMAGE, children: string }, + "non_interact_focus_border_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' | 'content' }, + "non_interact_focus_border_button/default": { type: T.UNKNOWN, children: string }, + "non_interact_focus_border_button/hover": { type: T.UNKNOWN, children: string }, + "non_interact_focus_border_button/pressed": { type: T.UNKNOWN, children: string }, + "non_interact_focus_border_button/content": { type: T.UNKNOWN, children: string }, + "tts_label_focus_wrapper": { type: T.PANEL, children: 'label' | 'focus_border' }, + "tts_label_focus_wrapper/label": { type: T.UNKNOWN, children: string }, + "tts_label_focus_wrapper/focus_border": { type: T.BUTTON, children: string }, + "default_indent": { type: T.IMAGE, children: string }, + "edit_box_indent": { type: T.IMAGE, children: string }, + "edit_box_indent_hover": { type: T.IMAGE, children: string }, + "transparent_edit_box_indent": { type: T.IMAGE, children: string }, + "transparent_edit_box_indent_hover": { type: T.IMAGE, children: string }, + "text_edit_box_label": { type: T.LABEL, children: string }, + "text_edit_box_place_holder_label": { type: T.LABEL, children: string }, + "text_magnifying_glass_image": { type: T.IMAGE, children: string }, + "text_close_X_button_image": { type: T.IMAGE, children: string }, + "text_close_X_button_image_hover": { type: T.IMAGE, children: string }, + "clear_text_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "clear_text_button/default": { type: T.IMAGE, children: string }, + "clear_text_button/hover": { type: T.IMAGE, children: string }, + "clear_text_button/pressed": { type: T.IMAGE, children: string }, + "text_edit_box": { type: T.EDIT_BOX, children: 'centering_panel' | 'locked' | 'default' | 'hover' | 'pressed' }, + "text_edit_box/centering_panel": { type: T.PANEL, children: 'clipper_panel' }, + "text_edit_box/centering_panel/clipper_panel": { type: T.PANEL, children: 'magnifying_glass' | 'clear_text_button_panel' | 'visibility_panel' }, + "text_edit_box/centering_panel/clipper_panel/magnifying_glass": { type: T.IMAGE, children: string }, + "text_edit_box/centering_panel/clipper_panel/clear_text_button_panel": { type: T.PANEL, children: 'clear_text_button' }, + "text_edit_box/centering_panel/clipper_panel/clear_text_button_panel/clear_text_button": { type: T.BUTTON, children: string }, + "text_edit_box/centering_panel/clipper_panel/visibility_panel": { type: T.PANEL, children: 'place_holder_control' }, + "text_edit_box/centering_panel/clipper_panel/visibility_panel/place_holder_control": { type: T.UNKNOWN, children: string }, + "text_edit_box/locked": { type: T.PANEL, children: 'edit_box_indent' }, + "text_edit_box/locked/edit_box_indent": { type: T.UNKNOWN, children: string }, + "text_edit_box/default": { type: T.UNKNOWN, children: string }, + "text_edit_box/hover": { type: T.UNKNOWN, children: string }, + "text_edit_box/pressed": { type: T.UNKNOWN, children: string }, + "text_edit_box_scrolling_content": { type: T.INPUT_PANEL, children: string }, + "scrollable_text_edit_box": { type: T.EDIT_BOX, children: 'centering_panel' | 'locked' | 'default' | 'hover' | 'pressed' }, + "scrollable_text_edit_box/centering_panel": { type: T.PANEL, children: 'clipper_panel' }, + "scrollable_text_edit_box/centering_panel/clipper_panel": { type: T.PANEL, children: 'text_edit_text_control' | 'visibility_panel' }, + "scrollable_text_edit_box/centering_panel/clipper_panel/text_edit_text_control": { type: T.PANEL, children: string }, + "scrollable_text_edit_box/centering_panel/clipper_panel/visibility_panel": { type: T.PANEL, children: 'place_holder_control' }, + "scrollable_text_edit_box/centering_panel/clipper_panel/visibility_panel/place_holder_control": { type: T.UNKNOWN, children: string }, + "scrollable_text_edit_box/locked": { type: T.PANEL, children: 'edit_box_indent' }, + "scrollable_text_edit_box/locked/edit_box_indent": { type: T.UNKNOWN, children: string }, + "scrollable_text_edit_box/default": { type: T.UNKNOWN, children: string }, + "scrollable_text_edit_box/hover": { type: T.UNKNOWN, children: string }, + "scrollable_text_edit_box/pressed": { type: T.UNKNOWN, children: string }, + "transparent_text_edit_box": { type: T.EDIT_BOX, children: 'clipper_panel' | 'locked' | 'default' | 'hover' | 'pressed' }, + "transparent_text_edit_box/clipper_panel": { type: T.PANEL, children: 'visibility_panel' }, + "transparent_text_edit_box/clipper_panel/visibility_panel": { type: T.PANEL, children: 'place_holder_control' }, + "transparent_text_edit_box/clipper_panel/visibility_panel/place_holder_control": { type: T.UNKNOWN, children: string }, + "transparent_text_edit_box/locked": { type: T.PANEL, children: 'edit_box_indent' }, + "transparent_text_edit_box/locked/edit_box_indent": { type: T.UNKNOWN, children: string }, + "transparent_text_edit_box/default": { type: T.UNKNOWN, children: string }, + "transparent_text_edit_box/hover": { type: T.UNKNOWN, children: string }, + "transparent_text_edit_box/pressed": { type: T.UNKNOWN, children: string }, + "multiline_text_edit_box": { type: T.EDIT_BOX, children: string }, + "scrollable_multiline_text_edit_box": { type: T.EDIT_BOX, children: string }, + "dirt_background": { type: T.IMAGE, children: string }, + "portal_background": { type: T.IMAGE, children: string }, + "empty_progress_bar": { type: T.IMAGE, children: string }, + "filled_progress_bar": { type: T.IMAGE, children: string }, + "empty_progress_bar_beveled": { type: T.IMAGE, children: string }, + "progress_bar_beveled_overlay": { type: T.IMAGE, children: string }, + "filled_progress_bar_for_collections": { type: T.IMAGE, children: string }, + "progress_bar": { type: T.PANEL, children: 'empty_progress_bar' | 'filled_progress_bar' }, + "progress_bar/empty_progress_bar": { type: T.IMAGE, children: string }, + "progress_bar/filled_progress_bar": { type: T.IMAGE, children: string }, + "progress_bar_for_collections": { type: T.PANEL, children: 'empty_progress_bar' | 'filled_progress_bar_for_collections' }, + "progress_bar_for_collections/empty_progress_bar": { type: T.IMAGE, children: string }, + "progress_bar_for_collections/filled_progress_bar_for_collections": { type: T.IMAGE, children: string }, + "horizontal_divider": { type: T.PANEL, children: 'divider_image' }, + "horizontal_divider/divider_image": { type: T.IMAGE, children: string }, + "vertical_divider": { type: T.PANEL, children: 'divider_image' }, + "vertical_divider/divider_image": { type: T.IMAGE, children: string }, + "underline": { type: T.IMAGE, children: string }, + "single_line_label": { type: T.PANEL, children: 'label_panel' }, + "single_line_label/label_panel": { type: T.LABEL, children: '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' }, + "single_line_label/label_panel/0": { type: T.UNKNOWN, children: string }, + "gamepad_helper_icon_description": { type: T.LABEL, children: string }, + "gamepad_helper_icon_image": { type: T.IMAGE, children: string }, + "keyboard_helper_icon_image": { type: T.IMAGE, children: string }, + "gamepad_helper": { type: T.STACK_PANEL, children: 'icon_panel' | 'description_panel' }, + "gamepad_helper/icon_panel": { type: T.PANEL, children: string }, + "gamepad_helper/description_panel": { type: T.PANEL, children: 'desc' }, + "gamepad_helper/description_panel/desc": { type: T.UNKNOWN, children: string }, + "gamepad_helpers": { type: T.STACK_PANEL, children: string }, + "gamepad_helpers_a_and_b": { type: T.STACK_PANEL, children: 'gamepad_helper_a' | 'control' | 'gamepad_helper_b' }, + "gamepad_helpers_a_and_b/gamepad_helper_a": { type: T.STACK_PANEL, children: string }, + "gamepad_helpers_a_and_b/control": { type: T.PANEL, children: string }, + "gamepad_helpers_a_and_b/gamepad_helper_b": { type: T.STACK_PANEL, children: string }, + "container_gamepad_helpers": { type: T.STACK_PANEL, children: 'fill_panel' | 'buttons' | 'buffer_panel_right' }, + "container_gamepad_helpers/fill_panel": { type: T.PANEL, children: string }, + "container_gamepad_helpers/buttons": { type: T.STACK_PANEL, children: 'gamepad_helper_x' | 'gamepad_helper_a' | 'gamepad_helper_y' | 'gamepad_helper_b' }, + "container_gamepad_helpers/buttons/gamepad_helper_x": { type: T.UNKNOWN, children: string }, + "container_gamepad_helpers/buttons/gamepad_helper_a": { type: T.UNKNOWN, children: string }, + "container_gamepad_helpers/buttons/gamepad_helper_y": { type: T.UNKNOWN, children: string }, + "container_gamepad_helpers/buttons/gamepad_helper_b": { type: T.UNKNOWN, children: string }, + "container_gamepad_helpers/buffer_panel_right": { type: T.PANEL, children: string }, + "tabs_left_gamepad_helpers": { type: T.PANEL, children: 'gamepad_helper_left_bumper' | 'gamepad_helper_left_trigger' }, + "tabs_left_gamepad_helpers/gamepad_helper_left_bumper": { type: T.STACK_PANEL, children: string }, + "tabs_left_gamepad_helpers/gamepad_helper_left_trigger": { type: T.STACK_PANEL, children: string }, + "tabs_right_gamepad_helpers": { type: T.PANEL, children: 'gamepad_helper_right_bumper' | 'gamepad_helper_right_trigger' }, + "tabs_right_gamepad_helpers/gamepad_helper_right_bumper": { type: T.STACK_PANEL, children: string }, + "tabs_right_gamepad_helpers/gamepad_helper_right_trigger": { type: T.STACK_PANEL, children: string }, + "keyboard_helper_description": { type: T.LABEL, children: string }, + "keyboard_helper": { type: T.STACK_PANEL, children: 'image_centerer' | 'centerer' }, + "keyboard_helper/image_centerer": { type: T.PANEL, children: 'image' }, + "keyboard_helper/image_centerer/image": { type: T.IMAGE, children: 'keyboard_character' }, + "keyboard_helper/image_centerer/image/keyboard_character": { type: T.LABEL, children: string }, + "keyboard_helper/centerer": { type: T.PANEL, children: 'desc' }, + "keyboard_helper/centerer/desc": { type: T.UNKNOWN, children: string }, + "keyboard_helpers": { type: T.PANEL, children: string }, + "gamepad_icon_button": { type: T.IMAGE, children: string }, + "gamepad_helper_start": { type: T.STACK_PANEL, children: string }, + "gamepad_helper_a": { type: T.STACK_PANEL, children: string }, + "gamepad_helper_a_14": { type: T.STACK_PANEL, children: string }, + "gamepad_helper_b": { type: T.STACK_PANEL, children: string }, + "gamepad_helper_b_14": { type: T.STACK_PANEL, children: string }, + "gamepad_helper_x": { type: T.STACK_PANEL, children: string }, + "gamepad_helper_x_14": { type: T.STACK_PANEL, children: string }, + "gamepad_helper_y": { type: T.STACK_PANEL, children: string }, + "gamepad_helper_y_14": { type: T.STACK_PANEL, children: string }, + "keyboard_helper_keys": { type: T.STACK_PANEL, children: string }, + "gamepad_helper_left_trigger": { type: T.STACK_PANEL, children: string }, + "gamepad_helper_right_trigger": { type: T.STACK_PANEL, children: string }, + "keyboard_left_trigger": { type: T.STACK_PANEL, children: string }, + "keyboard_right_trigger": { type: T.STACK_PANEL, children: string }, + "gamepad_icon_dpad": { type: T.IMAGE, children: string }, + "gamepad_helper_dpad": { type: T.STACK_PANEL, children: string }, + "gamepad_helper_dpad_down": { type: T.STACK_PANEL, children: string }, + "gamepad_helper_dpad_left": { type: T.STACK_PANEL, children: string }, + "gamepad_helper_dpad_right": { type: T.STACK_PANEL, children: string }, + "gamepad_helper_dpad_up": { type: T.STACK_PANEL, children: string }, + "gamepad_icon_thumbstick": { type: T.IMAGE, children: string }, + "gamepad_helper_thumbstick": { type: T.STACK_PANEL, children: string }, + "gamepad_helper_thumbstick_right": { type: T.STACK_PANEL, children: string }, + "gamepad_helper_thumbstick_left": { type: T.STACK_PANEL, children: string }, + "gamepad_helper_left_bumper": { type: T.STACK_PANEL, children: string }, + "gamepad_helper_right_bumper": { type: T.STACK_PANEL, children: string }, + "dialog_background_common": { type: T.IMAGE, children: string }, + "dialog_background_hollow_common": { type: T.IMAGE, children: 'control' }, + "dialog_background_hollow_common/control": { type: T.IMAGE, children: string }, + "dialog_background_opaque": { type: T.IMAGE, children: string }, + "dialog_background_hollow_1": { type: T.IMAGE, children: string }, + "dialog_background_hollow_2": { type: T.IMAGE, children: string }, + "dialog_background_hollow_3": { type: T.IMAGE, children: string }, + "dialog_background_hollow_4": { type: T.IMAGE, children: string }, + "dialog_background_hollow_4_thin": { type: T.IMAGE, children: string }, + "dialog_background_hollow_5": { type: T.IMAGE, children: string }, + "dialog_background_hollow_6": { type: T.IMAGE, children: string }, + "dialog_background_hollow_7": { type: T.IMAGE, children: string }, + "dialog_background_hollow_8": { type: T.IMAGE, children: string }, + "dialog_divider": { type: T.IMAGE, children: string }, + "normal_button": { type: T.IMAGE, children: string }, + "normal_stroke_button": { type: T.IMAGE, children: string }, + "section_heading_label": { type: T.LABEL, children: string }, + "section_divider": { type: T.STACK_PANEL, children: 'padding1' | 'divider_parent' | 'padding2' }, + "section_divider/padding1": { type: T.PANEL, children: string }, + "section_divider/divider_parent": { type: T.PANEL, children: 'divider' }, + "section_divider/divider_parent/divider": { type: T.IMAGE, children: string }, + "section_divider/padding2": { type: T.PANEL, children: string }, + "minecraftTenLabel": { type: T.LABEL, children: string }, + "close_button_image": { type: T.IMAGE, children: string }, + "close_button_panel": { type: T.PANEL, children: 'close_button_image' }, + "close_button_panel/close_button_image": { type: T.IMAGE, children: string }, + "close_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "close_button/default": { type: T.PANEL, children: string }, + "close_button/hover": { type: T.PANEL, children: string }, + "close_button/pressed": { type: T.PANEL, children: string }, + "close_button_grey_bg": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "close_button_grey_bg/default": { type: T.PANEL, children: string }, + "close_button_grey_bg/hover": { type: T.PANEL, children: string }, + "close_button_grey_bg/pressed": { type: T.PANEL, children: string }, + "close_button_high_contrast": { type: T.BUTTON, children: 'background' | 'default' | 'hover' | 'pressed' }, + "close_button_high_contrast/background": { type: T.IMAGE, children: string }, + "close_button_high_contrast/default": { type: T.PANEL, children: string }, + "close_button_high_contrast/hover": { type: T.PANEL, children: string }, + "close_button_high_contrast/pressed": { type: T.PANEL, children: string }, + "compact_close_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "compact_close_button/default": { type: T.PANEL, children: string }, + "compact_close_button/hover": { type: T.PANEL, children: string }, + "compact_close_button/pressed": { type: T.PANEL, children: string }, + "light_close_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "light_close_button/default": { type: T.PANEL, children: string }, + "light_close_button/hover": { type: T.PANEL, children: string }, + "light_close_button/pressed": { type: T.PANEL, children: string }, + "help_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "help_button/default": { type: T.IMAGE, children: string }, + "help_button/hover": { type: T.IMAGE, children: string }, + "help_button/pressed": { type: T.IMAGE, children: string }, + "cell_image": { type: T.IMAGE, children: string }, + "cell_image_selected": { type: T.IMAGE, children: string }, + "cell_image_panel": { type: T.PANEL, children: 'cell_image' | 'cell_image_selected' }, + "cell_image_panel/cell_image": { type: T.IMAGE, children: string }, + "cell_image_panel/cell_image_selected": { type: T.IMAGE, children: string }, + "cell_overlay": { type: T.UNKNOWN, children: string }, + "highlight_slot": { type: T.IMAGE, children: string }, + "white_border_slot": { type: T.IMAGE, children: string }, + "progressive_select_progress_bar": { type: T.PANEL, children: 'stack_progress_bar_down' }, + "progressive_select_progress_bar/stack_progress_bar_down": { type: T.IMAGE, children: 'progressive_select_progress_bar' | 'progressive_select_text' }, + "progressive_select_progress_bar/stack_progress_bar_down/progressive_select_progress_bar": { type: T.IMAGE, children: string }, + "progressive_select_progress_bar/stack_progress_bar_down/progressive_select_text": { type: T.LABEL, children: string }, + "stack_splitting_overlay": { type: T.PANEL, children: 'classic_stack_splitting_overlay' | 'pocket_stack_splitting_overlay' }, + "stack_splitting_overlay/classic_stack_splitting_overlay": { type: T.PANEL, children: 'stack_splitting_bar' }, + "stack_splitting_overlay/classic_stack_splitting_overlay/stack_splitting_bar": { type: T.PANEL, children: string }, + "stack_splitting_overlay/pocket_stack_splitting_overlay": { type: T.PANEL, children: 'stack_splitting_bar' }, + "stack_splitting_overlay/pocket_stack_splitting_overlay/stack_splitting_bar": { type: T.PANEL, children: string }, + "inventory_hold_icon_holding": { type: T.PANEL, children: 'progressive_down' | 'progressive_up' | 'progressive_left_side' | 'progressive_right_side' }, + "inventory_hold_icon_holding/progressive_down": { type: T.PANEL, children: string }, + "inventory_hold_icon_holding/progressive_up": { type: T.PANEL, children: string }, + "inventory_hold_icon_holding/progressive_left_side": { type: T.PANEL, children: string }, + "inventory_hold_icon_holding/progressive_right_side": { type: T.PANEL, children: string }, + "inventory_hold_icon_release": { type: T.CUSTOM, children: string }, + "highlight_slot_panel": { type: T.PANEL, children: 'highlight' | 'white_border' }, + "highlight_slot_panel/highlight": { type: T.IMAGE, children: 'hover_text' }, + "highlight_slot_panel/highlight/hover_text": { type: T.CUSTOM, children: string }, + "highlight_slot_panel/white_border": { type: T.IMAGE, children: string }, + "pocket_ui_highlight_slot": { type: T.IMAGE, children: string }, + "hover_text": { type: T.CUSTOM, children: string }, + "screen_background": { type: T.IMAGE, children: string }, + "stack_count_label": { type: T.LABEL, children: string }, + "durability_bar": { type: T.CUSTOM, children: string }, + "durability_bar_grabbed": { type: T.CUSTOM, children: string }, + "storage_bar": { type: T.CUSTOM, children: string }, + "storage_bar_grabbed": { type: T.CUSTOM, children: string }, + "item_renderer": { type: T.CUSTOM, children: string }, + "filtered_item_renderer": { type: T.CUSTOM, children: string }, + "flying_item_renderer": { type: T.CUSTOM, children: string }, + "selected_item_details": { type: T.PANEL, children: 'item_panel_image' }, + "selected_item_details/item_panel_image": { type: T.IMAGE, children: string }, + "item_panel_image": { type: T.IMAGE, children: 'item_text_label' }, + "item_panel_image/item_text_label": { type: T.LABEL, children: string }, + "item_text_label": { type: T.LABEL, children: string }, + "selected_item_details_factory": { type: T.FACTORY, children: string }, + "item_lock_notification": { type: T.PANEL, children: 'notification_background_image' }, + "item_lock_notification/notification_background_image": { type: T.IMAGE, children: 'notification_text_label' }, + "item_lock_notification/notification_background_image/notification_text_label": { type: T.LABEL, children: string }, + "item_lock_notification_factory": { type: T.FACTORY, children: string }, + "empty_panel_size_y_0": { type: T.PANEL, children: string }, + "scroll_background_and_viewport": { type: T.PANEL, children: 'background' | 'scrolling_view_port' }, + "scroll_background_and_viewport/background": { type: T.UNKNOWN, children: string }, + "scroll_background_and_viewport/scrolling_view_port": { type: T.PANEL, children: 'scrolling_content' }, + "scroll_background_and_viewport/scrolling_view_port/scrolling_content": { type: T.UNKNOWN, children: string }, + "scroll_bar_and_track": { type: T.PANEL, children: 'stack_panel' }, + "scroll_bar_and_track/stack_panel": { type: T.STACK_PANEL, children: 'empty_panel_0' | 'panel' | 'empty_panel_1' }, + "scroll_bar_and_track/stack_panel/empty_panel_0": { type: T.PANEL, children: string }, + "scroll_bar_and_track/stack_panel/panel": { type: T.PANEL, children: 'centered_panel' }, + "scroll_bar_and_track/stack_panel/panel/centered_panel": { type: T.PANEL, children: 'track' | 'scroll_box' }, + "scroll_bar_and_track/stack_panel/panel/centered_panel/track": { type: T.SCROLL_TRACK, children: string }, + "scroll_bar_and_track/stack_panel/panel/centered_panel/scroll_box": { type: T.PANEL, children: string }, + "scroll_bar_and_track/stack_panel/empty_panel_1": { type: T.PANEL, children: string }, + "scroll_view_control": { type: T.SCROLL_VIEW, children: 'stack_panel' | 'panel' }, + "scroll_view_control/stack_panel": { type: T.STACK_PANEL, children: 'background_and_viewport' | 'bar_and_track' }, + "scroll_view_control/stack_panel/background_and_viewport": { type: T.PANEL, children: string }, + "scroll_view_control/stack_panel/bar_and_track": { type: T.PANEL, children: string }, + "scroll_view_control/panel": { type: T.PANEL, children: 'background_and_viewport' | 'bar_and_track' }, + "scroll_view_control/panel/background_and_viewport": { type: T.PANEL, children: string }, + "scroll_view_control/panel/bar_and_track": { type: T.PANEL, children: string }, + "scrollbar_track": { type: T.SCROLL_TRACK, children: 'bar_indent' }, + "scrollbar_track/bar_indent": { type: T.UNKNOWN, children: string }, + "scroll_box": { type: T.PANEL, children: 'box' }, + "scroll_box/box": { type: T.SCROLLBAR_BOX, children: 'mouse_box' | 'touch_box' }, + "scroll_box/box/mouse_box": { type: T.UNKNOWN, children: string }, + "scroll_box/box/touch_box": { type: T.UNKNOWN, children: string }, + "scroll_box_indent": { type: T.IMAGE, children: string }, + "scrollbar_box_image": { type: T.IMAGE, children: string }, + "touch_scrollbar_box_image": { type: T.IMAGE, children: string }, + "new_touch_scrollbar_box_image": { type: T.IMAGE, children: string }, + "container_touch_scrollbar_box_image": { type: T.IMAGE, children: string }, + "scroll_indent_image": { type: T.IMAGE, children: string }, + "scrolling_panel_base": { type: T.INPUT_PANEL, children: string }, + "scrolling_panel": { type: T.PANEL, children: 'scroll_touch' | 'scroll_mouse' }, + "scrolling_panel/scroll_touch": { type: T.INPUT_PANEL, children: string }, + "scrolling_panel/scroll_mouse": { type: T.INPUT_PANEL, children: string }, + "scrolling_panel_with_offset": { type: T.PANEL, children: string }, + "container_slot_button_prototype": { type: T.BUTTON, children: 'hover' }, + "container_slot_button_prototype/hover": { type: T.UNKNOWN, children: string }, + "no_coalesce_container_slot_button": { type: T.BUTTON, children: string }, + "pocket_ui_container_slot": { type: T.BUTTON, children: 'hover' }, + "pocket_ui_container_slot/hover": { type: T.PANEL, children: 'highlight_square' }, + "pocket_ui_container_slot/hover/highlight_square": { type: T.IMAGE, children: string }, + "slot_selected": { type: T.IMAGE, children: 'progress_bar_release' }, + "slot_selected/progress_bar_release": { type: T.CUSTOM, children: string }, + "container_item": { type: T.INPUT_PANEL, children: 'item_cell' | 'item_cell_overlay_ref' | 'item_selected_image' | 'item_button_ref' | 'container_item_lock_overlay' | 'item_lock_cell_image' | 'bundle_slot_panel' }, + "container_item/item_cell": { type: T.PANEL, children: 'item' | 'durability_bar' | 'storage_bar' }, + "container_item/item_cell/item": { type: T.PANEL, children: 'stack_count_label' }, + "container_item/item_cell/item/stack_count_label": { type: T.LABEL, children: string }, + "container_item/item_cell/durability_bar": { type: T.CUSTOM, children: string }, + "container_item/item_cell/storage_bar": { type: T.CUSTOM, children: string }, + "container_item/item_cell_overlay_ref": { type: T.UNKNOWN, children: string }, + "container_item/item_selected_image": { type: T.IMAGE, children: string }, + "container_item/item_button_ref": { type: T.UNKNOWN, children: string }, + "container_item/container_item_lock_overlay": { type: T.PANEL, children: string }, + "container_item/item_lock_cell_image": { type: T.IMAGE, children: string }, + "container_item/bundle_slot_panel": { type: T.PANEL, children: string }, + "pocket_ui_container_item": { type: T.INPUT_PANEL, children: string }, + "pocket_ui_large_container_item": { type: T.INPUT_PANEL, children: string }, + "container_item_lock_yellow": { type: T.IMAGE, children: string }, + "container_item_lock_red": { type: T.IMAGE, children: string }, + "container_item_lock_overlay": { type: T.PANEL, children: 'container_item_lock_yellow' | 'container_item_lock_red' }, + "container_item_lock_overlay/container_item_lock_yellow": { type: T.IMAGE, children: string }, + "container_item_lock_overlay/container_item_lock_red": { type: T.IMAGE, children: string }, + "item_lock_cell_image": { type: T.IMAGE, children: string }, + "container_grid": { type: T.GRID, children: string }, + "pocket_container_grid": { type: T.GRID, children: string }, + "container_scroll_box_image": { type: T.IMAGE, children: string }, + "container_scroll_bar_side_rails": { type: T.IMAGE, children: string }, + "container_scrollbar_track": { type: T.PANEL, children: 'rails' }, + "container_scrollbar_track/rails": { type: T.IMAGE, children: string }, + "container_scroll_background_image": { type: T.IMAGE, children: string }, + "container_scroll_panel": { type: T.PANEL, children: string }, + "pocket_ui_highlight_selected_slot": { type: T.IMAGE, children: string }, + "pocket_hotbar_panel": { type: T.INPUT_PANEL, children: 'bg' | 'hotbar_grid' }, + "pocket_hotbar_panel/bg": { type: T.PANEL, children: string }, + "pocket_hotbar_panel/hotbar_grid": { type: T.GRID, children: string }, + "drop_item_panel": { type: T.INPUT_PANEL, children: string }, + "pocket_hotbar_and_content_panels": { type: T.STACK_PANEL, children: 'pocket_content_panels' | 'hotbar_drop_item_panel' }, + "pocket_hotbar_and_content_panels/pocket_content_panels": { type: T.STACK_PANEL, children: string }, + "pocket_hotbar_and_content_panels/hotbar_drop_item_panel": { type: T.INPUT_PANEL, children: 'pocket_hotbar_panel' }, + "pocket_hotbar_and_content_panels/hotbar_drop_item_panel/pocket_hotbar_panel": { type: T.INPUT_PANEL, children: string }, + "blank_pocket_content_panel": { type: T.PANEL, children: string }, + "pocket_content_panels": { type: T.STACK_PANEL, children: 'left_panel' | 'offset_panel' | 'right_panel' }, + "pocket_content_panels/left_panel": { type: T.UNKNOWN, children: string }, + "pocket_content_panels/offset_panel": { type: T.INPUT_PANEL, children: 'center_bg' }, + "pocket_content_panels/offset_panel/center_bg": { type: T.IMAGE, children: string }, + "pocket_content_panels/right_panel": { type: T.UNKNOWN, children: string }, + "inventory_selected_icon": { type: T.CUSTOM, children: string }, + "inventory_selected_stack_size_text": { type: T.LABEL, children: string }, + "inventory_hold_icon": { type: T.CUSTOM, children: string }, + "inventory_selected_item_lock_overlay": { type: T.PANEL, children: 'container_item_lock_yellow' | 'container_item_lock_red' }, + "inventory_selected_item_lock_overlay/container_item_lock_yellow": { type: T.IMAGE, children: string }, + "inventory_selected_item_lock_overlay/container_item_lock_red": { type: T.IMAGE, children: string }, + "inventory_icon_panel": { type: T.PANEL, children: 'selected_item_icon' | 'selected_stack_size_text' | 'selected_item_lock_overlay' | 'hover_text' }, + "inventory_icon_panel/selected_item_icon": { type: T.CUSTOM, children: string }, + "inventory_icon_panel/selected_stack_size_text": { type: T.LABEL, children: string }, + "inventory_icon_panel/selected_item_lock_overlay": { type: T.PANEL, children: string }, + "inventory_icon_panel/hover_text": { type: T.CUSTOM, children: string }, + "inventory_selected_icon_button": { type: T.BUTTON, children: 'default' | 'pressed' | 'hover' | 'durability_bar_grabbed' | 'storage_bar_grabbed' }, + "inventory_selected_icon_button/default": { type: T.PANEL, children: string }, + "inventory_selected_icon_button/pressed": { type: T.PANEL, children: string }, + "inventory_selected_icon_button/hover": { type: T.PANEL, children: string }, + "inventory_selected_icon_button/durability_bar_grabbed": { type: T.CUSTOM, children: string }, + "inventory_selected_icon_button/storage_bar_grabbed": { type: T.CUSTOM, children: string }, + "inventory_take_progress_icon_button": { type: T.BUTTON, children: 'default' | 'pressed' | 'hover' }, + "inventory_take_progress_icon_button/default": { type: T.CUSTOM, children: string }, + "inventory_take_progress_icon_button/pressed": { type: T.CUSTOM, children: string }, + "inventory_take_progress_icon_button/hover": { type: T.CUSTOM, children: string }, + "gamepad_cursor_image": { type: T.IMAGE, children: string }, + "gamepad_cursor_button": { type: T.BUTTON, children: 'default' | 'pressed' | 'hover' }, + "gamepad_cursor_button/default": { type: T.IMAGE, children: string }, + "gamepad_cursor_button/pressed": { type: T.IMAGE, children: string }, + "gamepad_cursor_button/hover": { type: T.IMAGE, children: string }, + "grid_item_for_inventory": { type: T.INPUT_PANEL, children: string }, + "grid_item_for_hotbar": { type: T.INPUT_PANEL, children: string }, + "hotbar_grid_template": { type: T.GRID, children: string }, + "inventory_panel": { type: T.PANEL, children: 'inventory_grid' }, + "inventory_panel/inventory_grid": { type: T.GRID, children: string }, + "inventory_panel_bottom_half": { type: T.PANEL, children: 'inventory_panel' }, + "inventory_panel_bottom_half/inventory_panel": { type: T.PANEL, children: string }, + "inventory_panel_bottom_half_with_label": { type: T.PANEL, children: 'inventory_panel' | 'inventory_label' }, + "inventory_panel_bottom_half_with_label/inventory_panel": { type: T.PANEL, children: string }, + "inventory_panel_bottom_half_with_label/inventory_label": { type: T.LABEL, children: string }, + "common_panel": { type: T.PANEL, children: 'bg_image' | 'dialog_divider' | 'close_button_holder' }, + "common_panel/bg_image": { type: T.UNKNOWN, children: string }, + "common_panel/dialog_divider": { type: T.IMAGE, children: string }, + "common_panel/close_button_holder": { type: T.PANEL, children: 'close' | 'compact_close' }, + "common_panel/close_button_holder/close": { type: T.BUTTON, children: string }, + "common_panel/close_button_holder/compact_close": { type: T.BUTTON, children: string }, + "root_panel": { type: T.INPUT_PANEL, children: string }, + "input_panel": { type: T.INPUT_PANEL, children: string }, + "base_screen": { type: T.SCREEN, children: 'variables_button_mappings_and_controls' | 'loading_bars_background' }, + "base_screen/variables_button_mappings_and_controls": { type: T.INPUT_PANEL, children: 'bg_no_safezone_screen_panel' | 'safezone_screen_matrix' | 'screen_background' }, + "base_screen/variables_button_mappings_and_controls/bg_no_safezone_screen_panel": { type: T.UNKNOWN, children: string }, + "base_screen/variables_button_mappings_and_controls/safezone_screen_matrix": { type: T.STACK_PANEL, children: string }, + "base_screen/variables_button_mappings_and_controls/screen_background": { type: T.PANEL, children: string }, + "base_screen/loading_bars_background": { type: T.IMAGE, children: 'loading_bars' }, + "base_screen/loading_bars_background/loading_bars": { type: T.IMAGE, children: string }, + "render_below_base_screen": { type: T.SCREEN, children: string }, + "safezone_buffer": { type: T.PANEL, children: string }, + "top_safezone_vertical_buffer": { type: T.PANEL, children: string }, + "bottom_safezone_vertical_buffer": { type: T.PANEL, children: string }, + "left_safezone_horizontal_buffer": { type: T.PANEL, children: string }, + "right_safezone_horizontal_buffer": { type: T.PANEL, children: string }, + "safe_zone_stack": { type: T.STACK_PANEL, children: 'top_outer_control' | 'top_inner_control' | 'header_bar' }, + "safe_zone_stack/top_outer_control": { type: T.UNKNOWN, children: string }, + "safe_zone_stack/top_inner_control": { type: T.UNKNOWN, children: string }, + "safe_zone_stack/header_bar": { type: T.UNKNOWN, children: string }, + "safezone_inner_matrix": { type: T.STACK_PANEL, children: 'outer_top' | 'inner_top' | 'safezone_screen_panel' | 'inner_bottom' | 'outer_bottom' }, + "safezone_inner_matrix/outer_top": { type: T.PANEL, children: 'top_side_control' }, + "safezone_inner_matrix/outer_top/top_side_control": { type: T.UNKNOWN, children: string }, + "safezone_inner_matrix/inner_top": { type: T.PANEL, children: 'top_side_control' }, + "safezone_inner_matrix/inner_top/top_side_control": { type: T.UNKNOWN, children: string }, + "safezone_inner_matrix/safezone_screen_panel": { type: T.PANEL, children: string }, + "safezone_inner_matrix/inner_bottom": { type: T.PANEL, children: string }, + "safezone_inner_matrix/outer_bottom": { type: T.PANEL, children: string }, + "safezone_outer_matrix": { type: T.STACK_PANEL, children: 'outer_left' | 'inner_left' | 'inner_matrix' | 'inner_right' | 'outer_right' }, + "safezone_outer_matrix/outer_left": { type: T.PANEL, children: 'outer_left_safe_zone_stack' }, + "safezone_outer_matrix/outer_left/outer_left_safe_zone_stack": { type: T.STACK_PANEL, children: string }, + "safezone_outer_matrix/inner_left": { type: T.PANEL, children: 'inner_left_safe_zone_stack' }, + "safezone_outer_matrix/inner_left/inner_left_safe_zone_stack": { type: T.STACK_PANEL, children: string }, + "safezone_outer_matrix/inner_matrix": { type: T.STACK_PANEL, children: string }, + "safezone_outer_matrix/inner_right": { type: T.PANEL, children: 'inner_right_safe_zone_stack' }, + "safezone_outer_matrix/inner_right/inner_right_safe_zone_stack": { type: T.STACK_PANEL, children: string }, + "safezone_outer_matrix/outer_right": { type: T.PANEL, children: 'outer_right_safe_zone_stack' }, + "safezone_outer_matrix/outer_right/outer_right_safe_zone_stack": { type: T.STACK_PANEL, children: string }, + "bundle_tooltip_wrapper": { type: T.PANEL, children: 'bundle_tooltip_factory_wrapper' | 'bundle_touch_tooltip' }, + "bundle_tooltip_wrapper/bundle_tooltip_factory_wrapper": { type: T.PANEL, children: string }, + "bundle_tooltip_wrapper/bundle_touch_tooltip": { type: T.PANEL, children: string }, + "screen_panel": { type: T.PANEL, children: 'root_screen_panel' | 'additional_screen_content' | 'popup_dialog_factory' | 'bundle_hover_tooltip' }, + "screen_panel/root_screen_panel": { type: T.UNKNOWN, children: string }, + "screen_panel/additional_screen_content": { type: T.UNKNOWN, children: string }, + "screen_panel/popup_dialog_factory": { type: T.FACTORY, children: string }, + "screen_panel/bundle_hover_tooltip": { type: T.PANEL, children: string }, + "base_screen_empty_panel": { type: T.PANEL, children: string }, + "modal_screen": { type: T.SCREEN, children: string }, + "realms_error_modal_screen": { type: T.SCREEN, children: string }, + "modal_area_panel_base": { type: T.INPUT_PANEL, children: string }, + "inactive_modal_pane_fade": { type: T.IMAGE, children: string }, + "inventory_screen_common": { type: T.SCREEN, children: string }, + "fullscreen_header": { type: T.STACK_PANEL, children: 'top_bar' | 'child_control' }, + "fullscreen_header/top_bar": { type: T.IMAGE, children: 'title_stack_panel' }, + "fullscreen_header/top_bar/title_stack_panel": { type: T.STACK_PANEL, children: 'padding1' | 'back_button_content_panel' | 'padding2' }, + "fullscreen_header/top_bar/title_stack_panel/padding1": { type: T.PANEL, children: string }, + "fullscreen_header/top_bar/title_stack_panel/back_button_content_panel": { type: T.PANEL, children: string }, + "fullscreen_header/top_bar/title_stack_panel/padding2": { type: T.PANEL, children: string }, + "fullscreen_header/child_control": { type: T.UNKNOWN, children: string }, + "back_content_panel": { type: T.PANEL, children: 'back_button' }, + "back_content_panel/back_button": { type: T.STACK_PANEL, children: string }, + "top_bar": { type: T.IMAGE, children: string }, + "tooltip_background": { type: T.IMAGE, children: string }, + "tooltip_button_content": { type: T.IMAGE, children: 'tooltip_panel_content' }, + "tooltip_button_content/tooltip_panel_content": { type: T.UNKNOWN, children: string }, + "static_tooltip_popup_with_image_and_text": { type: T.IMAGE, children: 'image_and_text_stack_panel' | 'tooltip_chevron' }, + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel": { type: T.STACK_PANEL, children: 'tooltip_text_image_panel' | 'padding' | 'tooltip_text' }, + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel": { type: T.PANEL, children: 'tooltip_image_panel' }, + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel": { type: T.PANEL, children: '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' }, + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel/0": { type: T.UNKNOWN, children: string }, + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/padding": { type: T.PANEL, children: string }, + "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text": { type: T.LABEL, children: string }, + "static_tooltip_popup_with_image_and_text/tooltip_chevron": { type: T.IMAGE, children: string }, + "dynamic_tooltip_popup_with_custom_content": { type: T.IMAGE, children: 'tooltip_content' | 'tooltip_chevron' }, + "dynamic_tooltip_popup_with_custom_content/tooltip_content": { type: T.UNKNOWN, children: string }, + "dynamic_tooltip_popup_with_custom_content/tooltip_chevron": { type: T.IMAGE, children: string }, + "dynamic_tooltip_popup_with_image_and_text": { type: T.IMAGE, children: 'image_and_text_stack_panel' | 'tooltip_chevron' }, + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel": { type: T.STACK_PANEL, children: 'tooltip_text_image_panel' | 'padding' | 'tooltip_text' }, + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel": { type: T.PANEL, children: 'tooltip_image_panel' }, + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel": { type: T.PANEL, children: '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' | '0' }, + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel/0": { type: T.UNKNOWN, children: string }, + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/padding": { type: T.PANEL, children: string }, + "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text": { type: T.LABEL, children: string }, + "dynamic_tooltip_popup_with_image_and_text/tooltip_chevron": { type: T.IMAGE, children: string }, + "dynamic_tooltip_left": { type: T.IMAGE, children: string }, + "dynamic_tooltip_below": { type: T.IMAGE, children: string }, + "dynamic_custom_tooltip_below": { type: T.IMAGE, children: string }, + "dynamic_tooltip": { type: T.PANEL, children: 'above' | 'below' }, + "dynamic_tooltip/above": { type: T.PANEL, children: 'content' }, + "dynamic_tooltip/above/content": { type: T.IMAGE, children: string }, + "dynamic_tooltip/below": { type: T.PANEL, children: 'content' }, + "dynamic_tooltip/below/content": { type: T.IMAGE, children: string }, + "legacy_pocket_close_button_default": { type: T.IMAGE, children: string }, + "legacy_pocket_close_button_pressed": { type: T.IMAGE, children: string }, + "legacy_pocket_close_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "legacy_pocket_close_button/default": { type: T.IMAGE, children: string }, + "legacy_pocket_close_button/hover": { type: T.IMAGE, children: string }, + "legacy_pocket_close_button/pressed": { type: T.IMAGE, children: string }, + "info_icon": { type: T.IMAGE, children: string }, + "error_glyph": { type: T.IMAGE, children: string }, + "service_repo_image_panel": { type: T.PANEL, children: 'service_repo_image' | 'progress_loading' }, + "service_repo_image_panel/service_repo_image": { type: T.IMAGE, children: string }, + "service_repo_image_panel/progress_loading": { type: T.PANEL, children: string }, + "common_cycler": { type: T.UNKNOWN, children: string }, + "image_cycler": { type: T.IMAGE_CYCLER, children: string }, + "text_cycler": { type: T.LABEL_CYCLER, children: string }, + "squaring_panel": { type: T.PANEL, children: 'squaring_panel' }, + "squaring_panel/squaring_panel": { type: T.PANEL, children: 'squaring_panel_content' }, + "squaring_panel/squaring_panel/squaring_panel_content": { type: T.UNKNOWN, children: string }, } 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": { type: T.BUTTON, children: string }, + "button_state_default": { type: T.IMAGE, children: string }, + "button_state_hover": { type: T.IMAGE, children: string }, + "button_state_pressed": { type: T.IMAGE, children: string }, + "toggle": { type: T.PANEL, children: string }, + "toggle_checked_state": { type: T.IMAGE, children: string }, + "toggle_unchecked_state": { type: T.IMAGE, children: string }, + "toggle_checked_hovered_state": { type: T.PANEL, children: 'toggle_checked_state' | 'hover' }, + "toggle_checked_hovered_state/toggle_checked_state": { type: T.IMAGE, children: string }, + "toggle_checked_hovered_state/hover": { type: T.IMAGE, children: string }, + "toggle_unchecked_hovered_state": { type: T.PANEL, children: 'toggle_unchecked_state' | 'hover' }, + "toggle_unchecked_hovered_state/toggle_unchecked_state": { type: T.IMAGE, children: string }, + "toggle_unchecked_hovered_state/hover": { type: T.IMAGE, children: string }, } 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": { type: T.LABEL, children: string }, + "dark_label": { type: T.LABEL, children: string }, + "readable_label": { type: T.LABEL, children: string }, + "slider_toggle": { type: T.TOGGLE, children: string }, + "trash_default": { type: T.IMAGE, children: string }, + "trash_hover": { type: T.IMAGE, children: string }, + "trash_pressed": { type: T.IMAGE, children: string }, + "photo_trash_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "photo_trash_button/default": { type: T.IMAGE, children: string }, + "photo_trash_button/hover": { type: T.IMAGE, children: string }, + "photo_trash_button/pressed": { type: T.IMAGE, children: string }, + "download_progress_modal_panel": { type: T.INPUT_PANEL, children: 'downloading' }, + "download_progress_modal_panel/downloading": { type: T.PANEL, children: string }, + "loading_progress_modal_panel": { type: T.INPUT_PANEL, children: 'loading' }, + "loading_progress_modal_panel/loading": { type: T.PANEL, children: string }, + "modal_cancel_button": { type: T.BUTTON, children: string }, + "modal_progress_panel_with_cancel": { type: T.PANEL, children: 'common_panel' | 'title' | 'content' | 'cancel_button' }, + "modal_progress_panel_with_cancel/common_panel": { type: T.PANEL, children: string }, + "modal_progress_panel_with_cancel/title": { type: T.LABEL, children: string }, + "modal_progress_panel_with_cancel/content": { type: T.PANEL, children: 'title_panel' | 'label' | 'progress_loading_bars' }, + "modal_progress_panel_with_cancel/content/title_panel": { type: T.PANEL, children: string }, + "modal_progress_panel_with_cancel/content/label": { type: T.LABEL, children: string }, + "modal_progress_panel_with_cancel/content/progress_loading_bars": { type: T.IMAGE, children: string }, + "modal_progress_panel_with_cancel/cancel_button": { type: T.BUTTON, children: string }, + "modal_progress_panel_no_button": { type: T.PANEL, children: 'common_panel' | 'content' }, + "modal_progress_panel_no_button/common_panel": { type: T.PANEL, children: string }, + "modal_progress_panel_no_button/content": { type: T.PANEL, children: 'progress_title_text' | 'progress_loading_bars' }, + "modal_progress_panel_no_button/content/progress_title_text": { type: T.LABEL, children: string }, + "modal_progress_panel_no_button/content/progress_loading_bars": { type: T.IMAGE, children: string }, + "apple_animation": { type: T.IMAGE, children: string }, + "book_animation": { type: T.IMAGE, children: string }, + "edu_loading_animation": { type: T.IMAGE, children: string }, + "horizontal_stack_item": { type: T.PANEL, children: string }, + "vertical_stack_item": { type: T.PANEL, children: string }, + "back_button_padded": { type: T.STACK_PANEL, children: 'back_button_padding_before' | 'back_button' }, + "back_button_padded/back_button_padding_before": { type: T.PANEL, children: string }, + "back_button_padded/back_button": { type: T.STACK_PANEL, children: string }, + "home_button_content": { type: T.IMAGE, children: string }, + "home_button": { type: T.BUTTON, children: string }, + "underline_text": { type: T.PANEL, children: 'label_hover' }, + "underline_text/label_hover": { type: T.PANEL, children: string }, + "underline_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "underline_button/default": { type: T.PANEL, children: string }, + "underline_button/hover": { type: T.PANEL, children: string }, + "underline_button/pressed": { type: T.PANEL, children: string }, + "edu_screen_header": { type: T.IMAGE, children: 'title_controls' }, + "edu_screen_header/title_controls": { type: T.STACK_PANEL, children: 'back_item' | 'image_item' | 'image_item_template' | 'title_text_padding' | 'title_item' }, + "edu_screen_header/title_controls/back_item": { type: T.PANEL, children: 'back_button' | 'gamepad' }, + "edu_screen_header/title_controls/back_item/back_button": { type: T.STACK_PANEL, children: string }, + "edu_screen_header/title_controls/back_item/gamepad": { type: T.STACK_PANEL, children: string }, + "edu_screen_header/title_controls/image_item": { type: T.PANEL, children: 'image' }, + "edu_screen_header/title_controls/image_item/image": { type: T.IMAGE, children: string }, + "edu_screen_header/title_controls/image_item_template": { type: T.PANEL, children: 'image' }, + "edu_screen_header/title_controls/image_item_template/image": { type: T.IMAGE, children: 'image_color' }, + "edu_screen_header/title_controls/image_item_template/image/image_color": { type: T.IMAGE, children: string }, + "edu_screen_header/title_controls/title_text_padding": { type: T.PANEL, children: string }, + "edu_screen_header/title_controls/title_item": { type: T.PANEL, children: 'title' }, + "edu_screen_header/title_controls/title_item/title": { type: T.LABEL, children: string }, + "share_dialog_title": { type: T.LABEL, children: string }, + "share_header_panel": { type: T.PANEL, children: 'title' | 'close_button' }, + "share_header_panel/title": { type: T.LABEL, children: string }, + "share_header_panel/close_button": { type: T.BUTTON, children: string }, + "teams_advanced_share_header_panel": { type: T.PANEL, children: string }, + "add_resource_share_header_panel": { type: T.PANEL, children: string }, + "body_panel": { type: T.PANEL, children: 'body_stack' }, + "body_panel/body_stack": { type: T.UNKNOWN, children: string }, + "teams_body_panel": { type: T.PANEL, children: string }, + "teams_body_resource_panel": { type: T.PANEL, children: string }, + "teams_simple_body_resource_panel": { type: T.PANEL, children: string }, + "joincode_body_panel": { type: T.PANEL, children: string }, + "add_resource_body_panel": { type: T.PANEL, children: string }, + "icon_section": { type: T.STACK_PANEL, children: 'icon_stack_panel' | 'icon_padding' }, + "icon_section/icon_stack_panel": { type: T.STACK_PANEL, children: string }, + "icon_section/icon_padding": { type: T.PANEL, children: string }, + "add_resources_section": { type: T.STACK_PANEL, children: 'divider' | 'add_resource_label' | 'teams_padding_middle' | 'resource_button' }, + "add_resources_section/divider": { type: T.PANEL, children: string }, + "add_resources_section/add_resource_label": { type: T.PANEL, children: string }, + "add_resources_section/teams_padding_middle": { type: T.PANEL, children: string }, + "add_resources_section/resource_button": { type: T.BUTTON, children: string }, + "edit_resource_uri_glyph": { type: T.IMAGE, children: string }, + "edit_resources_section": { type: T.STACK_PANEL, children: 'divider' | 'resource_label_text' | 'teams_padding_middle' | 'edit_resource_body_button_stack' }, + "edit_resources_section/divider": { type: T.PANEL, children: string }, + "edit_resources_section/resource_label_text": { type: T.PANEL, children: string }, + "edit_resources_section/teams_padding_middle": { type: T.PANEL, children: string }, + "edit_resources_section/edit_resource_body_button_stack": { type: T.STACK_PANEL, children: 'resource_button' | 'padding_middle' | 'edit_resource_uri_button' }, + "edit_resources_section/edit_resource_body_button_stack/resource_button": { type: T.UNKNOWN, children: string }, + "edit_resources_section/edit_resource_body_button_stack/padding_middle": { type: T.PANEL, children: string }, + "edit_resources_section/edit_resource_body_button_stack/edit_resource_uri_button": { type: T.BUTTON, children: string }, + "body_content_stack": { type: T.STACK_PANEL, children: 'body_text_centering_panel' | 'padding_middle' | 'icons' | 'copy_link_centering_panel' | 'add_resources' | 'edit_resources' }, + "body_content_stack/body_text_centering_panel": { type: T.PANEL, children: 'body_text' }, + "body_content_stack/body_text_centering_panel/body_text": { type: T.PANEL, children: string }, + "body_content_stack/padding_middle": { type: T.PANEL, children: string }, + "body_content_stack/icons": { type: T.STACK_PANEL, children: string }, + "body_content_stack/copy_link_centering_panel": { type: T.PANEL, children: 'copy_link_panel' }, + "body_content_stack/copy_link_centering_panel/copy_link_panel": { type: T.STACK_PANEL, children: string }, + "body_content_stack/add_resources": { type: T.STACK_PANEL, children: string }, + "body_content_stack/edit_resources": { type: T.STACK_PANEL, children: string }, + "teams_simple_body_content_stack": { type: T.STACK_PANEL, children: string }, + "teams_body_content_stack": { type: T.STACK_PANEL, children: string }, + "teams_body_resource_content_stack": { type: T.STACK_PANEL, children: string }, + "joincode_body_content_stack": { type: T.STACK_PANEL, children: string }, + "add_resource_body_content_stack": { type: T.STACK_PANEL, children: 'label_one_centering_panel' | 'label_padding_middle' | 'label_two_centering_panel' | 'learn_more_padding_middle' | 'link1' | 'url_padding_middle' | 'url_label' | 'url_textbox' | 'inline_notification' | 'inline_notification_spacer' | 'button_name_label' | 'button_middle_spacer' | 'button_name_textbox' | 'button_name_textbox_next_disabled' }, + "add_resource_body_content_stack/label_one_centering_panel": { type: T.PANEL, children: 'teams_share_label' }, + "add_resource_body_content_stack/label_one_centering_panel/teams_share_label": { type: T.PANEL, children: string }, + "add_resource_body_content_stack/label_padding_middle": { type: T.PANEL, children: string }, + "add_resource_body_content_stack/label_two_centering_panel": { type: T.PANEL, children: 'teams_share_label' }, + "add_resource_body_content_stack/label_two_centering_panel/teams_share_label": { type: T.PANEL, children: string }, + "add_resource_body_content_stack/learn_more_padding_middle": { type: T.PANEL, children: string }, + "add_resource_body_content_stack/link1": { type: T.BUTTON, children: string }, + "add_resource_body_content_stack/url_padding_middle": { type: T.PANEL, children: string }, + "add_resource_body_content_stack/url_label": { type: T.PANEL, children: string }, + "add_resource_body_content_stack/url_textbox": { type: T.EDIT_BOX, children: string }, + "add_resource_body_content_stack/inline_notification": { type: T.IMAGE, children: string }, + "add_resource_body_content_stack/inline_notification_spacer": { type: T.PANEL, children: string }, + "add_resource_body_content_stack/button_name_label": { type: T.PANEL, children: string }, + "add_resource_body_content_stack/button_middle_spacer": { type: T.PANEL, children: string }, + "add_resource_body_content_stack/button_name_textbox": { type: T.EDIT_BOX, children: string }, + "add_resource_body_content_stack/button_name_textbox_next_disabled": { type: T.EDIT_BOX, children: string }, + "add_edit_resource_body_content_stack": { type: T.PANEL, children: 'scroll_content' }, + "add_edit_resource_body_content_stack/scroll_content": { type: T.PANEL, children: 'scrolling_panel' }, + "add_edit_resource_body_content_stack/scroll_content/scrolling_panel": { type: T.PANEL, children: string }, + "resource_popup_buttons": { type: T.STACK_PANEL, children: 'done_button' | 'button_padding' | 'back_button_panel' }, + "resource_popup_buttons/done_button": { type: T.BUTTON, children: string }, + "resource_popup_buttons/button_padding": { type: T.PANEL, children: string }, + "resource_popup_buttons/back_button_panel": { type: T.PANEL, children: 'back_button_enabled' | 'back_button_disabled' }, + "resource_popup_buttons/back_button_panel/back_button_enabled": { type: T.BUTTON, children: string }, + "resource_popup_buttons/back_button_panel/back_button_disabled": { type: T.BUTTON, children: string }, + "add_resource_popup_lower_button_panel": { type: T.PANEL, children: 'edit_resource_popup_buttons' | 'add_resource_popup_buttons' }, + "add_resource_popup_lower_button_panel/edit_resource_popup_buttons": { type: T.STACK_PANEL, children: string }, + "add_resource_popup_lower_button_panel/add_resource_popup_buttons": { type: T.STACK_PANEL, children: string }, + "share_dialog_body_text": { type: T.PANEL, children: 'tts_border' | 'text' }, + "share_dialog_body_text/tts_border": { type: T.BUTTON, children: string }, + "share_dialog_body_text/text": { type: T.LABEL, children: string }, + "share_icon": { type: T.IMAGE, children: string }, + "share_label": { type: T.STACK_PANEL, children: 'share_image_offset_panel' }, + "share_label/share_image_offset_panel": { type: T.PANEL, children: 'link_share' }, + "share_label/share_image_offset_panel/link_share": { type: T.IMAGE, children: string }, + "copy_link_stack_panel": { type: T.STACK_PANEL, children: 'link_box' | 'copy_button' }, + "copy_link_stack_panel/link_box": { type: T.EDIT_BOX, children: string }, + "copy_link_stack_panel/copy_button": { type: T.BUTTON, children: string }, + "icon_stack_panel": { type: T.STACK_PANEL, children: 'padding_left' | 'teams_button' | 'teams_mail_padding' | 'mail_button' | 'mail_classrooms_padding' | 'classrooms_button' | 'padding_right' }, + "icon_stack_panel/padding_left": { type: T.PANEL, children: string }, + "icon_stack_panel/teams_button": { type: T.BUTTON, children: string }, + "icon_stack_panel/teams_mail_padding": { type: T.PANEL, children: string }, + "icon_stack_panel/mail_button": { type: T.BUTTON, children: string }, + "icon_stack_panel/mail_classrooms_padding": { type: T.PANEL, children: string }, + "icon_stack_panel/classrooms_button": { type: T.BUTTON, children: string }, + "icon_stack_panel/padding_right": { type: T.PANEL, children: string }, + "default_share_button_contents": { type: T.PANEL, children: 'background' | 'image' }, + "default_share_button_contents/background": { type: T.IMAGE, children: string }, + "default_share_button_contents/image": { type: T.IMAGE, children: string }, + "default_share_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "default_share_button/default": { type: T.PANEL, children: string }, + "default_share_button/hover": { type: T.PANEL, children: string }, + "default_share_button/pressed": { type: T.PANEL, children: string }, + "vertical_divider": { type: T.PANEL, children: 'divider' }, + "vertical_divider/divider": { type: T.IMAGE, children: string }, + "horizontal_divider": { type: T.PANEL, children: 'divider' }, + "horizontal_divider/divider": { type: T.IMAGE, children: string }, + "stack_panel_grid_slot": { type: T.PANEL, children: 'stack_panel_grid_item_panel' }, + "stack_panel_grid_slot/stack_panel_grid_item_panel": { type: T.PANEL, children: 'stack_panel_grid_item' }, + "stack_panel_grid_slot/stack_panel_grid_item_panel/stack_panel_grid_item": { type: T.UNKNOWN, children: string }, + "stack_panel_grid_row": { type: T.STACK_PANEL, children: 'stack_panel_grid_row_item' | 'divider' }, + "stack_panel_grid_row/stack_panel_grid_row_item": { type: T.PANEL, children: 'row' }, + "stack_panel_grid_row/stack_panel_grid_row_item/row": { type: T.STACK_PANEL, children: string }, + "stack_panel_grid_row/divider": { type: T.PANEL, children: 'line' }, + "stack_panel_grid_row/divider/line": { type: T.IMAGE, children: string }, + "stack_panel_grid": { type: T.STACK_PANEL, children: string }, + "border": { type: T.IMAGE, children: string }, + "description_panel": { type: T.IMAGE, children: 'border' | 'description' }, + "description_panel/border": { type: T.BUTTON, children: string }, + "description_panel/description": { type: T.LABEL, children: string }, + "edu_share_text_popup": { type: T.INPUT_PANEL, children: string }, + "teams_edu_share_text_popup": { type: T.INPUT_PANEL, children: string }, + "teams_edu_share_resource_popup": { type: T.INPUT_PANEL, children: string }, + "teams_edu_simple_share_resource_popup": { type: T.INPUT_PANEL, children: string }, + "joincode_edu_popup": { type: T.INPUT_PANEL, children: string }, + "add_resource_dialog": { type: T.INPUT_PANEL, children: string }, + "share_popup_dialog_factory": { type: T.FACTORY, children: string }, + "inline_notification": { type: T.IMAGE, children: 'stack' }, + "inline_notification/stack": { type: T.STACK_PANEL, children: 'icon' | 'spacer' | 'warning_text' }, + "inline_notification/stack/icon": { type: T.IMAGE, children: string }, + "inline_notification/stack/spacer": { type: T.PANEL, children: string }, + "inline_notification/stack/warning_text": { type: T.LABEL, children: string }, + "search_button_content": { type: T.IMAGE, children: string }, + "search_bar_and_home_button": { type: T.STACK_PANEL, children: 'search_bar' | 'search_button' | 'search_pad' | 'home_button' | 'end_pad' }, + "search_bar_and_home_button/search_bar": { type: T.PANEL, children: 'search_bar' }, + "search_bar_and_home_button/search_bar/search_bar": { type: T.EDIT_BOX, children: string }, + "search_bar_and_home_button/search_button": { type: T.BUTTON, children: string }, + "search_bar_and_home_button/search_pad": { type: T.PANEL, children: string }, + "search_bar_and_home_button/home_button": { type: T.BUTTON, children: string }, + "search_bar_and_home_button/end_pad": { type: T.PANEL, children: string }, + "hotbar_hint": { type: T.PANEL, children: 'inactive_slot_dimmer' | 'bound_key_glyph_background' }, + "hotbar_hint/inactive_slot_dimmer": { type: T.IMAGE, children: string }, + "hotbar_hint/bound_key_glyph_background": { type: T.IMAGE, children: 'bound_key_glyph_text' }, + "hotbar_hint/bound_key_glyph_background/bound_key_glyph_text": { type: T.LABEL, children: string }, + "view_toggle_content": { type: T.STACK_PANEL, children: 'button_image_templates' | 'button_image_worlds' | 'button_label_wrapper' | 'left_edge_text_padding' }, + "view_toggle_content/button_image_templates": { type: T.IMAGE, children: 'image_color_templates' }, + "view_toggle_content/button_image_templates/image_color_templates": { type: T.IMAGE, children: string }, + "view_toggle_content/button_image_worlds": { type: T.IMAGE, children: string }, + "view_toggle_content/button_label_wrapper": { type: T.PANEL, children: 'button_label' }, + "view_toggle_content/button_label_wrapper/button_label": { type: T.LABEL, children: string }, + "view_toggle_content/left_edge_text_padding": { type: T.PANEL, children: string }, + "worlds_and_templates_search_bar": { type: T.IMAGE, children: 'stack_panel' }, + "worlds_and_templates_search_bar/stack_panel": { type: T.STACK_PANEL, children: 'search_bar_wrapper' | 'temp_padding' | 'view_toggle_background' }, + "worlds_and_templates_search_bar/stack_panel/search_bar_wrapper": { type: T.PANEL, children: 'search_bar' }, + "worlds_and_templates_search_bar/stack_panel/search_bar_wrapper/search_bar": { type: T.EDIT_BOX, children: string }, + "worlds_and_templates_search_bar/stack_panel/temp_padding": { type: T.PANEL, children: string }, + "worlds_and_templates_search_bar/stack_panel/view_toggle_background": { type: T.IMAGE, children: 'stack_panel' }, + "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel": { type: T.STACK_PANEL, children: 'left_edge_padding' | 'view_toggle_button' | 'right_edge_padding' }, + "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/left_edge_padding": { type: T.PANEL, children: string }, + "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/view_toggle_button": { type: T.BUTTON, children: string }, + "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/right_edge_padding": { type: T.PANEL, children: string }, + "edu_cloud_conflict_resolution_popup_dialog_factory": { type: T.FACTORY, children: string }, + "edu_cloud_conflict_resolution_popup": { type: T.INPUT_PANEL, children: string }, + "edu_cloud_conflict_resolution_content": { type: T.STACK_PANEL, children: 'conflict_resolution_description_wrapper' | 'padding1' | 'world_info_wrapper' | 'padding2' | 'keep_local_button' | 'keep_cloud_button' | 'keep_both_button' }, + "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper": { type: T.PANEL, children: 'tts_border' | 'conflict_resolution_description' }, + "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper/tts_border": { type: T.BUTTON, children: string }, + "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper/conflict_resolution_description": { type: T.LABEL, children: string }, + "edu_cloud_conflict_resolution_content/padding1": { type: T.PANEL, children: string }, + "edu_cloud_conflict_resolution_content/world_info_wrapper": { type: T.PANEL, children: 'tts_border' | 'world_info_stack' }, + "edu_cloud_conflict_resolution_content/world_info_wrapper/tts_border": { type: T.BUTTON, children: string }, + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack": { type: T.STACK_PANEL, children: 'local_world_name_label' | 'local_world_last_changed_label' | 'cloud_world_name_label' | 'cloud_world_last_changed_label' }, + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/local_world_name_label": { type: T.LABEL, children: string }, + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/local_world_last_changed_label": { type: T.LABEL, children: string }, + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/cloud_world_name_label": { type: T.LABEL, children: string }, + "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/cloud_world_last_changed_label": { type: T.LABEL, children: string }, + "edu_cloud_conflict_resolution_content/padding2": { type: T.PANEL, children: string }, + "edu_cloud_conflict_resolution_content/keep_local_button": { type: T.BUTTON, children: string }, + "edu_cloud_conflict_resolution_content/keep_cloud_button": { type: T.BUTTON, children: string }, + "edu_cloud_conflict_resolution_content/keep_both_button": { type: T.BUTTON, children: string }, + "nested_buttons_base_definition": { type: T.STACK_PANEL, children: string }, } 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": { type: T.IMAGE, children: string }, + "banner_empty": { type: T.IMAGE, children: string }, + "screenshots_grid_item": { type: T.PANEL, children: 'frame' }, + "screenshots_grid_item/frame": { type: T.IMAGE, children: 'screenshot_image' | 'progress_loading' | 'screenshot_button' }, + "screenshots_grid_item/frame/screenshot_image": { type: T.IMAGE, children: string }, + "screenshots_grid_item/frame/progress_loading": { type: T.PANEL, children: string }, + "screenshots_grid_item/frame/screenshot_button": { type: T.BUTTON, children: 'hover' | 'pressed' }, + "screenshots_grid_item/frame/screenshot_button/hover": { type: T.IMAGE, children: string }, + "screenshots_grid_item/frame/screenshot_button/pressed": { type: T.IMAGE, children: string }, + "screenshots_grid": { type: T.GRID, children: string }, + "key_image_frame": { type: T.IMAGE, children: 'zoomed' }, + "key_image_frame/zoomed": { type: T.IMAGE, children: string }, + "offer_grid_item": { type: T.PANEL, children: 'frame' }, + "offer_grid_item/frame": { type: T.IMAGE, children: 'offer_key_art' | 'offer_button' }, + "offer_grid_item/frame/offer_key_art": { type: T.IMAGE, children: string }, + "offer_grid_item/frame/offer_button": { type: T.BUTTON, children: 'hover' | 'pressed' }, + "offer_grid_item/frame/offer_button/hover": { type: T.IMAGE, children: string }, + "offer_grid_item/frame/offer_button/pressed": { type: T.IMAGE, children: string }, + "offer_grid": { type: T.GRID, children: string }, + "key_art_and_text": { type: T.STACK_PANEL, children: 'key_image_panel' | 'padding' | 'description_scroll' }, + "key_art_and_text/key_image_panel": { type: T.INPUT_PANEL, children: 'key_image' }, + "key_art_and_text/key_image_panel/key_image": { type: T.IMAGE, children: string }, + "key_art_and_text/padding": { type: T.PANEL, children: string }, + "key_art_and_text/description_scroll": { type: T.PANEL, children: string }, + "pack_description": { type: T.LABEL, children: string }, } 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": { type: T.IMAGE, children: string }, + "background_button_image": { type: T.IMAGE, children: string }, + "locked_button_image": { type: T.IMAGE, children: string }, + "light_button_assets": { type: T.BUTTON, children: string }, + "dark_button_assets": { type: T.BUTTON, children: string }, + "focus_border": { type: T.IMAGE, children: string }, + "new_ui_button_panel": { type: T.PANEL, children: 'button_content' | 'border' }, + "new_ui_button_panel/button_content": { type: T.PANEL, children: string }, + "new_ui_button_panel/border": { type: T.IMAGE, children: string }, + "new_ui_form_fitting_button_panel": { type: T.PANEL, children: 'border' }, + "new_ui_form_fitting_button_panel/border": { type: T.IMAGE, children: string }, + "new_ui_width_fitting_button_panel": { type: T.PANEL, children: 'border' }, + "new_ui_width_fitting_button_panel/border": { type: T.IMAGE, children: string }, + "new_ui_height_fitting_button_panel": { type: T.PANEL, children: 'border' }, + "new_ui_height_fitting_button_panel/border": { type: T.IMAGE, children: string }, + "borderless_form_fitting_button_panel": { type: T.PANEL, children: string }, + "light_text_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' | 'locked' }, + "light_text_button/default": { type: T.UNKNOWN, children: string }, + "light_text_button/hover": { type: T.UNKNOWN, children: string }, + "light_text_button/pressed": { type: T.UNKNOWN, children: string }, + "light_text_button/locked": { type: T.UNKNOWN, children: string }, + "dark_text_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' | 'locked' }, + "dark_text_button/default": { type: T.UNKNOWN, children: string }, + "dark_text_button/hover": { type: T.UNKNOWN, children: string }, + "dark_text_button/pressed": { type: T.UNKNOWN, children: string }, + "dark_text_button/locked": { type: T.UNKNOWN, children: string }, + "new_ui_binding_button_label": { type: T.LABEL, children: string }, + "underline_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "underline_button/default": { type: T.PANEL, children: 'label_default' }, + "underline_button/default/label_default": { type: T.PANEL, children: string }, + "underline_button/hover": { type: T.PANEL, children: 'label_hover' }, + "underline_button/hover/label_hover": { type: T.PANEL, children: string }, + "underline_button/pressed": { type: T.PANEL, children: 'label_hover' }, + "underline_button/pressed/label_hover": { type: T.PANEL, children: string }, + "read_button": { type: T.PANEL, children: 'read_button_inner' }, + "read_button/read_button_inner": { type: T.BUTTON, children: string }, + "light_content_form_fitting_button": { type: T.BUTTON, children: string }, + "dark_content_form_fitting_button": { type: T.BUTTON, children: string }, + "light_text_form_fitting_button": { type: T.BUTTON, children: string }, + "dark_text_form_fitting_button": { type: T.BUTTON, children: string }, + "transparent_content_button": { type: T.BUTTON, children: string }, + "single_image_with_border_button": { type: T.BUTTON, children: string }, + "light_content_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' | 'locked' }, + "light_content_button/default": { type: T.UNKNOWN, children: string }, + "light_content_button/hover": { type: T.UNKNOWN, children: string }, + "light_content_button/pressed": { type: T.UNKNOWN, children: string }, + "light_content_button/locked": { type: T.UNKNOWN, children: string }, + "light_content_button_control_content": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' | 'locked' }, + "light_content_button_control_content/default": { type: T.UNKNOWN, children: string }, + "light_content_button_control_content/hover": { type: T.UNKNOWN, children: string }, + "light_content_button_control_content/pressed": { type: T.UNKNOWN, children: string }, + "light_content_button_control_content/locked": { type: T.UNKNOWN, children: string }, + "deactivated_light_content_button": { type: T.BUTTON, children: string }, + "dark_content_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' | 'locked' }, + "dark_content_button/default": { type: T.UNKNOWN, children: string }, + "dark_content_button/hover": { type: T.UNKNOWN, children: string }, + "dark_content_button/pressed": { type: T.UNKNOWN, children: string }, + "dark_content_button/locked": { type: T.UNKNOWN, children: string }, + "no_background_content_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' | 'locked' }, + "no_background_content_button/default": { type: T.UNKNOWN, children: string }, + "no_background_content_button/hover": { type: T.UNKNOWN, children: string }, + "no_background_content_button/pressed": { type: T.UNKNOWN, children: string }, + "no_background_content_button/locked": { type: T.UNKNOWN, children: string }, + "button_content_panel": { type: T.PANEL, children: 'content' }, + "button_content_panel/content": { type: T.UNKNOWN, children: string }, + "form_fitting_button_content_panel": { type: T.PANEL, children: 'content' }, + "form_fitting_button_content_panel/content": { type: T.UNKNOWN, children: string }, + "horizontal_form_fitting": { type: T.PANEL, children: 'content' }, + "horizontal_form_fitting/content": { type: T.UNKNOWN, children: string }, + "width_fitting_button_content_panel": { type: T.PANEL, children: 'content' }, + "width_fitting_button_content_panel/content": { type: T.UNKNOWN, children: string }, + "height_fitting_button_content_panel": { type: T.PANEL, children: 'content' }, + "height_fitting_button_content_panel/content": { type: T.UNKNOWN, children: string }, + "light_glyph_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' | 'locked' }, + "light_glyph_button/default": { type: T.PANEL, children: string }, + "light_glyph_button/hover": { type: T.PANEL, children: string }, + "light_glyph_button/pressed": { type: T.PANEL, children: string }, + "light_glyph_button/locked": { type: T.PANEL, children: string }, + "dark_glyph_button_default": { type: T.PANEL, children: string }, + "dark_glyph_button_hover": { type: T.PANEL, children: string }, + "dark_glyph_button_pressed": { type: T.PANEL, children: string }, + "dark_glyph_button_locked": { type: T.PANEL, children: string }, + "dark_glyph_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' | 'locked' }, + "dark_glyph_button/default": { type: T.PANEL, children: string }, + "dark_glyph_button/hover": { type: T.PANEL, children: string }, + "dark_glyph_button/pressed": { type: T.PANEL, children: string }, + "dark_glyph_button/locked": { type: T.PANEL, children: string }, + "dark_glyph_button_with_custom_control": { type: T.BUTTON, children: 'custom_control' | 'default' | 'hover' | 'pressed' | 'locked' }, + "dark_glyph_button_with_custom_control/custom_control": { type: T.UNKNOWN, children: string }, + "dark_glyph_button_with_custom_control/default": { type: T.PANEL, children: string }, + "dark_glyph_button_with_custom_control/hover": { type: T.PANEL, children: string }, + "dark_glyph_button_with_custom_control/pressed": { type: T.PANEL, children: string }, + "dark_glyph_button_with_custom_control/locked": { type: T.PANEL, children: string }, + "glyph_content_panel": { type: T.PANEL, children: 'glyph_button_content' }, + "glyph_content_panel/glyph_button_content": { type: T.UNKNOWN, children: string }, + "hyperlink_button": { type: T.BUTTON, children: string }, + "hyperlink_content_button": { type: T.BUTTON, children: string }, + "nested_button_assets": { type: T.IMAGE, children: string }, + "nested_overlay_assets": { type: T.IMAGE, children: string }, + "nested_label_content_background_assets": { type: T.IMAGE, children: string }, + "nested_label_background_assets": { type: T.IMAGE, children: string }, + "nested_transparent_label_content_background_assets": { type: T.PANEL, children: 'assets' }, + "nested_transparent_label_content_background_assets/assets": { type: T.IMAGE, children: string }, + "nested_base_label": { type: T.LABEL, children: string }, + "nested_centered_label_control": { type: T.PANEL, children: 'label' }, + "nested_centered_label_control/label": { type: T.LABEL, children: string }, + "nested_label_with_image_control": { type: T.STACK_PANEL, children: 'image' | 'image_to_label_padding' | 'label_panel' }, + "nested_label_with_image_control/image": { type: T.IMAGE, children: string }, + "nested_label_with_image_control/image_to_label_padding": { type: T.PANEL, children: string }, + "nested_label_with_image_control/label_panel": { type: T.PANEL, children: 'label' }, + "nested_label_with_image_control/label_panel/label": { type: T.LABEL, children: string }, + "nested_six_part_empty_definition": { type: T.LABEL, children: string }, + "nested_six_part_label_control": { type: T.PANEL, children: 'left_top_label' | 'left_middle_label' | 'left_bottom_label' | 'right_top_label' | 'right_middle_label' | 'right_bottom_label' }, + "nested_six_part_label_control/left_top_label": { type: T.UNKNOWN, children: string }, + "nested_six_part_label_control/left_middle_label": { type: T.UNKNOWN, children: string }, + "nested_six_part_label_control/left_bottom_label": { type: T.UNKNOWN, children: string }, + "nested_six_part_label_control/right_top_label": { type: T.UNKNOWN, children: string }, + "nested_six_part_label_control/right_middle_label": { type: T.UNKNOWN, children: string }, + "nested_six_part_label_control/right_bottom_label": { type: T.UNKNOWN, children: string }, + "nested_dark_button_assets": { type: T.IMAGE, children: string }, + "nested_content_background_assets": { type: T.IMAGE, children: string }, + "nested_content_overlay_assets": { type: T.IMAGE, children: string }, + "nested_dark_control_with_image": { type: T.PANEL, children: 'background' | 'image_panel' }, + "nested_dark_control_with_image/background": { type: T.IMAGE, children: string }, + "nested_dark_control_with_image/image_panel": { type: T.PANEL, children: 'image' }, + "nested_dark_control_with_image/image_panel/image": { type: T.IMAGE, children: string }, + "nestable_button": { type: T.PANEL, children: 'nested_controls_panel' | 'base_button' }, + "nestable_button/nested_controls_panel": { type: T.INPUT_PANEL, children: 'locked_overlay' | 'nested_controls' }, + "nestable_button/nested_controls_panel/locked_overlay": { type: T.IMAGE, children: string }, + "nestable_button/nested_controls_panel/nested_controls": { type: T.UNKNOWN, children: string }, + "nestable_button/base_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' | 'locked' }, + "nestable_button/base_button/default": { type: T.PANEL, children: string }, + "nestable_button/base_button/hover": { type: T.PANEL, children: string }, + "nestable_button/base_button/pressed": { type: T.PANEL, children: string }, + "nestable_button/base_button/locked": { type: T.PANEL, children: string }, + "nested_button_base": { type: T.PANEL, children: 'button_overlay' | 'button_control' }, + "nested_button_base/button_overlay": { type: T.UNKNOWN, children: string }, + "nested_button_base/button_control": { type: T.STACK_PANEL, children: 'control_area' | 'button_stack_padding' | 'label_area' }, + "nested_button_base/button_control/control_area": { type: T.PANEL, children: 'background' | 'control' | 'overlay' }, + "nested_button_base/button_control/control_area/background": { type: T.UNKNOWN, children: string }, + "nested_button_base/button_control/control_area/control": { type: T.UNKNOWN, children: string }, + "nested_button_base/button_control/control_area/overlay": { type: T.UNKNOWN, children: string }, + "nested_button_base/button_control/button_stack_padding": { type: T.PANEL, children: string }, + "nested_button_base/button_control/label_area": { type: T.PANEL, children: 'background' | 'control_background' | 'control' }, + "nested_button_base/button_control/label_area/background": { type: T.UNKNOWN, children: string }, + "nested_button_base/button_control/label_area/control_background": { type: T.UNKNOWN, children: string }, + "nested_button_base/button_control/label_area/control": { type: T.UNKNOWN, children: string }, + "dark_nestable_button": { type: T.PANEL, children: string }, + "transparent_label_nestable_button": { type: T.PANEL, children: string }, + "static_tooltip_notification_panel": { type: T.BUTTON, children: 'default' | 'pressed' | 'hover' | 'locked' | 'static_tooltip_popup_panel' }, + "static_tooltip_notification_panel/default": { type: T.IMAGE, children: string }, + "static_tooltip_notification_panel/pressed": { type: T.IMAGE, children: string }, + "static_tooltip_notification_panel/hover": { type: T.IMAGE, children: string }, + "static_tooltip_notification_panel/locked": { type: T.IMAGE, children: string }, + "static_tooltip_notification_panel/static_tooltip_popup_panel": { type: T.IMAGE, children: string }, + "dynamic_tooltip_notification_panel": { type: T.BUTTON, children: 'default' | 'pressed' | 'hover' | 'locked' | 'dyanmic_tooltip_popup_panel' }, + "dynamic_tooltip_notification_panel/default": { type: T.IMAGE, children: string }, + "dynamic_tooltip_notification_panel/pressed": { type: T.IMAGE, children: string }, + "dynamic_tooltip_notification_panel/hover": { type: T.IMAGE, children: string }, + "dynamic_tooltip_notification_panel/locked": { type: T.IMAGE, children: string }, + "dynamic_tooltip_notification_panel/dyanmic_tooltip_popup_panel": { type: T.IMAGE, children: string }, + "text_body_focus_border_for_controller_button": { type: T.BUTTON, children: 'default' | 'hover' | 'text_control' }, + "text_body_focus_border_for_controller_button/default": { type: T.PANEL, children: string }, + "text_body_focus_border_for_controller_button/hover": { type: T.PANEL, children: 'focus_border' }, + "text_body_focus_border_for_controller_button/hover/focus_border": { type: T.IMAGE, children: string }, + "text_body_focus_border_for_controller_button/text_control": { type: T.UNKNOWN, children: string }, } 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": { type: T.LABEL, children: string }, + "title_label": { type: T.PANEL, children: 'common_dialogs_0' | 'common_dialogs_1' }, + "title_label/common_dialogs_0": { type: T.LABEL, children: string }, + "title_label/common_dialogs_1": { type: T.UNKNOWN, children: string }, + "main_panel_three_buttons": { type: T.PANEL, children: 'common_panel' | 'title_label' | 'panel_indent' | 'top_button_panel' | 'middle_button_panel' | 'bottom_button_panel' }, + "main_panel_three_buttons/common_panel": { type: T.PANEL, children: string }, + "main_panel_three_buttons/title_label": { type: T.PANEL, children: string }, + "main_panel_three_buttons/panel_indent": { type: T.PANEL, children: 'inside_header_panel' }, + "main_panel_three_buttons/panel_indent/inside_header_panel": { type: T.UNKNOWN, children: string }, + "main_panel_three_buttons/top_button_panel": { type: T.UNKNOWN, children: string }, + "main_panel_three_buttons/middle_button_panel": { type: T.UNKNOWN, children: string }, + "main_panel_three_buttons/bottom_button_panel": { type: T.UNKNOWN, children: string }, + "main_panel_two_buttons": { type: T.PANEL, children: 'common_panel' | 'title_label' | 'panel_indent' | 'top_button_panel' | 'bottom_button_panel' }, + "main_panel_two_buttons/common_panel": { type: T.PANEL, children: string }, + "main_panel_two_buttons/title_label": { type: T.PANEL, children: string }, + "main_panel_two_buttons/panel_indent": { type: T.PANEL, children: 'inside_header_panel' }, + "main_panel_two_buttons/panel_indent/inside_header_panel": { type: T.UNKNOWN, children: string }, + "main_panel_two_buttons/top_button_panel": { type: T.UNKNOWN, children: string }, + "main_panel_two_buttons/bottom_button_panel": { type: T.UNKNOWN, children: string }, + "main_panel_one_button": { type: T.PANEL, children: 'common_panel' | 'title_label' | 'panel_indent' | 'bottom_button_panel' }, + "main_panel_one_button/common_panel": { type: T.PANEL, children: string }, + "main_panel_one_button/title_label": { type: T.PANEL, children: string }, + "main_panel_one_button/panel_indent": { type: T.PANEL, children: 'inside_header_panel' }, + "main_panel_one_button/panel_indent/inside_header_panel": { type: T.UNKNOWN, children: string }, + "main_panel_one_button/bottom_button_panel": { type: T.UNKNOWN, children: string }, + "main_panel_no_buttons": { type: T.PANEL, children: 'common_panel' | 'title_label' | 'panel_indent' }, + "main_panel_no_buttons/common_panel": { type: T.PANEL, children: string }, + "main_panel_no_buttons/title_label": { type: T.PANEL, children: string }, + "main_panel_no_buttons/panel_indent": { type: T.PANEL, children: 'inside_header_panel' }, + "main_panel_no_buttons/panel_indent/inside_header_panel": { type: T.UNKNOWN, children: string }, + "main_panel_no_title_no_buttons": { type: T.PANEL, children: 'common_panel' | 'panel_indent' }, + "main_panel_no_title_no_buttons/common_panel": { type: T.PANEL, children: string }, + "main_panel_no_title_no_buttons/panel_indent": { type: T.PANEL, children: 'inside_header_panel' }, + "main_panel_no_title_no_buttons/panel_indent/inside_header_panel": { type: T.UNKNOWN, children: string }, + "main_panel_small_title_one_button": { type: T.PANEL, children: 'common_panel' | 'title_label' | 'panel_indent' | 'bottom_button_panel' }, + "main_panel_small_title_one_button/common_panel": { type: T.PANEL, children: string }, + "main_panel_small_title_one_button/title_label": { type: T.PANEL, children: string }, + "main_panel_small_title_one_button/panel_indent": { type: T.PANEL, children: 'inside_header_panel' }, + "main_panel_small_title_one_button/panel_indent/inside_header_panel": { type: T.UNKNOWN, children: string }, + "main_panel_small_title_one_button/bottom_button_panel": { type: T.UNKNOWN, children: string }, + "main_panel": { type: T.PANEL, children: 'modal_background_image' | 'panel_indent' }, + "main_panel/modal_background_image": { type: T.UNKNOWN, children: string }, + "main_panel/panel_indent": { type: T.PANEL, children: 'inside_header_panel' }, + "main_panel/panel_indent/inside_header_panel": { type: T.UNKNOWN, children: string }, + "form_fitting_main_panel_no_buttons": { type: T.PANEL, children: 'common_panel' }, + "form_fitting_main_panel_no_buttons/common_panel": { type: T.PANEL, children: string }, + "common_panel": { type: T.PANEL, children: 'bg_image' }, + "common_panel/bg_image": { type: T.UNKNOWN, children: string }, + "dialog_background_common": { type: T.IMAGE, children: string }, + "dialog_background_thin": { type: T.IMAGE, children: string }, + "flat_solid_background": { type: T.IMAGE, children: string }, + "dialog_background_hollow_common": { type: T.IMAGE, children: 'control' }, + "dialog_background_hollow_common/control": { type: T.IMAGE, children: 'inside_header_panel' | 'close_button_holder' | 'title_label' }, + "dialog_background_hollow_common/control/inside_header_panel": { type: T.UNKNOWN, children: string }, + "dialog_background_hollow_common/control/close_button_holder": { type: T.STACK_PANEL, children: string }, + "dialog_background_hollow_common/control/title_label": { type: T.PANEL, children: string }, + "common_close_button_holder": { type: T.STACK_PANEL, children: 'close' | 'compact_close' }, + "common_close_button_holder/close": { type: T.BUTTON, children: string }, + "common_close_button_holder/compact_close": { type: T.BUTTON, children: string }, + "dialog_background_opaque": { type: T.IMAGE, children: string }, + "dialog_background_opaque_with_child": { type: T.IMAGE, children: string }, + "dialog_background_hollow_1": { type: T.IMAGE, children: string }, + "dialog_background_hollow_2": { type: T.IMAGE, children: string }, + "dialog_background_hollow_3": { type: T.IMAGE, children: string }, + "dialog_background_hollow_4": { type: T.IMAGE, children: string }, + "dialog_background_hollow_6": { type: T.UNKNOWN, children: string }, + "full_screen_background": { type: T.PANEL, children: 'background' }, + "full_screen_background/background": { type: T.UNKNOWN, children: string }, + "background_image": { type: T.IMAGE, children: string }, } 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": { type: T.PANEL, children: string }, + "tab_image": { type: T.IMAGE, children: string }, + "tab_panel": { type: T.PANEL, children: 'tab_image' | 'tab_content_sizer' }, + "tab_panel/tab_image": { type: T.UNKNOWN, children: string }, + "tab_panel/tab_content_sizer": { type: T.PANEL, children: 'tab_content' }, + "tab_panel/tab_content_sizer/tab_content": { type: T.UNKNOWN, children: string }, + "base_tab": { type: T.PANEL, children: string }, + "tab_top": { type: T.PANEL, children: string }, + "tab_left": { type: T.PANEL, children: string }, + "tab_right": { type: T.PANEL, children: string }, + "pocket_tab_left": { type: T.PANEL, children: string }, + "pocket_tab_right": { type: T.PANEL, children: string }, + "pocket_tab_close_button": { type: T.IMAGE, children: 'close_button' }, + "pocket_tab_close_button/close_button": { type: T.BUTTON, children: string }, + "pocket_tab_help_button": { type: T.IMAGE, children: 'help_button' }, + "pocket_tab_help_button/help_button": { type: T.BUTTON, children: string }, + "pocket_tab_close_and_help_button": { type: T.IMAGE, children: 'close_button' | 'help_button' }, + "pocket_tab_close_and_help_button/close_button": { type: T.BUTTON, children: string }, + "pocket_tab_close_and_help_button/help_button": { type: T.BUTTON, children: string }, + "tab_close_and_help_button": { type: T.IMAGE, children: 'close_button' | 'help_button' }, + "tab_close_and_help_button/close_button": { type: T.BUTTON, children: string }, + "tab_close_and_help_button/help_button": { type: T.BUTTON, children: string }, } 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": { type: T.PANEL, children: 'icon' }, + "content_toggle_image_panel/icon": { type: T.IMAGE, children: string }, + "content_toggle_label_panel": { type: T.PANEL, children: 'toggle_label' }, + "content_toggle_label_panel/toggle_label": { type: T.LABEL, children: string }, + "content_toggle_icon_panel": { type: T.PANEL, children: 'content_toggle_image' }, + "content_toggle_icon_panel/content_toggle_image": { type: T.IMAGE, children: string }, + "toggle_content_panel": { type: T.STACK_PANEL, children: 'toggle_image_panel' | 'toggle_image_padding_label' | 'toggle_label_panel' | 'toggle_label_padding_toggle_icon' | 'toggle_icon' }, + "toggle_content_panel/toggle_image_panel": { type: T.UNKNOWN, children: string }, + "toggle_content_panel/toggle_image_padding_label": { type: T.PANEL, children: string }, + "toggle_content_panel/toggle_label_panel": { type: T.UNKNOWN, children: string }, + "toggle_content_panel/toggle_label_padding_toggle_icon": { type: T.PANEL, children: string }, + "toggle_content_panel/toggle_icon": { type: T.PANEL, children: string }, + "vertical_form_fitting_toggle_content": { type: T.STACK_PANEL, children: 'toggle_image_panel' | 'toggle_image_padding_label' | 'toggle_label_panel' | 'toggle_label_padding_toggle_icon' | 'toggle_icon' }, + "vertical_form_fitting_toggle_content/toggle_image_panel": { type: T.UNKNOWN, children: string }, + "vertical_form_fitting_toggle_content/toggle_image_padding_label": { type: T.PANEL, children: string }, + "vertical_form_fitting_toggle_content/toggle_label_panel": { type: T.UNKNOWN, children: string }, + "vertical_form_fitting_toggle_content/toggle_label_padding_toggle_icon": { type: T.PANEL, children: string }, + "vertical_form_fitting_toggle_content/toggle_icon": { type: T.PANEL, children: string }, + "light_text_toggle": { type: T.PANEL, children: string }, + "light_image_toggle": { type: T.PANEL, children: string }, + "light_content_toggle": { type: T.PANEL, children: string }, + "dark_ui_toggle": { type: T.PANEL, children: string }, + "dark_text_toggle": { type: T.PANEL, children: string }, + "dark_image_toggle": { type: T.PANEL, children: string }, + "dark_content_toggle": { type: T.PANEL, children: string }, + "dark_vertical_template_toggle": { type: T.PANEL, children: string }, + "dark_vertical_form_fitting_content_toggle": { type: T.PANEL, children: 'dark_content_toggle' }, + "dark_vertical_form_fitting_content_toggle/dark_content_toggle": { type: T.PANEL, children: string }, + "dark_template_toggle": { type: T.PANEL, children: string }, + "light_template_toggle": { type: T.PANEL, children: string }, + "light_ui_toggle": { type: T.PANEL, children: string }, + "switch_toggle": { type: T.PANEL, children: string }, + "light_text_toggle_collection": { type: T.PANEL, children: string }, + "light_image_toggle_collection": { type: T.PANEL, children: string }, + "dark_text_toggle_collection": { type: T.PANEL, children: string }, + "dark_image_toggle_collection": { type: T.PANEL, children: string }, + "dark_ui_toggle_collection": { type: T.PANEL, children: string }, + "light_ui_toggle_collection": { type: T.PANEL, children: string }, + "switch_toggle_collection": { type: T.PANEL, children: string }, + "toggle_state_panel": { type: T.PANEL, children: 'button_panel' }, + "toggle_state_panel/button_panel": { type: T.UNKNOWN, children: string }, + "toggle_unchecked": { type: T.PANEL, children: string }, + "toggle_checked": { type: T.PANEL, children: string }, + "toggle_unchecked_hover": { type: T.PANEL, children: string }, + "toggle_checked_hover": { type: T.PANEL, children: string }, + "toggle_locked": { type: T.PANEL, children: string }, + "toggle_unchecked_locked": { type: T.PANEL, children: string }, + "toggle_checked_locked": { type: T.PANEL, children: string }, + "toggle_unchecked_hover_with_chevron": { type: T.PANEL, children: string }, + "toggle_checked_hover_with_chevron": { type: T.PANEL, children: string }, + "toggle_image": { type: T.PANEL, children: 'image' }, + "toggle_image/image": { type: T.UNKNOWN, children: string }, + "radio_off_icon": { type: T.IMAGE, children: string }, + "radio_off_hover_icon": { type: T.IMAGE, children: string }, + "radio_on_icon": { type: T.IMAGE, children: string }, + "radio_on_hover_icon": { type: T.IMAGE, children: string }, + "check_box_button_toggle_image": { type: T.IMAGE, children: string }, + "checkbox_button_checked_state": { type: T.IMAGE, children: string }, + "checkbox_button_unchecked_state": { type: T.IMAGE, children: string }, + "checkbox_button_checked_hover_state": { type: T.IMAGE, children: string }, + "checkbox_button_unchecked_hover_state": { type: T.IMAGE, children: string }, + "checkbox_button_checked_locked_state": { type: T.IMAGE, children: string }, + "checkbox_button_unchecked_locked_state": { type: T.IMAGE, children: string }, + "toggle_checkbox_unchecked": { type: T.PANEL, children: string }, + "toggle_checkbox_checked": { type: T.PANEL, children: string }, + "toggle_checkbox_unchecked_hover": { type: T.PANEL, children: string }, + "toggle_checkbox_checked_hover": { type: T.PANEL, children: string }, + "toggle_checkbox_unchecked_locked": { type: T.PANEL, children: string }, + "toggle_checkbox_checked_locked": { type: T.PANEL, children: string }, + "check_box_button_ui_panel": { type: T.PANEL, children: 'toggle_image' }, + "check_box_button_ui_panel/toggle_image": { type: T.PANEL, children: 'button_content' | 'border' | 'checkbox_image' }, + "check_box_button_ui_panel/toggle_image/button_content": { type: T.PANEL, children: string }, + "check_box_button_ui_panel/toggle_image/border": { type: T.IMAGE, children: string }, + "check_box_button_ui_panel/toggle_image/checkbox_image": { type: T.PANEL, children: 'image' }, + "check_box_button_ui_panel/toggle_image/checkbox_image/image": { type: T.UNKNOWN, children: string }, + "button_and_checkbox_template": { type: T.PANEL, children: string }, + "button_with_checkbox_toggle": { type: T.PANEL, children: string }, } 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": { type: T.IMAGE, children: string }, + "profilepicture": { type: T.CUSTOM, children: string }, + "persona_icon_with_border": { type: T.PANEL, children: 'profile_icon' | 'border_black' }, + "persona_icon_with_border/profile_icon": { type: T.CUSTOM, children: string }, + "persona_icon_with_border/border_black": { type: T.IMAGE, children: string }, + "friendsdrawer_persona_icons": { type: T.STACK_PANEL, children: string }, + "social_button_stackpanel": { type: T.STACK_PANEL, children: 'image_panel' }, + "social_button_stackpanel/image_panel": { type: T.PANEL, children: 'social_icon' }, + "social_button_stackpanel/image_panel/social_icon": { type: T.IMAGE, children: string }, + "social_button_hover_stackpanel": { type: T.STACK_PANEL, children: string }, + "self_persona_stackpanel": { type: T.STACK_PANEL, children: 'self_icon' }, + "self_persona_stackpanel/self_icon": { type: T.PANEL, children: string }, + "single_friend_persona_stackpanel": { type: T.STACK_PANEL, children: 'self_icon' | 'friend_one_icon' }, + "single_friend_persona_stackpanel/self_icon": { type: T.STACK_PANEL, children: string }, + "single_friend_persona_stackpanel/friend_one_icon": { type: T.PANEL, children: string }, + "many_friend_persona_stackpanel": { type: T.STACK_PANEL, children: 'self_icon' | 'extra_friends_text_panel' }, + "many_friend_persona_stackpanel/self_icon": { type: T.STACK_PANEL, children: string }, + "many_friend_persona_stackpanel/extra_friends_text_panel": { type: T.PANEL, children: 'background' | 'extra_members_label' | 'border_black' }, + "many_friend_persona_stackpanel/extra_friends_text_panel/background": { type: T.IMAGE, children: string }, + "many_friend_persona_stackpanel/extra_friends_text_panel/extra_members_label": { type: T.LABEL, children: string }, + "many_friend_persona_stackpanel/extra_friends_text_panel/border_black": { type: T.IMAGE, children: string }, + "button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' | 'locked' }, + "button/default": { type: T.UNKNOWN, children: string }, + "button/hover": { type: T.UNKNOWN, children: string }, + "button/pressed": { type: T.UNKNOWN, children: string }, + "button/locked": { type: T.UNKNOWN, children: string }, + "social_factory_stackpanel_default": { type: T.STACK_PANEL, children: string }, + "social_factory_stackpanel_hovered": { type: T.STACK_PANEL, children: string }, + "friendsdrawer_button_content": { type: T.STACK_PANEL, children: 'social_factory_stackpanel' | 'padding_middle' | 'vertically_centered_text' | 'padding_right' }, + "friendsdrawer_button_content/social_factory_stackpanel": { type: T.UNKNOWN, children: string }, + "friendsdrawer_button_content/padding_middle": { type: T.PANEL, children: string }, + "friendsdrawer_button_content/vertically_centered_text": { type: T.STACK_PANEL, children: 'top_padding' | 'profile_button_label' }, + "friendsdrawer_button_content/vertically_centered_text/top_padding": { type: T.PANEL, children: string }, + "friendsdrawer_button_content/vertically_centered_text/profile_button_label": { type: T.LABEL, children: string }, + "friendsdrawer_button_content/padding_right": { type: T.PANEL, children: string }, + "friendsdrawer_hover_button_content": { type: T.STACK_PANEL, children: string }, + "friends_drawer_popup": { type: T.BUTTON, children: string }, } 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": { type: T.IMAGE, children: string }, + "button": { type: T.BUTTON, children: string }, + "iconbutton_button_content": { type: T.STACK_PANEL, children: 'icon_wrapper' | 'padding_middle' | 'vertically_centered_text' }, + "iconbutton_button_content/icon_wrapper": { type: T.PANEL, children: 'icon_with_border' }, + "iconbutton_button_content/icon_wrapper/icon_with_border": { type: T.PANEL, children: 'iconbutton_animated_icon' | 'border_black' }, + "iconbutton_button_content/icon_wrapper/icon_with_border/iconbutton_animated_icon": { type: T.IMAGE, children: string }, + "iconbutton_button_content/icon_wrapper/icon_with_border/border_black": { type: T.IMAGE, children: string }, + "iconbutton_button_content/padding_middle": { type: T.PANEL, children: string }, + "iconbutton_button_content/vertically_centered_text": { type: T.STACK_PANEL, children: 'top_padding' | 'profile_button_label' }, + "iconbutton_button_content/vertically_centered_text/top_padding": { type: T.PANEL, children: string }, + "iconbutton_button_content/vertically_centered_text/profile_button_label": { type: T.LABEL, children: string }, } 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": { type: T.BUTTON, children: string }, + "update_dimensions_description": { type: T.LABEL, children: string }, + "update_dimensions_label_panel": { type: T.PANEL, children: string }, + "make_backup_checkbox": { type: T.PANEL, children: 'header_description_stack_panel' }, + "make_backup_checkbox/header_description_stack_panel": { type: T.STACK_PANEL, children: 'checkbox_visuals' | 'buffer_panel' | 'another_panel' }, + "make_backup_checkbox/header_description_stack_panel/checkbox_visuals": { type: T.PANEL, children: string }, + "make_backup_checkbox/header_description_stack_panel/buffer_panel": { type: T.PANEL, children: 'label' }, + "make_backup_checkbox/header_description_stack_panel/buffer_panel/label": { type: T.LABEL, children: string }, + "make_backup_checkbox/header_description_stack_panel/another_panel": { type: T.PANEL, children: string }, + "world_upgrade": { type: T.IMAGE, children: string }, + "update_dimensions_dialog": { type: T.PANEL, children: 'common_panel' | 'title_label' | 'panel_indent' | 'top_button_panel' | 'bottom_button_panel' | 'world_upgrade_image' }, + "update_dimensions_dialog/common_panel": { type: T.PANEL, children: string }, + "update_dimensions_dialog/title_label": { type: T.PANEL, children: string }, + "update_dimensions_dialog/panel_indent": { type: T.PANEL, children: 'inside_header_panel' }, + "update_dimensions_dialog/panel_indent/inside_header_panel": { type: T.UNKNOWN, children: string }, + "update_dimensions_dialog/top_button_panel": { type: T.UNKNOWN, children: string }, + "update_dimensions_dialog/bottom_button_panel": { type: T.UNKNOWN, children: string }, + "update_dimensions_dialog/world_upgrade_image": { type: T.IMAGE, children: string }, + "gamepad_helpers": { type: T.PANEL, children: 'gamepad_helper_a' }, + "gamepad_helpers/gamepad_helper_a": { type: T.STACK_PANEL, children: string }, + "update_dimensions_screen": { type: T.SCREEN, children: string }, + "update_dimensions_screen_content": { type: T.PANEL, children: 'update_dimensions_dialog' | 'gamepad_helpers' }, + "update_dimensions_screen_content/update_dimensions_dialog": { type: T.PANEL, children: string }, + "update_dimensions_screen_content/gamepad_helpers": { type: T.PANEL, children: string }, } 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": { type: T.SCREEN, children: string }, + "update_version_popup": { type: T.PANEL, children: string }, + "background": { type: T.IMAGE, children: string }, + "update_version_content": { type: T.STACK_PANEL, children: 'top_of_version_panel' | 'spacer_1px' | 'update_body_text' | 'spacer_1px_2' }, + "update_version_content/top_of_version_panel": { type: T.STACK_PANEL, children: string }, + "update_version_content/spacer_1px": { type: T.PANEL, children: string }, + "update_version_content/update_body_text": { type: T.LABEL, children: string }, + "update_version_content/spacer_1px_2": { type: T.PANEL, children: string }, + "patch_notes_panel": { type: T.IMAGE, children: 'patch_notes_text' }, + "patch_notes_panel/patch_notes_text": { type: T.PANEL, children: string }, + "picture_and_patch_notes": { type: T.STACK_PANEL, children: 'patch_notes_image_outline' | 'patch_notes_panel' }, + "picture_and_patch_notes/patch_notes_image_outline": { type: T.IMAGE, children: 'patch_notes_image' }, + "picture_and_patch_notes/patch_notes_image_outline/patch_notes_image": { type: T.IMAGE, children: string }, + "picture_and_patch_notes/patch_notes_panel": { type: T.IMAGE, children: string }, + "patch_notes": { type: T.PANEL, children: 'patch_notes_text' }, + "patch_notes/patch_notes_text": { type: T.LABEL, children: string }, + "update_body_text": { type: T.LABEL, children: string }, + "update_button": { type: T.BUTTON, children: string }, } 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": { type: T.SCREEN, children: string }, + "world_recovery_screen_content": { type: T.PANEL, children: 'dialog' }, + "world_recovery_screen_content/dialog": { type: T.PANEL, children: string }, + "description_panel": { type: T.PANEL, children: string }, + "scrolling_panel": { type: T.PANEL, children: string }, + "description_label": { type: T.LABEL, children: string }, + "button_panel": { type: T.BUTTON, children: string }, + "background": { type: T.IMAGE, children: string }, } 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": { type: T.PANEL, children: string }, + "world_icon": { type: T.IMAGE, children: string }, + "realms_icon": { type: T.IMAGE, children: string }, + "label_background": { type: T.IMAGE, children: string }, + "lock_icon": { type: T.IMAGE, children: string }, + "realms_plus_icon": { type: T.IMAGE, children: string }, + "new_world_toggle": { type: T.PANEL, children: string }, + "new_realm_toggle": { type: T.PANEL, children: string }, + "world_button_content": { type: T.STACK_PANEL, children: 'horizontal_padding_0' | 'icon_panel' | 'horizontal_padding_1' | 'world_button_label_panel' | 'horizontal_padding_2' }, + "world_button_content/horizontal_padding_0": { type: T.PANEL, children: string }, + "world_button_content/icon_panel": { type: T.PANEL, children: string }, + "world_button_content/horizontal_padding_1": { type: T.PANEL, children: string }, + "world_button_content/world_button_label_panel": { type: T.PANEL, children: 'world_button_label' }, + "world_button_content/world_button_label_panel/world_button_label": { type: T.LABEL, children: string }, + "world_button_content/horizontal_padding_2": { type: T.PANEL, children: string }, + "world_button_label": { type: T.LABEL, children: string }, + "common_button_template": { type: T.BUTTON, children: string }, + "generate_random": { type: T.BUTTON, children: string }, + "help_button": { type: T.BUTTON, children: string }, + "grid_button_content_template": { type: T.STACK_PANEL, children: 'content' }, + "grid_button_content_template/content": { type: T.UNKNOWN, children: string }, + "label_content_template": { type: T.STACK_PANEL, children: 'label_panel' }, + "label_content_template/label_panel": { type: T.PANEL, children: 'label_panel_layout' }, + "label_content_template/label_panel/label_panel_layout": { type: T.PANEL, children: 'label' }, + "label_content_template/label_panel/label_panel_layout/label": { type: T.LABEL, children: string }, + "my_templates_label": { type: T.STACK_PANEL, children: string }, + "realms_plus_templates_label": { type: T.STACK_PANEL, children: string }, + "custom_templates_label": { type: T.STACK_PANEL, children: string }, + "generate_random_button": { type: T.STACK_PANEL, children: string }, + "realms_templates_info": { type: T.IMAGE, children: 'info_label' }, + "realms_templates_info/info_label": { type: T.LABEL, children: string }, + "world_list_text": { type: T.LABEL, children: string }, + "world_template_screenshot": { type: T.IMAGE, children: 'picture' }, + "world_template_screenshot/picture": { type: T.IMAGE, children: string }, + "world_template_name": { type: T.LABEL, children: string }, + "world_template_description": { type: T.LABEL, children: string }, + "world_template_version": { type: T.LABEL, children: string }, + "template_download_text": { type: T.LABEL, children: string }, + "world_template_text_panel": { type: T.PANEL, children: 'text_indent' }, + "world_template_text_panel/text_indent": { type: T.PANEL, children: 'top_side' | 'bottom_side' }, + "world_template_text_panel/text_indent/top_side": { type: T.STACK_PANEL, children: 'world_template_name' | 'download_text_label' }, + "world_template_text_panel/text_indent/top_side/world_template_name": { type: T.LABEL, children: string }, + "world_template_text_panel/text_indent/top_side/download_text_label": { type: T.LABEL, children: string }, + "world_template_text_panel/text_indent/bottom_side": { type: T.STACK_PANEL, children: 'csb_icon' | 'pad' | 'world_template_description' | 'world_template_version' }, + "world_template_text_panel/text_indent/bottom_side/csb_icon": { type: T.PANEL, children: string }, + "world_template_text_panel/text_indent/bottom_side/pad": { type: T.PANEL, children: string }, + "world_template_text_panel/text_indent/bottom_side/world_template_description": { type: T.LABEL, children: string }, + "world_template_text_panel/text_indent/bottom_side/world_template_version": { type: T.LABEL, children: string }, + "csb_banner": { type: T.PANEL, children: 'banner' }, + "csb_banner/banner": { type: T.IMAGE, children: string }, + "world_template_content_panel": { type: T.STACK_PANEL, children: 'world_template_screenshot' | 'world_template_text_panel' | 'lock_panel' }, + "world_template_content_panel/world_template_screenshot": { type: T.IMAGE, children: string }, + "world_template_content_panel/world_template_text_panel": { type: T.PANEL, children: string }, + "world_template_content_panel/lock_panel": { type: T.PANEL, children: 'lock_icon' }, + "world_template_content_panel/lock_panel/lock_icon": { type: T.IMAGE, children: string }, + "world_template_item_button": { type: T.BUTTON, children: string }, + "realms_plus_template_item_button": { type: T.BUTTON, children: string }, + "world_template_item": { type: T.STACK_PANEL, children: 'world_template_item_button' }, + "world_template_item/world_template_item_button": { type: T.BUTTON, children: string }, + "realms_plus_template_item": { type: T.STACK_PANEL, children: 'realms_plus_template_item_button' }, + "realms_plus_template_item/realms_plus_template_item_button": { type: T.BUTTON, children: string }, + "world_template_item_grid": { type: T.GRID, children: string }, + "see_more_templates_button": { type: T.BUTTON, children: string }, + "suggested_see_more_button": { type: T.BUTTON, children: string }, + "realms_plus_see_more_button": { type: T.BUTTON, children: string }, + "world_template_inventory_see_more_button": { type: T.BUTTON, children: string }, + "custom_world_template_see_more_button": { type: T.BUTTON, children: string }, + "world_template_section_factory": { type: T.STACK_PANEL, children: string }, + "suggested_template_section_factory": { type: T.STACK_PANEL, children: string }, + "realms_plus_template_section_factory": { type: T.STACK_PANEL, children: string }, + "world_template_inventory_section_factory": { type: T.STACK_PANEL, children: string }, + "custom_world_template_section_factory": { type: T.STACK_PANEL, children: string }, + "custom_world_template_item_grid": { type: T.GRID, children: string }, + "no_owned_templates_text_label": { type: T.LABEL, children: string }, + "no_owned_templates_text": { type: T.LABEL, children: string }, + "no_template_content_owned": { type: T.IMAGE, children: 'no_template_content_owned_text_panel' }, + "no_template_content_owned/no_template_content_owned_text_panel": { type: T.LABEL, children: string }, + "common_scrolling_panel": { type: T.PANEL, children: string }, + "common_content": { type: T.PANEL, children: string }, + "scrolling_offsets": { type: T.PANEL, children: string }, + "template_scroll_content": { type: T.PANEL, children: 'scrolling_panel' }, + "template_scroll_content/scrolling_panel": { type: T.PANEL, children: string }, + "common_scroll_pane": { type: T.PANEL, children: string }, + "template_scroll_panel": { type: T.PANEL, children: 'world_template_screen_content_stack_panel' }, + "template_scroll_panel/world_template_screen_content_stack_panel": { type: T.STACK_PANEL, children: string }, + "world_list_grids_stack": { type: T.STACK_PANEL, children: 'template_list_panel' | 'store_panel' | 'custom_template_panel' | 'realms_info_panel' }, + "world_list_grids_stack/template_list_panel": { type: T.STACK_PANEL, children: 'my_templates_label_panel' | 'world_template_inventory_section_factory' | 'template_bottom_padding' }, + "world_list_grids_stack/template_list_panel/my_templates_label_panel": { type: T.STACK_PANEL, children: string }, + "world_list_grids_stack/template_list_panel/world_template_inventory_section_factory": { type: T.STACK_PANEL, children: string }, + "world_list_grids_stack/template_list_panel/template_bottom_padding": { type: T.PANEL, children: string }, + "world_list_grids_stack/store_panel": { type: T.PANEL, children: 'loading_panel' | 'store_grids' }, + "world_list_grids_stack/store_panel/loading_panel": { type: T.PANEL, children: string }, + "world_list_grids_stack/store_panel/store_grids": { type: T.STACK_PANEL, children: 'realms_plus_list_panel' | 'suggested_content_panel' }, + "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel": { type: T.STACK_PANEL, children: 'realms_plus_label_panel' | 'realms_plus_template_section_factory' | 'realms_plus_template_bottom_padding' }, + "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_label_panel": { type: T.STACK_PANEL, children: string }, + "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_template_section_factory": { type: T.STACK_PANEL, children: string }, + "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_template_bottom_padding": { type: T.PANEL, children: string }, + "world_list_grids_stack/store_panel/store_grids/suggested_content_panel": { type: T.STACK_PANEL, children: 'suggested_content_offers_title_label' | 'suggested_template_section_factory' | 'suggested_template_bottom_padding' }, + "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_content_offers_title_label": { type: T.LABEL, children: string }, + "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_template_section_factory": { type: T.STACK_PANEL, children: string }, + "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_template_bottom_padding": { type: T.PANEL, children: string }, + "world_list_grids_stack/custom_template_panel": { type: T.STACK_PANEL, children: 'custom_templates_label_panel' | 'custom_world_template_section_factory' | 'custom_template_list_bottom_padding' }, + "world_list_grids_stack/custom_template_panel/custom_templates_label_panel": { type: T.STACK_PANEL, children: string }, + "world_list_grids_stack/custom_template_panel/custom_world_template_section_factory": { type: T.STACK_PANEL, children: string }, + "world_list_grids_stack/custom_template_panel/custom_template_list_bottom_padding": { type: T.PANEL, children: string }, + "world_list_grids_stack/realms_info_panel": { type: T.STACK_PANEL, children: 'padding' | 'realms_templates_info' | 'open_uri_button' }, + "world_list_grids_stack/realms_info_panel/padding": { type: T.PANEL, children: string }, + "world_list_grids_stack/realms_info_panel/realms_templates_info": { type: T.IMAGE, children: string }, + "world_list_grids_stack/realms_info_panel/open_uri_button": { type: T.BUTTON, children: string }, + "world_list_grid_content": { type: T.PANEL, children: 'world_list_grids_stack' }, + "world_list_grid_content/world_list_grids_stack": { type: T.STACK_PANEL, children: string }, + "world_template_screen_content_stack_panel": { type: T.STACK_PANEL, children: 'padding_0' | 'crossplatform_disabled_panel' | 'crossplatform_disable_spacer' | 'generate_random_panel' | 'generate_random_button_bottom_padding' | 'world_list_grid_content' }, + "world_template_screen_content_stack_panel/padding_0": { type: T.PANEL, children: string }, + "world_template_screen_content_stack_panel/crossplatform_disabled_panel": { type: T.IMAGE, children: 'disable_text' }, + "world_template_screen_content_stack_panel/crossplatform_disabled_panel/disable_text": { type: T.LABEL, children: string }, + "world_template_screen_content_stack_panel/crossplatform_disable_spacer": { type: T.PANEL, children: string }, + "world_template_screen_content_stack_panel/generate_random_panel": { type: T.STACK_PANEL, children: string }, + "world_template_screen_content_stack_panel/generate_random_button_bottom_padding": { type: T.PANEL, children: string }, + "world_template_screen_content_stack_panel/world_list_grid_content": { type: T.PANEL, children: string }, + "open_account_setting_button": { type: T.BUTTON, children: string }, + "world_templates_screen": { type: T.SCREEN, children: string }, + "world_templates_picker_content": { type: T.PANEL, children: 'background' }, + "world_templates_picker_content/background": { type: T.STACK_PANEL, children: string }, } 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": { type: T.IMAGE, children: string }, + "main_panel_qr": { type: T.STACK_PANEL, children: 'left_panel' | 'divider' | 'right_panel' }, + "main_panel_qr/left_panel": { type: T.STACK_PANEL, children: string }, + "main_panel_qr/divider": { type: T.PANEL, children: string }, + "main_panel_qr/right_panel": { type: T.STACK_PANEL, children: 'scrolling_panel_sizer' }, + "main_panel_qr/right_panel/scrolling_panel_sizer": { type: T.PANEL, children: 'right_scroll_panel' }, + "main_panel_qr/right_panel/scrolling_panel_sizer/right_scroll_panel": { type: T.BUTTON, children: string }, + "common_scrolling_panel": { type: T.PANEL, children: string }, + "gamepad_helpers": { type: T.PANEL, children: 'gamepad_helper_b' }, + "gamepad_helpers/gamepad_helper_b": { type: T.STACK_PANEL, children: string }, + "xbl_console_qr_signin": { type: T.SCREEN, children: string }, + "xbl_console_qr_signin_screen_content": { type: T.PANEL, children: 'gamepad_helpers' | 'dialog' }, + "xbl_console_qr_signin_screen_content/gamepad_helpers": { type: T.PANEL, children: string }, + "xbl_console_qr_signin_screen_content/dialog": { type: T.PANEL, children: string }, + "dialog": { type: T.PANEL, children: string }, + "scroll_content_focus_border": { type: T.BUTTON, children: string }, + "left_panel": { type: T.STACK_PANEL, children: 'left_header' | 'padding_1' | 'left_body' | 'padding_2' | 'qr_panel' }, + "left_panel/left_header": { type: T.LABEL, children: string }, + "left_panel/padding_1": { type: T.PANEL, children: string }, + "left_panel/left_body": { type: T.LABEL, children: string }, + "left_panel/padding_2": { type: T.PANEL, children: string }, + "left_panel/qr_panel": { type: T.PANEL, children: 'qr_border' | 'qr_code' | 'bee_overlay' }, + "left_panel/qr_panel/qr_border": { type: T.IMAGE, children: string }, + "left_panel/qr_panel/qr_code": { type: T.CUSTOM, children: string }, + "left_panel/qr_panel/bee_overlay": { type: T.IMAGE, children: string }, + "input_panel_wrapper": { type: T.INPUT_PANEL, children: 'r_scroll_panel' }, + "input_panel_wrapper/r_scroll_panel": { type: T.STACK_PANEL, children: string }, + "right_scroll_panel": { type: T.STACK_PANEL, children: 'right_header' | 'padding_1' | 'website_message_label' | 'padding_2' | 'wrapper_panel_1' | 'padding_3' | 'code_message_label' | 'padding_4' | 'wrapper_panel_2' | 'padding_5' | 'code_message_body1' | 'padding_6' | 'code_message_body2' | 'padding_7' | 'warning_messages' }, + "right_scroll_panel/right_header": { type: T.LABEL, children: string }, + "right_scroll_panel/padding_1": { type: T.PANEL, children: string }, + "right_scroll_panel/website_message_label": { type: T.LABEL, children: string }, + "right_scroll_panel/padding_2": { type: T.PANEL, children: string }, + "right_scroll_panel/wrapper_panel_1": { type: T.PANEL, children: 'banner_1' }, + "right_scroll_panel/wrapper_panel_1/banner_1": { type: T.IMAGE, children: 'url_label' }, + "right_scroll_panel/wrapper_panel_1/banner_1/url_label": { type: T.LABEL, children: string }, + "right_scroll_panel/padding_3": { type: T.PANEL, children: string }, + "right_scroll_panel/code_message_label": { type: T.LABEL, children: string }, + "right_scroll_panel/padding_4": { type: T.PANEL, children: string }, + "right_scroll_panel/wrapper_panel_2": { type: T.PANEL, children: 'banner_2' }, + "right_scroll_panel/wrapper_panel_2/banner_2": { type: T.IMAGE, children: 'code_label' }, + "right_scroll_panel/wrapper_panel_2/banner_2/code_label": { type: T.LABEL, children: string }, + "right_scroll_panel/padding_5": { type: T.PANEL, children: string }, + "right_scroll_panel/code_message_body1": { type: T.LABEL, children: string }, + "right_scroll_panel/padding_6": { type: T.PANEL, children: string }, + "right_scroll_panel/code_message_body2": { type: T.LABEL, children: string }, + "right_scroll_panel/padding_7": { type: T.PANEL, children: string }, + "right_scroll_panel/warning_messages": { type: T.STACK_PANEL, children: string }, + "ps4_warning_message_panel": { type: T.STACK_PANEL, children: 'sign_in_account_message' | 'padding_1' | 'permanent_linking_message' }, + "ps4_warning_message_panel/sign_in_account_message": { type: T.LABEL, children: string }, + "ps4_warning_message_panel/padding_1": { type: T.PANEL, children: string }, + "ps4_warning_message_panel/permanent_linking_message": { type: T.LABEL, children: string }, } 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": { type: T.IMAGE, children: string }, + "main_panel": { type: T.STACK_PANEL, children: 'padding_0' | 'message_label_panel' | 'padding_1' | 'website_message_label' | 'banner_1' | 'padding_2' | 'code_message_label' | 'banner_2' }, + "main_panel/padding_0": { type: T.PANEL, children: string }, + "main_panel/message_label_panel": { type: T.STACK_PANEL, children: 'message_label' }, + "main_panel/message_label_panel/message_label": { type: T.LABEL, children: string }, + "main_panel/padding_1": { type: T.PANEL, children: string }, + "main_panel/website_message_label": { type: T.LABEL, children: string }, + "main_panel/banner_1": { type: T.IMAGE, children: 'url_label' }, + "main_panel/banner_1/url_label": { type: T.LABEL, children: string }, + "main_panel/padding_2": { type: T.PANEL, children: string }, + "main_panel/code_message_label": { type: T.LABEL, children: string }, + "main_panel/banner_2": { type: T.IMAGE, children: 'code_label' }, + "main_panel/banner_2/code_label": { type: T.LABEL, children: string }, + "gamepad_helpers": { type: T.PANEL, children: 'gamepad_helper_b' }, + "gamepad_helpers/gamepad_helper_b": { type: T.STACK_PANEL, children: string }, + "xbl_console_signin": { type: T.SCREEN, children: string }, + "xbl_console_signin_screen_content": { type: T.PANEL, children: 'gamepad_helpers' | 'dialog' }, + "xbl_console_signin_screen_content/gamepad_helpers": { type: T.PANEL, children: string }, + "xbl_console_signin_screen_content/dialog": { type: T.PANEL, children: string }, + "dialog": { type: T.PANEL, children: string }, } 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": { type: T.IMAGE, children: string }, + "gamer_score_icon": { type: T.IMAGE, children: string }, + "profile_pic": { type: T.CUSTOM, children: string }, + "gamertag_label": { type: T.LABEL, children: string }, + "gamer_score_label": { type: T.LABEL, children: string }, + "gamer_score_panel": { type: T.STACK_PANEL, children: 'gamer_score_icon' | 'padding_0' | 'gamer_score_panel' }, + "gamer_score_panel/gamer_score_icon": { type: T.IMAGE, children: string }, + "gamer_score_panel/padding_0": { type: T.PANEL, children: string }, + "gamer_score_panel/gamer_score_panel": { type: T.PANEL, children: 'gamer_score' }, + "gamer_score_panel/gamer_score_panel/gamer_score": { type: T.LABEL, children: string }, + "button_panel": { type: T.PANEL, children: 'play' }, + "button_panel/play": { type: T.BUTTON, children: string }, + "text_panel": { type: T.PANEL, children: 'new_account_text' }, + "text_panel/new_account_text": { type: T.LABEL, children: string }, + "third_party_platform_legal_text": { type: T.PANEL, children: string }, + "new_account_text_panel": { type: T.PANEL, children: string }, + "gamer_profile_panel": { type: T.STACK_PANEL, children: 'picture_panel' | 'padding_1' | 'info_panel' }, + "gamer_profile_panel/picture_panel": { type: T.PANEL, children: 'banner' }, + "gamer_profile_panel/picture_panel/banner": { type: T.IMAGE, children: 'profile_pic' }, + "gamer_profile_panel/picture_panel/banner/profile_pic": { type: T.CUSTOM, children: string }, + "gamer_profile_panel/padding_1": { type: T.PANEL, children: string }, + "gamer_profile_panel/info_panel": { type: T.PANEL, children: 'profile_info_panel' }, + "gamer_profile_panel/info_panel/profile_info_panel": { type: T.STACK_PANEL, children: 'gamertag_label' | 'padding_0' | 'gamer_score_panel' }, + "gamer_profile_panel/info_panel/profile_info_panel/gamertag_label": { type: T.LABEL, children: string }, + "gamer_profile_panel/info_panel/profile_info_panel/padding_0": { type: T.PANEL, children: string }, + "gamer_profile_panel/info_panel/profile_info_panel/gamer_score_panel": { type: T.STACK_PANEL, children: string }, + "main_panel": { type: T.STACK_PANEL, children: 'profile' | 'padding_0' | 'third_party_legal_text_panel' | 'padding_1' | 'new_account_text_panel' | 'padding_2' | 'button_panel' }, + "main_panel/profile": { type: T.STACK_PANEL, children: string }, + "main_panel/padding_0": { type: T.PANEL, children: string }, + "main_panel/third_party_legal_text_panel": { type: T.PANEL, children: string }, + "main_panel/padding_1": { type: T.PANEL, children: string }, + "main_panel/new_account_text_panel": { type: T.PANEL, children: string }, + "main_panel/padding_2": { type: T.PANEL, children: string }, + "main_panel/button_panel": { type: T.PANEL, children: string }, + "xbl_console_signin_succeeded": { type: T.SCREEN, children: string }, + "xbl_console_signin_succeeded_screen_content": { type: T.PANEL, children: 'dialog' }, + "xbl_console_signin_succeeded_screen_content/dialog": { type: T.PANEL, children: string }, + "dialog": { type: T.PANEL, children: string }, } 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": { type: T.SCREEN, children: string }, + "xbl_immediate_signin_screen_content": { type: T.PANEL, children: 'root_panel' }, + "xbl_immediate_signin_screen_content/root_panel": { type: T.PANEL, children: string }, } 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": { type: T.PANEL, children: string }, + "padding_vertical": { type: T.PANEL, children: string }, + "padding_vertical_3": { type: T.PANEL, children: string }, + "background_image": { type: T.IMAGE, children: string }, + "title_image": { type: T.IMAGE, children: string }, + "focus_border": { type: T.IMAGE, children: string }, + "pack_image": { type: T.IMAGE, children: string }, + "pack_image_panel": { type: T.PANEL, children: 'pack_image' }, + "pack_image_panel/pack_image": { type: T.IMAGE, children: string }, + "title_image_border": { type: T.IMAGE, children: 'image' }, + "title_image_border/image": { type: T.IMAGE, children: string }, + "pack_image_with_border": { type: T.IMAGE, children: 'image' }, + "pack_image_with_border/image": { type: T.IMAGE, children: string }, + "label_panel": { type: T.LABEL, children: string }, + "button_panel": { type: T.STACK_PANEL, children: 'padding_5' | 'buy_now_button' | 'padding_6' }, + "button_panel/padding_5": { type: T.PANEL, children: string }, + "button_panel/buy_now_button": { type: T.BUTTON, children: string }, + "button_panel/padding_6": { type: T.PANEL, children: string }, + "buy_now_button": { type: T.BUTTON, children: string }, + "buy_now_label": { type: T.PANEL, children: 'button_label' }, + "buy_now_label/button_label": { type: T.LABEL, children: string }, + "is_focused": { type: T.IMAGE, children: string }, + "filler_panel": { type: T.PANEL, children: string }, + "focus_border_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' }, + "focus_border_button/default": { type: T.PANEL, children: string }, + "focus_border_button/hover": { type: T.IMAGE, children: string }, + "focus_border_button/pressed": { type: T.IMAGE, children: string }, + "grid_item": { type: T.STACK_PANEL, children: 'padding_1' | 'pack_image_pane' | 'padding_2' | 'pack_panel' | 'padding_3' }, + "grid_item/padding_1": { type: T.PANEL, children: string }, + "grid_item/pack_image_pane": { type: T.PANEL, children: string }, + "grid_item/padding_2": { type: T.PANEL, children: string }, + "grid_item/pack_panel": { type: T.STACK_PANEL, children: string }, + "grid_item/padding_3": { type: T.PANEL, children: string }, + "grid_item_vertical": { type: T.PANEL, children: 'grid_item_horizontal' | 'pack_grid' }, + "grid_item_vertical/grid_item_horizontal": { type: T.STACK_PANEL, children: string }, + "grid_item_vertical/pack_grid": { type: T.BUTTON, children: string }, + "pack_panel": { type: T.STACK_PANEL, children: 'packtitle' | 'padding_2' | 'packdesc' }, + "pack_panel/packtitle": { type: T.LABEL, children: string }, + "pack_panel/padding_2": { type: T.PANEL, children: string }, + "pack_panel/packdesc": { type: T.LABEL, children: string }, + "collection_main_panel": { type: T.STACK_PANEL, children: 'padding_1' | 'title_panel' | 'padding_2' | 'title_image_panel' | 'padding_3' | 'offer_panel' | 'padding_4' | 'button_panel' | 'padding_5' | 'include_panel' | 'padding_6' | 'pack_list_grid' }, + "collection_main_panel/padding_1": { type: T.PANEL, children: string }, + "collection_main_panel/title_panel": { type: T.LABEL, children: string }, + "collection_main_panel/padding_2": { type: T.PANEL, children: string }, + "collection_main_panel/title_image_panel": { type: T.PANEL, children: 'border_image' }, + "collection_main_panel/title_image_panel/border_image": { type: T.IMAGE, children: string }, + "collection_main_panel/padding_3": { type: T.PANEL, children: string }, + "collection_main_panel/offer_panel": { type: T.STACK_PANEL, children: 'padding_1' | 'label_panel' | 'padding_2' }, + "collection_main_panel/offer_panel/padding_1": { type: T.PANEL, children: string }, + "collection_main_panel/offer_panel/label_panel": { type: T.PANEL, children: 'offer_label' }, + "collection_main_panel/offer_panel/label_panel/offer_label": { type: T.LABEL, children: string }, + "collection_main_panel/offer_panel/padding_2": { type: T.PANEL, children: string }, + "collection_main_panel/padding_4": { type: T.PANEL, children: string }, + "collection_main_panel/button_panel": { type: T.STACK_PANEL, children: string }, + "collection_main_panel/padding_5": { type: T.PANEL, children: string }, + "collection_main_panel/include_panel": { type: T.STACK_PANEL, children: 'padding_1' | 'include_label' }, + "collection_main_panel/include_panel/padding_1": { type: T.PANEL, children: string }, + "collection_main_panel/include_panel/include_label": { type: T.LABEL, children: string }, + "collection_main_panel/padding_6": { type: T.PANEL, children: string }, + "collection_main_panel/pack_list_grid": { type: T.GRID, children: string }, + "background_image_with_border": { type: T.IMAGE, children: 'main_panel_no_buttons' }, + "background_image_with_border/main_panel_no_buttons": { type: T.STACK_PANEL, children: string }, + "win10_trial_conversion_main_panel": { type: T.PANEL, children: 'scrolling_panel' }, + "win10_trial_conversion_main_panel/scrolling_panel": { type: T.PANEL, children: string }, + "vertical_main_panel": { type: T.STACK_PANEL, children: 'padding_1' | 'panel' | 'padding_2' }, + "vertical_main_panel/padding_1": { type: T.PANEL, children: string }, + "vertical_main_panel/panel": { type: T.STACK_PANEL, children: string }, + "vertical_main_panel/padding_2": { type: T.PANEL, children: string }, + "horizontal_main_panel": { type: T.STACK_PANEL, children: 'padding_1' | 'starter_collection' | 'padding_2' | 'master_collection' }, + "horizontal_main_panel/padding_1": { type: T.PANEL, children: string }, + "horizontal_main_panel/starter_collection": { type: T.IMAGE, children: string }, + "horizontal_main_panel/padding_2": { type: T.PANEL, children: string }, + "horizontal_main_panel/master_collection": { type: T.IMAGE, children: string }, + "win10_trial_conversion_screen": { type: T.SCREEN, children: string }, + "win10_trial_conversion_panel": { type: T.STACK_PANEL, children: string }, } diff --git a/test/app.ts b/test/app.ts index 930365e..9e8d6a8 100644 --- a/test/app.ts +++ b/test/app.ts @@ -1 +1,10 @@ -import { Modify, Panel, StackPanel, Toggle, GetItemByAuxID, ItemAuxID } from ".." +import { Animation, AnimType } from ".." + +const animation = new Animation( + AnimType.OFFSET, + { + from: [0, 0], + to: [100, 100], + }, + 123, +).setLoop(false) diff --git a/tsconfig.json b/tsconfig.json index 787cc74..86ebf2d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,7 +3,8 @@ "target": "esnext", "module": "nodenext", "moduleResolution": "nodenext", - "outDir": "dist", + "outDir": "dist/js", + "declarationDir": "dist/types", "declaration": true, "sourceMap": false, "strict": true,